f13fd1c04ef4fe4c79c312e0a41e5b37075eeec5
[libguestfs.git] / po-docs / libguestfs-docs.pot
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Red Hat Inc.
3 # This file is distributed under the same license as the libguestfs package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 #, fuzzy
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: libguestfs 1.8.11\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-08-07 23:12+0200\n"
12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 "Language-Team: LANGUAGE <LL@li.org>\n"
15 "Language: \n"
16 "MIME-Version: 1.0\n"
17 "Content-Type: text/plain; charset=UTF-8\n"
18 "Content-Transfer-Encoding: 8bit\n"
19
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3 ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3 ../tools/virt-edit.pl:32 ../tools/virt-win-reg.pl:35 ../tools/virt-resize.pl:40 ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35 ../tools/virt-list-partitions.pl:30
22 msgid "NAME"
23 msgstr ""
24
25 #. type: textblock
26 #: ../src/guestfs.pod:5
27 msgid "guestfs - Library for accessing and modifying virtual machine images"
28 msgstr ""
29
30 #. type: =head1
31 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7 ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7 ../tools/virt-edit.pl:36 ../tools/virt-win-reg.pl:39 ../tools/virt-resize.pl:44 ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39 ../tools/virt-list-partitions.pl:34
32 msgid "SYNOPSIS"
33 msgstr ""
34
35 #. type: verbatim
36 #: ../src/guestfs.pod:9
37 #, no-wrap
38 msgid ""
39 " #include <guestfs.h>\n"
40 " \n"
41 msgstr ""
42
43 #. type: verbatim
44 #: ../src/guestfs.pod:11
45 #, no-wrap
46 msgid ""
47 " guestfs_h *g = guestfs_create ();\n"
48 " guestfs_add_drive (g, \"guest.img\");\n"
49 " guestfs_launch (g);\n"
50 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
51 " guestfs_touch (g, \"/hello\");\n"
52 " guestfs_umount (g, \"/\");\n"
53 " guestfs_close (g);\n"
54 "\n"
55 msgstr ""
56
57 #. type: verbatim
58 #: ../src/guestfs.pod:19
59 #, no-wrap
60 msgid ""
61 " cc prog.c -o prog -lguestfs\n"
62 "or:\n"
63 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
64 "\n"
65 msgstr ""
66
67 #. type: =head1
68 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30 ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20 ../tools/virt-edit.pl:50 ../tools/virt-win-reg.pl:63 ../tools/virt-resize.pl:50 ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:72 ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
69 msgid "DESCRIPTION"
70 msgstr ""
71
72 #. type: textblock
73 #: ../src/guestfs.pod:25
74 msgid ""
75 "Libguestfs is a library for accessing and modifying guest disk images.  "
76 "Amongst the things this is good for: making batch configuration changes to "
77 "guests, getting disk used/free statistics (see also: virt-df), migrating "
78 "between virtualization systems (see also: virt-p2v), performing partial "
79 "backups, performing partial guest clones, cloning guests and changing "
80 "registry/UUID/hostname info, and much else besides."
81 msgstr ""
82
83 #. type: textblock
84 #: ../src/guestfs.pod:33
85 msgid ""
86 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
87 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
88 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
89 "qcow2, vmdk."
90 msgstr ""
91
92 #. type: textblock
93 #: ../src/guestfs.pod:38
94 msgid ""
95 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
96 "what filesystem is in each LV, etc.).  It can also run commands in the "
97 "context of the guest.  Also you can access filesystems over FUSE."
98 msgstr ""
99
100 #. type: textblock
101 #: ../src/guestfs.pod:43
102 msgid ""
103 "Libguestfs is a library that can be linked with C and C++ management "
104 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
105 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
106 "line."
107 msgstr ""
108
109 #. type: textblock
110 #: ../src/guestfs.pod:48
111 msgid ""
112 "You don't need to be root to use libguestfs, although obviously you do need "
113 "enough permissions to access the disk images."
114 msgstr ""
115
116 #. type: textblock
117 #: ../src/guestfs.pod:51
118 msgid ""
119 "Libguestfs is a large API because it can do many things.  For a gentle "
120 "introduction, please read the L</API OVERVIEW> section next."
121 msgstr ""
122
123 #. type: textblock
124 #: ../src/guestfs.pod:54
125 msgid ""
126 "There are also some example programs in the L<guestfs-examples(3)> manual "
127 "page."
128 msgstr ""
129
130 #. type: =head1
131 #: ../src/guestfs.pod:57
132 msgid "API OVERVIEW"
133 msgstr ""
134
135 #. type: textblock
136 #: ../src/guestfs.pod:59
137 msgid ""
138 "This section provides a gentler overview of the libguestfs API.  We also try "
139 "to group API calls together, where that may not be obvious from reading "
140 "about the individual calls in the main section of this manual."
141 msgstr ""
142
143 #. type: =head2
144 #: ../src/guestfs.pod:64
145 msgid "HANDLES"
146 msgstr ""
147
148 #. type: textblock
149 #: ../src/guestfs.pod:66
150 msgid ""
151 "Before you can use libguestfs calls, you have to create a handle.  Then you "
152 "must add at least one disk image to the handle, followed by launching the "
153 "handle, then performing whatever operations you want, and finally closing "
154 "the handle.  By convention we use the single letter C<g> for the name of the "
155 "handle variable, although of course you can use any name you want."
156 msgstr ""
157
158 #. type: textblock
159 #: ../src/guestfs.pod:73
160 msgid "The general structure of all libguestfs-using programs looks like this:"
161 msgstr ""
162
163 #. type: verbatim
164 #: ../src/guestfs.pod:76
165 #, no-wrap
166 msgid ""
167 " guestfs_h *g = guestfs_create ();\n"
168 " \n"
169 msgstr ""
170
171 #. type: verbatim
172 #: ../src/guestfs.pod:78
173 #, no-wrap
174 msgid ""
175 " /* Call guestfs_add_drive additional times if there are\n"
176 "  * multiple disk images.\n"
177 "  */\n"
178 " guestfs_add_drive (g, \"guest.img\");\n"
179 " \n"
180 msgstr ""
181
182 #. type: verbatim
183 #: ../src/guestfs.pod:83
184 #, no-wrap
185 msgid ""
186 " /* Most manipulation calls won't work until you've launched\n"
187 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
188 "  * and _before_ other commands.\n"
189 "  */\n"
190 " guestfs_launch (g);\n"
191 " \n"
192 msgstr ""
193
194 #. type: verbatim
195 #: ../src/guestfs.pod:89
196 #, no-wrap
197 msgid ""
198 " /* Now you can examine what partitions, LVs etc are available.\n"
199 "  */\n"
200 " char **partitions = guestfs_list_partitions (g);\n"
201 " char **logvols = guestfs_lvs (g);\n"
202 " \n"
203 msgstr ""
204
205 #. type: verbatim
206 #: ../src/guestfs.pod:94
207 #, no-wrap
208 msgid ""
209 " /* To access a filesystem in the image, you must mount it.\n"
210 "  */\n"
211 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
212 " \n"
213 msgstr ""
214
215 #. type: verbatim
216 #: ../src/guestfs.pod:98
217 #, no-wrap
218 msgid ""
219 " /* Now you can perform filesystem actions on the guest\n"
220 "  * disk image.\n"
221 "  */\n"
222 " guestfs_touch (g, \"/hello\");\n"
223 " \n"
224 msgstr ""
225
226 #. type: verbatim
227 #: ../src/guestfs.pod:103
228 #, no-wrap
229 msgid ""
230 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
231 "  * it is done automatically when you close the handle.  See\n"
232 "  * discussion of autosync in this page.\n"
233 "  */\n"
234 " guestfs_sync (g);\n"
235 " \n"
236 msgstr ""
237
238 #. type: verbatim
239 #: ../src/guestfs.pod:109
240 #, no-wrap
241 msgid ""
242 " /* Close the handle 'g'. */\n"
243 " guestfs_close (g);\n"
244 "\n"
245 msgstr ""
246
247 #. type: textblock
248 #: ../src/guestfs.pod:112
249 msgid ""
250 "The code above doesn't include any error checking.  In real code you should "
251 "check return values carefully for errors.  In general all functions that "
252 "return integers return C<-1> on error, and all functions that return "
253 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
254 "how to handle errors, and consult the documentation for each function call "
255 "below to see precisely how they return error indications.  See "
256 "L<guestfs-examples(3)> for fully worked examples."
257 msgstr ""
258
259 #. type: =head2
260 #: ../src/guestfs.pod:121
261 msgid "DISK IMAGES"
262 msgstr ""
263
264 #. type: textblock
265 #: ../src/guestfs.pod:123
266 msgid ""
267 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
268 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
269 "actual block device, or simply an empty file of zeroes that you have created "
270 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
271 "of these."
272 msgstr ""
273
274 #. type: textblock
275 #: ../src/guestfs.pod:129
276 msgid ""
277 "The call you should use in modern code for adding drives is "
278 "L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
279 "specifying that the format is raw, do:"
280 msgstr ""
281
282 #. type: verbatim
283 #: ../src/guestfs.pod:133
284 #, no-wrap
285 msgid ""
286 " guestfs_add_drive_opts (g, filename,\n"
287 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
288 "                         -1);\n"
289 "\n"
290 msgstr ""
291
292 #. type: textblock
293 #: ../src/guestfs.pod:137
294 msgid "You can add a disk read-only using:"
295 msgstr ""
296
297 #. type: verbatim
298 #: ../src/guestfs.pod:139
299 #, no-wrap
300 msgid ""
301 " guestfs_add_drive_opts (g, filename,\n"
302 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
303 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
304 "                         -1);\n"
305 "\n"
306 msgstr ""
307
308 #. type: textblock
309 #: ../src/guestfs.pod:144
310 msgid ""
311 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
312 "libguestfs won't modify the file."
313 msgstr ""
314
315 #. type: textblock
316 #: ../src/guestfs.pod:147
317 msgid ""
318 "Be extremely cautious if the disk image is in use, eg. if it is being used "
319 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
320 "corruption, but adding it read-only is safe."
321 msgstr ""
322
323 #. type: textblock
324 #: ../src/guestfs.pod:151
325 msgid ""
326 "You must add at least one disk image, and you may add multiple disk images.  "
327 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
328 "first one you added), C</dev/sdb> (for the second one you added), etc."
329 msgstr ""
330
331 #. type: textblock
332 #: ../src/guestfs.pod:156
333 msgid ""
334 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
335 "can call L</guestfs_list_devices> to get a list of the device names, in the "
336 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
337 msgstr ""
338
339 #. type: =head2
340 #: ../src/guestfs.pod:161
341 msgid "MOUNTING"
342 msgstr ""
343
344 #. type: textblock
345 #: ../src/guestfs.pod:163
346 msgid ""
347 "Before you can read or write files, create directories and so on in a disk "
348 "image that contains filesystems, you have to mount those filesystems using "
349 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
350 "a disk image contains (for example) one partition with a filesystem on that "
351 "partition, then you can mount it directly:"
352 msgstr ""
353
354 #. type: verbatim
355 #: ../src/guestfs.pod:170
356 #, no-wrap
357 msgid ""
358 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
359 "\n"
360 msgstr ""
361
362 #. type: textblock
363 #: ../src/guestfs.pod:172
364 msgid ""
365 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
366 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
367 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
368 "that these are libguestfs virtual devices, and are nothing to do with host "
369 "devices."
370 msgstr ""
371
372 #. type: textblock
373 #: ../src/guestfs.pod:178
374 msgid ""
375 "If you are given a disk image and you don't know what it contains then you "
376 "have to find out.  Libguestfs can do that too: use "
377 "L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
378 "and LVs, and either try mounting each to see what is mountable, or else "
379 "examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
380 "filesystems, use L</guestfs_list_filesystems>."
381 msgstr ""
382
383 #. type: textblock
384 #: ../src/guestfs.pod:186
385 msgid ""
386 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
387 "L</INSPECTION> below).  But you might find it easier to look at higher level "
388 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
389 msgstr ""
390
391 #. type: textblock
392 #: ../src/guestfs.pod:191
393 msgid ""
394 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
395 "several other variations of the C<guestfs_mount_*> call."
396 msgstr ""
397
398 #. type: =head2
399 #: ../src/guestfs.pod:194
400 msgid "FILESYSTEM ACCESS AND MODIFICATION"
401 msgstr ""
402
403 #. type: textblock
404 #: ../src/guestfs.pod:196
405 msgid ""
406 "The majority of the libguestfs API consists of fairly low-level calls for "
407 "accessing and modifying the files, directories, symlinks etc on mounted "
408 "filesystems.  There are over a hundred such calls which you can find listed "
409 "in detail below in this man page, and we don't even pretend to cover them "
410 "all in this overview."
411 msgstr ""
412
413 #. type: textblock
414 #: ../src/guestfs.pod:202
415 msgid ""
416 "Specify filenames as full paths, starting with C<\"/\"> and including the "
417 "mount point."
418 msgstr ""
419
420 #. type: textblock
421 #: ../src/guestfs.pod:205
422 msgid ""
423 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
424 "the file called C<\"etc/passwd\"> then you could do:"
425 msgstr ""
426
427 #. type: verbatim
428 #: ../src/guestfs.pod:208
429 #, no-wrap
430 msgid ""
431 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
432 "\n"
433 msgstr ""
434
435 #. type: textblock
436 #: ../src/guestfs.pod:210
437 msgid ""
438 "This would return C<data> as a newly allocated buffer containing the full "
439 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
440 "or C<NULL> if there was an error."
441 msgstr ""
442
443 #. type: textblock
444 #: ../src/guestfs.pod:214
445 msgid ""
446 "As another example, to create a top-level directory on that filesystem "
447 "called C<\"var\"> you would do:"
448 msgstr ""
449
450 #. type: verbatim
451 #: ../src/guestfs.pod:217
452 #, no-wrap
453 msgid ""
454 " guestfs_mkdir (g, \"/var\");\n"
455 "\n"
456 msgstr ""
457
458 #. type: textblock
459 #: ../src/guestfs.pod:219
460 msgid "To create a symlink you could do:"
461 msgstr ""
462
463 #. type: verbatim
464 #: ../src/guestfs.pod:221
465 #, no-wrap
466 msgid ""
467 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
468 "               \"/etc/rc3.d/S30portmap\");\n"
469 "\n"
470 msgstr ""
471
472 #. type: textblock
473 #: ../src/guestfs.pod:224
474 msgid ""
475 "Libguestfs will reject attempts to use relative paths and there is no "
476 "concept of a current working directory."
477 msgstr ""
478
479 #. type: textblock
480 #: ../src/guestfs.pod:227
481 msgid ""
482 "Libguestfs can return errors in many situations: for example if the "
483 "filesystem isn't writable, or if a file or directory that you requested "
484 "doesn't exist.  If you are using the C API (documented here)  you have to "
485 "check for those error conditions after each call.  (Other language bindings "
486 "turn these errors into exceptions)."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:233
491 msgid ""
492 "File writes are affected by the per-handle umask, set by calling "
493 "L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
494 msgstr ""
495
496 #. type: =head2
497 #: ../src/guestfs.pod:236
498 msgid "PARTITIONING"
499 msgstr ""
500
501 #. type: textblock
502 #: ../src/guestfs.pod:238
503 msgid ""
504 "Libguestfs contains API calls to read, create and modify partition tables on "
505 "disk images."
506 msgstr ""
507
508 #. type: textblock
509 #: ../src/guestfs.pod:241
510 msgid ""
511 "In the common case where you want to create a single partition covering the "
512 "whole disk, you should use the L</guestfs_part_disk> call:"
513 msgstr ""
514
515 #. type: verbatim
516 #: ../src/guestfs.pod:245
517 #, no-wrap
518 msgid ""
519 " const char *parttype = \"mbr\";\n"
520 " if (disk_is_larger_than_2TB)\n"
521 "   parttype = \"gpt\";\n"
522 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
523 "\n"
524 msgstr ""
525
526 #. type: textblock
527 #: ../src/guestfs.pod:250
528 msgid ""
529 "Obviously this effectively wipes anything that was on that disk image "
530 "before."
531 msgstr ""
532
533 #. type: =head2
534 #: ../src/guestfs.pod:253
535 msgid "LVM2"
536 msgstr ""
537
538 #. type: textblock
539 #: ../src/guestfs.pod:255
540 msgid ""
541 "Libguestfs provides access to a large part of the LVM2 API, such as "
542 "L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
543 "unless you familiarize yourself with the concepts of physical volumes, "
544 "volume groups and logical volumes."
545 msgstr ""
546
547 #. type: textblock
548 #: ../src/guestfs.pod:260
549 msgid ""
550 "This author strongly recommends reading the LVM HOWTO, online at "
551 "L<http://tldp.org/HOWTO/LVM-HOWTO/>."
552 msgstr ""
553
554 #. type: =head2
555 #: ../src/guestfs.pod:263
556 msgid "DOWNLOADING"
557 msgstr ""
558
559 #. type: textblock
560 #: ../src/guestfs.pod:265
561 msgid ""
562 "Use L</guestfs_cat> to download small, text only files.  This call is "
563 "limited to files which are less than 2 MB and which cannot contain any ASCII "
564 "NUL (C<\\0>) characters.  However the API is very simple to use."
565 msgstr ""
566
567 #. type: textblock
568 #: ../src/guestfs.pod:269
569 msgid ""
570 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
571 "bit data, since it returns a (pointer, size) pair.  However it is still "
572 "limited to \"small\" files, less than 2 MB."
573 msgstr ""
574
575 #. type: textblock
576 #: ../src/guestfs.pod:273
577 msgid ""
578 "L</guestfs_download> can be used to download any file, with no limits on "
579 "content or size (even files larger than 4 GB)."
580 msgstr ""
581
582 #. type: textblock
583 #: ../src/guestfs.pod:276
584 msgid "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
585 msgstr ""
586
587 #. type: =head2
588 #: ../src/guestfs.pod:279
589 msgid "UPLOADING"
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:281
594 msgid ""
595 "It's often the case that you want to write a file or files to the disk "
596 "image."
597 msgstr ""
598
599 #. type: textblock
600 #: ../src/guestfs.pod:284
601 msgid ""
602 "To write a small file with fixed content, use L</guestfs_write>.  To create "
603 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
604 "L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
605 "variety of other functions for creating test files, for example "
606 "L</guestfs_fill> and L</guestfs_fill_pattern>."
607 msgstr ""
608
609 #. type: textblock
610 #: ../src/guestfs.pod:290
611 msgid ""
612 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
613 "file content or size (even files larger than 4 GB)."
614 msgstr ""
615
616 #. type: textblock
617 #: ../src/guestfs.pod:293
618 msgid "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
619 msgstr ""
620
621 #. type: textblock
622 #: ../src/guestfs.pod:295
623 msgid ""
624 "However the fastest way to upload I<large numbers of arbitrary files> is to "
625 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
626 "L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add "
627 "the drive in a predictable way (eg. adding it last after all other drives) "
628 "then you can get the device name from L</guestfs_list_devices> and mount it "
629 "directly using L</guestfs_mount_ro>.  Note that squashfs images are "
630 "sometimes non-portable between kernel versions, and they don't support "
631 "labels or UUIDs.  If you want to pre-build an image or you need to mount it "
632 "using a label or UUID, use an ISO image instead."
633 msgstr ""
634
635 #. type: =head2
636 #: ../src/guestfs.pod:306
637 msgid "COPYING"
638 msgstr ""
639
640 #. type: textblock
641 #: ../src/guestfs.pod:308
642 msgid ""
643 "There are various different commands for copying between files and devices "
644 "and in and out of the guest filesystem.  These are summarised in the table "
645 "below."
646 msgstr ""
647
648 #. type: =item
649 #: ../src/guestfs.pod:314
650 msgid "B<file> to B<file>"
651 msgstr ""
652
653 #. type: textblock
654 #: ../src/guestfs.pod:316
655 msgid ""
656 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
657 "directories recursively."
658 msgstr ""
659
660 #. type: =item
661 #: ../src/guestfs.pod:319
662 msgid "B<file or device> to B<file or device>"
663 msgstr ""
664
665 #. type: textblock
666 #: ../src/guestfs.pod:321
667 msgid ""
668 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
669 "devices in the guest."
670 msgstr ""
671
672 #. type: textblock
673 #: ../src/guestfs.pod:324
674 msgid "Example: duplicate the contents of an LV:"
675 msgstr ""
676
677 #. type: verbatim
678 #: ../src/guestfs.pod:326
679 #, no-wrap
680 msgid ""
681 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
682 "\n"
683 msgstr ""
684
685 #. type: textblock
686 #: ../src/guestfs.pod:328
687 msgid ""
688 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
689 "(C</dev/VG/Original>).  To copy less than the whole source device, use "
690 "L</guestfs_copy_size>."
691 msgstr ""
692
693 #. type: =item
694 #: ../src/guestfs.pod:332
695 msgid "B<file on the host> to B<file or device>"
696 msgstr ""
697
698 #. type: textblock
699 #: ../src/guestfs.pod:334
700 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
701 msgstr ""
702
703 #. type: =item
704 #: ../src/guestfs.pod:336
705 msgid "B<file or device> to B<file on the host>"
706 msgstr ""
707
708 #. type: textblock
709 #: ../src/guestfs.pod:338
710 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
711 msgstr ""
712
713 #. type: =head2
714 #: ../src/guestfs.pod:342
715 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:344
720 msgid ""
721 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
722 "L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
723 "appears you can only upload and download to files.  However many Un*x-like "
724 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
725 "C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
726 "stderr, and arbitrary file descriptor N."
727 msgstr ""
728
729 #. type: textblock
730 #: ../src/guestfs.pod:352
731 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
732 msgstr ""
733
734 #. type: verbatim
735 #: ../src/guestfs.pod:355
736 #, no-wrap
737 msgid ""
738 " guestfs_download (g, filename, \"/dev/stdout\");\n"
739 "\n"
740 msgstr ""
741
742 #. type: textblock
743 #: ../src/guestfs.pod:357
744 msgid "and you can write tar output to a pipe C<fd> by doing:"
745 msgstr ""
746
747 #. type: verbatim
748 #: ../src/guestfs.pod:359
749 #, no-wrap
750 msgid ""
751 " char devfd[64];\n"
752 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
753 " guestfs_tar_out (g, \"/\", devfd);\n"
754 "\n"
755 msgstr ""
756
757 #. type: =head2
758 #: ../src/guestfs.pod:363
759 msgid "LISTING FILES"
760 msgstr ""
761
762 #. type: textblock
763 #: ../src/guestfs.pod:365
764 msgid ""
765 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
766 "L<guestfish(1)>-equivalent command C<ll>)."
767 msgstr ""
768
769 #. type: textblock
770 #: ../src/guestfs.pod:368
771 msgid ""
772 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
773 "programs, as a flat list of strings."
774 msgstr ""
775
776 #. type: textblock
777 #: ../src/guestfs.pod:371
778 msgid ""
779 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
780 "directory, plus additional information about each one.  It is more "
781 "equivalent to using the L<readdir(3)> call on a local filesystem."
782 msgstr ""
783
784 #. type: textblock
785 #: ../src/guestfs.pod:375
786 msgid ""
787 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list "
788 "files."
789 msgstr ""
790
791 #. type: =head2
792 #: ../src/guestfs.pod:378
793 msgid "RUNNING COMMANDS"
794 msgstr ""
795
796 #. type: textblock
797 #: ../src/guestfs.pod:380
798 msgid ""
799 "Although libguestfs is primarily an API for manipulating files inside guest "
800 "images, we also provide some limited facilities for running commands inside "
801 "guests."
802 msgstr ""
803
804 #. type: textblock
805 #: ../src/guestfs.pod:384
806 msgid "There are many limitations to this:"
807 msgstr ""
808
809 #. type: =item
810 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398 ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411 ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1011 ../src/guestfs.pod:1015 ../src/guestfs.pod:1019 ../src/guestfs.pod:1024 ../src/guestfs.pod:1032 ../src/guestfs.pod:1051 ../src/guestfs.pod:1059 ../src/guestfs.pod:1081 ../src/guestfs.pod:1085 ../src/guestfs.pod:1089 ../src/guestfs.pod:1093 ../src/guestfs.pod:1097 ../src/guestfs.pod:1101 ../src/guestfs.pod:1583 ../src/guestfs.pod:1588 ../src/guestfs.pod:1592 ../src/guestfs.pod:1702 ../src/guestfs.pod:1707 ../src/guestfs.pod:1711 ../src/guestfs.pod:2064 ../src/guestfs.pod:2070 ../src/guestfs.pod:2075 ../src/guestfs.pod:2081 ../src/guestfs.pod:2540 ../src/guestfs.pod:2544 ../src/guestfs.pod:2548 ../src/guestfs.pod:2552 ../src/guestfs-actions.pod:15 ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:569 ../src/guestfs-actions.pod:577 ../src/guestfs-actions.pod:584 ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:1584 ../src/guestfs-actions.pod:1588 ../src/guestfs-actions.pod:1592 ../src/guestfs-actions.pod:1596 ../src/guestfs-actions.pod:1604 ../src/guestfs-actions.pod:1608 ../src/guestfs-actions.pod:1612 ../src/guestfs-actions.pod:1622 ../src/guestfs-actions.pod:1626 ../src/guestfs-actions.pod:1630 ../src/guestfs-actions.pod:1768 ../src/guestfs-actions.pod:1772 ../src/guestfs-actions.pod:1777 ../src/guestfs-actions.pod:1782 ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:1847 ../src/guestfs-actions.pod:1852 ../fish/guestfish.pod:427 ../fish/guestfish.pod:431 ../fish/guestfish.pod:435 ../fish/guestfish.pod:439 ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:373 ../fish/guestfish-actions.pod:381 ../fish/guestfish-actions.pod:388 ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:1062 ../fish/guestfish-actions.pod:1066 ../fish/guestfish-actions.pod:1070 ../fish/guestfish-actions.pod:1074 ../fish/guestfish-actions.pod:1082 ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1090 ../fish/guestfish-actions.pod:1100 ../fish/guestfish-actions.pod:1104 ../fish/guestfish-actions.pod:1108 ../fish/guestfish-actions.pod:1198 ../fish/guestfish-actions.pod:1202 ../fish/guestfish-actions.pod:1207 ../fish/guestfish-actions.pod:1212 ../fish/guestfish-actions.pod:1254 ../fish/guestfish-actions.pod:1258 ../fish/guestfish-actions.pod:1263 ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542 ../tools/virt-win-reg.pl:548 ../tools/virt-resize.pl:345 ../tools/virt-resize.pl:350 ../tools/virt-resize.pl:360
811 msgid "*"
812 msgstr ""
813
814 #. type: textblock
815 #: ../src/guestfs.pod:390
816 msgid ""
817 "The kernel version that the command runs under will be different from what "
818 "it expects."
819 msgstr ""
820
821 #. type: textblock
822 #: ../src/guestfs.pod:395
823 msgid ""
824 "If the command needs to communicate with daemons, then most likely they "
825 "won't be running."
826 msgstr ""
827
828 #. type: textblock
829 #: ../src/guestfs.pod:400
830 msgid "The command will be running in limited memory."
831 msgstr ""
832
833 #. type: textblock
834 #: ../src/guestfs.pod:404
835 msgid ""
836 "The network may not be available unless you enable it (see "
837 "L</guestfs_set_network>)."
838 msgstr ""
839
840 #. type: textblock
841 #: ../src/guestfs.pod:409
842 msgid "Only supports Linux guests (not Windows, BSD, etc)."
843 msgstr ""
844
845 #. type: textblock
846 #: ../src/guestfs.pod:413
847 msgid "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
848 msgstr ""
849
850 #. type: textblock
851 #: ../src/guestfs.pod:418
852 msgid ""
853 "For SELinux guests, you may need to enable SELinux and load policy first.  "
854 "See L</SELINUX> in this manpage."
855 msgstr ""
856
857 #. type: textblock
858 #: ../src/guestfs.pod:423
859 msgid ""
860 "I<Security:> It is not safe to run commands from untrusted, possibly "
861 "malicious guests.  These commands may attempt to exploit your program by "
862 "sending unexpected output.  They could also try to exploit the Linux kernel "
863 "or qemu provided by the libguestfs appliance.  They could use the network "
864 "provided by the libguestfs appliance to bypass ordinary network partitions "
865 "and firewalls.  They could use the elevated privileges or different SELinux "
866 "context of your program to their advantage."
867 msgstr ""
868
869 #. type: textblock
870 #: ../src/guestfs.pod:432
871 msgid ""
872 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
873 "(a script which runs when the guest next boots normally), and to have this "
874 "script run the commands you want in the normal context of the running guest, "
875 "network security and so on.  For information about other security issues, "
876 "see L</SECURITY>."
877 msgstr ""
878
879 #. type: textblock
880 #: ../src/guestfs.pod:440
881 msgid ""
882 "The two main API calls to run commands are L</guestfs_command> and "
883 "L</guestfs_sh> (there are also variations)."
884 msgstr ""
885
886 #. type: textblock
887 #: ../src/guestfs.pod:443
888 msgid ""
889 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
890 "shell globs, redirections, etc will work."
891 msgstr ""
892
893 #. type: =head2
894 #: ../src/guestfs.pod:446
895 msgid "CONFIGURATION FILES"
896 msgstr ""
897
898 #. type: textblock
899 #: ../src/guestfs.pod:448
900 msgid ""
901 "To read and write configuration files in Linux guest filesystems, we "
902 "strongly recommend using Augeas.  For example, Augeas understands how to "
903 "read and write, say, a Linux shadow password file or X.org configuration "
904 "file, and so avoids you having to write that code."
905 msgstr ""
906
907 #. type: textblock
908 #: ../src/guestfs.pod:453
909 msgid ""
910 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
911 "document Augeas itself here because there is excellent documentation on the "
912 "L<http://augeas.net/> website."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:457
917 msgid ""
918 "If you don't want to use Augeas (you fool!) then try calling "
919 "L</guestfs_read_lines> to get the file as a list of lines which you can "
920 "iterate over."
921 msgstr ""
922
923 #. type: =head2
924 #: ../src/guestfs.pod:461
925 msgid "SELINUX"
926 msgstr ""
927
928 #. type: textblock
929 #: ../src/guestfs.pod:463
930 msgid ""
931 "We support SELinux guests.  To ensure that labeling happens correctly in "
932 "SELinux guests, you need to enable SELinux and load the guest's policy:"
933 msgstr ""
934
935 #. type: =item
936 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1204 ../src/guestfs.pod:1335 ../src/guestfs.pod:2109
937 msgid "1."
938 msgstr ""
939
940 #. type: textblock
941 #: ../src/guestfs.pod:471
942 msgid "Before launching, do:"
943 msgstr ""
944
945 #. type: verbatim
946 #: ../src/guestfs.pod:473
947 #, no-wrap
948 msgid ""
949 " guestfs_set_selinux (g, 1);\n"
950 "\n"
951 msgstr ""
952
953 #. type: =item
954 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1208 ../src/guestfs.pod:1339 ../src/guestfs.pod:2134
955 msgid "2."
956 msgstr ""
957
958 #. type: textblock
959 #: ../src/guestfs.pod:477
960 msgid ""
961 "After mounting the guest's filesystem(s), load the policy.  This is best "
962 "done by running the L<load_policy(8)> command in the guest itself:"
963 msgstr ""
964
965 #. type: verbatim
966 #: ../src/guestfs.pod:481
967 #, no-wrap
968 msgid ""
969 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
970 "\n"
971 msgstr ""
972
973 #. type: textblock
974 #: ../src/guestfs.pod:483
975 msgid ""
976 "(Older versions of C<load_policy> require you to specify the name of the "
977 "policy file)."
978 msgstr ""
979
980 #. type: =item
981 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1345
982 msgid "3."
983 msgstr ""
984
985 #. type: textblock
986 #: ../src/guestfs.pod:488
987 msgid ""
988 "Optionally, set the security context for the API.  The correct security "
989 "context to use can only be known by inspecting the guest.  As an example:"
990 msgstr ""
991
992 #. type: verbatim
993 #: ../src/guestfs.pod:492
994 #, no-wrap
995 msgid ""
996 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
997 "\n"
998 msgstr ""
999
1000 #. type: textblock
1001 #: ../src/guestfs.pod:496
1002 msgid "This will work for running commands and editing existing files."
1003 msgstr ""
1004
1005 #. type: textblock
1006 #: ../src/guestfs.pod:498
1007 msgid ""
1008 "When new files are created, you may need to label them explicitly, for "
1009 "example by running the external command C<restorecon pathname>."
1010 msgstr ""
1011
1012 #. type: =head2
1013 #: ../src/guestfs.pod:502
1014 msgid "UMASK"
1015 msgstr ""
1016
1017 #. type: textblock
1018 #: ../src/guestfs.pod:504
1019 msgid ""
1020 "Certain calls are affected by the current file mode creation mask (the "
1021 "\"umask\").  In particular ones which create files or directories, such as "
1022 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1023 "either the default mode that the file is created with or modifies the mode "
1024 "that you supply."
1025 msgstr ""
1026
1027 #. type: textblock
1028 #: ../src/guestfs.pod:510
1029 msgid ""
1030 "The default umask is C<022>, so files are created with modes such as C<0644> "
1031 "and directories with C<0755>."
1032 msgstr ""
1033
1034 #. type: textblock
1035 #: ../src/guestfs.pod:513
1036 msgid ""
1037 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1038 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1039 "L</guestfs_chmod> after creating each file or directory."
1040 msgstr ""
1041
1042 #. type: textblock
1043 #: ../src/guestfs.pod:517
1044 msgid "For more information about umask, see L<umask(2)>."
1045 msgstr ""
1046
1047 #. type: =head1
1048 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:720
1049 msgid "ENCRYPTED DISKS"
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:521
1054 msgid ""
1055 "Libguestfs allows you to access Linux guests which have been encrypted using "
1056 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1057 "standard.  This includes nearly all whole disk encryption systems used by "
1058 "modern Linux guests."
1059 msgstr ""
1060
1061 #. type: textblock
1062 #: ../src/guestfs.pod:527
1063 msgid ""
1064 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1065 "returns the string C<crypto_LUKS>)."
1066 msgstr ""
1067
1068 #. type: textblock
1069 #: ../src/guestfs.pod:530
1070 msgid ""
1071 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1072 "will require the passphrase!"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:533
1077 msgid ""
1078 "Opening a LUKS device creates a new device mapper device called "
1079 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1080 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1081 "decrypted from and encrypted to the underlying block device respectively."
1082 msgstr ""
1083
1084 #. type: textblock
1085 #: ../src/guestfs.pod:539
1086 msgid ""
1087 "LVM volume groups on the device can be made visible by calling "
1088 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1089 "volume(s) can now be mounted in the usual way."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:543
1094 msgid ""
1095 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1096 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1097 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1098 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1099 "underlying encrypted block device)."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:550
1104 msgid "INSPECTION"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:552
1109 msgid ""
1110 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1111 "contains operating systems.  (These APIs used to be in a separate Perl-only "
1112 "library called L<Sys::Guestfs::Lib(3)> but since version 1.5.3 the most "
1113 "frequently used part of this library has been rewritten in C and moved into "
1114 "the core code)."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:558
1119 msgid ""
1120 "Add all disks belonging to the unknown virtual machine and call "
1121 "L</guestfs_launch> in the usual way."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:561
1126 msgid ""
1127 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1128 "and certain heuristics, and returns a list of operating systems that were "
1129 "found.  An empty list means none were found.  A single element is the root "
1130 "filesystem of the operating system.  For dual- or multi-boot guests, "
1131 "multiple roots can be returned, each one corresponding to a separate "
1132 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1133 "world of virtualization, but since this scenario can happen, we have built "
1134 "libguestfs to deal with it.)"
1135 msgstr ""
1136
1137 #. type: textblock
1138 #: ../src/guestfs.pod:570
1139 msgid ""
1140 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1141 "to get additional details about that operating system.  For example, call "
1142 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1143 "Windows and Linux-based operating systems respectively."
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:576
1148 msgid ""
1149 "Un*x-like and Linux-based operating systems usually consist of several "
1150 "filesystems which are mounted at boot time (for example, a separate boot "
1151 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1152 "filesystems correspond to mount points.  Call "
1153 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1154 "hash table like this example:"
1155 msgstr ""
1156
1157 #. type: verbatim
1158 #: ../src/guestfs.pod:583
1159 #, no-wrap
1160 msgid ""
1161 " /boot => /dev/sda1\n"
1162 " /     => /dev/vg_guest/lv_root\n"
1163 " /usr  => /dev/vg_guest/lv_usr\n"
1164 "\n"
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:587
1169 msgid ""
1170 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1171 "filesystems as suggested."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:590
1176 msgid ""
1177 "Be careful to mount filesystems in the right order (eg. C</> before "
1178 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1179 "work."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:594
1184 msgid ""
1185 "Inspection currently only works for some common operating systems.  "
1186 "Contributors are welcome to send patches for other operating systems that we "
1187 "currently cannot detect."
1188 msgstr ""
1189
1190 #. type: textblock
1191 #: ../src/guestfs.pod:598
1192 msgid ""
1193 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1194 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1195 "encrypted devices."
1196 msgstr ""
1197
1198 #. type: textblock
1199 #: ../src/guestfs.pod:602
1200 msgid ""
1201 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1202 "inspection and caches the results in the guest handle.  Subsequent calls to "
1203 "C<guestfs_inspect_get_*> return this cached information, but I<do not> "
1204 "re-read the disks.  If you change the content of the guest disks, you can "
1205 "redo inspection by calling L</guestfs_inspect_os> again.  "
1206 "(L</guestfs_inspect_list_applications> works a little differently from the "
1207 "other calls and does read the disks.  See documentation for that function "
1208 "for details)."
1209 msgstr ""
1210
1211 #. type: =head2
1212 #: ../src/guestfs.pod:611
1213 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1214 msgstr ""
1215
1216 #. type: textblock
1217 #: ../src/guestfs.pod:613
1218 msgid ""
1219 "Libguestfs can mount NTFS partitions.  It does this using the "
1220 "L<http://www.ntfs-3g.org/> driver."
1221 msgstr ""
1222
1223 #. type: =head3
1224 #: ../src/guestfs.pod:616
1225 msgid "DRIVE LETTERS AND PATHS"
1226 msgstr ""
1227
1228 #. type: textblock
1229 #: ../src/guestfs.pod:618
1230 msgid ""
1231 "DOS and Windows still use drive letters, and the filesystems are always "
1232 "treated as case insensitive by Windows itself, and therefore you might find "
1233 "a Windows configuration file referring to a path like "
1234 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1235 "that directory might be referred to as C</WINDOWS/System32>."
1236 msgstr ""
1237
1238 #. type: textblock
1239 #: ../src/guestfs.pod:624
1240 msgid ""
1241 "Drive letter mappings are outside the scope of libguestfs.  You have to use "
1242 "libguestfs to read the appropriate Windows Registry and configuration files, "
1243 "to determine yourself how drives are mapped (see also L<hivex(3)> and "
1244 "L<virt-inspector(1)>)."
1245 msgstr ""
1246
1247 #. type: textblock
1248 #: ../src/guestfs.pod:629
1249 msgid ""
1250 "Replacing backslash characters with forward slash characters is also outside "
1251 "the scope of libguestfs, but something that you can easily do."
1252 msgstr ""
1253
1254 #. type: textblock
1255 #: ../src/guestfs.pod:632
1256 msgid ""
1257 "Where we can help is in resolving the case insensitivity of paths.  For "
1258 "this, call L</guestfs_case_sensitive_path>."
1259 msgstr ""
1260
1261 #. type: =head3
1262 #: ../src/guestfs.pod:635
1263 msgid "ACCESSING THE WINDOWS REGISTRY"
1264 msgstr ""
1265
1266 #. type: textblock
1267 #: ../src/guestfs.pod:637
1268 msgid ""
1269 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1270 "files, through the library C<hivex> which is part of the libguestfs project "
1271 "although ships as a separate tarball.  You have to locate and download the "
1272 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1273 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and "
1274 "L<virt-win-reg(1)> for more help on this issue."
1275 msgstr ""
1276
1277 #. type: =head3
1278 #: ../src/guestfs.pod:645
1279 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1280 msgstr ""
1281
1282 #. type: textblock
1283 #: ../src/guestfs.pod:647
1284 msgid ""
1285 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1286 "provide something which looks like a Linux symlink.  The way it tries to do "
1287 "the rewriting is described here:"
1288 msgstr ""
1289
1290 #. type: textblock
1291 #: ../src/guestfs.pod:651
1292 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-symbolic-links/>"
1293 msgstr ""
1294
1295 #. type: textblock
1296 #: ../src/guestfs.pod:653
1297 msgid ""
1298 "The essential problem is that ntfs-3g simply does not have enough "
1299 "information to do a correct job.  NTFS links can contain drive letters and "
1300 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1301 "It is almost certainly the case that libguestfs callers should ignore what "
1302 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1303 msgstr ""
1304
1305 #. type: textblock
1306 #: ../src/guestfs.pod:660
1307 msgid ""
1308 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1309 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1310 "attribute, and read the raw reparse data from that (you can find the format "
1311 "documented in various places around the web)."
1312 msgstr ""
1313
1314 #. type: =head3
1315 #: ../src/guestfs.pod:665
1316 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1317 msgstr ""
1318
1319 #. type: textblock
1320 #: ../src/guestfs.pod:667
1321 msgid ""
1322 "There are other useful extended attributes that can be read from ntfs-3g "
1323 "filesystems (using L</guestfs_getxattr>).  See:"
1324 msgstr ""
1325
1326 #. type: textblock
1327 #: ../src/guestfs.pod:670
1328 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1329 msgstr ""
1330
1331 #. type: =head2
1332 #: ../src/guestfs.pod:672
1333 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1334 msgstr ""
1335
1336 #. type: textblock
1337 #: ../src/guestfs.pod:674
1338 msgid ""
1339 "Although we don't want to discourage you from using the C API, we will "
1340 "mention here that the same API is also available in other languages."
1341 msgstr ""
1342
1343 #. type: textblock
1344 #: ../src/guestfs.pod:677
1345 msgid ""
1346 "The API is broadly identical in all supported languages.  This means that "
1347 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1348 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1349 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1350 "each language."
1351 msgstr ""
1352
1353 #. type: textblock
1354 #: ../src/guestfs.pod:683
1355 msgid ""
1356 "Error messages are automatically transformed into exceptions if the language "
1357 "supports it."
1358 msgstr ""
1359
1360 #. type: textblock
1361 #: ../src/guestfs.pod:686
1362 msgid ""
1363 "We don't try to \"object orientify\" parts of the API in OO languages, "
1364 "although contributors are welcome to write higher level APIs above what we "
1365 "provide in their favourite languages if they wish."
1366 msgstr ""
1367
1368 #. type: =item
1369 #: ../src/guestfs.pod:692
1370 msgid "B<C++>"
1371 msgstr ""
1372
1373 #. type: textblock
1374 #: ../src/guestfs.pod:694
1375 msgid ""
1376 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1377 "identical to the C API.  C++ classes and exceptions are not used."
1378 msgstr ""
1379
1380 #. type: =item
1381 #: ../src/guestfs.pod:698
1382 msgid "B<C#>"
1383 msgstr ""
1384
1385 #. type: textblock
1386 #: ../src/guestfs.pod:700
1387 msgid ""
1388 "The C# bindings are highly experimental.  Please read the warnings at the "
1389 "top of C<csharp/Libguestfs.cs>."
1390 msgstr ""
1391
1392 #. type: =item
1393 #: ../src/guestfs.pod:703
1394 msgid "B<Haskell>"
1395 msgstr ""
1396
1397 #. type: textblock
1398 #: ../src/guestfs.pod:705
1399 msgid ""
1400 "This is the only language binding that is working but incomplete.  Only "
1401 "calls which return simple integers have been bound in Haskell, and we are "
1402 "looking for help to complete this binding."
1403 msgstr ""
1404
1405 #. type: =item
1406 #: ../src/guestfs.pod:709
1407 msgid "B<Java>"
1408 msgstr ""
1409
1410 #. type: textblock
1411 #: ../src/guestfs.pod:711
1412 msgid ""
1413 "Full documentation is contained in the Javadoc which is distributed with "
1414 "libguestfs."
1415 msgstr ""
1416
1417 #. type: =item
1418 #: ../src/guestfs.pod:714
1419 msgid "B<OCaml>"
1420 msgstr ""
1421
1422 #. type: textblock
1423 #: ../src/guestfs.pod:716
1424 msgid "See L<guestfs-ocaml(3)>."
1425 msgstr ""
1426
1427 #. type: =item
1428 #: ../src/guestfs.pod:718
1429 msgid "B<Perl>"
1430 msgstr ""
1431
1432 #. type: textblock
1433 #: ../src/guestfs.pod:720
1434 msgid "See L<Sys::Guestfs(3)>."
1435 msgstr ""
1436
1437 #. type: =item
1438 #: ../src/guestfs.pod:722
1439 msgid "B<PHP>"
1440 msgstr ""
1441
1442 #. type: textblock
1443 #: ../src/guestfs.pod:724
1444 msgid ""
1445 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1446 "the php-libguestfs package for your distribution."
1447 msgstr ""
1448
1449 #. type: textblock
1450 #: ../src/guestfs.pod:727
1451 msgid "The PHP binding only works correctly on 64 bit machines."
1452 msgstr ""
1453
1454 #. type: =item
1455 #: ../src/guestfs.pod:729
1456 msgid "B<Python>"
1457 msgstr ""
1458
1459 #. type: textblock
1460 #: ../src/guestfs.pod:731
1461 msgid "See L<guestfs-python(3)>."
1462 msgstr ""
1463
1464 #. type: =item
1465 #: ../src/guestfs.pod:733
1466 msgid "B<Ruby>"
1467 msgstr ""
1468
1469 #. type: textblock
1470 #: ../src/guestfs.pod:735
1471 msgid "See L<guestfs-ruby(3)>."
1472 msgstr ""
1473
1474 #. type: =item
1475 #: ../src/guestfs.pod:737
1476 msgid "B<shell scripts>"
1477 msgstr ""
1478
1479 #. type: textblock
1480 #: ../src/guestfs.pod:739
1481 msgid "See L<guestfish(1)>."
1482 msgstr ""
1483
1484 #. type: =head2
1485 #: ../src/guestfs.pod:743
1486 msgid "LIBGUESTFS GOTCHAS"
1487 msgstr ""
1488
1489 #. type: textblock
1490 #: ../src/guestfs.pod:745
1491 msgid ""
1492 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1493 "system [...] that works in the way it is documented but is counterintuitive "
1494 "and almost invites mistakes.\""
1495 msgstr ""
1496
1497 #. type: textblock
1498 #: ../src/guestfs.pod:749
1499 msgid ""
1500 "Since we developed libguestfs and the associated tools, there are several "
1501 "things we would have designed differently, but are now stuck with for "
1502 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1503 "release, you can expect these to change.  Beware of them."
1504 msgstr ""
1505
1506 #. type: =item
1507 #: ../src/guestfs.pod:757
1508 msgid "Autosync / forgetting to sync."
1509 msgstr ""
1510
1511 #. type: textblock
1512 #: ../src/guestfs.pod:759
1513 msgid ""
1514 "When modifying a filesystem from C or another language, you B<must> unmount "
1515 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1516 "libguestfs handle.  You can also call:"
1517 msgstr ""
1518
1519 #. type: verbatim
1520 #: ../src/guestfs.pod:763
1521 #, no-wrap
1522 msgid ""
1523 " guestfs_set_autosync (g, 1);\n"
1524 "\n"
1525 msgstr ""
1526
1527 #. type: textblock
1528 #: ../src/guestfs.pod:765
1529 msgid ""
1530 "to have the unmount/sync done automatically for you when the handle 'g' is "
1531 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1532 "q.v.)"
1533 msgstr ""
1534
1535 #. type: textblock
1536 #: ../src/guestfs.pod:769
1537 msgid ""
1538 "If you forget to do this, then it is entirely possible that your changes "
1539 "won't be written out, or will be partially written, or (very rarely) that "
1540 "you'll get disk corruption."
1541 msgstr ""
1542
1543 #. type: textblock
1544 #: ../src/guestfs.pod:773
1545 msgid ""
1546 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1547 "guestfish scripts that forget to sync will work just fine, which can make "
1548 "this very puzzling if you are trying to debug a problem."
1549 msgstr ""
1550
1551 #. type: textblock
1552 #: ../src/guestfs.pod:777
1553 msgid ""
1554 "Update: Autosync is enabled by default for all API users starting from "
1555 "libguestfs 1.5.24."
1556 msgstr ""
1557
1558 #. type: =item
1559 #: ../src/guestfs.pod:780
1560 msgid "Mount option C<-o sync> should not be the default."
1561 msgstr ""
1562
1563 #. type: textblock
1564 #: ../src/guestfs.pod:782
1565 msgid ""
1566 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1567 "However C<-o sync> does not add any reliability benefit, but does have a "
1568 "very large performance impact."
1569 msgstr ""
1570
1571 #. type: textblock
1572 #: ../src/guestfs.pod:786
1573 msgid ""
1574 "The work around is to use L</guestfs_mount_options> and set the mount "
1575 "options that you actually want to use."
1576 msgstr ""
1577
1578 #. type: =item
1579 #: ../src/guestfs.pod:789
1580 msgid "Read-only should be the default."
1581 msgstr ""
1582
1583 #. type: textblock
1584 #: ../src/guestfs.pod:791
1585 msgid ""
1586 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1587 "specify I<--rw> if you want to make changes to the image."
1588 msgstr ""
1589
1590 #. type: textblock
1591 #: ../src/guestfs.pod:794
1592 msgid "This would reduce the potential to corrupt live VM images."
1593 msgstr ""
1594
1595 #. type: textblock
1596 #: ../src/guestfs.pod:796
1597 msgid ""
1598 "Note that many filesystems change the disk when you just mount and unmount, "
1599 "even if you didn't perform any writes.  You need to use "
1600 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1601 msgstr ""
1602
1603 #. type: =item
1604 #: ../src/guestfs.pod:800
1605 msgid "guestfish command line is hard to use."
1606 msgstr ""
1607
1608 #. type: textblock
1609 #: ../src/guestfs.pod:802
1610 msgid ""
1611 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1612 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1613 "exist, so it fails.  In earlier versions of guestfish the error message was "
1614 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1615 "we should have used C<guestfish -c command> to run commands."
1616 msgstr ""
1617
1618 #. type: =item
1619 #: ../src/guestfs.pod:809
1620 msgid "guestfish megabyte modifiers don't work right on all commands"
1621 msgstr ""
1622
1623 #. type: textblock
1624 #: ../src/guestfs.pod:811
1625 msgid ""
1626 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1627 "other modifiers).  What guestfish actually does is to multiply the number "
1628 "part by the modifier part and pass the result to the C API.  However this "
1629 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1630 "expecting some other unit (eg. megabytes)."
1631 msgstr ""
1632
1633 #. type: textblock
1634 #: ../src/guestfs.pod:818
1635 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1636 msgstr ""
1637
1638 #. type: verbatim
1639 #: ../src/guestfs.pod:820
1640 #, no-wrap
1641 msgid ""
1642 " lvcreate LV VG 100M\n"
1643 "\n"
1644 msgstr ""
1645
1646 #. type: textblock
1647 #: ../src/guestfs.pod:822
1648 msgid ""
1649 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1650 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1651 "megabytes * megabytes) logical volume.  The error message you get from this "
1652 "is also a little obscure."
1653 msgstr ""
1654
1655 #. type: textblock
1656 #: ../src/guestfs.pod:827
1657 msgid ""
1658 "This could be fixed in the generator by specially marking parameters and "
1659 "return values which take bytes or other units."
1660 msgstr ""
1661
1662 #. type: =item
1663 #: ../src/guestfs.pod:830
1664 msgid "Ambiguity between devices and paths"
1665 msgstr ""
1666
1667 #. type: textblock
1668 #: ../src/guestfs.pod:832
1669 msgid ""
1670 "There is a subtle ambiguity in the API between a device name "
1671 "(eg. C</dev/sdb2>) and a similar pathname.  A file might just happen to be "
1672 "called C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1673 msgstr ""
1674
1675 #. type: textblock
1676 #: ../src/guestfs.pod:837
1677 msgid ""
1678 "In the current API we usually resolve this ambiguity by having two separate "
1679 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1680 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1681 "detecting if the path supplied begins with C</dev/>."
1682 msgstr ""
1683
1684 #. type: textblock
1685 #: ../src/guestfs.pod:843
1686 msgid ""
1687 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1688 "make paths/devices into structured names.  One way to do this would be to "
1689 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1690 "aspect of grub.  Another way would be to use a structured type, equivalent "
1691 "to this OCaml type:"
1692 msgstr ""
1693
1694 #. type: verbatim
1695 #: ../src/guestfs.pod:849
1696 #, no-wrap
1697 msgid ""
1698 " type path = Path of string | Device of int | Partition of int * int\n"
1699 "\n"
1700 msgstr ""
1701
1702 #. type: textblock
1703 #: ../src/guestfs.pod:851
1704 msgid "which would allow you to pass arguments like:"
1705 msgstr ""
1706
1707 #. type: verbatim
1708 #: ../src/guestfs.pod:853
1709 #, no-wrap
1710 msgid ""
1711 " Path \"/foo/bar\"\n"
1712 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1713 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1714 " Path \"/dev/sdb2\"    (* not a device *)\n"
1715 "\n"
1716 msgstr ""
1717
1718 #. type: textblock
1719 #: ../src/guestfs.pod:858
1720 msgid ""
1721 "As you can see there are still problems to resolve even with this "
1722 "representation.  Also consider how it might work in guestfish."
1723 msgstr ""
1724
1725 #. type: =head2
1726 #: ../src/guestfs.pod:863
1727 msgid "PROTOCOL LIMITS"
1728 msgstr ""
1729
1730 #. type: textblock
1731 #: ../src/guestfs.pod:865
1732 msgid ""
1733 "Internally libguestfs uses a message-based protocol to pass API calls and "
1734 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
1735 "plenty more detail about this).  The maximum message size used by the "
1736 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
1737 "aware of this limit.  The API calls which may be affected are individually "
1738 "documented, with a link back to this section of the documentation."
1739 msgstr ""
1740
1741 #. type: textblock
1742 #: ../src/guestfs.pod:873
1743 msgid ""
1744 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
1745 "a simple string.  Because this string is at some point internally encoded as "
1746 "a message, the maximum size that it can return is slightly under 4 MB.  If "
1747 "the requested file is larger than this then you will get an error."
1748 msgstr ""
1749
1750 #. type: textblock
1751 #: ../src/guestfs.pod:879
1752 msgid ""
1753 "In order to transfer large files into and out of the guest filesystem, you "
1754 "need to use particular calls that support this.  The sections L</UPLOADING> "
1755 "and L</DOWNLOADING> document how to do this."
1756 msgstr ""
1757
1758 #. type: textblock
1759 #: ../src/guestfs.pod:883
1760 msgid ""
1761 "You might also consider mounting the disk image using our FUSE filesystem "
1762 "support (L<guestmount(1)>)."
1763 msgstr ""
1764
1765 #. type: =head2
1766 #: ../src/guestfs.pod:886
1767 msgid "KEYS AND PASSPHRASES"
1768 msgstr ""
1769
1770 #. type: textblock
1771 #: ../src/guestfs.pod:888
1772 msgid ""
1773 "Certain libguestfs calls take a parameter that contains sensitive key "
1774 "material, passed in as a C string."
1775 msgstr ""
1776
1777 #. type: textblock
1778 #: ../src/guestfs.pod:891
1779 msgid ""
1780 "In the future we would hope to change the libguestfs implementation so that "
1781 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1782 "swap.  However this is I<not> done at the moment, because of the complexity "
1783 "of such an implementation."
1784 msgstr ""
1785
1786 #. type: textblock
1787 #: ../src/guestfs.pod:896
1788 msgid ""
1789 "Therefore you should be aware that any key parameter you pass to libguestfs "
1790 "might end up being written out to the swap partition.  If this is a concern, "
1791 "scrub the swap partition or don't use libguestfs on encrypted devices."
1792 msgstr ""
1793
1794 #. type: =head2
1795 #: ../src/guestfs.pod:901
1796 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1797 msgstr ""
1798
1799 #. type: textblock
1800 #: ../src/guestfs.pod:903
1801 msgid ""
1802 "All high-level libguestfs actions are synchronous.  If you want to use "
1803 "libguestfs asynchronously then you must create a thread."
1804 msgstr ""
1805
1806 #. type: textblock
1807 #: ../src/guestfs.pod:906
1808 msgid ""
1809 "Only use the handle from a single thread.  Either use the handle exclusively "
1810 "from one thread, or provide your own mutex so that two threads cannot issue "
1811 "calls on the same handle at the same time."
1812 msgstr ""
1813
1814 #. type: textblock
1815 #: ../src/guestfs.pod:910
1816 msgid ""
1817 "See the graphical program guestfs-browser for one possible architecture for "
1818 "multithreaded programs using libvirt and libguestfs."
1819 msgstr ""
1820
1821 #. type: =head2
1822 #: ../src/guestfs.pod:913
1823 msgid "PATH"
1824 msgstr ""
1825
1826 #. type: textblock
1827 #: ../src/guestfs.pod:915
1828 msgid ""
1829 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1830 "internal path."
1831 msgstr ""
1832
1833 #. type: textblock
1834 #: ../src/guestfs.pod:918
1835 msgid ""
1836 "By default it looks for these in the directory C<$libdir/guestfs> "
1837 "(eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1838 msgstr ""
1839
1840 #. type: textblock
1841 #: ../src/guestfs.pod:921
1842 msgid ""
1843 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1844 "to change the directories that libguestfs will search in.  The value is a "
1845 "colon-separated list of paths.  The current directory is I<not> searched "
1846 "unless the path contains an empty element or C<.>.  For example "
1847 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1848 "then C</usr/lib/guestfs>."
1849 msgstr ""
1850
1851 #. type: =head2
1852 #: ../src/guestfs.pod:928
1853 msgid "QEMU WRAPPERS"
1854 msgstr ""
1855
1856 #. type: textblock
1857 #: ../src/guestfs.pod:930
1858 msgid ""
1859 "If you want to compile your own qemu, run qemu from a non-standard location, "
1860 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1861 "around qemu."
1862 msgstr ""
1863
1864 #. type: textblock
1865 #: ../src/guestfs.pod:934
1866 msgid ""
1867 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1868 "last command in the shell script (so that qemu replaces the shell and "
1869 "becomes the direct child of the libguestfs-using program).  If you don't do "
1870 "this, then the qemu process won't be cleaned up correctly."
1871 msgstr ""
1872
1873 #. type: textblock
1874 #: ../src/guestfs.pod:939
1875 msgid ""
1876 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1877 "source:"
1878 msgstr ""
1879
1880 #. type: verbatim
1881 #: ../src/guestfs.pod:942
1882 #, no-wrap
1883 msgid ""
1884 " #!/bin/sh -\n"
1885 " qemudir=/home/rjones/d/qemu\n"
1886 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "
1887 "\"$@\"\n"
1888 "\n"
1889 msgstr ""
1890
1891 #. type: textblock
1892 #: ../src/guestfs.pod:946
1893 msgid ""
1894 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1895 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1896 "example:"
1897 msgstr ""
1898
1899 #. type: verbatim
1900 #: ../src/guestfs.pod:950
1901 #, no-wrap
1902 msgid ""
1903 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1904 "\n"
1905 msgstr ""
1906
1907 #. type: textblock
1908 #: ../src/guestfs.pod:952
1909 msgid ""
1910 "Note that libguestfs also calls qemu with the -help and -version options in "
1911 "order to determine features."
1912 msgstr ""
1913
1914 #. type: =head2
1915 #: ../src/guestfs.pod:955
1916 msgid "ABI GUARANTEE"
1917 msgstr ""
1918
1919 #. type: textblock
1920 #: ../src/guestfs.pod:957
1921 msgid ""
1922 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
1923 "actions as outlined in this section.  Although we will deprecate some "
1924 "actions, for example if they get replaced by newer calls, we will keep the "
1925 "old actions forever.  This allows you the developer to program in confidence "
1926 "against the libguestfs API."
1927 msgstr ""
1928
1929 #. type: =head2
1930 #: ../src/guestfs.pod:963
1931 msgid "BLOCK DEVICE NAMING"
1932 msgstr ""
1933
1934 #. type: textblock
1935 #: ../src/guestfs.pod:965
1936 msgid ""
1937 "In the kernel there is now quite a profusion of schemata for naming block "
1938 "devices (in this context, by I<block device> I mean a physical or virtual "
1939 "hard drive).  The original Linux IDE driver used names starting with "
1940 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme, "
1941 "C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
1942 "replacement for the old IDE driver (particularly for SATA devices) those "
1943 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
1944 "machines with paravirtualized drivers.  This has created several different "
1945 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
1946 "Xen PV disks."
1947 msgstr ""
1948
1949 #. type: textblock
1950 #: ../src/guestfs.pod:977
1951 msgid ""
1952 "As discussed above, libguestfs uses a qemu appliance running an embedded "
1953 "Linux kernel to access block devices.  We can run a variety of appliances "
1954 "based on a variety of Linux kernels."
1955 msgstr ""
1956
1957 #. type: textblock
1958 #: ../src/guestfs.pod:981
1959 msgid ""
1960 "This causes a problem for libguestfs because many API calls use device or "
1961 "partition names.  Working scripts and the recipe (example) scripts that we "
1962 "make available over the internet could fail if the naming scheme changes."
1963 msgstr ""
1964
1965 #. type: textblock
1966 #: ../src/guestfs.pod:986
1967 msgid ""
1968 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
1969 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
1970 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
1971 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
1972 msgstr ""
1973
1974 #. type: textblock
1975 #: ../src/guestfs.pod:992
1976 msgid ""
1977 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
1978 "L</guestfs_list_partitions> and similar calls return the true names of the "
1979 "devices and partitions as known to the appliance."
1980 msgstr ""
1981
1982 #. type: =head3
1983 #: ../src/guestfs.pod:997
1984 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
1985 msgstr ""
1986
1987 #. type: textblock
1988 #: ../src/guestfs.pod:999
1989 msgid ""
1990 "Usually this translation is transparent.  However in some (very rare)  cases "
1991 "you may need to know the exact algorithm.  Such cases include where you use "
1992 "L</guestfs_config> to add a mixture of virtio and IDE devices to the "
1993 "qemu-based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> "
1994 "devices."
1995 msgstr ""
1996
1997 #. type: textblock
1998 #: ../src/guestfs.pod:1005
1999 msgid ""
2000 "The algorithm is applied only to I<parameters> which are known to be either "
2001 "device or partition names.  Return values from functions such as "
2002 "L</guestfs_list_devices> are never changed."
2003 msgstr ""
2004
2005 #. type: textblock
2006 #: ../src/guestfs.pod:1013
2007 msgid "Is the string a parameter which is a device or partition name?"
2008 msgstr ""
2009
2010 #. type: textblock
2011 #: ../src/guestfs.pod:1017
2012 msgid "Does the string begin with C</dev/sd>?"
2013 msgstr ""
2014
2015 #. type: textblock
2016 #: ../src/guestfs.pod:1021
2017 msgid ""
2018 "Does the named device exist? If so, we use that device.  However if I<not> "
2019 "then we continue with this algorithm."
2020 msgstr ""
2021
2022 #. type: textblock
2023 #: ../src/guestfs.pod:1026
2024 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2025 msgstr ""
2026
2027 #. type: textblock
2028 #: ../src/guestfs.pod:1028
2029 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2030 msgstr ""
2031
2032 #. type: textblock
2033 #: ../src/guestfs.pod:1030
2034 msgid "If that named device exists, use it.  If not, continue."
2035 msgstr ""
2036
2037 #. type: textblock
2038 #: ../src/guestfs.pod:1034
2039 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2040 msgstr ""
2041
2042 #. type: textblock
2043 #: ../src/guestfs.pod:1036
2044 msgid "If that named device exists, use it.  If not, return an error."
2045 msgstr ""
2046
2047 #. type: =head3
2048 #: ../src/guestfs.pod:1040
2049 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2050 msgstr ""
2051
2052 #. type: textblock
2053 #: ../src/guestfs.pod:1042
2054 msgid ""
2055 "Although the standard naming scheme and automatic translation is useful for "
2056 "simple programs and guestfish scripts, for larger programs it is best not to "
2057 "rely on this mechanism."
2058 msgstr ""
2059
2060 #. type: textblock
2061 #: ../src/guestfs.pod:1046
2062 msgid ""
2063 "Where possible for maximum future portability programs using libguestfs "
2064 "should use these future-proof techniques:"
2065 msgstr ""
2066
2067 #. type: textblock
2068 #: ../src/guestfs.pod:1053
2069 msgid ""
2070 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2071 "device names, and then use those names directly."
2072 msgstr ""
2073
2074 #. type: textblock
2075 #: ../src/guestfs.pod:1056
2076 msgid "Since those device names exist by definition, they will never be translated."
2077 msgstr ""
2078
2079 #. type: textblock
2080 #: ../src/guestfs.pod:1061
2081 msgid ""
2082 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2083 "filesystem labels."
2084 msgstr ""
2085
2086 #. type: =head1
2087 #: ../src/guestfs.pod:1066
2088 msgid "SECURITY"
2089 msgstr ""
2090
2091 #. type: textblock
2092 #: ../src/guestfs.pod:1068
2093 msgid ""
2094 "This section discusses security implications of using libguestfs, "
2095 "particularly with untrusted or malicious guests or disk images."
2096 msgstr ""
2097
2098 #. type: =head2
2099 #: ../src/guestfs.pod:1071
2100 msgid "GENERAL SECURITY CONSIDERATIONS"
2101 msgstr ""
2102
2103 #. type: textblock
2104 #: ../src/guestfs.pod:1073
2105 msgid ""
2106 "Be careful with any files or data that you download from a guest (by "
2107 "\"download\" we mean not just the L</guestfs_download> command but any "
2108 "command that reads files, filenames, directories or anything else from a "
2109 "disk image).  An attacker could manipulate the data to fool your program "
2110 "into doing the wrong thing.  Consider cases such as:"
2111 msgstr ""
2112
2113 #. type: textblock
2114 #: ../src/guestfs.pod:1083
2115 msgid "the data (file etc) not being present"
2116 msgstr ""
2117
2118 #. type: textblock
2119 #: ../src/guestfs.pod:1087
2120 msgid "being present but empty"
2121 msgstr ""
2122
2123 #. type: textblock
2124 #: ../src/guestfs.pod:1091
2125 msgid "being much larger than normal"
2126 msgstr ""
2127
2128 #. type: textblock
2129 #: ../src/guestfs.pod:1095
2130 msgid "containing arbitrary 8 bit data"
2131 msgstr ""
2132
2133 #. type: textblock
2134 #: ../src/guestfs.pod:1099
2135 msgid "being in an unexpected character encoding"
2136 msgstr ""
2137
2138 #. type: textblock
2139 #: ../src/guestfs.pod:1103
2140 msgid "containing homoglyphs."
2141 msgstr ""
2142
2143 #. type: =head2
2144 #: ../src/guestfs.pod:1107
2145 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2146 msgstr ""
2147
2148 #. type: textblock
2149 #: ../src/guestfs.pod:1109
2150 msgid ""
2151 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2152 "(VFS) module can sometimes be escalated into exploits by deliberately "
2153 "creating a malicious, malformed filesystem.  These exploits are very severe "
2154 "for two reasons.  Firstly there are very many filesystem drivers in the "
2155 "kernel, and many of them are infrequently used and not much developer "
2156 "attention has been paid to the code.  Linux userspace helps potential "
2157 "crackers by detecting the filesystem type and automatically choosing the "
2158 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2159 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2160 "exploit (worse in some ways), giving immediate and total access to the "
2161 "system right down to the hardware level."
2162 msgstr ""
2163
2164 #. type: textblock
2165 #: ../src/guestfs.pod:1122
2166 msgid ""
2167 "That explains why you should never mount a filesystem from an untrusted "
2168 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2169 "inside a qemu virtual machine, usually running as a non-root user.  The "
2170 "attacker would need to write a filesystem which first exploited the kernel, "
2171 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2172 "the libguestfs protocol, and finally to be as serious as the host kernel "
2173 "exploit it would need to escalate its privileges to root.  This multi-step "
2174 "escalation, performed by a static piece of data, is thought to be extremely "
2175 "hard to do, although we never say 'never' about security issues."
2176 msgstr ""
2177
2178 #. type: textblock
2179 #: ../src/guestfs.pod:1133
2180 msgid ""
2181 "In any case callers can reduce the attack surface by forcing the filesystem "
2182 "type when mounting (use L</guestfs_mount_vfs>)."
2183 msgstr ""
2184
2185 #. type: =head2
2186 #: ../src/guestfs.pod:1136
2187 msgid "PROTOCOL SECURITY"
2188 msgstr ""
2189
2190 #. type: textblock
2191 #: ../src/guestfs.pod:1138
2192 msgid ""
2193 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2194 "defined upper message size.  However a program that uses libguestfs must "
2195 "also take care - for example you can write a program that downloads a binary "
2196 "from a disk image and executes it locally, and no amount of protocol "
2197 "security will save you from the consequences."
2198 msgstr ""
2199
2200 #. type: =head2
2201 #: ../src/guestfs.pod:1144
2202 msgid "INSPECTION SECURITY"
2203 msgstr ""
2204
2205 #. type: textblock
2206 #: ../src/guestfs.pod:1146
2207 msgid ""
2208 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2209 "directly from the guest, and these could contain any 8 bit data.  Callers "
2210 "should be careful to escape these before printing them to a structured file "
2211 "(for example, use HTML escaping if creating a web page)."
2212 msgstr ""
2213
2214 #. type: textblock
2215 #: ../src/guestfs.pod:1152
2216 msgid ""
2217 "Guest configuration may be altered in unusual ways by the administrator of "
2218 "the virtual machine, and may not reflect reality (particularly for untrusted "
2219 "or actively malicious guests).  For example we parse the hostname from "
2220 "configuration files like C</etc/sysconfig/network> that we find in the "
2221 "guest, but the guest administrator can easily manipulate these files to "
2222 "provide the wrong hostname."
2223 msgstr ""
2224
2225 #. type: textblock
2226 #: ../src/guestfs.pod:1160
2227 msgid ""
2228 "The inspection API parses guest configuration using two external libraries: "
2229 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2230 "designed to be robust in the face of malicious data, although denial of "
2231 "service attacks are still possible, for example with oversized configuration "
2232 "files."
2233 msgstr ""
2234
2235 #. type: =head2
2236 #: ../src/guestfs.pod:1166
2237 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2238 msgstr ""
2239
2240 #. type: textblock
2241 #: ../src/guestfs.pod:1168
2242 msgid ""
2243 "Be very cautious about running commands from the guest.  By running a "
2244 "command in the guest, you are giving CPU time to a binary that you do not "
2245 "control, under the same user account as the library, albeit wrapped in qemu "
2246 "virtualization.  More information and alternatives can be found in the "
2247 "section L</RUNNING COMMANDS>."
2248 msgstr ""
2249
2250 #. type: =head2
2251 #: ../src/guestfs.pod:1174
2252 msgid "CVE-2010-3851"
2253 msgstr ""
2254
2255 #. type: textblock
2256 #: ../src/guestfs.pod:1176
2257 msgid "https://bugzilla.redhat.com/642934"
2258 msgstr ""
2259
2260 #. type: textblock
2261 #: ../src/guestfs.pod:1178
2262 msgid ""
2263 "This security bug concerns the automatic disk format detection that qemu "
2264 "does on disk images."
2265 msgstr ""
2266
2267 #. type: textblock
2268 #: ../src/guestfs.pod:1181
2269 msgid ""
2270 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2271 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2272 "for one of the known headers, and if none is found then assuming the disk "
2273 "image must be raw."
2274 msgstr ""
2275
2276 #. type: textblock
2277 #: ../src/guestfs.pod:1186
2278 msgid ""
2279 "This allows a guest which has been given a raw disk image to write some "
2280 "other header.  At next boot (or when the disk image is accessed by "
2281 "libguestfs) qemu would do autodetection and think the disk image format was, "
2282 "say, qcow2 based on the header written by the guest."
2283 msgstr ""
2284
2285 #. type: textblock
2286 #: ../src/guestfs.pod:1191
2287 msgid ""
2288 "This in itself would not be a problem, but qcow2 offers many features, one "
2289 "of which is to allow a disk image to refer to another image (called the "
2290 "\"backing disk\").  It does this by placing the path to the backing disk "
2291 "into the qcow2 header.  This path is not validated and could point to any "
2292 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2293 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2294 "control of the attacker."
2295 msgstr ""
2296
2297 #. type: textblock
2298 #: ../src/guestfs.pod:1199
2299 msgid "In libguestfs this is rather hard to exploit except under two circumstances:"
2300 msgstr ""
2301
2302 #. type: textblock
2303 #: ../src/guestfs.pod:1206
2304 msgid "You have enabled the network or have opened the disk in write mode."
2305 msgstr ""
2306
2307 #. type: textblock
2308 #: ../src/guestfs.pod:1210
2309 msgid ""
2310 "You are also running untrusted code from the guest (see L</RUNNING "
2311 "COMMANDS>)."
2312 msgstr ""
2313
2314 #. type: textblock
2315 #: ../src/guestfs.pod:1215
2316 msgid ""
2317 "The way to avoid this is to specify the expected disk format when adding "
2318 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2319 "should always do this if the disk is raw format, and it's a good idea for "
2320 "other cases too."
2321 msgstr ""
2322
2323 #. type: textblock
2324 #: ../src/guestfs.pod:1220
2325 msgid ""
2326 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2327 "format is fetched from libvirt and passed through."
2328 msgstr ""
2329
2330 #. type: textblock
2331 #: ../src/guestfs.pod:1223
2332 msgid ""
2333 "For libguestfs tools, use the I<--format> command line parameter as "
2334 "appropriate."
2335 msgstr ""
2336
2337 #. type: =head1
2338 #: ../src/guestfs.pod:1226
2339 msgid "CONNECTION MANAGEMENT"
2340 msgstr ""
2341
2342 #. type: =head2
2343 #: ../src/guestfs.pod:1228
2344 msgid "guestfs_h *"
2345 msgstr ""
2346
2347 #. type: textblock
2348 #: ../src/guestfs.pod:1230
2349 msgid ""
2350 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2351 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2352 "handle and release all resources used."
2353 msgstr ""
2354
2355 #. type: textblock
2356 #: ../src/guestfs.pod:1234
2357 msgid ""
2358 "For information on using multiple handles and threads, see the section "
2359 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> below."
2360 msgstr ""
2361
2362 #. type: =head2
2363 #: ../src/guestfs.pod:1237
2364 msgid "guestfs_create"
2365 msgstr ""
2366
2367 #. type: verbatim
2368 #: ../src/guestfs.pod:1239
2369 #, no-wrap
2370 msgid ""
2371 " guestfs_h *guestfs_create (void);\n"
2372 "\n"
2373 msgstr ""
2374
2375 #. type: textblock
2376 #: ../src/guestfs.pod:1241
2377 msgid "Create a connection handle."
2378 msgstr ""
2379
2380 #. type: textblock
2381 #: ../src/guestfs.pod:1243
2382 msgid ""
2383 "You have to call L</guestfs_add_drive_opts> (or one of the equivalent calls) "
2384 "on the handle at least once."
2385 msgstr ""
2386
2387 #. type: textblock
2388 #: ../src/guestfs.pod:1246
2389 msgid ""
2390 "This function returns a non-NULL pointer to a handle on success or NULL on "
2391 "error."
2392 msgstr ""
2393
2394 #. type: textblock
2395 #: ../src/guestfs.pod:1249
2396 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2397 msgstr ""
2398
2399 #. type: textblock
2400 #: ../src/guestfs.pod:1251
2401 msgid ""
2402 "You may also want to configure error handling for the handle.  See L</ERROR "
2403 "HANDLING> section below."
2404 msgstr ""
2405
2406 #. type: =head2
2407 #: ../src/guestfs.pod:1254
2408 msgid "guestfs_close"
2409 msgstr ""
2410
2411 #. type: verbatim
2412 #: ../src/guestfs.pod:1256
2413 #, no-wrap
2414 msgid ""
2415 " void guestfs_close (guestfs_h *g);\n"
2416 "\n"
2417 msgstr ""
2418
2419 #. type: textblock
2420 #: ../src/guestfs.pod:1258
2421 msgid "This closes the connection handle and frees up all resources used."
2422 msgstr ""
2423
2424 #. type: =head1
2425 #: ../src/guestfs.pod:1260
2426 msgid "ERROR HANDLING"
2427 msgstr ""
2428
2429 #. type: textblock
2430 #: ../src/guestfs.pod:1262
2431 msgid ""
2432 "API functions can return errors.  For example, almost all functions that "
2433 "return C<int> will return C<-1> to indicate an error."
2434 msgstr ""
2435
2436 #. type: textblock
2437 #: ../src/guestfs.pod:1265
2438 msgid ""
2439 "Additional information is available for errors: an error message string and "
2440 "optionally an error number (errno) if the thing that failed was a system "
2441 "call."
2442 msgstr ""
2443
2444 #. type: textblock
2445 #: ../src/guestfs.pod:1269
2446 msgid ""
2447 "You can get at the additional information about the last error on the handle "
2448 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2449 "up an error handler with L</guestfs_set_error_handler>."
2450 msgstr ""
2451
2452 #. type: textblock
2453 #: ../src/guestfs.pod:1274
2454 msgid ""
2455 "When the handle is created, a default error handler is installed which "
2456 "prints the error message string to C<stderr>.  For small short-running "
2457 "command line programs it is sufficient to do:"
2458 msgstr ""
2459
2460 #. type: verbatim
2461 #: ../src/guestfs.pod:1278
2462 #, no-wrap
2463 msgid ""
2464 " if (guestfs_launch (g) == -1)\n"
2465 "   exit (EXIT_FAILURE);\n"
2466 "\n"
2467 msgstr ""
2468
2469 #. type: textblock
2470 #: ../src/guestfs.pod:1281
2471 msgid ""
2472 "since the default error handler will ensure that an error message has been "
2473 "printed to C<stderr> before the program exits."
2474 msgstr ""
2475
2476 #. type: textblock
2477 #: ../src/guestfs.pod:1284
2478 msgid ""
2479 "For other programs the caller will almost certainly want to install an "
2480 "alternate error handler or do error handling in-line like this:"
2481 msgstr ""
2482
2483 #. type: verbatim
2484 #: ../src/guestfs.pod:1287
2485 #, no-wrap
2486 msgid ""
2487 " g = guestfs_create ();\n"
2488 " \n"
2489 msgstr ""
2490
2491 #. type: verbatim
2492 #: ../src/guestfs.pod:1289
2493 #, no-wrap
2494 msgid ""
2495 " /* This disables the default behaviour of printing errors\n"
2496 "    on stderr. */\n"
2497 " guestfs_set_error_handler (g, NULL, NULL);\n"
2498 " \n"
2499 msgstr ""
2500
2501 #. type: verbatim
2502 #: ../src/guestfs.pod:1293
2503 #, no-wrap
2504 msgid ""
2505 " if (guestfs_launch (g) == -1) {\n"
2506 "   /* Examine the error message and print it etc. */\n"
2507 "   char *msg = guestfs_last_error (g);\n"
2508 "   int errnum = guestfs_last_errno (g);\n"
2509 "   fprintf (stderr, \"%s\\n\", msg);\n"
2510 "   /* ... */\n"
2511 "  }\n"
2512 "\n"
2513 msgstr ""
2514
2515 #. type: textblock
2516 #: ../src/guestfs.pod:1301
2517 msgid ""
2518 "Out of memory errors are handled differently.  The default action is to call "
2519 "L<abort(3)>.  If this is undesirable, then you can set a handler using "
2520 "L</guestfs_set_out_of_memory_handler>."
2521 msgstr ""
2522
2523 #. type: textblock
2524 #: ../src/guestfs.pod:1305
2525 msgid ""
2526 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2527 "because there is no handle if this happens there is no way to get additional "
2528 "error information.  However L</guestfs_create> is supposed to be a "
2529 "lightweight operation which can only fail because of insufficient memory (it "
2530 "returns NULL in this case)."
2531 msgstr ""
2532
2533 #. type: =head2
2534 #: ../src/guestfs.pod:1311
2535 msgid "guestfs_last_error"
2536 msgstr ""
2537
2538 #. type: verbatim
2539 #: ../src/guestfs.pod:1313
2540 #, no-wrap
2541 msgid ""
2542 " const char *guestfs_last_error (guestfs_h *g);\n"
2543 "\n"
2544 msgstr ""
2545
2546 #. type: textblock
2547 #: ../src/guestfs.pod:1315
2548 msgid ""
2549 "This returns the last error message that happened on C<g>.  If there has not "
2550 "been an error since the handle was created, then this returns C<NULL>."
2551 msgstr ""
2552
2553 #. type: textblock
2554 #: ../src/guestfs.pod:1319
2555 msgid ""
2556 "The lifetime of the returned string is until the next error occurs, or "
2557 "L</guestfs_close> is called."
2558 msgstr ""
2559
2560 #. type: =head2
2561 #: ../src/guestfs.pod:1322
2562 msgid "guestfs_last_errno"
2563 msgstr ""
2564
2565 #. type: verbatim
2566 #: ../src/guestfs.pod:1324
2567 #, no-wrap
2568 msgid ""
2569 " int guestfs_last_errno (guestfs_h *g);\n"
2570 "\n"
2571 msgstr ""
2572
2573 #. type: textblock
2574 #: ../src/guestfs.pod:1326
2575 msgid "This returns the last error number (errno) that happened on C<g>."
2576 msgstr ""
2577
2578 #. type: textblock
2579 #: ../src/guestfs.pod:1328
2580 msgid "If successful, an errno integer not equal to zero is returned."
2581 msgstr ""
2582
2583 #. type: textblock
2584 #: ../src/guestfs.pod:1330
2585 msgid "If no error, this returns 0.  This call can return 0 in three situations:"
2586 msgstr ""
2587
2588 #. type: textblock
2589 #: ../src/guestfs.pod:1337
2590 msgid "There has not been any error on the handle."
2591 msgstr ""
2592
2593 #. type: textblock
2594 #: ../src/guestfs.pod:1341
2595 msgid ""
2596 "There has been an error but the errno was meaningless.  This corresponds to "
2597 "the case where the error did not come from a failed system call, but for "
2598 "some other reason."
2599 msgstr ""
2600
2601 #. type: textblock
2602 #: ../src/guestfs.pod:1347
2603 msgid ""
2604 "There was an error from a failed system call, but for some reason the errno "
2605 "was not captured and returned.  This usually indicates a bug in libguestfs."
2606 msgstr ""
2607
2608 #. type: textblock
2609 #: ../src/guestfs.pod:1353
2610 msgid ""
2611 "Libguestfs tries to convert the errno from inside the applicance into a "
2612 "corresponding errno for the caller (not entirely trivial: the appliance "
2613 "might be running a completely different operating system from the library "
2614 "and error numbers are not standardized across Un*xen).  If this could not be "
2615 "done, then the error is translated to C<EINVAL>.  In practice this should "
2616 "only happen in very rare circumstances."
2617 msgstr ""
2618
2619 #. type: =head2
2620 #: ../src/guestfs.pod:1361
2621 msgid "guestfs_set_error_handler"
2622 msgstr ""
2623
2624 #. type: verbatim
2625 #: ../src/guestfs.pod:1363
2626 #, no-wrap
2627 msgid ""
2628 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2629 "                                           void *opaque,\n"
2630 "                                           const char *msg);\n"
2631 " void guestfs_set_error_handler (guestfs_h *g,\n"
2632 "                                 guestfs_error_handler_cb cb,\n"
2633 "                                 void *opaque);\n"
2634 "\n"
2635 msgstr ""
2636
2637 #. type: textblock
2638 #: ../src/guestfs.pod:1370
2639 msgid ""
2640 "The callback C<cb> will be called if there is an error.  The parameters "
2641 "passed to the callback are an opaque data pointer and the error message "
2642 "string."
2643 msgstr ""
2644
2645 #. type: textblock
2646 #: ../src/guestfs.pod:1374
2647 msgid ""
2648 "C<errno> is not passed to the callback.  To get that the callback must call "
2649 "L</guestfs_last_errno>."
2650 msgstr ""
2651
2652 #. type: textblock
2653 #: ../src/guestfs.pod:1377
2654 msgid ""
2655 "Note that the message string C<msg> is freed as soon as the callback "
2656 "function returns, so if you want to stash it somewhere you must make your "
2657 "own copy."
2658 msgstr ""
2659
2660 #. type: textblock
2661 #: ../src/guestfs.pod:1381
2662 msgid "The default handler prints messages on C<stderr>."
2663 msgstr ""
2664
2665 #. type: textblock
2666 #: ../src/guestfs.pod:1383
2667 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2668 msgstr ""
2669
2670 #. type: =head2
2671 #: ../src/guestfs.pod:1385
2672 msgid "guestfs_get_error_handler"
2673 msgstr ""
2674
2675 #. type: verbatim
2676 #: ../src/guestfs.pod:1387
2677 #, no-wrap
2678 msgid ""
2679 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2680 "                                                     void **opaque_rtn);\n"
2681 "\n"
2682 msgstr ""
2683
2684 #. type: textblock
2685 #: ../src/guestfs.pod:1390
2686 msgid "Returns the current error handler callback."
2687 msgstr ""
2688
2689 #. type: =head2
2690 #: ../src/guestfs.pod:1392
2691 msgid "guestfs_set_out_of_memory_handler"
2692 msgstr ""
2693
2694 #. type: verbatim
2695 #: ../src/guestfs.pod:1394
2696 #, no-wrap
2697 msgid ""
2698 " typedef void (*guestfs_abort_cb) (void);\n"
2699 " void guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2700 "                                         guestfs_abort_cb);\n"
2701 "\n"
2702 msgstr ""
2703
2704 #. type: textblock
2705 #: ../src/guestfs.pod:1398
2706 msgid ""
2707 "The callback C<cb> will be called if there is an out of memory situation.  "
2708 "I<Note this callback must not return>."
2709 msgstr ""
2710
2711 #. type: textblock
2712 #: ../src/guestfs.pod:1401
2713 msgid "The default is to call L<abort(3)>."
2714 msgstr ""
2715
2716 #. type: textblock
2717 #: ../src/guestfs.pod:1403
2718 msgid "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2719 msgstr ""
2720
2721 #. type: =head2
2722 #: ../src/guestfs.pod:1406
2723 msgid "guestfs_get_out_of_memory_handler"
2724 msgstr ""
2725
2726 #. type: verbatim
2727 #: ../src/guestfs.pod:1408
2728 #, no-wrap
2729 msgid ""
2730 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2731 "\n"
2732 msgstr ""
2733
2734 #. type: textblock
2735 #: ../src/guestfs.pod:1410
2736 msgid "This returns the current out of memory handler."
2737 msgstr ""
2738
2739 #. type: =head1
2740 #: ../src/guestfs.pod:1412
2741 msgid "API CALLS"
2742 msgstr ""
2743
2744 #. type: textblock
2745 #: ../src/guestfs.pod:1414 ../fish/guestfish.pod:958
2746 msgid "@ACTIONS@"
2747 msgstr ""
2748
2749 #. type: =head1
2750 #: ../src/guestfs.pod:1416
2751 msgid "STRUCTURES"
2752 msgstr ""
2753
2754 #. type: textblock
2755 #: ../src/guestfs.pod:1418
2756 msgid "@STRUCTS@"
2757 msgstr ""
2758
2759 #. type: =head1
2760 #: ../src/guestfs.pod:1420
2761 msgid "AVAILABILITY"
2762 msgstr ""
2763
2764 #. type: =head2
2765 #: ../src/guestfs.pod:1422
2766 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2767 msgstr ""
2768
2769 #. type: textblock
2770 #: ../src/guestfs.pod:1424
2771 msgid ""
2772 "Using L</guestfs_available> you can test availability of the following "
2773 "groups of functions.  This test queries the appliance to see if the "
2774 "appliance you are currently using supports the functionality."
2775 msgstr ""
2776
2777 #. type: textblock
2778 #: ../src/guestfs.pod:1429
2779 msgid "@AVAILABILITY@"
2780 msgstr ""
2781
2782 #. type: =head2
2783 #: ../src/guestfs.pod:1431
2784 msgid "GUESTFISH supported COMMAND"
2785 msgstr ""
2786
2787 #. type: textblock
2788 #: ../src/guestfs.pod:1433
2789 msgid ""
2790 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2791 "prints out the available groups and whether they are supported by this build "
2792 "of libguestfs.  Note however that you have to do C<run> first."
2793 msgstr ""
2794
2795 #. type: =head2
2796 #: ../src/guestfs.pod:1438
2797 msgid "SINGLE CALLS AT COMPILE TIME"
2798 msgstr ""
2799
2800 #. type: textblock
2801 #: ../src/guestfs.pod:1440
2802 msgid ""
2803 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2804 "function, such as:"
2805 msgstr ""
2806
2807 #. type: verbatim
2808 #: ../src/guestfs.pod:1443
2809 #, no-wrap
2810 msgid ""
2811 " #define LIBGUESTFS_HAVE_DD 1\n"
2812 "\n"
2813 msgstr ""
2814
2815 #. type: textblock
2816 #: ../src/guestfs.pod:1445
2817 msgid "if L</guestfs_dd> is available."
2818 msgstr ""
2819
2820 #. type: textblock
2821 #: ../src/guestfs.pod:1447
2822 msgid ""
2823 "Before version 1.5.8, if you needed to test whether a single libguestfs "
2824 "function is available at compile time, we recommended using build tools such "
2825 "as autoconf or cmake.  For example in autotools you could use:"
2826 msgstr ""
2827
2828 #. type: verbatim
2829 #: ../src/guestfs.pod:1452
2830 #, no-wrap
2831 msgid ""
2832 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
2833 " AC_CHECK_FUNCS([guestfs_dd])\n"
2834 "\n"
2835 msgstr ""
2836
2837 #. type: textblock
2838 #: ../src/guestfs.pod:1455
2839 msgid ""
2840 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
2841 "in your program."
2842 msgstr ""
2843
2844 #. type: =head2
2845 #: ../src/guestfs.pod:1458
2846 msgid "SINGLE CALLS AT RUN TIME"
2847 msgstr ""
2848
2849 #. type: textblock
2850 #: ../src/guestfs.pod:1460
2851 msgid ""
2852 "Testing at compile time doesn't guarantee that a function really exists in "
2853 "the library.  The reason is that you might be dynamically linked against a "
2854 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
2855 "This situation unfortunately results in a segmentation fault, which is a "
2856 "shortcoming of the C dynamic linking system itself."
2857 msgstr ""
2858
2859 #. type: textblock
2860 #: ../src/guestfs.pod:1467
2861 msgid ""
2862 "You can use L<dlopen(3)> to test if a function is available at run time, as "
2863 "in this example program (note that you still need the compile time check as "
2864 "well):"
2865 msgstr ""
2866
2867 #. type: verbatim
2868 #: ../src/guestfs.pod:1471
2869 #, no-wrap
2870 msgid ""
2871 " #include <stdio.h>\n"
2872 " #include <stdlib.h>\n"
2873 " #include <unistd.h>\n"
2874 " #include <dlfcn.h>\n"
2875 " #include <guestfs.h>\n"
2876 " \n"
2877 msgstr ""
2878
2879 #. type: verbatim
2880 #: ../src/guestfs.pod:1477
2881 #, no-wrap
2882 msgid ""
2883 " main ()\n"
2884 " {\n"
2885 " #ifdef LIBGUESTFS_HAVE_DD\n"
2886 "   void *dl;\n"
2887 "   int has_function;\n"
2888 " \n"
2889 msgstr ""
2890
2891 #. type: verbatim
2892 #: ../src/guestfs.pod:1483
2893 #, no-wrap
2894 msgid ""
2895 "   /* Test if the function guestfs_dd is really available. */\n"
2896 "   dl = dlopen (NULL, RTLD_LAZY);\n"
2897 "   if (!dl) {\n"
2898 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
2899 "     exit (EXIT_FAILURE);\n"
2900 "   }\n"
2901 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
2902 "   dlclose (dl);\n"
2903 " \n"
2904 msgstr ""
2905
2906 #. type: verbatim
2907 #: ../src/guestfs.pod:1492
2908 #, no-wrap
2909 msgid ""
2910 "   if (!has_function)\n"
2911 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
2912 "   else {\n"
2913 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
2914 "     /* Now it's safe to call\n"
2915 "     guestfs_dd (g, \"foo\", \"bar\");\n"
2916 "     */\n"
2917 "   }\n"
2918 " #else\n"
2919 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
2920 " #endif\n"
2921 "  }\n"
2922 "\n"
2923 msgstr ""
2924
2925 #. type: textblock
2926 #: ../src/guestfs.pod:1505
2927 msgid ""
2928 "You may think the above is an awful lot of hassle, and it is.  There are "
2929 "other ways outside of the C linking system to ensure that this kind of "
2930 "incompatibility never arises, such as using package versioning:"
2931 msgstr ""
2932
2933 #. type: verbatim
2934 #: ../src/guestfs.pod:1510
2935 #, no-wrap
2936 msgid ""
2937 " Requires: libguestfs >= 1.0.80\n"
2938 "\n"
2939 msgstr ""
2940
2941 #. type: =head1
2942 #: ../src/guestfs.pod:1512
2943 msgid "CALLS WITH OPTIONAL ARGUMENTS"
2944 msgstr ""
2945
2946 #. type: textblock
2947 #: ../src/guestfs.pod:1514
2948 msgid ""
2949 "A recent feature of the API is the introduction of calls which take optional "
2950 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
2951 "takes variable arguments (ie. C<...>), as in this example:"
2952 msgstr ""
2953
2954 #. type: verbatim
2955 #: ../src/guestfs.pod:1519
2956 #, no-wrap
2957 msgid ""
2958 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
2959 "\n"
2960 msgstr ""
2961
2962 #. type: textblock
2963 #: ../src/guestfs.pod:1521
2964 msgid ""
2965 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
2966 "call with no optional arguments specified:"
2967 msgstr ""
2968
2969 #. type: verbatim
2970 #: ../src/guestfs.pod:1524
2971 #, no-wrap
2972 msgid ""
2973 " guestfs_add_drive_opts (g, filename, -1);\n"
2974 "\n"
2975 msgstr ""
2976
2977 #. type: textblock
2978 #: ../src/guestfs.pod:1526
2979 msgid "With a single optional argument:"
2980 msgstr ""
2981
2982 #. type: verbatim
2983 #: ../src/guestfs.pod:1528
2984 #, no-wrap
2985 msgid ""
2986 " guestfs_add_drive_opts (g, filename,\n"
2987 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
2988 "                         -1);\n"
2989 "\n"
2990 msgstr ""
2991
2992 #. type: textblock
2993 #: ../src/guestfs.pod:1532
2994 msgid "With two:"
2995 msgstr ""
2996
2997 #. type: verbatim
2998 #: ../src/guestfs.pod:1534
2999 #, no-wrap
3000 msgid ""
3001 " guestfs_add_drive_opts (g, filename,\n"
3002 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3003 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3004 "                         -1);\n"
3005 "\n"
3006 msgstr ""
3007
3008 #. type: textblock
3009 #: ../src/guestfs.pod:1539
3010 msgid ""
3011 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3012 "happen!"
3013 msgstr ""
3014
3015 #. type: =head2
3016 #: ../src/guestfs.pod:1542
3017 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3018 msgstr ""
3019
3020 #. type: textblock
3021 #: ../src/guestfs.pod:1544
3022 msgid ""
3023 "The second variant has the same name with the suffix C<_va>, which works the "
3024 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3025 "example function, this is declared:"
3026 msgstr ""
3027
3028 #. type: verbatim
3029 #: ../src/guestfs.pod:1548
3030 #, no-wrap
3031 msgid ""
3032 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3033 "                                va_list args);\n"
3034 "\n"
3035 msgstr ""
3036
3037 #. type: =head2
3038 #: ../src/guestfs.pod:1551
3039 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3040 msgstr ""
3041
3042 #. type: textblock
3043 #: ../src/guestfs.pod:1553
3044 msgid ""
3045 "The third variant is useful where you need to construct these calls.  You "
3046 "pass in a structure where you fill in the optional fields.  The structure "
3047 "has a bitmask as the first element which you must set to indicate which "
3048 "fields you have filled in.  For our example function the structure and call "
3049 "are declared:"
3050 msgstr ""
3051
3052 #. type: verbatim
3053 #: ../src/guestfs.pod:1559
3054 #, no-wrap
3055 msgid ""
3056 " struct guestfs_add_drive_opts_argv {\n"
3057 "   uint64_t bitmask;\n"
3058 "   int readonly;\n"
3059 "   const char *format;\n"
3060 "   /* ... */\n"
3061 " };\n"
3062 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3063 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3064 "\n"
3065 msgstr ""
3066
3067 #. type: textblock
3068 #: ../src/guestfs.pod:1568
3069 msgid "You could call it like this:"
3070 msgstr ""
3071
3072 #. type: verbatim
3073 #: ../src/guestfs.pod:1570
3074 #, no-wrap
3075 msgid ""
3076 " struct guestfs_add_drive_opts_argv optargs = {\n"
3077 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3078 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3079 "   .readonly = 1,\n"
3080 "   .format = \"qcow2\"\n"
3081 " };\n"
3082 " \n"
3083 msgstr ""
3084
3085 #. type: verbatim
3086 #: ../src/guestfs.pod:1577
3087 #, no-wrap
3088 msgid ""
3089 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3090 "\n"
3091 msgstr ""
3092
3093 #. type: textblock
3094 #: ../src/guestfs.pod:1579 ../src/guestfs-actions.pod:11 ../src/guestfs-actions.pod:1839 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1250 ../tools/virt-win-reg.pl:532
3095 msgid "Notes:"
3096 msgstr ""
3097
3098 #. type: textblock
3099 #: ../src/guestfs.pod:1585
3100 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3101 msgstr ""
3102
3103 #. type: textblock
3104 #: ../src/guestfs.pod:1590
3105 msgid "You do not need to fill in all fields of the structure."
3106 msgstr ""
3107
3108 #. type: textblock
3109 #: ../src/guestfs.pod:1594
3110 msgid ""
3111 "There must be a one-to-one correspondence between fields of the structure "
3112 "that are filled in, and bits set in the bitmask."
3113 msgstr ""
3114
3115 #. type: =head2
3116 #: ../src/guestfs.pod:1599
3117 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3118 msgstr ""
3119
3120 #. type: textblock
3121 #: ../src/guestfs.pod:1601
3122 msgid ""
3123 "In other languages, optional arguments are expressed in the way that is "
3124 "natural for that language.  We refer you to the language-specific "
3125 "documentation for more details on that."
3126 msgstr ""
3127
3128 #. type: textblock
3129 #: ../src/guestfs.pod:1605
3130 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3131 msgstr ""
3132
3133 #. type: =head2
3134 #: ../src/guestfs.pod:1607
3135 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3136 msgstr ""
3137
3138 #. type: textblock
3139 #: ../src/guestfs.pod:1609
3140 msgid ""
3141 "The child process generates events in some situations.  Current events "
3142 "include: receiving a log message, the child process exits."
3143 msgstr ""
3144
3145 #. type: textblock
3146 #: ../src/guestfs.pod:1612
3147 msgid ""
3148 "Use the C<guestfs_set_*_callback> functions to set a callback for different "
3149 "types of events."
3150 msgstr ""
3151
3152 #. type: textblock
3153 #: ../src/guestfs.pod:1615
3154 msgid ""
3155 "Only I<one callback of each type> can be registered for each handle.  "
3156 "Calling C<guestfs_set_*_callback> again overwrites the previous callback of "
3157 "that type.  Cancel all callbacks of this type by calling this function with "
3158 "C<cb> set to C<NULL>."
3159 msgstr ""
3160
3161 #. type: =head2
3162 #: ../src/guestfs.pod:1620
3163 msgid "guestfs_set_log_message_callback"
3164 msgstr ""
3165
3166 #. type: verbatim
3167 #: ../src/guestfs.pod:1622
3168 #, no-wrap
3169 msgid ""
3170 " typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque,\n"
3171 "                                         char *buf, int len);\n"
3172 " void guestfs_set_log_message_callback (guestfs_h *g,\n"
3173 "                                        guestfs_log_message_cb cb,\n"
3174 "                                        void *opaque);\n"
3175 "\n"
3176 msgstr ""
3177
3178 #. type: textblock
3179 #: ../src/guestfs.pod:1628
3180 msgid ""
3181 "The callback function C<cb> will be called whenever qemu or the guest writes "
3182 "anything to the console."
3183 msgstr ""
3184
3185 #. type: textblock
3186 #: ../src/guestfs.pod:1631
3187 msgid "Use this function to capture kernel messages and similar."
3188 msgstr ""
3189
3190 #. type: textblock
3191 #: ../src/guestfs.pod:1633
3192 msgid ""
3193 "Normally there is no log message handler, and log messages are just "
3194 "discarded."
3195 msgstr ""
3196
3197 #. type: =head2
3198 #: ../src/guestfs.pod:1636
3199 msgid "guestfs_set_subprocess_quit_callback"
3200 msgstr ""
3201
3202 #. type: verbatim
3203 #: ../src/guestfs.pod:1638
3204 #, no-wrap
3205 msgid ""
3206 " typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);\n"
3207 " void guestfs_set_subprocess_quit_callback (guestfs_h *g,\n"
3208 "                                            guestfs_subprocess_quit_cb cb,\n"
3209 "                                            void *opaque);\n"
3210 "\n"
3211 msgstr ""
3212
3213 #. type: textblock
3214 #: ../src/guestfs.pod:1643
3215 msgid ""
3216 "The callback function C<cb> will be called when the child process quits, "
3217 "either asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3218 "corresponds to a transition from any state to the CONFIG state)."
3219 msgstr ""
3220
3221 #. type: =head2
3222 #: ../src/guestfs.pod:1648
3223 msgid "guestfs_set_launch_done_callback"
3224 msgstr ""
3225
3226 #. type: verbatim
3227 #: ../src/guestfs.pod:1650
3228 #, no-wrap
3229 msgid ""
3230 " typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);\n"
3231 " void guestfs_set_launch_done_callback (guestfs_h *g,\n"
3232 "                                        guestfs_launch_done_cb cb,\n"
3233 "                                        void *opaque);\n"
3234 "\n"
3235 msgstr ""
3236
3237 #. type: textblock
3238 #: ../src/guestfs.pod:1655
3239 msgid ""
3240 "The callback function C<cb> will be called when the child process becomes "
3241 "ready first time after it has been launched.  (This corresponds to a "
3242 "transition from LAUNCHING to the READY state)."
3243 msgstr ""
3244
3245 #. type: =head2
3246 #: ../src/guestfs.pod:1659
3247 msgid "guestfs_set_close_callback"
3248 msgstr ""
3249
3250 #. type: verbatim
3251 #: ../src/guestfs.pod:1661
3252 #, no-wrap
3253 msgid ""
3254 " typedef void (*guestfs_close_cb) (guestfs_h *g, void *opaque);\n"
3255 " void guestfs_set_close_callback (guestfs_h *g,\n"
3256 "                                  guestfs_close_cb cb,\n"
3257 "                                  void *opaque);\n"
3258 "\n"
3259 msgstr ""
3260
3261 #. type: textblock
3262 #: ../src/guestfs.pod:1666
3263 msgid ""
3264 "The callback function C<cb> will be called while the handle is being closed "
3265 "(synchronously from L</guestfs_close>)."
3266 msgstr ""
3267
3268 #. type: textblock
3269 #: ../src/guestfs.pod:1669
3270 msgid ""
3271 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3272 "handles that are open when the program exits.  This means that this callback "
3273 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3274 "problems in higher-level languages (eg. if your HLL interpreter has already "
3275 "been cleaned up by the time this is called, and if your callback then jumps "
3276 "into some HLL function)."
3277 msgstr ""
3278
3279 #. type: =head2
3280 #: ../src/guestfs.pod:1677
3281 msgid "guestfs_set_progress_callback"
3282 msgstr ""
3283
3284 #. type: verbatim
3285 #: ../src/guestfs.pod:1679
3286 #, no-wrap
3287 msgid ""
3288 " typedef void (*guestfs_progress_cb) (guestfs_h *g, void *opaque,\n"
3289 "                                      int proc_nr, int serial,\n"
3290 "                                      uint64_t position, uint64_t total);\n"
3291 " void guestfs_set_progress_callback (guestfs_h *g,\n"
3292 "                                     guestfs_progress_cb cb,\n"
3293 "                                     void *opaque);\n"
3294 "\n"
3295 msgstr ""
3296
3297 #. type: textblock
3298 #: ../src/guestfs.pod:1686
3299 msgid ""
3300 "Some long-running operations can generate progress messages.  If this "
3301 "callback is registered, then it will be called each time a progress message "
3302 "is generated (usually two seconds after the operation started, and three "
3303 "times per second thereafter until it completes, although the frequency may "
3304 "change in future versions)."
3305 msgstr ""
3306
3307 #. type: textblock
3308 #: ../src/guestfs.pod:1692
3309 msgid ""
3310 "The callback receives two numbers: C<position> and C<total>.  The units of "
3311 "C<total> are not defined, although for some operations C<total> may relate "
3312 "in some way to the amount of data to be transferred (eg. in bytes or "
3313 "megabytes), and C<position> may be the portion which has been transferred."
3314 msgstr ""
3315
3316 #. type: textblock
3317 #: ../src/guestfs.pod:1698
3318 msgid "The only defined and stable parts of the API are:"
3319 msgstr ""
3320
3321 #. type: textblock
3322 #: ../src/guestfs.pod:1704
3323 msgid ""
3324 "The callback can display to the user some type of progress bar or indicator "
3325 "which shows the ratio of C<position>:C<total>."
3326 msgstr ""
3327
3328 #. type: textblock
3329 #: ../src/guestfs.pod:1709
3330 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3331 msgstr ""
3332
3333 #. type: textblock
3334 #: ../src/guestfs.pod:1713
3335 msgid ""
3336 "If any progress notification is sent during a call, then a final progress "
3337 "notification is always sent when C<position> = C<total> (I<unless> the call "
3338 "fails with an error)."
3339 msgstr ""
3340
3341 #. type: textblock
3342 #: ../src/guestfs.pod:1717
3343 msgid ""
3344 "This is to simplify caller code, so callers can easily set the progress "
3345 "indicator to \"100%\" at the end of the operation, without requiring special "
3346 "code to detect this case."
3347 msgstr ""
3348
3349 #. type: textblock
3350 #: ../src/guestfs.pod:1723
3351 msgid ""
3352 "The callback also receives the procedure number and serial number of the "
3353 "call.  These are only useful for debugging protocol issues, and the callback "
3354 "can normally ignore them.  The callback may want to print these numbers in "
3355 "error messages or debugging messages."
3356 msgstr ""
3357
3358 #. type: =head1
3359 #: ../src/guestfs.pod:1728
3360 msgid "PRIVATE DATA AREA"
3361 msgstr ""
3362
3363 #. type: textblock
3364 #: ../src/guestfs.pod:1730
3365 msgid ""
3366 "You can attach named pieces of private data to the libguestfs handle, and "
3367 "fetch them by name for the lifetime of the handle.  This is called the "
3368 "private data area and is only available from the C API."
3369 msgstr ""
3370
3371 #. type: textblock
3372 #: ../src/guestfs.pod:1734
3373 msgid "To attach a named piece of data, use the following call:"
3374 msgstr ""
3375
3376 #. type: verbatim
3377 #: ../src/guestfs.pod:1736
3378 #, no-wrap
3379 msgid ""
3380 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3381 "\n"
3382 msgstr ""
3383
3384 #. type: textblock
3385 #: ../src/guestfs.pod:1738
3386 msgid ""
3387 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3388 "pointer (which can be C<NULL>).  Any previous item with the same name is "
3389 "overwritten."
3390 msgstr ""
3391
3392 #. type: textblock
3393 #: ../src/guestfs.pod:1742
3394 msgid ""
3395 "You can use any C<key> you want, but names beginning with an underscore "
3396 "character are reserved for internal libguestfs purposes (for implementing "
3397 "language bindings).  It is recommended to prefix the name with some unique "
3398 "string to avoid collisions with other users."
3399 msgstr ""
3400
3401 #. type: textblock
3402 #: ../src/guestfs.pod:1747
3403 msgid "To retrieve the pointer, use:"
3404 msgstr ""
3405
3406 #. type: verbatim
3407 #: ../src/guestfs.pod:1749
3408 #, no-wrap
3409 msgid ""
3410 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3411 "\n"
3412 msgstr ""
3413
3414 #. type: textblock
3415 #: ../src/guestfs.pod:1751
3416 msgid ""
3417 "This function returns C<NULL> if either no data is found associated with "
3418 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3419 "C<NULL>."
3420 msgstr ""
3421
3422 #. type: textblock
3423 #: ../src/guestfs.pod:1755
3424 msgid ""
3425 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3426 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3427 "all.  In particular, libguestfs does I<not> try to free the data when the "
3428 "handle is closed.  If the data must be freed, then the caller must either "
3429 "free it before calling L</guestfs_close> or must set up a close callback to "
3430 "do it (see L</guestfs_set_close_callback>, and note that only one callback "
3431 "can be registered for a handle)."
3432 msgstr ""
3433
3434 #. type: textblock
3435 #: ../src/guestfs.pod:1763
3436 msgid ""
3437 "The private data area is implemented using a hash table, and should be "
3438 "reasonably efficient for moderate numbers of keys."
3439 msgstr ""
3440
3441 #. type: =end
3442 #: ../src/guestfs.pod:1766 ../src/guestfs.pod:1771
3443 msgid "html"
3444 msgstr ""
3445
3446 #. type: textblock
3447 #: ../src/guestfs.pod:1768
3448 msgid ""
3449 "<!-- old anchor for the next section --> <a "
3450 "name=\"state_machine_and_low_level_event_api\"/>"
3451 msgstr ""
3452
3453 #. type: =head1
3454 #: ../src/guestfs.pod:1773
3455 msgid "ARCHITECTURE"
3456 msgstr ""
3457
3458 #. type: textblock
3459 #: ../src/guestfs.pod:1775
3460 msgid ""
3461 "Internally, libguestfs is implemented by running an appliance (a special "
3462 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
3463 "process of the main program."
3464 msgstr ""
3465
3466 #. type: verbatim
3467 #: ../src/guestfs.pod:1779
3468 #, no-wrap
3469 msgid ""
3470 "  ___________________\n"
3471 " /                   \\\n"
3472 " | main program      |\n"
3473 " |                   |\n"
3474 " |                   |           child process / appliance\n"
3475 " |                   |           __________________________\n"
3476 " |                   |          / qemu                     \\\n"
3477 " +-------------------+   RPC    |      +-----------------+ |\n"
3478 " | libguestfs     <--------------------> guestfsd        | |\n"
3479 " |                   |          |      +-----------------+ |\n"
3480 " \\___________________/          |      | Linux kernel    | |\n"
3481 "                                |      +--^--------------+ |\n"
3482 "                                \\_________|________________/\n"
3483 "                                          |\n"
3484 "                                   _______v______\n"
3485 "                                  /              \\\n"
3486 "                                  | Device or    |\n"
3487 "                                  | disk image   |\n"
3488 "                                  \\______________/\n"
3489 "\n"
3490 msgstr ""
3491
3492 #. type: textblock
3493 #: ../src/guestfs.pod:1799
3494 msgid ""
3495 "The library, linked to the main program, creates the child process and hence "
3496 "the appliance in the L</guestfs_launch> function."
3497 msgstr ""
3498
3499 #. type: textblock
3500 #: ../src/guestfs.pod:1802
3501 msgid ""
3502 "Inside the appliance is a Linux kernel and a complete stack of userspace "
3503 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
3504 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
3505 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
3506 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
3507 "attached to the qemu process which translates device access by the "
3508 "appliance's Linux kernel into accesses to the image."
3509 msgstr ""
3510
3511 #. type: textblock
3512 #: ../src/guestfs.pod:1811
3513 msgid ""
3514 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
3515 "Although the disk image you are attached to might also be used by some "
3516 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
3517 "care if both libguestfs's qemu process and your virtual machine are trying "
3518 "to update the disk image at the same time, since these usually results in "
3519 "massive disk corruption)."
3520 msgstr ""
3521
3522 #. type: =head1
3523 #: ../src/guestfs.pod:1818
3524 msgid "STATE MACHINE"
3525 msgstr ""
3526
3527 #. type: textblock
3528 #: ../src/guestfs.pod:1820
3529 msgid "libguestfs uses a state machine to model the child process:"
3530 msgstr ""
3531
3532 #. type: verbatim
3533 #: ../src/guestfs.pod:1822
3534 #, no-wrap
3535 msgid ""
3536 "                         |\n"
3537 "                    guestfs_create\n"
3538 "                         |\n"
3539 "                         |\n"
3540 "                     ____V_____\n"
3541 "                    /          \\\n"
3542 "                    |  CONFIG  |\n"
3543 "                    \\__________/\n"
3544 "                     ^ ^   ^  \\\n"
3545 "                    /  |    \\  \\ guestfs_launch\n"
3546 "                   /   |    _\\__V______\n"
3547 "                  /    |   /           \\\n"
3548 "                 /     |   | LAUNCHING |\n"
3549 "                /      |   \\___________/\n"
3550 "               /       |       /\n"
3551 "              /        |  guestfs_launch\n"
3552 "             /         |     /\n"
3553 "    ______  /        __|____V\n"
3554 "   /      \\ ------> /        \\\n"
3555 "   | BUSY |         | READY  |\n"
3556 "   \\______/ <------ \\________/\n"
3557 "\n"
3558 msgstr ""
3559
3560 #. type: textblock
3561 #: ../src/guestfs.pod:1844
3562 msgid ""
3563 "The normal transitions are (1) CONFIG (when the handle is created, but there "
3564 "is no child process), (2) LAUNCHING (when the child process is booting up), "
3565 "(3) alternating between READY and BUSY as commands are issued to, and "
3566 "carried out by, the child process."
3567 msgstr ""
3568
3569 #. type: textblock
3570 #: ../src/guestfs.pod:1849
3571 msgid ""
3572 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
3573 "asynchronously at any time (eg. due to some internal error), and that causes "
3574 "the state to transition back to CONFIG."
3575 msgstr ""
3576
3577 #. type: textblock
3578 #: ../src/guestfs.pod:1853
3579 msgid ""
3580 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
3581 "issued when in the CONFIG state."
3582 msgstr ""
3583
3584 #. type: textblock
3585 #: ../src/guestfs.pod:1856
3586 msgid ""
3587 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
3588 "L</guestfs_launch> blocks until the child process is READY to accept "
3589 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
3590 "moves the state from CONFIG to LAUNCHING while it is running."
3591 msgstr ""
3592
3593 #. type: textblock
3594 #: ../src/guestfs.pod:1862
3595 msgid ""
3596 "API actions such as L</guestfs_mount> can only be issued when in the READY "
3597 "state.  These API calls block waiting for the command to be carried out "
3598 "(ie. the state to transition to BUSY and then back to READY).  There are no "
3599 "non-blocking versions, and no way to issue more than one command per handle "
3600 "at the same time."
3601 msgstr ""
3602
3603 #. type: textblock
3604 #: ../src/guestfs.pod:1868
3605 msgid ""
3606 "Finally, the child process sends asynchronous messages back to the main "
3607 "program, such as kernel log messages.  You can register a callback to "
3608 "receive these messages."
3609 msgstr ""
3610
3611 #. type: =head1
3612 #: ../src/guestfs.pod:1872
3613 msgid "INTERNALS"
3614 msgstr ""
3615
3616 #. type: =head2
3617 #: ../src/guestfs.pod:1874
3618 msgid "COMMUNICATION PROTOCOL"
3619 msgstr ""
3620
3621 #. type: textblock
3622 #: ../src/guestfs.pod:1876
3623 msgid ""
3624 "Don't rely on using this protocol directly.  This section documents how it "
3625 "currently works, but it may change at any time."
3626 msgstr ""
3627
3628 #. type: textblock
3629 #: ../src/guestfs.pod:1879
3630 msgid ""
3631 "The protocol used to talk between the library and the daemon running inside "
3632 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
3633 "1014, RFC 1832, RFC 4506)."
3634 msgstr ""
3635
3636 #. type: textblock
3637 #: ../src/guestfs.pod:1883
3638 msgid ""
3639 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
3640 "this file is automatically generated)."
3641 msgstr ""
3642
3643 #. type: textblock
3644 #: ../src/guestfs.pod:1886
3645 msgid ""
3646 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
3647 "and C<FileOut> parameters, which are handled with very simple request/reply "
3648 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
3649 "parameters, which use the same request and reply messages, but they may also "
3650 "be followed by files sent using a chunked encoding."
3651 msgstr ""
3652
3653 #. type: =head3
3654 #: ../src/guestfs.pod:1893
3655 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
3656 msgstr ""
3657
3658 #. type: textblock
3659 #: ../src/guestfs.pod:1895
3660 msgid "For ordinary functions, the request message is:"
3661 msgstr ""
3662
3663 #. type: verbatim
3664 #: ../src/guestfs.pod:1897
3665 #, no-wrap
3666 msgid ""
3667 " total length (header + arguments,\n"
3668 "      but not including the length word itself)\n"
3669 " struct guestfs_message_header (encoded as XDR)\n"
3670 " struct guestfs_<foo>_args (encoded as XDR)\n"
3671 "\n"
3672 msgstr ""
3673
3674 #. type: textblock
3675 #: ../src/guestfs.pod:1902
3676 msgid ""
3677 "The total length field allows the daemon to allocate a fixed size buffer "
3678 "into which it slurps the rest of the message.  As a result, the total length "
3679 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
3680 "effective size of any request is limited to somewhere under this size."
3681 msgstr ""
3682
3683 #. type: textblock
3684 #: ../src/guestfs.pod:1908
3685 msgid ""
3686 "Note also that many functions don't take any arguments, in which case the "
3687 "C<guestfs_I<foo>_args> is completely omitted."
3688 msgstr ""
3689
3690 #. type: textblock
3691 #: ../src/guestfs.pod:1911
3692 msgid ""
3693 "The header contains the procedure number (C<guestfs_proc>) which is how the "
3694 "receiver knows what type of args structure to expect, or none at all."
3695 msgstr ""
3696
3697 #. type: textblock
3698 #: ../src/guestfs.pod:1915
3699 msgid ""
3700 "For functions that take optional arguments, the optional arguments are "
3701 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
3702 "arguments.  A bitmask in the header indicates which optional arguments are "
3703 "meaningful.  The bitmask is also checked to see if it contains bits set "
3704 "which the daemon does not know about (eg. if more optional arguments were "
3705 "added in a later version of the library), and this causes the call to be "
3706 "rejected."
3707 msgstr ""
3708
3709 #. type: textblock
3710 #: ../src/guestfs.pod:1923
3711 msgid "The reply message for ordinary functions is:"
3712 msgstr ""
3713
3714 #. type: verbatim
3715 #: ../src/guestfs.pod:1925
3716 #, no-wrap
3717 msgid ""
3718 " total length (header + ret,\n"
3719 "      but not including the length word itself)\n"
3720 " struct guestfs_message_header (encoded as XDR)\n"
3721 " struct guestfs_<foo>_ret (encoded as XDR)\n"
3722 "\n"
3723 msgstr ""
3724
3725 #. type: textblock
3726 #: ../src/guestfs.pod:1930
3727 msgid ""
3728 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
3729 "functions that return no formal return values."
3730 msgstr ""
3731
3732 #. type: textblock
3733 #: ../src/guestfs.pod:1933
3734 msgid "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
3735 msgstr ""
3736
3737 #. type: textblock
3738 #: ../src/guestfs.pod:1936
3739 msgid ""
3740 "In the case of an error, a flag is set in the header, and the reply message "
3741 "is slightly changed:"
3742 msgstr ""
3743
3744 #. type: verbatim
3745 #: ../src/guestfs.pod:1939
3746 #, no-wrap
3747 msgid ""
3748 " total length (header + error,\n"
3749 "      but not including the length word itself)\n"
3750 " struct guestfs_message_header (encoded as XDR)\n"
3751 " struct guestfs_message_error (encoded as XDR)\n"
3752 "\n"
3753 msgstr ""
3754
3755 #. type: textblock
3756 #: ../src/guestfs.pod:1944
3757 msgid ""
3758 "The C<guestfs_message_error> structure contains the error message as a "
3759 "string."
3760 msgstr ""
3761
3762 #. type: =head3
3763 #: ../src/guestfs.pod:1947
3764 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
3765 msgstr ""
3766
3767 #. type: textblock
3768 #: ../src/guestfs.pod:1949
3769 msgid ""
3770 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
3771 "The normal request message is sent (see above).  However this is followed by "
3772 "a sequence of file chunks."
3773 msgstr ""
3774
3775 #. type: verbatim
3776 #: ../src/guestfs.pod:1953
3777 #, no-wrap
3778 msgid ""
3779 " total length (header + arguments,\n"
3780 "      but not including the length word itself,\n"
3781 "      and not including the chunks)\n"
3782 " struct guestfs_message_header (encoded as XDR)\n"
3783 " struct guestfs_<foo>_args (encoded as XDR)\n"
3784 " sequence of chunks for FileIn param #0\n"
3785 " sequence of chunks for FileIn param #1 etc.\n"
3786 "\n"
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1961
3791 msgid "The \"sequence of chunks\" is:"
3792 msgstr ""
3793
3794 #. type: verbatim
3795 #: ../src/guestfs.pod:1963
3796 #, no-wrap
3797 msgid ""
3798 " length of chunk (not including length word itself)\n"
3799 " struct guestfs_chunk (encoded as XDR)\n"
3800 " length of chunk\n"
3801 " struct guestfs_chunk (encoded as XDR)\n"
3802 "   ...\n"
3803 " length of chunk\n"
3804 " struct guestfs_chunk (with data.data_len == 0)\n"
3805 "\n"
3806 msgstr ""
3807
3808 #. type: textblock
3809 #: ../src/guestfs.pod:1971
3810 msgid ""
3811 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
3812 "is set in the final chunk to indicate either successful completion or early "
3813 "cancellation."
3814 msgstr ""
3815
3816 #. type: textblock
3817 #: ../src/guestfs.pod:1975
3818 msgid ""
3819 "At time of writing there are no functions that have more than one FileIn "
3820 "parameter.  However this is (theoretically) supported, by sending the "
3821 "sequence of chunks for each FileIn parameter one after another (from left to "
3822 "right)."
3823 msgstr ""
3824
3825 #. type: textblock
3826 #: ../src/guestfs.pod:1980
3827 msgid ""
3828 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
3829 "transfer.  The library does this by sending a chunk with a special flag set "
3830 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
3831 "RPC, does I<not> send any reply, and goes back to reading the next request."
3832 msgstr ""
3833
3834 #. type: textblock
3835 #: ../src/guestfs.pod:1986
3836 msgid ""
3837 "The daemon may also cancel.  It does this by writing a special word "
3838 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
3839 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
3840 "cancel chunk).  The special word is chosen so that even if cancellation "
3841 "happens right at the end of the transfer (after the library has finished "
3842 "writing and has started listening for the reply), the \"spurious\" cancel "
3843 "flag will not be confused with the reply message."
3844 msgstr ""
3845
3846 #. type: textblock
3847 #: ../src/guestfs.pod:1995
3848 msgid ""
3849 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
3850 "limit), and also files where the size is not known in advance (eg. from "
3851 "pipes or sockets).  However the chunks are rather small "
3852 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
3853 "to keep much in memory."
3854 msgstr ""
3855
3856 #. type: =head3
3857 #: ../src/guestfs.pod:2001
3858 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
3859 msgstr ""
3860
3861 #. type: textblock
3862 #: ../src/guestfs.pod:2003
3863 msgid ""
3864 "The protocol for FileOut parameters is exactly the same as for FileIn "
3865 "parameters, but with the roles of daemon and library reversed."
3866 msgstr ""
3867
3868 #. type: verbatim
3869 #: ../src/guestfs.pod:2006
3870 #, no-wrap
3871 msgid ""
3872 " total length (header + ret,\n"
3873 "      but not including the length word itself,\n"
3874 "      and not including the chunks)\n"
3875 " struct guestfs_message_header (encoded as XDR)\n"
3876 " struct guestfs_<foo>_ret (encoded as XDR)\n"
3877 " sequence of chunks for FileOut param #0\n"
3878 " sequence of chunks for FileOut param #1 etc.\n"
3879 "\n"
3880 msgstr ""
3881
3882 #. type: =head3
3883 #: ../src/guestfs.pod:2014
3884 msgid "INITIAL MESSAGE"
3885 msgstr ""
3886
3887 #. type: textblock
3888 #: ../src/guestfs.pod:2016
3889 msgid ""
3890 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
3891 "which indicates that the guest and daemon is alive.  This is what "
3892 "L</guestfs_launch> waits for."
3893 msgstr ""
3894
3895 #. type: =head3
3896 #: ../src/guestfs.pod:2020
3897 msgid "PROGRESS NOTIFICATION MESSAGES"
3898 msgstr ""
3899
3900 #. type: textblock
3901 #: ../src/guestfs.pod:2022
3902 msgid ""
3903 "The daemon may send progress notification messages at any time.  These are "
3904 "distinguished by the normal length word being replaced by "
3905 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
3906 msgstr ""
3907
3908 #. type: textblock
3909 #: ../src/guestfs.pod:2026
3910 msgid ""
3911 "The library turns them into progress callbacks (see "
3912 "C<guestfs_set_progress_callback>) if there is a callback registered, or "
3913 "discards them if not."
3914 msgstr ""
3915
3916 #. type: textblock
3917 #: ../src/guestfs.pod:2030
3918 msgid ""
3919 "The daemon self-limits the frequency of progress messages it sends (see "
3920 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
3921 "messages."
3922 msgstr ""
3923
3924 #. type: =head1
3925 #: ../src/guestfs.pod:2034
3926 msgid "LIBGUESTFS VERSION NUMBERS"
3927 msgstr ""
3928
3929 #. type: textblock
3930 #: ../src/guestfs.pod:2036
3931 msgid ""
3932 "Since April 2010, libguestfs has started to make separate development and "
3933 "stable releases, along with corresponding branches in our git repository.  "
3934 "These separate releases can be identified by version number:"
3935 msgstr ""
3936
3937 #. type: verbatim
3938 #: ../src/guestfs.pod:2041
3939 #, no-wrap
3940 msgid ""
3941 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
3942 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
3943 "       |\n"
3944 "       v\n"
3945 " 1  .  3  .  5\n"
3946 " ^           ^\n"
3947 " |           |\n"
3948 " |           `-------- sub-version\n"
3949 " |\n"
3950 " `------ always '1' because we don't change the ABI\n"
3951 "\n"
3952 msgstr ""
3953
3954 #. type: textblock
3955 #: ../src/guestfs.pod:2052
3956 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
3957 msgstr ""
3958
3959 #. type: textblock
3960 #: ../src/guestfs.pod:2054
3961 msgid ""
3962 "As time passes we cherry pick fixes from the development branch and backport "
3963 "those into the stable branch, the effect being that the stable branch should "
3964 "get more stable and less buggy over time.  So the stable releases are ideal "
3965 "for people who don't need new features but would just like the software to "
3966 "work."
3967 msgstr ""
3968
3969 #. type: textblock
3970 #: ../src/guestfs.pod:2060
3971 msgid "Our criteria for backporting changes are:"
3972 msgstr ""
3973
3974 #. type: textblock
3975 #: ../src/guestfs.pod:2066
3976 msgid ""
3977 "Documentation changes which don't affect any code are backported unless the "
3978 "documentation refers to a future feature which is not in stable."
3979 msgstr ""
3980
3981 #. type: textblock
3982 #: ../src/guestfs.pod:2072
3983 msgid ""
3984 "Bug fixes which are not controversial, fix obvious problems, and have been "
3985 "well tested are backported."
3986 msgstr ""
3987
3988 #. type: textblock
3989 #: ../src/guestfs.pod:2077
3990 msgid ""
3991 "Simple rearrangements of code which shouldn't affect how it works get "
3992 "backported.  This is so that the code in the two branches doesn't get too "
3993 "far out of step, allowing us to backport future fixes more easily."
3994 msgstr ""
3995
3996 #. type: textblock
3997 #: ../src/guestfs.pod:2083
3998 msgid ""
3999 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4000 "exceptional case: the new feature is required in order to implement an "
4001 "important bug fix."
4002 msgstr ""
4003
4004 #. type: textblock
4005 #: ../src/guestfs.pod:2089
4006 msgid ""
4007 "A new stable branch starts when we think the new features in development are "
4008 "substantial and compelling enough over the current stable branch to warrant "
4009 "it.  When that happens we create new stable and development versions 1.N.0 "
4010 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4011 "stable at this point, but by backporting fixes from development, that branch "
4012 "will stabilize over time."
4013 msgstr ""
4014
4015 #. type: =head1
4016 #: ../src/guestfs.pod:2097
4017 msgid "EXTENDING LIBGUESTFS"
4018 msgstr ""
4019
4020 #. type: =head2
4021 #: ../src/guestfs.pod:2099
4022 msgid "ADDING A NEW API ACTION"
4023 msgstr ""
4024
4025 #. type: textblock
4026 #: ../src/guestfs.pod:2101
4027 msgid ""
4028 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4029 "documentation) are generated, and this makes it easy to extend the "
4030 "libguestfs API."
4031 msgstr ""
4032
4033 #. type: textblock
4034 #: ../src/guestfs.pod:2105
4035 msgid "To add a new API action there are two changes:"
4036 msgstr ""
4037
4038 #. type: textblock
4039 #: ../src/guestfs.pod:2111
4040 msgid ""
4041 "You need to add a description of the call (name, parameters, return type, "
4042 "tests, documentation) to C<generator/generator_actions.ml>."
4043 msgstr ""
4044
4045 #. type: textblock
4046 #: ../src/guestfs.pod:2114
4047 msgid ""
4048 "There are two sorts of API action, depending on whether the call goes "
4049 "through to the daemon in the appliance, or is serviced entirely by the "
4050 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4051 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4052 "an example of the latter, since a trace flag is maintained in the handle and "
4053 "all tracing is done on the library side."
4054 msgstr ""
4055
4056 #. type: textblock
4057 #: ../src/guestfs.pod:2122
4058 msgid ""
4059 "Most new actions are of the first type, and get added to the "
4060 "C<daemon_functions> list.  Each function has a unique procedure number used "
4061 "in the RPC protocol which is assigned to that action when we publish "
4062 "libguestfs and cannot be reused.  Take the latest procedure number and "
4063 "increment it."
4064 msgstr ""
4065
4066 #. type: textblock
4067 #: ../src/guestfs.pod:2128
4068 msgid ""
4069 "For library-only actions of the second type, add to the "
4070 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4071 "library and do not travel over the RPC mechanism to the daemon, these "
4072 "functions do not need a procedure number, and so the procedure number is set "
4073 "to C<-1>."
4074 msgstr ""
4075
4076 #. type: textblock
4077 #: ../src/guestfs.pod:2136
4078 msgid "Implement the action (in C):"
4079 msgstr ""
4080
4081 #. type: textblock
4082 #: ../src/guestfs.pod:2138
4083 msgid ""
4084 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4085 "C<daemon/> directory."
4086 msgstr ""
4087
4088 #. type: textblock
4089 #: ../src/guestfs.pod:2141
4090 msgid ""
4091 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4092 "(note: double underscore) in the C<src/> directory."
4093 msgstr ""
4094
4095 #. type: textblock
4096 #: ../src/guestfs.pod:2144
4097 msgid "In either case, use another function as an example of what to do."
4098 msgstr ""
4099
4100 #. type: textblock
4101 #: ../src/guestfs.pod:2148
4102 msgid "After making these changes, use C<make> to compile."
4103 msgstr ""
4104
4105 #. type: textblock
4106 #: ../src/guestfs.pod:2150
4107 msgid ""
4108 "Note that you don't need to implement the RPC, language bindings, manual "
4109 "pages or anything else.  It's all automatically generated from the OCaml "
4110 "description."
4111 msgstr ""
4112
4113 #. type: =head2
4114 #: ../src/guestfs.pod:2154
4115 msgid "ADDING TESTS FOR AN API ACTION"
4116 msgstr ""
4117
4118 #. type: textblock
4119 #: ../src/guestfs.pod:2156
4120 msgid ""
4121 "You can supply zero or as many tests as you want per API call.  The tests "
4122 "can either be added as part of the API description "
4123 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4124 "drop a script into C<regressions/>.  Note that adding a script to "
4125 "C<regressions/> is slower, so if possible use the first method."
4126 msgstr ""
4127
4128 #. type: textblock
4129 #: ../src/guestfs.pod:2162
4130 msgid ""
4131 "The following describes the test environment used when you add an API test "
4132 "in C<generator_actions.ml>."
4133 msgstr ""
4134
4135 #. type: textblock
4136 #: ../src/guestfs.pod:2165
4137 msgid "The test environment has 4 block devices:"
4138 msgstr ""
4139
4140 #. type: =item
4141 #: ../src/guestfs.pod:2169
4142 msgid "C</dev/sda> 500MB"
4143 msgstr ""
4144
4145 #. type: textblock
4146 #: ../src/guestfs.pod:2171
4147 msgid "General block device for testing."
4148 msgstr ""
4149
4150 #. type: =item
4151 #: ../src/guestfs.pod:2173
4152 msgid "C</dev/sdb> 50MB"
4153 msgstr ""
4154
4155 #. type: textblock
4156 #: ../src/guestfs.pod:2175
4157 msgid ""
4158 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4159 "operations."
4160 msgstr ""
4161
4162 #. type: =item
4163 #: ../src/guestfs.pod:2178
4164 msgid "C</dev/sdc> 10MB"
4165 msgstr ""
4166
4167 #. type: textblock
4168 #: ../src/guestfs.pod:2180
4169 msgid "Used in a few tests where two block devices are needed."
4170 msgstr ""
4171
4172 #. type: =item
4173 #: ../src/guestfs.pod:2182
4174 msgid "C</dev/sdd>"
4175 msgstr ""
4176
4177 #. type: textblock
4178 #: ../src/guestfs.pod:2184
4179 msgid "ISO with fixed content (see C<images/test.iso>)."
4180 msgstr ""
4181
4182 #. type: textblock
4183 #: ../src/guestfs.pod:2188
4184 msgid ""
4185 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4186 "appliance and block devices are reused between tests.  So don't try testing "
4187 "L</guestfs_kill_subprocess> :-x"
4188 msgstr ""
4189
4190 #. type: textblock
4191 #: ../src/guestfs.pod:2192
4192 msgid ""
4193 "Each test starts with an initial scenario, selected using one of the "
4194 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4195 "initialize the disks mentioned above in a particular way as documented in "
4196 "C<generator_types.ml>.  You should not assume anything about the previous "
4197 "contents of other disks that are not initialized."
4198 msgstr ""
4199
4200 #. type: textblock
4201 #: ../src/guestfs.pod:2198
4202 msgid ""
4203 "You can add a prerequisite clause to any individual test.  This is a "
4204 "run-time check, which, if it fails, causes the test to be skipped.  Useful "
4205 "if testing a command which might not work on all variations of libguestfs "
4206 "builds.  A test that has prerequisite of C<Always> means to run "
4207 "unconditionally."
4208 msgstr ""
4209
4210 #. type: textblock
4211 #: ../src/guestfs.pod:2204
4212 msgid ""
4213 "In addition, packagers can skip individual tests by setting environment "
4214 "variables before running C<make check>."
4215 msgstr ""
4216
4217 #. type: verbatim
4218 #: ../src/guestfs.pod:2207
4219 #, no-wrap
4220 msgid ""
4221 " SKIP_TEST_<CMD>_<NUM>=1\n"
4222 "\n"
4223 msgstr ""
4224
4225 #. type: textblock
4226 #: ../src/guestfs.pod:2209
4227 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4228 msgstr ""
4229
4230 #. type: textblock
4231 #: ../src/guestfs.pod:2211
4232 msgid "or:"
4233 msgstr ""
4234
4235 #. type: verbatim
4236 #: ../src/guestfs.pod:2213
4237 #, no-wrap
4238 msgid ""
4239 " SKIP_TEST_<CMD>=1\n"
4240 "\n"
4241 msgstr ""
4242
4243 #. type: textblock
4244 #: ../src/guestfs.pod:2215
4245 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4246 msgstr ""
4247
4248 #. type: textblock
4249 #: ../src/guestfs.pod:2217
4250 msgid "Packagers can run only certain tests by setting for example:"
4251 msgstr ""
4252
4253 #. type: verbatim
4254 #: ../src/guestfs.pod:2219
4255 #, no-wrap
4256 msgid ""
4257 " TEST_ONLY=\"vfs_type zerofree\"\n"
4258 "\n"
4259 msgstr ""
4260
4261 #. type: textblock
4262 #: ../src/guestfs.pod:2221
4263 msgid ""
4264 "See C<capitests/tests.c> for more details of how these environment variables "
4265 "work."
4266 msgstr ""
4267
4268 #. type: =head2
4269 #: ../src/guestfs.pod:2224
4270 msgid "DEBUGGING NEW API ACTIONS"
4271 msgstr ""
4272
4273 #. type: textblock
4274 #: ../src/guestfs.pod:2226
4275 msgid "Test new actions work before submitting them."
4276 msgstr ""
4277
4278 #. type: textblock
4279 #: ../src/guestfs.pod:2228
4280 msgid "You can use guestfish to try out new commands."
4281 msgstr ""
4282
4283 #. type: textblock
4284 #: ../src/guestfs.pod:2230
4285 msgid ""
4286 "Debugging the daemon is a problem because it runs inside a minimal "
4287 "environment.  However you can fprintf messages in the daemon to stderr, and "
4288 "they will show up if you use C<guestfish -v>."
4289 msgstr ""
4290
4291 #. type: =head2
4292 #: ../src/guestfs.pod:2234
4293 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4294 msgstr ""
4295
4296 #. type: textblock
4297 #: ../src/guestfs.pod:2236
4298 msgid ""
4299 "Our C source code generally adheres to some basic code-formatting "
4300 "conventions.  The existing code base is not totally consistent on this "
4301 "front, but we do prefer that contributed code be formatted similarly.  In "
4302 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4303 "indentation level, and other than that, follow the K&R style."
4304 msgstr ""
4305
4306 #. type: textblock
4307 #: ../src/guestfs.pod:2242
4308 msgid ""
4309 "If you use Emacs, add the following to one of one of your start-up files "
4310 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
4311 msgstr ""
4312
4313 #. type: verbatim
4314 #: ../src/guestfs.pod:2245
4315 #, no-wrap
4316 msgid ""
4317 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4318 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4319 " (add-hook 'find-file-hook\n"
4320 "     '(lambda () (if (and buffer-file-name\n"
4321 "                          (string-match \"/libguestfs\\\\>\"\n"
4322 "                              (buffer-file-name))\n"
4323 "                          (not (string-equal mode-name \"Change Log\"))\n"
4324 "                          (not (string-equal mode-name \"Makefile\")))\n"
4325 "                     (setq indent-tabs-mode nil))))\n"
4326 " \n"
4327 msgstr ""
4328
4329 #. type: verbatim
4330 #: ../src/guestfs.pod:2255
4331 #, no-wrap
4332 msgid ""
4333 " ;;; When editing C sources in libguestfs, use this style.\n"
4334 " (defun libguestfs-c-mode ()\n"
4335 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4336 "   (interactive)\n"
4337 "   (c-set-style \"K&R\")\n"
4338 "   (setq c-indent-level 2)\n"
4339 "   (setq c-basic-offset 2))\n"
4340 " (add-hook 'c-mode-hook\n"
4341 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
4342 "                               (buffer-file-name))\n"
4343 "                           (libguestfs-c-mode))))\n"
4344 "\n"
4345 msgstr ""
4346
4347 #. type: textblock
4348 #: ../src/guestfs.pod:2267
4349 msgid "Enable warnings when compiling (and fix any problems this finds):"
4350 msgstr ""
4351
4352 #. type: verbatim
4353 #: ../src/guestfs.pod:2270
4354 #, no-wrap
4355 msgid ""
4356 " ./configure --enable-gcc-warnings\n"
4357 "\n"
4358 msgstr ""
4359
4360 #. type: textblock
4361 #: ../src/guestfs.pod:2272
4362 msgid "Useful targets are:"
4363 msgstr ""
4364
4365 #. type: verbatim
4366 #: ../src/guestfs.pod:2274
4367 #, no-wrap
4368 msgid ""
4369 " make syntax-check  # checks the syntax of the C code\n"
4370 " make check         # runs the test suite\n"
4371 "\n"
4372 msgstr ""
4373
4374 #. type: =head2
4375 #: ../src/guestfs.pod:2277
4376 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
4377 msgstr ""
4378
4379 #. type: textblock
4380 #: ../src/guestfs.pod:2279
4381 msgid ""
4382 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
4383 "which are used to do shell quoting."
4384 msgstr ""
4385
4386 #. type: =item
4387 #: ../src/guestfs.pod:2284
4388 msgid "%Q"
4389 msgstr ""
4390
4391 #. type: textblock
4392 #: ../src/guestfs.pod:2286
4393 msgid ""
4394 "Simple shell quoted string.  Any spaces or other shell characters are "
4395 "escaped for you."
4396 msgstr ""
4397
4398 #. type: =item
4399 #: ../src/guestfs.pod:2289
4400 msgid "%R"
4401 msgstr ""
4402
4403 #. type: textblock
4404 #: ../src/guestfs.pod:2291
4405 msgid ""
4406 "Same as C<%Q> except the string is treated as a path which is prefixed by "
4407 "the sysroot."
4408 msgstr ""
4409
4410 #. type: textblock
4411 #: ../src/guestfs.pod:2296 ../fish/guestfish.pod:240 ../fish/guestfish.pod:594
4412 msgid "For example:"
4413 msgstr ""
4414
4415 #. type: verbatim
4416 #: ../src/guestfs.pod:2298
4417 #, no-wrap
4418 msgid ""
4419 " asprintf (&cmd, \"cat %R\", path);\n"
4420 "\n"
4421 msgstr ""
4422
4423 #. type: textblock
4424 #: ../src/guestfs.pod:2300
4425 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
4426 msgstr ""
4427
4428 #. type: textblock
4429 #: ../src/guestfs.pod:2302
4430 msgid ""
4431 "I<Note:> Do I<not> use these when you are passing parameters to the "
4432 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
4433 "because they are not passed via the shell (instead, straight to exec).  You "
4434 "probably want to use the C<sysroot_path()> function however."
4435 msgstr ""
4436
4437 #. type: =head2
4438 #: ../src/guestfs.pod:2308
4439 msgid "SUBMITTING YOUR NEW API ACTIONS"
4440 msgstr ""
4441
4442 #. type: textblock
4443 #: ../src/guestfs.pod:2310
4444 msgid ""
4445 "Submit patches to the mailing list: "
4446 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
4447 "L<rjones@redhat.com>."
4448 msgstr ""
4449
4450 #. type: =head2
4451 #: ../src/guestfs.pod:2314
4452 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
4453 msgstr ""
4454
4455 #. type: textblock
4456 #: ../src/guestfs.pod:2316
4457 msgid "We support i18n (gettext anyhow) in the library."
4458 msgstr ""
4459
4460 #. type: textblock
4461 #: ../src/guestfs.pod:2318
4462 msgid ""
4463 "However many messages come from the daemon, and we don't translate those at "
4464 "the moment.  One reason is that the appliance generally has all locale files "
4465 "removed from it, because they take up a lot of space.  So we'd have to readd "
4466 "some of those, as well as copying our PO files into the appliance."
4467 msgstr ""
4468
4469 #. type: textblock
4470 #: ../src/guestfs.pod:2324
4471 msgid ""
4472 "Debugging messages are never translated, since they are intended for the "
4473 "programmers."
4474 msgstr ""
4475
4476 #. type: =head2
4477 #: ../src/guestfs.pod:2327
4478 msgid "SOURCE CODE SUBDIRECTORIES"
4479 msgstr ""
4480
4481 #. type: =item
4482 #: ../src/guestfs.pod:2331
4483 msgid "C<appliance>"
4484 msgstr ""
4485
4486 #. type: textblock
4487 #: ../src/guestfs.pod:2333
4488 msgid "The libguestfs appliance, build scripts and so on."
4489 msgstr ""
4490
4491 #. type: =item
4492 #: ../src/guestfs.pod:2335
4493 msgid "C<capitests>"
4494 msgstr ""
4495
4496 #. type: textblock
4497 #: ../src/guestfs.pod:2337
4498 msgid "Automated tests of the C API."
4499 msgstr ""
4500
4501 #. type: =item
4502 #: ../src/guestfs.pod:2339
4503 msgid "C<cat>"
4504 msgstr ""
4505
4506 #. type: textblock
4507 #: ../src/guestfs.pod:2341
4508 msgid ""
4509 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
4510 "documentation."
4511 msgstr ""
4512
4513 #. type: =item
4514 #: ../src/guestfs.pod:2344
4515 msgid "C<caution>"
4516 msgstr ""
4517
4518 #. type: textblock
4519 #: ../src/guestfs.pod:2346
4520 msgid ""
4521 "Safety and liveness tests of components that libguestfs depends upon (not of "
4522 "libguestfs itself).  Mainly this is for qemu and the kernel."
4523 msgstr ""
4524
4525 #. type: =item
4526 #: ../src/guestfs.pod:2349
4527 msgid "C<contrib>"
4528 msgstr ""
4529
4530 #. type: textblock
4531 #: ../src/guestfs.pod:2351
4532 msgid "Outside contributions, experimental parts."
4533 msgstr ""
4534
4535 #. type: =item
4536 #: ../src/guestfs.pod:2353
4537 msgid "C<daemon>"
4538 msgstr ""
4539
4540 #. type: textblock
4541 #: ../src/guestfs.pod:2355
4542 msgid ""
4543 "The daemon that runs inside the libguestfs appliance and carries out "
4544 "actions."
4545 msgstr ""
4546
4547 #. type: =item
4548 #: ../src/guestfs.pod:2358
4549 msgid "C<df>"
4550 msgstr ""
4551
4552 #. type: textblock
4553 #: ../src/guestfs.pod:2360
4554 msgid "L<virt-df(1)> command and documentation."
4555 msgstr ""
4556
4557 #. type: =item
4558 #: ../src/guestfs.pod:2362
4559 msgid "C<examples>"
4560 msgstr ""
4561
4562 #. type: textblock
4563 #: ../src/guestfs.pod:2364
4564 msgid "C API example code."
4565 msgstr ""
4566
4567 #. type: =item
4568 #: ../src/guestfs.pod:2366
4569 msgid "C<fish>"
4570 msgstr ""
4571
4572 #. type: textblock
4573 #: ../src/guestfs.pod:2368
4574 msgid "L<guestfish(1)>, the command-line shell."
4575 msgstr ""
4576
4577 #. type: =item
4578 #: ../src/guestfs.pod:2370
4579 msgid "C<fuse>"
4580 msgstr ""
4581
4582 #. type: textblock
4583 #: ../src/guestfs.pod:2372
4584 msgid "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
4585 msgstr ""
4586
4587 #. type: =item
4588 #: ../src/guestfs.pod:2374
4589 msgid "C<generator>"
4590 msgstr ""
4591
4592 #. type: textblock
4593 #: ../src/guestfs.pod:2376
4594 msgid ""
4595 "The crucially important generator, used to automatically generate large "
4596 "amounts of boilerplate C code for things like RPC and bindings."
4597 msgstr ""
4598
4599 #. type: =item
4600 #: ../src/guestfs.pod:2379
4601 msgid "C<images>"
4602 msgstr ""
4603
4604 #. type: textblock
4605 #: ../src/guestfs.pod:2381
4606 msgid "Files used by the test suite."
4607 msgstr ""
4608
4609 #. type: textblock
4610 #: ../src/guestfs.pod:2383
4611 msgid "Some \"phony\" guest images which we test against."
4612 msgstr ""
4613
4614 #. type: =item
4615 #: ../src/guestfs.pod:2385
4616 msgid "C<inspector>"
4617 msgstr ""
4618
4619 #. type: textblock
4620 #: ../src/guestfs.pod:2387
4621 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
4622 msgstr ""
4623
4624 #. type: =item
4625 #: ../src/guestfs.pod:2389
4626 msgid "C<m4>"
4627 msgstr ""
4628
4629 #. type: textblock
4630 #: ../src/guestfs.pod:2391
4631 msgid "M4 macros used by autoconf."
4632 msgstr ""
4633
4634 #. type: =item
4635 #: ../src/guestfs.pod:2393
4636 msgid "C<po>"
4637 msgstr ""
4638
4639 #. type: textblock
4640 #: ../src/guestfs.pod:2395
4641 msgid "Translations of simple gettext strings."
4642 msgstr ""
4643
4644 #. type: =item
4645 #: ../src/guestfs.pod:2397
4646 msgid "C<po-docs>"
4647 msgstr ""
4648
4649 #. type: textblock
4650 #: ../src/guestfs.pod:2399
4651 msgid ""
4652 "The build infrastructure and PO files for translations of manpages and POD "
4653 "files.  Eventually this will be combined with the C<po> directory, but that "
4654 "is rather complicated."
4655 msgstr ""
4656
4657 #. type: =item
4658 #: ../src/guestfs.pod:2403
4659 msgid "C<regressions>"
4660 msgstr ""
4661
4662 #. type: textblock
4663 #: ../src/guestfs.pod:2405
4664 msgid "Regression tests."
4665 msgstr ""
4666
4667 #. type: =item
4668 #: ../src/guestfs.pod:2407
4669 msgid "C<rescue>"
4670 msgstr ""
4671
4672 #. type: textblock
4673 #: ../src/guestfs.pod:2409
4674 msgid "L<virt-rescue(1)> command and documentation."
4675 msgstr ""
4676
4677 #. type: =item
4678 #: ../src/guestfs.pod:2411
4679 msgid "C<src>"
4680 msgstr ""
4681
4682 #. type: textblock
4683 #: ../src/guestfs.pod:2413
4684 msgid "Source code to the C library."
4685 msgstr ""
4686
4687 #. type: =item
4688 #: ../src/guestfs.pod:2415
4689 msgid "C<tools>"
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2417
4694 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
4695 msgstr ""
4696
4697 #. type: =item
4698 #: ../src/guestfs.pod:2419
4699 msgid "C<test-tool>"
4700 msgstr ""
4701
4702 #. type: textblock
4703 #: ../src/guestfs.pod:2421
4704 msgid ""
4705 "Test tool for end users to test if their qemu/kernel combination will work "
4706 "with libguestfs."
4707 msgstr ""
4708
4709 #. type: =item
4710 #: ../src/guestfs.pod:2424
4711 msgid "C<csharp>"
4712 msgstr ""
4713
4714 #. type: =item
4715 #: ../src/guestfs.pod:2426
4716 msgid "C<haskell>"
4717 msgstr ""
4718
4719 #. type: =item
4720 #: ../src/guestfs.pod:2428
4721 msgid "C<java>"
4722 msgstr ""
4723
4724 #. type: =item
4725 #: ../src/guestfs.pod:2430
4726 msgid "C<ocaml>"
4727 msgstr ""
4728
4729 #. type: =item
4730 #: ../src/guestfs.pod:2432
4731 msgid "C<php>"
4732 msgstr ""
4733
4734 #. type: =item
4735 #: ../src/guestfs.pod:2434
4736 msgid "C<perl>"
4737 msgstr ""
4738
4739 #. type: =item
4740 #: ../src/guestfs.pod:2436
4741 msgid "C<python>"
4742 msgstr ""
4743
4744 #. type: =item
4745 #: ../src/guestfs.pod:2438
4746 msgid "C<ruby>"
4747 msgstr ""
4748
4749 #. type: textblock
4750 #: ../src/guestfs.pod:2440
4751 msgid "Language bindings."
4752 msgstr ""
4753
4754 #. type: =head1
4755 #: ../src/guestfs.pod:2444 ../fish/guestfish.pod:965 ../test-tool/libguestfs-test-tool.pod:104 ../tools/virt-edit.pl:375
4756 msgid "ENVIRONMENT VARIABLES"
4757 msgstr ""
4758
4759 #. type: =item
4760 #: ../src/guestfs.pod:2448 ../fish/guestfish.pod:991
4761 msgid "LIBGUESTFS_APPEND"
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2450 ../fish/guestfish.pod:993
4766 msgid "Pass additional options to the guest kernel."
4767 msgstr ""
4768
4769 #. type: =item
4770 #: ../src/guestfs.pod:2452 ../fish/guestfish.pod:995
4771 msgid "LIBGUESTFS_DEBUG"
4772 msgstr ""
4773
4774 #. type: textblock
4775 #: ../src/guestfs.pod:2454
4776 msgid ""
4777 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
4778 "effect as calling C<guestfs_set_verbose (g, 1)>."
4779 msgstr ""
4780
4781 #. type: =item
4782 #: ../src/guestfs.pod:2457 ../fish/guestfish.pod:1000
4783 msgid "LIBGUESTFS_MEMSIZE"
4784 msgstr ""
4785
4786 #. type: textblock
4787 #: ../src/guestfs.pod:2459 ../fish/guestfish.pod:1002
4788 msgid "Set the memory allocated to the qemu process, in megabytes.  For example:"
4789 msgstr ""
4790
4791 #. type: verbatim
4792 #: ../src/guestfs.pod:2462 ../fish/guestfish.pod:1005
4793 #, no-wrap
4794 msgid ""
4795 " LIBGUESTFS_MEMSIZE=700\n"
4796 "\n"
4797 msgstr ""
4798
4799 #. type: =item
4800 #: ../src/guestfs.pod:2464 ../fish/guestfish.pod:1007
4801 msgid "LIBGUESTFS_PATH"
4802 msgstr ""
4803
4804 #. type: textblock
4805 #: ../src/guestfs.pod:2466
4806 msgid ""
4807 "Set the path that libguestfs uses to search for a supermin appliance.  See "
4808 "the discussion of paths in section L</PATH> above."
4809 msgstr ""
4810
4811 #. type: =item
4812 #: ../src/guestfs.pod:2469 ../fish/guestfish.pod:1012
4813 msgid "LIBGUESTFS_QEMU"
4814 msgstr ""
4815
4816 #. type: textblock
4817 #: ../src/guestfs.pod:2471 ../fish/guestfish.pod:1014
4818 msgid ""
4819 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
4820 "which was found at compile time by the configure script is used."
4821 msgstr ""
4822
4823 #. type: textblock
4824 #: ../src/guestfs.pod:2475
4825 msgid "See also L</QEMU WRAPPERS> above."
4826 msgstr ""
4827
4828 #. type: =item
4829 #: ../src/guestfs.pod:2477 ../fish/guestfish.pod:1018
4830 msgid "LIBGUESTFS_TRACE"
4831 msgstr ""
4832
4833 #. type: textblock
4834 #: ../src/guestfs.pod:2479
4835 msgid ""
4836 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
4837 "effect as calling C<guestfs_set_trace (g, 1)>."
4838 msgstr ""
4839
4840 #. type: =item
4841 #: ../src/guestfs.pod:2482 ../fish/guestfish.pod:1027
4842 msgid "TMPDIR"
4843 msgstr ""
4844
4845 #. type: textblock
4846 #: ../src/guestfs.pod:2484 ../fish/guestfish.pod:1029
4847 msgid "Location of temporary directory, defaults to C</tmp>."
4848 msgstr ""
4849
4850 #. type: textblock
4851 #: ../src/guestfs.pod:2486 ../fish/guestfish.pod:1031
4852 msgid ""
4853 "If libguestfs was compiled to use the supermin appliance then the real "
4854 "appliance is cached in this directory, shared between all handles belonging "
4855 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
4856 "use in case C</tmp> is not large enough."
4857 msgstr ""
4858
4859 #. type: =head1
4860 #: ../src/guestfs.pod:2494 ../fish/guestfish.pod:1089 ../test-tool/libguestfs-test-tool.pod:109 ../fuse/guestmount.pod:233 ../tools/virt-edit.pl:395 ../tools/virt-win-reg.pl:572 ../tools/virt-resize.pl:1483 ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
4861 msgid "SEE ALSO"
4862 msgstr ""
4863
4864 #. type: textblock
4865 #: ../src/guestfs.pod:2496
4866 msgid ""
4867 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, "
4868 "L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, "
4869 "L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)>, "
4870 "L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
4871 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
4872 "L<virt-rescue(1)>, L<virt-tar(1)>, L<virt-win-reg(1)>, L<qemu(1)>, "
4873 "L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
4874 msgstr ""
4875
4876 #. type: textblock
4877 #: ../src/guestfs.pod:2519
4878 msgid ""
4879 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
4880 "L<lvm(8)>, L<disktype(1)>."
4881 msgstr ""
4882
4883 #. type: =head1
4884 #: ../src/guestfs.pod:2526 ../tools/virt-win-reg.pl:587 ../tools/virt-make-fs.pl:553
4885 msgid "BUGS"
4886 msgstr ""
4887
4888 #. type: textblock
4889 #: ../src/guestfs.pod:2528
4890 msgid "To get a list of bugs against libguestfs use this link:"
4891 msgstr ""
4892
4893 #. type: textblock
4894 #: ../src/guestfs.pod:2530
4895 msgid "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
4896 msgstr ""
4897
4898 #. type: textblock
4899 #: ../src/guestfs.pod:2532
4900 msgid "To report a new bug against libguestfs use this link:"
4901 msgstr ""
4902
4903 #. type: textblock
4904 #: ../src/guestfs.pod:2534
4905 msgid "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
4906 msgstr ""
4907
4908 #. type: textblock
4909 #: ../src/guestfs.pod:2536
4910 msgid "When reporting a bug, please check:"
4911 msgstr ""
4912
4913 #. type: textblock
4914 #: ../src/guestfs.pod:2542
4915 msgid "That the bug hasn't been reported already."
4916 msgstr ""
4917
4918 #. type: textblock
4919 #: ../src/guestfs.pod:2546
4920 msgid "That you are testing a recent version."
4921 msgstr ""
4922
4923 #. type: textblock
4924 #: ../src/guestfs.pod:2550
4925 msgid "Describe the bug accurately, and give a way to reproduce it."
4926 msgstr ""
4927
4928 #. type: textblock
4929 #: ../src/guestfs.pod:2554
4930 msgid ""
4931 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
4932 "bug report."
4933 msgstr ""
4934
4935 #. type: =head1
4936 #: ../src/guestfs.pod:2559 ../fish/guestfish.pod:1108 ../test-tool/libguestfs-test-tool.pod:115 ../fuse/guestmount.pod:244
4937 msgid "AUTHORS"
4938 msgstr ""
4939
4940 #. type: textblock
4941 #: ../src/guestfs.pod:2561 ../fish/guestfish.pod:1110 ../test-tool/libguestfs-test-tool.pod:117 ../fuse/guestmount.pod:246
4942 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
4943 msgstr ""
4944
4945 #. type: =head1
4946 #: ../src/guestfs.pod:2563 ../fish/guestfish.pod:1112 ../test-tool/libguestfs-test-tool.pod:119 ../fuse/guestmount.pod:248 ../tools/virt-edit.pl:411 ../tools/virt-win-reg.pl:602 ../tools/virt-resize.pl:1508 ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:296 ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
4947 msgid "COPYRIGHT"
4948 msgstr ""
4949
4950 #. type: textblock
4951 #: ../src/guestfs.pod:2565 ../fish/guestfish.pod:1114 ../fuse/guestmount.pod:250
4952 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
4953 msgstr ""
4954
4955 #. type: textblock
4956 #: ../src/guestfs.pod:2568
4957 msgid ""
4958 "This library is free software; you can redistribute it and/or modify it "
4959 "under the terms of the GNU Lesser General Public License as published by the "
4960 "Free Software Foundation; either version 2 of the License, or (at your "
4961 "option) any later version."
4962 msgstr ""
4963
4964 #. type: textblock
4965 #: ../src/guestfs.pod:2573
4966 msgid ""
4967 "This library is distributed in the hope that it will be useful, but WITHOUT "
4968 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
4969 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
4970 "for more details."
4971 msgstr ""
4972
4973 #. type: textblock
4974 #: ../src/guestfs.pod:2578
4975 msgid ""
4976 "You should have received a copy of the GNU Lesser General Public License "
4977 "along with this library; if not, write to the Free Software Foundation, "
4978 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
4979 msgstr ""
4980
4981 #. type: =head2
4982 #: ../src/guestfs-actions.pod:1
4983 msgid "guestfs_add_cdrom"
4984 msgstr ""
4985
4986 #. type: verbatim
4987 #: ../src/guestfs-actions.pod:3
4988 #, no-wrap
4989 msgid ""
4990 " int\n"
4991 " guestfs_add_cdrom (guestfs_h *g,\n"
4992 "                    const char *filename);\n"
4993 "\n"
4994 msgstr ""
4995
4996 #. type: textblock
4997 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
4998 msgid "This function adds a virtual CD-ROM disk image to the guest."
4999 msgstr ""
5000
5001 #. type: textblock
5002 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5003 msgid "This is equivalent to the qemu parameter C<-cdrom filename>."
5004 msgstr ""
5005
5006 #. type: textblock
5007 #: ../src/guestfs-actions.pod:17
5008 msgid ""
5009 "This call checks for the existence of C<filename>.  This stops you from "
5010 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5011 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5012 "instead."
5013 msgstr ""
5014
5015 #. type: textblock
5016 #: ../src/guestfs-actions.pod:24
5017 msgid ""
5018 "If you just want to add an ISO file (often you use this as an efficient way "
5019 "to transfer large files into the guest), then you should probably use "
5020 "C<guestfs_add_drive_ro> instead."
5021 msgstr ""
5022
5023 #. type: textblock
5024 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:126 ../src/guestfs-actions.pod:187 ../src/guestfs-actions.pod:224 ../src/guestfs-actions.pod:238 ../src/guestfs-actions.pod:259 ../src/guestfs-actions.pod:279 ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:408 ../src/guestfs-actions.pod:428 ../src/guestfs-actions.pod:442 ../src/guestfs-actions.pod:487 ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:533 ../src/guestfs-actions.pod:600 ../src/guestfs-actions.pod:633 ../src/guestfs-actions.pod:647 ../src/guestfs-actions.pod:662 ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:779 ../src/guestfs-actions.pod:793 ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:968 ../src/guestfs-actions.pod:988 ../src/guestfs-actions.pod:1006 ../src/guestfs-actions.pod:1090 ../src/guestfs-actions.pod:1108 ../src/guestfs-actions.pod:1127 ../src/guestfs-actions.pod:1141 ../src/guestfs-actions.pod:1161 ../src/guestfs-actions.pod:1231 ../src/guestfs-actions.pod:1262 ../src/guestfs-actions.pod:1287 ../src/guestfs-actions.pod:1324 ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1464 ../src/guestfs-actions.pod:1679 ../src/guestfs-actions.pod:1701 ../src/guestfs-actions.pod:1788 ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:2384 ../src/guestfs-actions.pod:2445 ../src/guestfs-actions.pod:2480 ../src/guestfs-actions.pod:3223 ../src/guestfs-actions.pod:3238 ../src/guestfs-actions.pod:3258 ../src/guestfs-actions.pod:3413 ../src/guestfs-actions.pod:3427 ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:3469 ../src/guestfs-actions.pod:3505 ../src/guestfs-actions.pod:3577 ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:3614 ../src/guestfs-actions.pod:3637 ../src/guestfs-actions.pod:3660 ../src/guestfs-actions.pod:3692 ../src/guestfs-actions.pod:3711 ../src/guestfs-actions.pod:3730 ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:3777 ../src/guestfs-actions.pod:3813 ../src/guestfs-actions.pod:3829 ../src/guestfs-actions.pod:3842 ../src/guestfs-actions.pod:3857 ../src/guestfs-actions.pod:3874 ../src/guestfs-actions.pod:3967 ../src/guestfs-actions.pod:3987 ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4069 ../src/guestfs-actions.pod:4087 ../src/guestfs-actions.pod:4103 ../src/guestfs-actions.pod:4117 ../src/guestfs-actions.pod:4131 ../src/guestfs-actions.pod:4148 ../src/guestfs-actions.pod:4163 ../src/guestfs-actions.pod:4183 ../src/guestfs-actions.pod:4229 ../src/guestfs-actions.pod:4302 ../src/guestfs-actions.pod:4333 ../src/guestfs-actions.pod:4352 ../src/guestfs-actions.pod:4371 ../src/guestfs-actions.pod:4383 ../src/guestfs-actions.pod:4400 ../src/guestfs-actions.pod:4413 ../src/guestfs-actions.pod:4428 ../src/guestfs-actions.pod:4443 ../src/guestfs-actions.pod:4478 ../src/guestfs-actions.pod:4493 ../src/guestfs-actions.pod:4513 ../src/guestfs-actions.pod:4527 ../src/guestfs-actions.pod:4544 ../src/guestfs-actions.pod:4593 ../src/guestfs-actions.pod:4639 ../src/guestfs-actions.pod:4653 ../src/guestfs-actions.pod:4681 ../src/guestfs-actions.pod:4698 ../src/guestfs-actions.pod:4716 ../src/guestfs-actions.pod:4850 ../src/guestfs-actions.pod:4907 ../src/guestfs-actions.pod:4929 ../src/guestfs-actions.pod:4947 ../src/guestfs-actions.pod:4979 ../src/guestfs-actions.pod:5045 ../src/guestfs-actions.pod:5062 ../src/guestfs-actions.pod:5075 ../src/guestfs-actions.pod:5089 ../src/guestfs-actions.pod:5378 ../src/guestfs-actions.pod:5397 ../src/guestfs-actions.pod:5411 ../src/guestfs-actions.pod:5423 ../src/guestfs-actions.pod:5437 ../src/guestfs-actions.pod:5449 ../src/guestfs-actions.pod:5463 ../src/guestfs-actions.pod:5479 ../src/guestfs-actions.pod:5500 ../src/guestfs-actions.pod:5519 ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5556 ../src/guestfs-actions.pod:5579 ../src/guestfs-actions.pod:5597 ../src/guestfs-actions.pod:5616 ../src/guestfs-actions.pod:5637 ../src/guestfs-actions.pod:5656 ../src/guestfs-actions.pod:5673 ../src/guestfs-actions.pod:5701 ../src/guestfs-actions.pod:5725 ../src/guestfs-actions.pod:5744 ../src/guestfs-actions.pod:5768 ../src/guestfs-actions.pod:5783 ../src/guestfs-actions.pod:5798 ../src/guestfs-actions.pod:5817 ../src/guestfs-actions.pod:5854 ../src/guestfs-actions.pod:5877 ../src/guestfs-actions.pod:5903 ../src/guestfs-actions.pod:6011 ../src/guestfs-actions.pod:6132 ../src/guestfs-actions.pod:6144 ../src/guestfs-actions.pod:6157 ../src/guestfs-actions.pod:6170 ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6205 ../src/guestfs-actions.pod:6218 ../src/guestfs-actions.pod:6231 ../src/guestfs-actions.pod:6246 ../src/guestfs-actions.pod:6305 ../src/guestfs-actions.pod:6322 ../src/guestfs-actions.pod:6338 ../src/guestfs-actions.pod:6354 ../src/guestfs-actions.pod:6371 ../src/guestfs-actions.pod:6384 ../src/guestfs-actions.pod:6404 ../src/guestfs-actions.pod:6440 ../src/guestfs-actions.pod:6454 ../src/guestfs-actions.pod:6495 ../src/guestfs-actions.pod:6508 ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6560 ../src/guestfs-actions.pod:6596 ../src/guestfs-actions.pod:6715 ../src/guestfs-actions.pod:6733 ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:6802 ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:6860 ../src/guestfs-actions.pod:6893 ../src/guestfs-actions.pod:6947 ../src/guestfs-actions.pod:6973 ../src/guestfs-actions.pod:7039 ../src/guestfs-actions.pod:7058 ../src/guestfs-actions.pod:7087
5025 msgid "This function returns 0 on success or -1 on error."
5026 msgstr ""
5027
5028 #. type: textblock
5029 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:240 ../src/guestfs-actions.pod:261
5030 msgid ""
5031 "This function is deprecated.  In new code, use the "
5032 "L</guestfs_add_drive_opts> call instead."
5033 msgstr ""
5034
5035 #. type: textblock
5036 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:243 ../src/guestfs-actions.pod:264 ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1918 ../src/guestfs-actions.pod:1939 ../src/guestfs-actions.pod:4188 ../src/guestfs-actions.pod:6981 ../src/guestfs-actions.pod:7150 ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:154 ../fish/guestfish-actions.pod:168 ../fish/guestfish-actions.pod:949 ../fish/guestfish-actions.pod:1303 ../fish/guestfish-actions.pod:1317 ../fish/guestfish-actions.pod:2817 ../fish/guestfish-actions.pod:4630 ../fish/guestfish-actions.pod:4727
5037 msgid ""
5038 "Deprecated functions will not be removed from the API, but the fact that "
5039 "they are deprecated indicates that there are problems with correct use of "
5040 "these functions."
5041 msgstr ""
5042
5043 #. type: textblock
5044 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:128 ../src/guestfs-actions.pod:1092 ../src/guestfs-actions.pod:1890 ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2091 ../src/guestfs-actions.pod:3225 ../src/guestfs-actions.pod:3240 ../src/guestfs-actions.pod:4480 ../src/guestfs-actions.pod:5558 ../src/guestfs-actions.pod:5675 ../src/guestfs-actions.pod:5785 ../src/guestfs-actions.pod:6248 ../src/guestfs-actions.pod:6373 ../src/guestfs-actions.pod:6895
5045 msgid "(Added in 0.3)"
5046 msgstr ""
5047
5048 #. type: =head2
5049 #: ../src/guestfs-actions.pod:41
5050 msgid "guestfs_add_domain"
5051 msgstr ""
5052
5053 #. type: verbatim
5054 #: ../src/guestfs-actions.pod:43
5055 #, no-wrap
5056 msgid ""
5057 " int\n"
5058 " guestfs_add_domain (guestfs_h *g,\n"
5059 "                     const char *dom,\n"
5060 "                     ...);\n"
5061 "\n"
5062 msgstr ""
5063
5064 #. type: textblock
5065 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:137 ../src/guestfs-actions.pod:4202
5066 msgid ""
5067 "You may supply a list of optional arguments to this call.  Use zero or more "
5068 "of the following pairs of parameters, and terminate the list with C<-1> on "
5069 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5070 msgstr ""
5071
5072 #. type: verbatim
5073 #: ../src/guestfs-actions.pod:53
5074 #, no-wrap
5075 msgid ""
5076 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5077 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5078 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5079 "\n"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs-actions.pod:57
5084 msgid ""
5085 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5086 "It works by connecting to libvirt, requesting the domain and domain XML from "
5087 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5088 "one."
5089 msgstr ""
5090
5091 #. type: textblock
5092 #: ../src/guestfs-actions.pod:62 ../fish/guestfish-actions.pod:46
5093 msgid ""
5094 "The number of disks added is returned.  This operation is atomic: if an "
5095 "error is returned, then no disks are added."
5096 msgstr ""
5097
5098 #. type: textblock
5099 #: ../src/guestfs-actions.pod:65 ../fish/guestfish-actions.pod:49
5100 msgid ""
5101 "This function does some minimal checks to make sure the libvirt domain is "
5102 "not running (unless C<readonly> is true).  In a future version we will try "
5103 "to acquire the libvirt lock on each disk."
5104 msgstr ""
5105
5106 #. type: textblock
5107 #: ../src/guestfs-actions.pod:69 ../fish/guestfish-actions.pod:53
5108 msgid ""
5109 "Disks must be accessible locally.  This often means that adding disks from a "
5110 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5111 "unless those disks are accessible via the same device path locally too."
5112 msgstr ""
5113
5114 #. type: textblock
5115 #: ../src/guestfs-actions.pod:74 ../fish/guestfish-actions.pod:58
5116 msgid ""
5117 "The optional C<libvirturi> parameter sets the libvirt URI (see "
5118 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
5119 "default libvirt URI (or one set through an environment variable, see the "
5120 "libvirt documentation for full details)."
5121 msgstr ""
5122
5123 #. type: textblock
5124 #: ../src/guestfs-actions.pod:80
5125 msgid ""
5126 "The other optional parameters are passed directly through to "
5127 "C<guestfs_add_drive_opts>."
5128 msgstr ""
5129
5130 #. type: textblock
5131 #: ../src/guestfs-actions.pod:83 ../src/guestfs-actions.pod:336 ../src/guestfs-actions.pod:501 ../src/guestfs-actions.pod:679 ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:728 ../src/guestfs-actions.pod:747 ../src/guestfs-actions.pod:1307 ../src/guestfs-actions.pod:1658 ../src/guestfs-actions.pod:1861 ../src/guestfs-actions.pod:1960 ../src/guestfs-actions.pod:2000 ../src/guestfs-actions.pod:2055 ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2371 ../src/guestfs-actions.pod:2659 ../src/guestfs-actions.pod:2680 ../src/guestfs-actions.pod:4616 ../src/guestfs-actions.pod:4753 ../src/guestfs-actions.pod:5159 ../src/guestfs-actions.pod:5185 ../src/guestfs-actions.pod:6481 ../src/guestfs-actions.pod:6906 ../src/guestfs-actions.pod:6919 ../src/guestfs-actions.pod:6932
5132 msgid "On error this function returns -1."
5133 msgstr ""
5134
5135 #. type: textblock
5136 #: ../src/guestfs-actions.pod:85
5137 msgid "(Added in 1.7.4)"
5138 msgstr ""
5139
5140 #. type: =head2
5141 #: ../src/guestfs-actions.pod:87
5142 msgid "guestfs_add_domain_va"
5143 msgstr ""
5144
5145 #. type: verbatim
5146 #: ../src/guestfs-actions.pod:89
5147 #, no-wrap
5148 msgid ""
5149 " int\n"
5150 " guestfs_add_domain_va (guestfs_h *g,\n"
5151 "                        const char *dom,\n"
5152 "                        va_list args);\n"
5153 "\n"
5154 msgstr ""
5155
5156 #. type: textblock
5157 #: ../src/guestfs-actions.pod:94
5158 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5159 msgstr ""
5160
5161 #. type: textblock
5162 #: ../src/guestfs-actions.pod:96 ../src/guestfs-actions.pod:107 ../src/guestfs-actions.pod:200 ../src/guestfs-actions.pod:211 ../src/guestfs-actions.pod:4243 ../src/guestfs-actions.pod:4255
5163 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
5164 msgstr ""
5165
5166 #. type: =head2
5167 #: ../src/guestfs-actions.pod:98
5168 msgid "guestfs_add_domain_argv"
5169 msgstr ""
5170
5171 #. type: verbatim
5172 #: ../src/guestfs-actions.pod:100
5173 #, no-wrap
5174 msgid ""
5175 " int\n"
5176 " guestfs_add_domain_argv (guestfs_h *g,\n"
5177 "                          const char *dom,\n"
5178 "                          const struct guestfs_add_domain_argv *optargs);\n"
5179 "\n"
5180 msgstr ""
5181
5182 #. type: textblock
5183 #: ../src/guestfs-actions.pod:105
5184 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
5185 msgstr ""
5186
5187 #. type: =head2
5188 #: ../src/guestfs-actions.pod:109
5189 msgid "guestfs_add_drive"
5190 msgstr ""
5191
5192 #. type: verbatim
5193 #: ../src/guestfs-actions.pod:111
5194 #, no-wrap
5195 msgid ""
5196 " int\n"
5197 " guestfs_add_drive (guestfs_h *g,\n"
5198 "                    const char *filename);\n"
5199 "\n"
5200 msgstr ""
5201
5202 #. type: textblock
5203 #: ../src/guestfs-actions.pod:115
5204 msgid ""
5205 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
5206 "optional parameters, so the disk is added writable, with the format being "
5207 "detected automatically."
5208 msgstr ""
5209
5210 #. type: textblock
5211 #: ../src/guestfs-actions.pod:119
5212 msgid ""
5213 "Automatic detection of the format opens you up to a potential security hole "
5214 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
5215 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
5216 "you should think about replacing calls to this function with calls to "
5217 "C<guestfs_add_drive_opts>, and specifying the format."
5218 msgstr ""
5219
5220 #. type: =head2
5221 #: ../src/guestfs-actions.pod:130
5222 msgid "guestfs_add_drive_opts"
5223 msgstr ""
5224
5225 #. type: verbatim
5226 #: ../src/guestfs-actions.pod:132
5227 #, no-wrap
5228 msgid ""
5229 " int\n"
5230 " guestfs_add_drive_opts (guestfs_h *g,\n"
5231 "                         const char *filename,\n"
5232 "                         ...);\n"
5233 "\n"
5234 msgstr ""
5235
5236 #. type: verbatim
5237 #: ../src/guestfs-actions.pod:142
5238 #, no-wrap
5239 msgid ""
5240 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
5241 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
5242 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
5243 "\n"
5244 msgstr ""
5245
5246 #. type: textblock
5247 #: ../src/guestfs-actions.pod:146 ../fish/guestfish-actions.pod:90
5248 msgid ""
5249 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
5250 "The first time you call this function, the disk appears as C</dev/sda>, the "
5251 "second time as C</dev/sdb>, and so on."
5252 msgstr ""
5253
5254 #. type: textblock
5255 #: ../src/guestfs-actions.pod:151 ../fish/guestfish-actions.pod:95
5256 msgid ""
5257 "You don't necessarily need to be root when using libguestfs.  However you "
5258 "obviously do need sufficient permissions to access the filename for whatever "
5259 "operations you want to perform (ie. read access if you just want to read the "
5260 "image or write access if you want to modify the image)."
5261 msgstr ""
5262
5263 #. type: textblock
5264 #: ../src/guestfs-actions.pod:157 ../fish/guestfish-actions.pod:101
5265 msgid "This call checks that C<filename> exists."
5266 msgstr ""
5267
5268 #. type: textblock
5269 #: ../src/guestfs-actions.pod:159 ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:103 ../fish/guestfish-actions.pod:2828
5270 msgid "The optional arguments are:"
5271 msgstr ""
5272
5273 #. type: =item
5274 #: ../src/guestfs-actions.pod:163 ../fish/guestfish-actions.pod:107
5275 msgid "C<readonly>"
5276 msgstr ""
5277
5278 #. type: textblock
5279 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:109
5280 msgid ""
5281 "If true then the image is treated as read-only.  Writes are still allowed, "
5282 "but they are stored in a temporary snapshot overlay which is discarded at "
5283 "the end.  The disk that you add is not modified."
5284 msgstr ""
5285
5286 #. type: =item
5287 #: ../src/guestfs-actions.pod:169 ../fish/guestfish-actions.pod:113
5288 msgid "C<format>"
5289 msgstr ""
5290
5291 #. type: textblock
5292 #: ../src/guestfs-actions.pod:171
5293 msgid ""
5294 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
5295 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
5296 "Possible formats include C<raw> and C<qcow2>."
5297 msgstr ""
5298
5299 #. type: textblock
5300 #: ../src/guestfs-actions.pod:175 ../fish/guestfish-actions.pod:119
5301 msgid ""
5302 "Automatic detection of the format opens you up to a potential security hole "
5303 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
5304 "RHBZ#642934.  Specifying the format closes this security hole."
5305 msgstr ""
5306
5307 #. type: =item
5308 #: ../src/guestfs-actions.pod:180 ../fish/guestfish-actions.pod:124
5309 msgid "C<iface>"
5310 msgstr ""
5311
5312 #. type: textblock
5313 #: ../src/guestfs-actions.pod:182
5314 msgid ""
5315 "This rarely-used option lets you emulate the behaviour of the deprecated "
5316 "C<guestfs_add_drive_with_if> call (q.v.)"
5317 msgstr ""
5318
5319 #. type: textblock
5320 #: ../src/guestfs-actions.pod:189
5321 msgid "(Added in 1.5.23)"
5322 msgstr ""
5323
5324 #. type: =head2
5325 #: ../src/guestfs-actions.pod:191
5326 msgid "guestfs_add_drive_opts_va"
5327 msgstr ""
5328
5329 #. type: verbatim
5330 #: ../src/guestfs-actions.pod:193
5331 #, no-wrap
5332 msgid ""
5333 " int\n"
5334 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
5335 "                            const char *filename,\n"
5336 "                            va_list args);\n"
5337 "\n"
5338 msgstr ""
5339
5340 #. type: textblock
5341 #: ../src/guestfs-actions.pod:198
5342 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
5343 msgstr ""
5344
5345 #. type: =head2
5346 #: ../src/guestfs-actions.pod:202
5347 msgid "guestfs_add_drive_opts_argv"
5348 msgstr ""
5349
5350 #. type: verbatim
5351 #: ../src/guestfs-actions.pod:204
5352 #, no-wrap
5353 msgid ""
5354 " int\n"
5355 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
5356 "                              const char *filename,\n"
5357 "                              const struct guestfs_add_drive_opts_argv "
5358 "*optargs);\n"
5359 "\n"
5360 msgstr ""
5361
5362 #. type: textblock
5363 #: ../src/guestfs-actions.pod:209
5364 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
5365 msgstr ""
5366
5367 #. type: =head2
5368 #: ../src/guestfs-actions.pod:213
5369 msgid "guestfs_add_drive_ro"
5370 msgstr ""
5371
5372 #. type: verbatim
5373 #: ../src/guestfs-actions.pod:215
5374 #, no-wrap
5375 msgid ""
5376 " int\n"
5377 " guestfs_add_drive_ro (guestfs_h *g,\n"
5378 "                       const char *filename);\n"
5379 "\n"
5380 msgstr ""
5381
5382 #. type: textblock
5383 #: ../src/guestfs-actions.pod:219
5384 msgid ""
5385 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
5386 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
5387 "disk is added read-only, with the format being detected automatically."
5388 msgstr ""
5389
5390 #. type: textblock
5391 #: ../src/guestfs-actions.pod:226
5392 msgid "(Added in 1.0.38)"
5393 msgstr ""
5394
5395 #. type: =head2
5396 #: ../src/guestfs-actions.pod:228
5397 msgid "guestfs_add_drive_ro_with_if"
5398 msgstr ""
5399
5400 #. type: verbatim
5401 #: ../src/guestfs-actions.pod:230
5402 #, no-wrap
5403 msgid ""
5404 " int\n"
5405 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
5406 "                               const char *filename,\n"
5407 "                               const char *iface);\n"
5408 "\n"
5409 msgstr ""
5410
5411 #. type: textblock
5412 #: ../src/guestfs-actions.pod:235
5413 msgid ""
5414 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
5415 "QEMU interface emulation to use at run time."
5416 msgstr ""
5417
5418 #. type: textblock
5419 #: ../src/guestfs-actions.pod:247 ../src/guestfs-actions.pod:268 ../src/guestfs-actions.pod:2330
5420 msgid "(Added in 1.0.84)"
5421 msgstr ""
5422
5423 #. type: =head2
5424 #: ../src/guestfs-actions.pod:249
5425 msgid "guestfs_add_drive_with_if"
5426 msgstr ""
5427
5428 #. type: verbatim
5429 #: ../src/guestfs-actions.pod:251
5430 #, no-wrap
5431 msgid ""
5432 " int\n"
5433 " guestfs_add_drive_with_if (guestfs_h *g,\n"
5434 "                            const char *filename,\n"
5435 "                            const char *iface);\n"
5436 "\n"
5437 msgstr ""
5438
5439 #. type: textblock
5440 #: ../src/guestfs-actions.pod:256
5441 msgid ""
5442 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
5443 "QEMU interface emulation to use at run time."
5444 msgstr ""
5445
5446 #. type: =head2
5447 #: ../src/guestfs-actions.pod:270
5448 msgid "guestfs_aug_clear"
5449 msgstr ""
5450
5451 #. type: verbatim
5452 #: ../src/guestfs-actions.pod:272
5453 #, no-wrap
5454 msgid ""
5455 " int\n"
5456 " guestfs_aug_clear (guestfs_h *g,\n"
5457 "                    const char *augpath);\n"
5458 "\n"
5459 msgstr ""
5460
5461 #. type: textblock
5462 #: ../src/guestfs-actions.pod:276 ../fish/guestfish-actions.pod:176
5463 msgid ""
5464 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
5465 "L<augtool(1)> C<clear> command."
5466 msgstr ""
5467
5468 #. type: textblock
5469 #: ../src/guestfs-actions.pod:281 ../src/guestfs-actions.pod:2080
5470 msgid "(Added in 1.3.4)"
5471 msgstr ""
5472
5473 #. type: =head2
5474 #: ../src/guestfs-actions.pod:283
5475 msgid "guestfs_aug_close"
5476 msgstr ""
5477
5478 #. type: verbatim
5479 #: ../src/guestfs-actions.pod:285
5480 #, no-wrap
5481 msgid ""
5482 " int\n"
5483 " guestfs_aug_close (guestfs_h *g);\n"
5484 "\n"
5485 msgstr ""
5486
5487 #. type: textblock
5488 #: ../src/guestfs-actions.pod:288
5489 msgid ""
5490 "Close the current Augeas handle and free up any resources used by it.  After "
5491 "calling this, you have to call C<guestfs_aug_init> again before you can use "
5492 "any other Augeas functions."
5493 msgstr ""
5494
5495 #. type: textblock
5496 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:320 ../src/guestfs-actions.pod:338 ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:410 ../src/guestfs-actions.pod:430 ../src/guestfs-actions.pod:444 ../src/guestfs-actions.pod:475 ../src/guestfs-actions.pod:489 ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517 ../src/guestfs-actions.pod:535 ../src/guestfs-actions.pod:5236
5497 msgid "(Added in 0.7)"
5498 msgstr ""
5499
5500 #. type: =head2
5501 #: ../src/guestfs-actions.pod:297
5502 msgid "guestfs_aug_defnode"
5503 msgstr ""
5504
5505 #. type: verbatim
5506 #: ../src/guestfs-actions.pod:299
5507 #, no-wrap
5508 msgid ""
5509 " struct guestfs_int_bool *\n"
5510 " guestfs_aug_defnode (guestfs_h *g,\n"
5511 "                      const char *name,\n"
5512 "                      const char *expr,\n"
5513 "                      const char *val);\n"
5514 "\n"
5515 msgstr ""
5516
5517 #. type: textblock
5518 #: ../src/guestfs-actions.pod:305 ../fish/guestfish-actions.pod:192
5519 msgid "Defines a variable C<name> whose value is the result of evaluating C<expr>."
5520 msgstr ""
5521
5522 #. type: textblock
5523 #: ../src/guestfs-actions.pod:308
5524 msgid ""
5525 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
5526 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
5527 "containing that single node."
5528 msgstr ""
5529
5530 #. type: textblock
5531 #: ../src/guestfs-actions.pod:312 ../fish/guestfish-actions.pod:199
5532 msgid ""
5533 "On success this returns a pair containing the number of nodes in the "
5534 "nodeset, and a boolean flag if a node was created."
5535 msgstr ""
5536
5537 #. type: textblock
5538 #: ../src/guestfs-actions.pod:316
5539 msgid ""
5540 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
5541 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
5542 msgstr ""
5543
5544 #. type: =head2
5545 #: ../src/guestfs-actions.pod:322
5546 msgid "guestfs_aug_defvar"
5547 msgstr ""
5548
5549 #. type: verbatim
5550 #: ../src/guestfs-actions.pod:324
5551 #, no-wrap
5552 msgid ""
5553 " int\n"
5554 " guestfs_aug_defvar (guestfs_h *g,\n"
5555 "                     const char *name,\n"
5556 "                     const char *expr);\n"
5557 "\n"
5558 msgstr ""
5559
5560 #. type: textblock
5561 #: ../src/guestfs-actions.pod:329 ../fish/guestfish-actions.pod:207
5562 msgid ""
5563 "Defines an Augeas variable C<name> whose value is the result of evaluating "
5564 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
5565 msgstr ""
5566
5567 #. type: textblock
5568 #: ../src/guestfs-actions.pod:333 ../fish/guestfish-actions.pod:211
5569 msgid ""
5570 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
5571 "evaluates to something which is not a nodeset."
5572 msgstr ""
5573
5574 #. type: =head2
5575 #: ../src/guestfs-actions.pod:340
5576 msgid "guestfs_aug_get"
5577 msgstr ""
5578
5579 #. type: verbatim
5580 #: ../src/guestfs-actions.pod:342
5581 #, no-wrap
5582 msgid ""
5583 " char *\n"
5584 " guestfs_aug_get (guestfs_h *g,\n"
5585 "                  const char *augpath);\n"
5586 "\n"
5587 msgstr ""
5588
5589 #. type: textblock
5590 #: ../src/guestfs-actions.pod:346 ../fish/guestfish-actions.pod:218
5591 msgid ""
5592 "Look up the value associated with C<path>.  If C<path> matches exactly one "
5593 "node, the C<value> is returned."
5594 msgstr ""
5595
5596 #. type: textblock
5597 #: ../src/guestfs-actions.pod:349 ../src/guestfs-actions.pod:849 ../src/guestfs-actions.pod:867 ../src/guestfs-actions.pod:927 ../src/guestfs-actions.pod:943 ../src/guestfs-actions.pod:1046 ../src/guestfs-actions.pod:1176 ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1212 ../src/guestfs-actions.pod:1341 ../src/guestfs-actions.pod:1529 ../src/guestfs-actions.pod:1641 ../src/guestfs-actions.pod:1804 ../src/guestfs-actions.pod:1821 ../src/guestfs-actions.pod:1912 ../src/guestfs-actions.pod:1933 ../src/guestfs-actions.pod:2103 ../src/guestfs-actions.pod:2295 ../src/guestfs-actions.pod:2502 ../src/guestfs-actions.pod:2583 ../src/guestfs-actions.pod:2631 ../src/guestfs-actions.pod:2745 ../src/guestfs-actions.pod:2776 ../src/guestfs-actions.pod:2800 ../src/guestfs-actions.pod:2862 ../src/guestfs-actions.pod:2885 ../src/guestfs-actions.pod:3399 ../src/guestfs-actions.pod:3749 ../src/guestfs-actions.pod:3919 ../src/guestfs-actions.pod:4029 ../src/guestfs-actions.pod:4771 ../src/guestfs-actions.pod:4964 ../src/guestfs-actions.pod:5134 ../src/guestfs-actions.pod:5312 ../src/guestfs-actions.pod:5361 ../src/guestfs-actions.pod:5924 ../src/guestfs-actions.pod:5940 ../src/guestfs-actions.pod:5957 ../src/guestfs-actions.pod:5981 ../src/guestfs-actions.pod:6655 ../src/guestfs-actions.pod:6674 ../src/guestfs-actions.pod:6692 ../src/guestfs-actions.pod:6872 ../src/guestfs-actions.pod:7144
5598 msgid ""
5599 "This function returns a string, or NULL on error.  I<The caller must free "
5600 "the returned string after use>."
5601 msgstr ""
5602
5603 #. type: =head2
5604 #: ../src/guestfs-actions.pod:354
5605 msgid "guestfs_aug_init"
5606 msgstr ""
5607
5608 #. type: verbatim
5609 #: ../src/guestfs-actions.pod:356
5610 #, no-wrap
5611 msgid ""
5612 " int\n"
5613 " guestfs_aug_init (guestfs_h *g,\n"
5614 "                   const char *root,\n"
5615 "                   int flags);\n"
5616 "\n"
5617 msgstr ""
5618
5619 #. type: textblock
5620 #: ../src/guestfs-actions.pod:361 ../fish/guestfish-actions.pod:225
5621 msgid ""
5622 "Create a new Augeas handle for editing configuration files.  If there was "
5623 "any previous Augeas handle associated with this guestfs session, then it is "
5624 "closed."
5625 msgstr ""
5626
5627 #. type: textblock
5628 #: ../src/guestfs-actions.pod:365
5629 msgid "You must call this before using any other C<guestfs_aug_*> commands."
5630 msgstr ""
5631
5632 #. type: textblock
5633 #: ../src/guestfs-actions.pod:368 ../fish/guestfish-actions.pod:232
5634 msgid "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
5635 msgstr ""
5636
5637 #. type: textblock
5638 #: ../src/guestfs-actions.pod:371 ../fish/guestfish-actions.pod:235
5639 msgid ""
5640 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
5641 "logical I<or> of the following integers:"
5642 msgstr ""
5643
5644 #. type: =item
5645 #: ../src/guestfs-actions.pod:377 ../fish/guestfish-actions.pod:241
5646 msgid "C<AUG_SAVE_BACKUP> = 1"
5647 msgstr ""
5648
5649 #. type: textblock
5650 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:243
5651 msgid "Keep the original file with a C<.augsave> extension."
5652 msgstr ""
5653
5654 #. type: =item
5655 #: ../src/guestfs-actions.pod:381 ../fish/guestfish-actions.pod:245
5656 msgid "C<AUG_SAVE_NEWFILE> = 2"
5657 msgstr ""
5658
5659 #. type: textblock
5660 #: ../src/guestfs-actions.pod:383 ../fish/guestfish-actions.pod:247
5661 msgid ""
5662 "Save changes into a file with extension C<.augnew>, and do not overwrite "
5663 "original.  Overrides C<AUG_SAVE_BACKUP>."
5664 msgstr ""
5665
5666 #. type: =item
5667 #: ../src/guestfs-actions.pod:386 ../fish/guestfish-actions.pod:250
5668 msgid "C<AUG_TYPE_CHECK> = 4"
5669 msgstr ""
5670
5671 #. type: textblock
5672 #: ../src/guestfs-actions.pod:388 ../fish/guestfish-actions.pod:252
5673 msgid "Typecheck lenses (can be expensive)."
5674 msgstr ""
5675
5676 #. type: =item
5677 #: ../src/guestfs-actions.pod:390 ../fish/guestfish-actions.pod:254
5678 msgid "C<AUG_NO_STDINC> = 8"
5679 msgstr ""
5680
5681 #. type: textblock
5682 #: ../src/guestfs-actions.pod:392 ../fish/guestfish-actions.pod:256
5683 msgid "Do not use standard load path for modules."
5684 msgstr ""
5685
5686 #. type: =item
5687 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:258
5688 msgid "C<AUG_SAVE_NOOP> = 16"
5689 msgstr ""
5690
5691 #. type: textblock
5692 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:260
5693 msgid "Make save a no-op, just record what would have been changed."
5694 msgstr ""
5695
5696 #. type: =item
5697 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:262
5698 msgid "C<AUG_NO_LOAD> = 32"
5699 msgstr ""
5700
5701 #. type: textblock
5702 #: ../src/guestfs-actions.pod:400
5703 msgid "Do not load the tree in C<guestfs_aug_init>."
5704 msgstr ""
5705
5706 #. type: textblock
5707 #: ../src/guestfs-actions.pod:404
5708 msgid "To close the handle, you can call C<guestfs_aug_close>."
5709 msgstr ""
5710
5711 #. type: textblock
5712 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:270
5713 msgid "To find out more about Augeas, see L<http://augeas.net/>."
5714 msgstr ""
5715
5716 #. type: =head2
5717 #: ../src/guestfs-actions.pod:412
5718 msgid "guestfs_aug_insert"
5719 msgstr ""
5720
5721 #. type: verbatim
5722 #: ../src/guestfs-actions.pod:414
5723 #, no-wrap
5724 msgid ""
5725 " int\n"
5726 " guestfs_aug_insert (guestfs_h *g,\n"
5727 "                     const char *augpath,\n"
5728 "                     const char *label,\n"
5729 "                     int before);\n"
5730 "\n"
5731 msgstr ""
5732
5733 #. type: textblock
5734 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:276
5735 msgid ""
5736 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
5737 "or after C<path> (depending on the boolean flag C<before>)."
5738 msgstr ""
5739
5740 #. type: textblock
5741 #: ../src/guestfs-actions.pod:424 ../fish/guestfish-actions.pod:280
5742 msgid ""
5743 "C<path> must match exactly one existing node in the tree, and C<label> must "
5744 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
5745 msgstr ""
5746
5747 #. type: =head2
5748 #: ../src/guestfs-actions.pod:432
5749 msgid "guestfs_aug_load"
5750 msgstr ""
5751
5752 #. type: verbatim
5753 #: ../src/guestfs-actions.pod:434
5754 #, no-wrap
5755 msgid ""
5756 " int\n"
5757 " guestfs_aug_load (guestfs_h *g);\n"
5758 "\n"
5759 msgstr ""
5760
5761 #. type: textblock
5762 #: ../src/guestfs-actions.pod:437 ../fish/guestfish-actions.pod:288
5763 msgid "Load files into the tree."
5764 msgstr ""
5765
5766 #. type: textblock
5767 #: ../src/guestfs-actions.pod:439 ../fish/guestfish-actions.pod:290
5768 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
5769 msgstr ""
5770
5771 #. type: =head2
5772 #: ../src/guestfs-actions.pod:446
5773 msgid "guestfs_aug_ls"
5774 msgstr ""
5775
5776 #. type: verbatim
5777 #: ../src/guestfs-actions.pod:448
5778 #, no-wrap
5779 msgid ""
5780 " char **\n"
5781 " guestfs_aug_ls (guestfs_h *g,\n"
5782 "                 const char *augpath);\n"
5783 "\n"
5784 msgstr ""
5785
5786 #. type: textblock
5787 #: ../src/guestfs-actions.pod:452
5788 msgid ""
5789 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
5790 "sorting the resulting nodes into alphabetical order."
5791 msgstr ""
5792
5793 #. type: textblock
5794 #: ../src/guestfs-actions.pod:455 ../src/guestfs-actions.pod:471 ../src/guestfs-actions.pod:617 ../src/guestfs-actions.pod:1065 ../src/guestfs-actions.pod:1356 ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1478 ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1743 ../src/guestfs-actions.pod:2175 ../src/guestfs-actions.pod:2191 ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:2253 ../src/guestfs-actions.pod:2277 ../src/guestfs-actions.pod:2348 ../src/guestfs-actions.pod:2397 ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:2819 ../src/guestfs-actions.pod:3034 ../src/guestfs-actions.pod:3319 ../src/guestfs-actions.pod:3381 ../src/guestfs-actions.pod:3486 ../src/guestfs-actions.pod:3891 ../src/guestfs-actions.pod:4577 ../src/guestfs-actions.pod:5106 ../src/guestfs-actions.pod:5232 ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5997 ../src/guestfs-actions.pod:6058 ../src/guestfs-actions.pod:6113 ../src/guestfs-actions.pod:6259 ../src/guestfs-actions.pod:6283 ../src/guestfs-actions.pod:6765 ../src/guestfs-actions.pod:6785 ../src/guestfs-actions.pod:6832 ../src/guestfs-actions.pod:6997 ../src/guestfs-actions.pod:7016 ../src/guestfs-actions.pod:7101 ../src/guestfs-actions.pod:7120 ../src/guestfs-actions.pod:7166 ../src/guestfs-actions.pod:7185
5795 msgid ""
5796 "This function returns a NULL-terminated array of strings (like "
5797 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
5798 "strings and the array after use>."
5799 msgstr ""
5800
5801 #. type: textblock
5802 #: ../src/guestfs-actions.pod:459 ../src/guestfs-actions.pod:990 ../src/guestfs-actions.pod:1008 ../src/guestfs-actions.pod:1413 ../src/guestfs-actions.pod:3112 ../src/guestfs-actions.pod:3143 ../src/guestfs-actions.pod:3732 ../src/guestfs-actions.pod:3782 ../src/guestfs-actions.pod:3969 ../src/guestfs-actions.pod:4002 ../src/guestfs-actions.pod:4165 ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:5047 ../src/guestfs-actions.pod:5425 ../src/guestfs-actions.pod:5439 ../src/guestfs-actions.pod:5451 ../src/guestfs-actions.pod:5859 ../src/guestfs-actions.pod:6497 ../src/guestfs-actions.pod:6510 ../src/guestfs-actions.pod:6749 ../src/guestfs-actions.pod:6985
5803 msgid "(Added in 0.8)"
5804 msgstr ""
5805
5806 #. type: =head2
5807 #: ../src/guestfs-actions.pod:461
5808 msgid "guestfs_aug_match"
5809 msgstr ""
5810
5811 #. type: verbatim
5812 #: ../src/guestfs-actions.pod:463
5813 #, no-wrap
5814 msgid ""
5815 " char **\n"
5816 " guestfs_aug_match (guestfs_h *g,\n"
5817 "                    const char *augpath);\n"
5818 "\n"
5819 msgstr ""
5820
5821 #. type: textblock
5822 #: ../src/guestfs-actions.pod:467 ../fish/guestfish-actions.pod:304
5823 msgid ""
5824 "Returns a list of paths which match the path expression C<path>.  The "
5825 "returned paths are sufficiently qualified so that they match exactly one "
5826 "node in the current tree."
5827 msgstr ""
5828
5829 #. type: =head2
5830 #: ../src/guestfs-actions.pod:477
5831 msgid "guestfs_aug_mv"
5832 msgstr ""
5833
5834 #. type: verbatim
5835 #: ../src/guestfs-actions.pod:479
5836 #, no-wrap
5837 msgid ""
5838 " int\n"
5839 " guestfs_aug_mv (guestfs_h *g,\n"
5840 "                 const char *src,\n"
5841 "                 const char *dest);\n"
5842 "\n"
5843 msgstr ""
5844
5845 #. type: textblock
5846 #: ../src/guestfs-actions.pod:484 ../fish/guestfish-actions.pod:312
5847 msgid ""
5848 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
5849 "C<dest> is overwritten if it exists."
5850 msgstr ""
5851
5852 #. type: =head2
5853 #: ../src/guestfs-actions.pod:491
5854 msgid "guestfs_aug_rm"
5855 msgstr ""
5856
5857 #. type: verbatim
5858 #: ../src/guestfs-actions.pod:493
5859 #, no-wrap
5860 msgid ""
5861 " int\n"
5862 " guestfs_aug_rm (guestfs_h *g,\n"
5863 "                 const char *augpath);\n"
5864 "\n"
5865 msgstr ""
5866
5867 #. type: textblock
5868 #: ../src/guestfs-actions.pod:497 ../fish/guestfish-actions.pod:319
5869 msgid "Remove C<path> and all of its children."
5870 msgstr ""
5871
5872 #. type: textblock
5873 #: ../src/guestfs-actions.pod:499 ../fish/guestfish-actions.pod:321
5874 msgid "On success this returns the number of entries which were removed."
5875 msgstr ""
5876
5877 #. type: =head2
5878 #: ../src/guestfs-actions.pod:505
5879 msgid "guestfs_aug_save"
5880 msgstr ""
5881
5882 #. type: verbatim
5883 #: ../src/guestfs-actions.pod:507
5884 #, no-wrap
5885 msgid ""
5886 " int\n"
5887 " guestfs_aug_save (guestfs_h *g);\n"
5888 "\n"
5889 msgstr ""
5890
5891 #. type: textblock
5892 #: ../src/guestfs-actions.pod:510 ../fish/guestfish-actions.pod:327
5893 msgid "This writes all pending changes to disk."
5894 msgstr ""
5895
5896 #. type: textblock
5897 #: ../src/guestfs-actions.pod:512
5898 msgid ""
5899 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
5900 "are saved."
5901 msgstr ""
5902
5903 #. type: =head2
5904 #: ../src/guestfs-actions.pod:519
5905 msgid "guestfs_aug_set"
5906 msgstr ""
5907
5908 #. type: verbatim
5909 #: ../src/guestfs-actions.pod:521
5910 #, no-wrap
5911 msgid ""
5912 " int\n"
5913 " guestfs_aug_set (guestfs_h *g,\n"
5914 "                  const char *augpath,\n"
5915 "                  const char *val);\n"
5916 "\n"
5917 msgstr ""
5918
5919 #. type: textblock
5920 #: ../src/guestfs-actions.pod:526 ../fish/guestfish-actions.pod:336
5921 msgid "Set the value associated with C<path> to C<val>."
5922 msgstr ""
5923
5924 #. type: textblock
5925 #: ../src/guestfs-actions.pod:528
5926 msgid ""
5927 "In the Augeas API, it is possible to clear a node by setting the value to "
5928 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
5929 "this call.  Instead you must use the C<guestfs_aug_clear> call."
5930 msgstr ""
5931
5932 #. type: =head2
5933 #: ../src/guestfs-actions.pod:537
5934 msgid "guestfs_available"
5935 msgstr ""
5936
5937 #. type: verbatim
5938 #: ../src/guestfs-actions.pod:539
5939 #, no-wrap
5940 msgid ""
5941 " int\n"
5942 " guestfs_available (guestfs_h *g,\n"
5943 "                    char *const *groups);\n"
5944 "\n"
5945 msgstr ""
5946
5947 #. type: textblock
5948 #: ../src/guestfs-actions.pod:543 ../fish/guestfish-actions.pod:347
5949 msgid ""
5950 "This command is used to check the availability of some groups of "
5951 "functionality in the appliance, which not all builds of the libguestfs "
5952 "appliance will be able to provide."
5953 msgstr ""
5954
5955 #. type: textblock
5956 #: ../src/guestfs-actions.pod:547
5957 msgid ""
5958 "The libguestfs groups, and the functions that those groups correspond to, "
5959 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
5960 "runtime by calling C<guestfs_available_all_groups>."
5961 msgstr ""
5962
5963 #. type: textblock
5964 #: ../src/guestfs-actions.pod:552 ../fish/guestfish-actions.pod:356
5965 msgid ""
5966 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
5967 "\"augeas\"]> would check for the availability of the Linux inotify functions "
5968 "and Augeas (configuration file editing) functions."
5969 msgstr ""
5970
5971 #. type: textblock
5972 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:361
5973 msgid "The command returns no error if I<all> requested groups are available."
5974 msgstr ""
5975
5976 #. type: textblock
5977 #: ../src/guestfs-actions.pod:559 ../fish/guestfish-actions.pod:363
5978 msgid ""
5979 "It fails with an error if one or more of the requested groups is unavailable "
5980 "in the appliance."
5981 msgstr ""
5982
5983 #. type: textblock
5984 #: ../src/guestfs-actions.pod:562 ../fish/guestfish-actions.pod:366
5985 msgid ""
5986 "If an unknown group name is included in the list of groups then an error is "
5987 "always returned."
5988 msgstr ""
5989
5990 #. type: textblock
5991 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:369
5992 msgid "I<Notes:>"
5993 msgstr ""
5994
5995 #. type: textblock
5996 #: ../src/guestfs-actions.pod:571
5997 msgid "You must call C<guestfs_launch> before calling this function."
5998 msgstr ""
5999
6000 #. type: textblock
6001 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:377
6002 msgid ""
6003 "The reason is because we don't know what groups are supported by the "
6004 "appliance/daemon until it is running and can be queried."
6005 msgstr ""
6006
6007 #. type: textblock
6008 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:383
6009 msgid ""
6010 "If a group of functions is available, this does not necessarily mean that "
6011 "they will work.  You still have to check for errors when calling individual "
6012 "API functions even if they are available."
6013 msgstr ""
6014
6015 #. type: textblock
6016 #: ../src/guestfs-actions.pod:586 ../fish/guestfish-actions.pod:390
6017 msgid ""
6018 "It is usually the job of distro packagers to build complete functionality "
6019 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6020 "with all requirements satisfied, will support everything."
6021 msgstr ""
6022
6023 #. type: textblock
6024 #: ../src/guestfs-actions.pod:593
6025 msgid ""
6026 "This call was added in version C<1.0.80>.  In previous versions of "
6027 "libguestfs all you could do would be to speculatively execute a command to "
6028 "find out if the daemon implemented it.  See also C<guestfs_version>."
6029 msgstr ""
6030
6031 #. type: textblock
6032 #: ../src/guestfs-actions.pod:602 ../src/guestfs-actions.pod:1163
6033 msgid "(Added in 1.0.80)"
6034 msgstr ""
6035
6036 #. type: =head2
6037 #: ../src/guestfs-actions.pod:604
6038 msgid "guestfs_available_all_groups"
6039 msgstr ""
6040
6041 #. type: verbatim
6042 #: ../src/guestfs-actions.pod:606
6043 #, no-wrap
6044 msgid ""
6045 " char **\n"
6046 " guestfs_available_all_groups (guestfs_h *g);\n"
6047 "\n"
6048 msgstr ""
6049
6050 #. type: textblock
6051 #: ../src/guestfs-actions.pod:609
6052 msgid ""
6053 "This command returns a list of all optional groups that this daemon knows "
6054 "about.  Note this returns both supported and unsupported groups.  To find "
6055 "out which ones the daemon can actually support you have to call "
6056 "C<guestfs_available> on each member of the returned list."
6057 msgstr ""
6058
6059 #. type: textblock
6060 #: ../src/guestfs-actions.pod:615
6061 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6062 msgstr ""
6063
6064 #. type: textblock
6065 #: ../src/guestfs-actions.pod:621
6066 msgid "(Added in 1.3.15)"
6067 msgstr ""
6068
6069 #. type: =head2
6070 #: ../src/guestfs-actions.pod:623
6071 msgid "guestfs_base64_in"
6072 msgstr ""
6073
6074 #. type: verbatim
6075 #: ../src/guestfs-actions.pod:625
6076 #, no-wrap
6077 msgid ""
6078 " int\n"
6079 " guestfs_base64_in (guestfs_h *g,\n"
6080 "                    const char *base64file,\n"
6081 "                    const char *filename);\n"
6082 "\n"
6083 msgstr ""
6084
6085 #. type: textblock
6086 #: ../src/guestfs-actions.pod:630 ../fish/guestfish-actions.pod:420
6087 msgid "This command uploads base64-encoded data from C<base64file> to C<filename>."
6088 msgstr ""
6089
6090 #. type: textblock
6091 #: ../src/guestfs-actions.pod:635 ../src/guestfs-actions.pod:649
6092 msgid "(Added in 1.3.5)"
6093 msgstr ""
6094
6095 #. type: =head2
6096 #: ../src/guestfs-actions.pod:637
6097 msgid "guestfs_base64_out"
6098 msgstr ""
6099
6100 #. type: verbatim
6101 #: ../src/guestfs-actions.pod:639
6102 #, no-wrap
6103 msgid ""
6104 " int\n"
6105 " guestfs_base64_out (guestfs_h *g,\n"
6106 "                     const char *filename,\n"
6107 "                     const char *base64file);\n"
6108 "\n"
6109 msgstr ""
6110
6111 #. type: textblock
6112 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:429
6113 msgid ""
6114 "This command downloads the contents of C<filename>, writing it out to local "
6115 "file C<base64file> encoded as base64."
6116 msgstr ""
6117
6118 #. type: =head2
6119 #: ../src/guestfs-actions.pod:651
6120 msgid "guestfs_blockdev_flushbufs"
6121 msgstr ""
6122
6123 #. type: verbatim
6124 #: ../src/guestfs-actions.pod:653
6125 #, no-wrap
6126 msgid ""
6127 " int\n"
6128 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
6129 "                             const char *device);\n"
6130 "\n"
6131 msgstr ""
6132
6133 #. type: textblock
6134 #: ../src/guestfs-actions.pod:657 ../fish/guestfish-actions.pod:438
6135 msgid "This tells the kernel to flush internal buffers associated with C<device>."
6136 msgstr ""
6137
6138 #. type: textblock
6139 #: ../src/guestfs-actions.pod:660 ../src/guestfs-actions.pod:677 ../src/guestfs-actions.pod:692 ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:726 ../src/guestfs-actions.pod:745 ../src/guestfs-actions.pod:759 ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:791 ../src/guestfs-actions.pod:805 ../fish/guestfish-actions.pod:441 ../fish/guestfish-actions.pod:452 ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:471 ../fish/guestfish-actions.pod:483 ../fish/guestfish-actions.pod:496 ../fish/guestfish-actions.pod:504 ../fish/guestfish-actions.pod:515 ../fish/guestfish-actions.pod:523 ../fish/guestfish-actions.pod:531
6140 msgid "This uses the L<blockdev(8)> command."
6141 msgstr ""
6142
6143 #. type: textblock
6144 #: ../src/guestfs-actions.pod:664 ../src/guestfs-actions.pod:681 ../src/guestfs-actions.pod:696 ../src/guestfs-actions.pod:712 ../src/guestfs-actions.pod:730 ../src/guestfs-actions.pod:749 ../src/guestfs-actions.pod:763 ../src/guestfs-actions.pod:781 ../src/guestfs-actions.pod:795 ../src/guestfs-actions.pod:809
6145 msgid "(Added in 0.9.3)"
6146 msgstr ""
6147
6148 #. type: =head2
6149 #: ../src/guestfs-actions.pod:666
6150 msgid "guestfs_blockdev_getbsz"
6151 msgstr ""
6152
6153 #. type: verbatim
6154 #: ../src/guestfs-actions.pod:668
6155 #, no-wrap
6156 msgid ""
6157 " int\n"
6158 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
6159 "                          const char *device);\n"
6160 "\n"
6161 msgstr ""
6162
6163 #. type: textblock
6164 #: ../src/guestfs-actions.pod:672 ../fish/guestfish-actions.pod:447
6165 msgid "This returns the block size of a device."
6166 msgstr ""
6167
6168 #. type: textblock
6169 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:774 ../fish/guestfish-actions.pod:449 ../fish/guestfish-actions.pod:512
6170 msgid ""
6171 "(Note this is different from both I<size in blocks> and I<filesystem block "
6172 "size>)."
6173 msgstr ""
6174
6175 #. type: =head2
6176 #: ../src/guestfs-actions.pod:683
6177 msgid "guestfs_blockdev_getro"
6178 msgstr ""
6179
6180 #. type: verbatim
6181 #: ../src/guestfs-actions.pod:685
6182 #, no-wrap
6183 msgid ""
6184 " int\n"
6185 " guestfs_blockdev_getro (guestfs_h *g,\n"
6186 "                         const char *device);\n"
6187 "\n"
6188 msgstr ""
6189
6190 #. type: textblock
6191 #: ../src/guestfs-actions.pod:689 ../fish/guestfish-actions.pod:458
6192 msgid ""
6193 "Returns a boolean indicating if the block device is read-only (true if "
6194 "read-only, false if not)."
6195 msgstr ""
6196
6197 #. type: textblock
6198 #: ../src/guestfs-actions.pod:694 ../src/guestfs-actions.pod:1396 ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:1888 ../src/guestfs-actions.pod:1899 ../src/guestfs-actions.pod:1971 ../src/guestfs-actions.pod:2026 ../src/guestfs-actions.pod:2041 ../src/guestfs-actions.pod:2066 ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:3051 ../src/guestfs-actions.pod:3065 ../src/guestfs-actions.pod:3080 ../src/guestfs-actions.pod:3094 ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3125 ../src/guestfs-actions.pod:3141 ../src/guestfs-actions.pod:3155 ../src/guestfs-actions.pod:3168 ../src/guestfs-actions.pod:3182 ../src/guestfs-actions.pod:3197 ../src/guestfs-actions.pod:3212 ../src/guestfs-actions.pod:4735
6199 msgid "This function returns a C truth value on success or -1 on error."
6200 msgstr ""
6201
6202 #. type: =head2
6203 #: ../src/guestfs-actions.pod:698
6204 msgid "guestfs_blockdev_getsize64"
6205 msgstr ""
6206
6207 #. type: verbatim
6208 #: ../src/guestfs-actions.pod:700
6209 #, no-wrap
6210 msgid ""
6211 " int64_t\n"
6212 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
6213 "                             const char *device);\n"
6214 "\n"
6215 msgstr ""
6216
6217 #. type: textblock
6218 #: ../src/guestfs-actions.pod:704 ../fish/guestfish-actions.pod:467
6219 msgid "This returns the size of the device in bytes."
6220 msgstr ""
6221
6222 #. type: textblock
6223 #: ../src/guestfs-actions.pod:706
6224 msgid "See also C<guestfs_blockdev_getsz>."
6225 msgstr ""
6226
6227 #. type: =head2
6228 #: ../src/guestfs-actions.pod:714
6229 msgid "guestfs_blockdev_getss"
6230 msgstr ""
6231
6232 #. type: verbatim
6233 #: ../src/guestfs-actions.pod:716
6234 #, no-wrap
6235 msgid ""
6236 " int\n"
6237 " guestfs_blockdev_getss (guestfs_h *g,\n"
6238 "                         const char *device);\n"
6239 "\n"
6240 msgstr ""
6241
6242 #. type: textblock
6243 #: ../src/guestfs-actions.pod:720 ../fish/guestfish-actions.pod:477
6244 msgid ""
6245 "This returns the size of sectors on a block device.  Usually 512, but can be "
6246 "larger for modern devices."
6247 msgstr ""
6248
6249 #. type: textblock
6250 #: ../src/guestfs-actions.pod:723
6251 msgid ""
6252 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
6253 "that)."
6254 msgstr ""
6255
6256 #. type: =head2
6257 #: ../src/guestfs-actions.pod:732
6258 msgid "guestfs_blockdev_getsz"
6259 msgstr ""
6260
6261 #. type: verbatim
6262 #: ../src/guestfs-actions.pod:734
6263 #, no-wrap
6264 msgid ""
6265 " int64_t\n"
6266 " guestfs_blockdev_getsz (guestfs_h *g,\n"
6267 "                         const char *device);\n"
6268 "\n"
6269 msgstr ""
6270
6271 #. type: textblock
6272 #: ../src/guestfs-actions.pod:738 ../fish/guestfish-actions.pod:489
6273 msgid ""
6274 "This returns the size of the device in units of 512-byte sectors (even if "
6275 "the sectorsize isn't 512 bytes ... weird)."
6276 msgstr ""
6277
6278 #. type: textblock
6279 #: ../src/guestfs-actions.pod:741
6280 msgid ""
6281 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
6282 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
6283 msgstr ""
6284
6285 #. type: =head2
6286 #: ../src/guestfs-actions.pod:751
6287 msgid "guestfs_blockdev_rereadpt"
6288 msgstr ""
6289
6290 #. type: verbatim
6291 #: ../src/guestfs-actions.pod:753
6292 #, no-wrap
6293 msgid ""
6294 " int\n"
6295 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
6296 "                            const char *device);\n"
6297 "\n"
6298 msgstr ""
6299
6300 #. type: textblock
6301 #: ../src/guestfs-actions.pod:757 ../fish/guestfish-actions.pod:502
6302 msgid "Reread the partition table on C<device>."
6303 msgstr ""
6304
6305 #. type: =head2
6306 #: ../src/guestfs-actions.pod:765
6307 msgid "guestfs_blockdev_setbsz"
6308 msgstr ""
6309
6310 #. type: verbatim
6311 #: ../src/guestfs-actions.pod:767
6312 #, no-wrap
6313 msgid ""
6314 " int\n"
6315 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
6316 "                          const char *device,\n"
6317 "                          int blocksize);\n"
6318 "\n"
6319 msgstr ""
6320
6321 #. type: textblock
6322 #: ../src/guestfs-actions.pod:772 ../fish/guestfish-actions.pod:510
6323 msgid "This sets the block size of a device."
6324 msgstr ""
6325
6326 #. type: =head2
6327 #: ../src/guestfs-actions.pod:783
6328 msgid "guestfs_blockdev_setro"
6329 msgstr ""
6330
6331 #. type: verbatim
6332 #: ../src/guestfs-actions.pod:785
6333 #, no-wrap
6334 msgid ""
6335 " int\n"
6336 " guestfs_blockdev_setro (guestfs_h *g,\n"
6337 "                         const char *device);\n"
6338 "\n"
6339 msgstr ""
6340
6341 #. type: textblock
6342 #: ../src/guestfs-actions.pod:789 ../fish/guestfish-actions.pod:521
6343 msgid "Sets the block device named C<device> to read-only."
6344 msgstr ""
6345
6346 #. type: =head2
6347 #: ../src/guestfs-actions.pod:797
6348 msgid "guestfs_blockdev_setrw"
6349 msgstr ""
6350
6351 #. type: verbatim
6352 #: ../src/guestfs-actions.pod:799
6353 #, no-wrap
6354 msgid ""
6355 " int\n"
6356 " guestfs_blockdev_setrw (guestfs_h *g,\n"
6357 "                         const char *device);\n"
6358 "\n"
6359 msgstr ""
6360
6361 #. type: textblock
6362 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:529
6363 msgid "Sets the block device named C<device> to read-write."
6364 msgstr ""
6365
6366 #. type: =head2
6367 #: ../src/guestfs-actions.pod:811
6368 msgid "guestfs_case_sensitive_path"
6369 msgstr ""
6370
6371 #. type: verbatim
6372 #: ../src/guestfs-actions.pod:813
6373 #, no-wrap
6374 msgid ""
6375 " char *\n"
6376 " guestfs_case_sensitive_path (guestfs_h *g,\n"
6377 "                              const char *path);\n"
6378 "\n"
6379 msgstr ""
6380
6381 #. type: textblock
6382 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:537
6383 msgid ""
6384 "This can be used to resolve case insensitive paths on a filesystem which is "
6385 "case sensitive.  The use case is to resolve paths which you have read from "
6386 "Windows configuration files or the Windows Registry, to the true path."
6387 msgstr ""
6388
6389 #. type: textblock
6390 #: ../src/guestfs-actions.pod:822 ../fish/guestfish-actions.pod:542
6391 msgid ""
6392 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
6393 "(and probably others), which is that although the underlying filesystem is "
6394 "case-insensitive, the driver exports the filesystem to Linux as "
6395 "case-sensitive."
6396 msgstr ""
6397
6398 #. type: textblock
6399 #: ../src/guestfs-actions.pod:827 ../fish/guestfish-actions.pod:547
6400 msgid ""
6401 "One consequence of this is that special directories such as C<c:\\windows> "
6402 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
6403 "precise details of how they were created.  In Windows itself this would not "
6404 "be a problem."
6405 msgstr ""
6406
6407 #. type: textblock
6408 #: ../src/guestfs-actions.pod:833 ../fish/guestfish-actions.pod:553
6409 msgid ""
6410 "Bug or feature? You decide: "
6411 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
6412 msgstr ""
6413
6414 #. type: textblock
6415 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:556
6416 msgid ""
6417 "This function resolves the true case of each element in the path and returns "
6418 "the case-sensitive path."
6419 msgstr ""
6420
6421 #. type: textblock
6422 #: ../src/guestfs-actions.pod:839
6423 msgid ""
6424 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
6425 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
6426 "how the directories were originally created under Windows)."
6427 msgstr ""
6428
6429 #. type: textblock
6430 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:564
6431 msgid "I<Note>: This function does not handle drive names, backslashes etc."
6432 msgstr ""
6433
6434 #. type: textblock
6435 #: ../src/guestfs-actions.pod:847
6436 msgid "See also C<guestfs_realpath>."
6437 msgstr ""
6438
6439 #. type: textblock
6440 #: ../src/guestfs-actions.pod:852 ../src/guestfs-actions.pod:6677
6441 msgid "(Added in 1.0.75)"
6442 msgstr ""
6443
6444 #. type: =head2
6445 #: ../src/guestfs-actions.pod:854
6446 msgid "guestfs_cat"
6447 msgstr ""
6448
6449 #. type: verbatim
6450 #: ../src/guestfs-actions.pod:856
6451 #, no-wrap
6452 msgid ""
6453 " char *\n"
6454 " guestfs_cat (guestfs_h *g,\n"
6455 "              const char *path);\n"
6456 "\n"
6457 msgstr ""
6458
6459 #. type: textblock
6460 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:5222 ../fish/guestfish-actions.pod:573 ../fish/guestfish-actions.pod:3474
6461 msgid "Return the contents of the file named C<path>."
6462 msgstr ""
6463
6464 #. type: textblock
6465 #: ../src/guestfs-actions.pod:862
6466 msgid ""
6467 "Note that this function cannot correctly handle binary files (specifically, "
6468 "files containing C<\\0> character which is treated as end of string).  For "
6469 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
6470 "functions which have a more complex interface."
6471 msgstr ""
6472
6473 #. type: textblock
6474 #: ../src/guestfs-actions.pod:870 ../src/guestfs-actions.pod:1049 ../src/guestfs-actions.pod:1069 ../src/guestfs-actions.pod:1360 ../src/guestfs-actions.pod:1379 ../src/guestfs-actions.pod:1482 ../src/guestfs-actions.pod:1501 ../src/guestfs-actions.pod:1747 ../src/guestfs-actions.pod:2195 ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2257 ../src/guestfs-actions.pod:2281 ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:2327 ../src/guestfs-actions.pod:5004 ../src/guestfs-actions.pod:5030 ../src/guestfs-actions.pod:5161 ../src/guestfs-actions.pod:5187 ../src/guestfs-actions.pod:5211 ../src/guestfs-actions.pod:6062 ../src/guestfs-actions.pod:6117 ../src/guestfs-actions.pod:6263 ../src/guestfs-actions.pod:6287 ../src/guestfs-actions.pod:6949 ../src/guestfs-actions.pod:6975 ../src/guestfs-actions.pod:7001 ../src/guestfs-actions.pod:7020 ../src/guestfs-actions.pod:7105 ../src/guestfs-actions.pod:7124 ../src/guestfs-actions.pod:7170 ../src/guestfs-actions.pod:7189 ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:715 ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:903 ../fish/guestfish-actions.pod:913 ../fish/guestfish-actions.pod:980 ../fish/guestfish-actions.pod:990 ../fish/guestfish-actions.pod:1182 ../fish/guestfish-actions.pod:1477 ../fish/guestfish-actions.pod:1487 ../fish/guestfish-actions.pod:1515 ../fish/guestfish-actions.pod:1530 ../fish/guestfish-actions.pod:1540 ../fish/guestfish-actions.pod:1559 ../fish/guestfish-actions.pod:3344 ../fish/guestfish-actions.pod:3359 ../fish/guestfish-actions.pod:3435 ../fish/guestfish-actions.pod:3452 ../fish/guestfish-actions.pod:3467 ../fish/guestfish-actions.pod:4050 ../fish/guestfish-actions.pod:4096 ../fish/guestfish-actions.pod:4181 ../fish/guestfish-actions.pod:4196 ../fish/guestfish-actions.pod:4606 ../fish/guestfish-actions.pod:4624 ../fish/guestfish-actions.pod:4641 ../fish/guestfish-actions.pod:4651 ../fish/guestfish-actions.pod:4699 ../fish/guestfish-actions.pod:4709 ../fish/guestfish-actions.pod:4738 ../fish/guestfish-actions.pod:4748
6475 msgid ""
6476 "Because of the message protocol, there is a transfer limit of somewhere "
6477 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
6478 msgstr ""
6479
6480 #. type: textblock
6481 #: ../src/guestfs-actions.pod:873 ../src/guestfs-actions.pod:3323 ../src/guestfs-actions.pod:3385 ../src/guestfs-actions.pod:3402 ../src/guestfs-actions.pod:3490 ../src/guestfs-actions.pod:3895 ../src/guestfs-actions.pod:3909 ../src/guestfs-actions.pod:5110 ../src/guestfs-actions.pod:5124 ../src/guestfs-actions.pod:6836 ../src/guestfs-actions.pod:6850
6482 msgid "(Added in 0.4)"
6483 msgstr ""
6484
6485 #. type: =head2
6486 #: ../src/guestfs-actions.pod:875
6487 msgid "guestfs_checksum"
6488 msgstr ""
6489
6490 #. type: verbatim
6491 #: ../src/guestfs-actions.pod:877
6492 #, no-wrap
6493 msgid ""
6494 " char *\n"
6495 " guestfs_checksum (guestfs_h *g,\n"
6496 "                   const char *csumtype,\n"
6497 "                   const char *path);\n"
6498 "\n"
6499 msgstr ""
6500
6501 #. type: textblock
6502 #: ../src/guestfs-actions.pod:882 ../fish/guestfish-actions.pod:587
6503 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
6504 msgstr ""
6505
6506 #. type: textblock
6507 #: ../src/guestfs-actions.pod:885 ../fish/guestfish-actions.pod:590
6508 msgid ""
6509 "The type of checksum to compute is given by the C<csumtype> parameter which "
6510 "must have one of the following values:"
6511 msgstr ""
6512
6513 #. type: =item
6514 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:595
6515 msgid "C<crc>"
6516 msgstr ""
6517
6518 #. type: textblock
6519 #: ../src/guestfs-actions.pod:892 ../fish/guestfish-actions.pod:597
6520 msgid ""
6521 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
6522 "C<cksum> command."
6523 msgstr ""
6524
6525 #. type: =item
6526 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:600
6527 msgid "C<md5>"
6528 msgstr ""
6529
6530 #. type: textblock
6531 #: ../src/guestfs-actions.pod:897 ../fish/guestfish-actions.pod:602
6532 msgid "Compute the MD5 hash (using the C<md5sum> program)."
6533 msgstr ""
6534
6535 #. type: =item
6536 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:604
6537 msgid "C<sha1>"
6538 msgstr ""
6539
6540 #. type: textblock
6541 #: ../src/guestfs-actions.pod:901 ../fish/guestfish-actions.pod:606
6542 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
6543 msgstr ""
6544
6545 #. type: =item
6546 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:608
6547 msgid "C<sha224>"
6548 msgstr ""
6549
6550 #. type: textblock
6551 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:610
6552 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
6553 msgstr ""
6554
6555 #. type: =item
6556 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:612
6557 msgid "C<sha256>"
6558 msgstr ""
6559
6560 #. type: textblock
6561 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:614
6562 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
6563 msgstr ""
6564
6565 #. type: =item
6566 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:616
6567 msgid "C<sha384>"
6568 msgstr ""
6569
6570 #. type: textblock
6571 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:618
6572 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
6573 msgstr ""
6574
6575 #. type: =item
6576 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:620
6577 msgid "C<sha512>"
6578 msgstr ""
6579
6580 #. type: textblock
6581 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:622
6582 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
6583 msgstr ""
6584
6585 #. type: textblock
6586 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:626
6587 msgid "The checksum is returned as a printable string."
6588 msgstr ""
6589
6590 #. type: textblock
6591 #: ../src/guestfs-actions.pod:923
6592 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
6593 msgstr ""
6594
6595 #. type: textblock
6596 #: ../src/guestfs-actions.pod:925
6597 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
6598 msgstr ""
6599
6600 #. type: textblock
6601 #: ../src/guestfs-actions.pod:930 ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:2057 ../src/guestfs-actions.pod:3067 ../src/guestfs-actions.pod:3096 ../src/guestfs-actions.pod:3157 ../src/guestfs-actions.pod:3184 ../src/guestfs-actions.pod:6533
6602 msgid "(Added in 1.0.2)"
6603 msgstr ""
6604
6605 #. type: =head2
6606 #: ../src/guestfs-actions.pod:932
6607 msgid "guestfs_checksum_device"
6608 msgstr ""
6609
6610 #. type: verbatim
6611 #: ../src/guestfs-actions.pod:934
6612 #, no-wrap
6613 msgid ""
6614 " char *\n"
6615 " guestfs_checksum_device (guestfs_h *g,\n"
6616 "                          const char *csumtype,\n"
6617 "                          const char *device);\n"
6618 "\n"
6619 msgstr ""
6620
6621 #. type: textblock
6622 #: ../src/guestfs-actions.pod:939
6623 msgid ""
6624 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
6625 "device named C<device>.  For the types of checksums supported see the "
6626 "C<guestfs_checksum> command."
6627 msgstr ""
6628
6629 #. type: textblock
6630 #: ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:4641 ../src/guestfs-actions.pod:4700 ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:4755 ../src/guestfs-actions.pod:4931 ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6456 ../src/guestfs-actions.pod:6862
6631 msgid "(Added in 1.3.2)"
6632 msgstr ""
6633
6634 #. type: =head2
6635 #: ../src/guestfs-actions.pod:948
6636 msgid "guestfs_checksums_out"
6637 msgstr ""
6638
6639 #. type: verbatim
6640 #: ../src/guestfs-actions.pod:950
6641 #, no-wrap
6642 msgid ""
6643 " int\n"
6644 " guestfs_checksums_out (guestfs_h *g,\n"
6645 "                        const char *csumtype,\n"
6646 "                        const char *directory,\n"
6647 "                        const char *sumsfile);\n"
6648 "\n"
6649 msgstr ""
6650
6651 #. type: textblock
6652 #: ../src/guestfs-actions.pod:956 ../fish/guestfish-actions.pod:644
6653 msgid ""
6654 "This command computes the checksums of all regular files in C<directory> and "
6655 "then emits a list of those checksums to the local output file C<sumsfile>."
6656 msgstr ""
6657
6658 #. type: textblock
6659 #: ../src/guestfs-actions.pod:960 ../fish/guestfish-actions.pod:648
6660 msgid ""
6661 "This can be used for verifying the integrity of a virtual machine.  However "
6662 "to be properly secure you should pay attention to the output of the checksum "
6663 "command (it uses the ones from GNU coreutils).  In particular when the "
6664 "filename is not printable, coreutils uses a special backslash syntax.  For "
6665 "more information, see the GNU coreutils info file."
6666 msgstr ""
6667
6668 #. type: textblock
6669 #: ../src/guestfs-actions.pod:970
6670 msgid "(Added in 1.3.7)"
6671 msgstr ""
6672
6673 #. type: =head2
6674 #: ../src/guestfs-actions.pod:972
6675 msgid "guestfs_chmod"
6676 msgstr ""
6677
6678 #. type: verbatim
6679 #: ../src/guestfs-actions.pod:974
6680 #, no-wrap
6681 msgid ""
6682 " int\n"
6683 " guestfs_chmod (guestfs_h *g,\n"
6684 "                int mode,\n"
6685 "                const char *path);\n"
6686 "\n"
6687 msgstr ""
6688
6689 #. type: textblock
6690 #: ../src/guestfs-actions.pod:979 ../fish/guestfish-actions.pod:662
6691 msgid ""
6692 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
6693 "supported."
6694 msgstr ""
6695
6696 #. type: textblock
6697 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:665
6698 msgid ""
6699 "I<Note>: When using this command from guestfish, C<mode> by default would be "
6700 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
6701 "C<700>."
6702 msgstr ""
6703
6704 #. type: textblock
6705 #: ../src/guestfs-actions.pod:986 ../src/guestfs-actions.pod:4146 ../src/guestfs-actions.pod:4331 ../src/guestfs-actions.pod:4350 ../src/guestfs-actions.pod:4369 ../fish/guestfish-actions.pod:669 ../fish/guestfish-actions.pod:2792 ../fish/guestfish-actions.pod:2910 ../fish/guestfish-actions.pod:2920 ../fish/guestfish-actions.pod:2930
6706 msgid "The mode actually set is affected by the umask."
6707 msgstr ""
6708
6709 #. type: =head2
6710 #: ../src/guestfs-actions.pod:992
6711 msgid "guestfs_chown"
6712 msgstr ""
6713
6714 #. type: verbatim
6715 #: ../src/guestfs-actions.pod:994
6716 #, no-wrap
6717 msgid ""
6718 " int\n"
6719 " guestfs_chown (guestfs_h *g,\n"
6720 "                int owner,\n"
6721 "                int group,\n"
6722 "                const char *path);\n"
6723 "\n"
6724 msgstr ""
6725
6726 #. type: textblock
6727 #: ../src/guestfs-actions.pod:1000 ../fish/guestfish-actions.pod:675
6728 msgid "Change the file owner to C<owner> and group to C<group>."
6729 msgstr ""
6730
6731 #. type: textblock
6732 #: ../src/guestfs-actions.pod:1002 ../src/guestfs-actions.pod:3254 ../fish/guestfish-actions.pod:677 ../fish/guestfish-actions.pod:2250
6733 msgid ""
6734 "Only numeric uid and gid are supported.  If you want to use names, you will "
6735 "need to locate and parse the password file yourself (Augeas support makes "
6736 "this relatively easy)."
6737 msgstr ""
6738
6739 #. type: =head2
6740 #: ../src/guestfs-actions.pod:1010
6741 msgid "guestfs_command"
6742 msgstr ""
6743
6744 #. type: verbatim
6745 #: ../src/guestfs-actions.pod:1012
6746 #, no-wrap
6747 msgid ""
6748 " char *\n"
6749 " guestfs_command (guestfs_h *g,\n"
6750 "                  char *const *arguments);\n"
6751 "\n"
6752 msgstr ""
6753
6754 #. type: textblock
6755 #: ../src/guestfs-actions.pod:1016 ../fish/guestfish-actions.pod:685
6756 msgid ""
6757 "This call runs a command from the guest filesystem.  The filesystem must be "
6758 "mounted, and must contain a compatible operating system (ie. something "
6759 "Linux, with the same or compatible processor architecture)."
6760 msgstr ""
6761
6762 #. type: textblock
6763 #: ../src/guestfs-actions.pod:1021
6764 msgid ""
6765 "The single parameter is an argv-style list of arguments.  The first element "
6766 "is the name of the program to run.  Subsequent elements are parameters.  The "
6767 "list must be non-empty (ie. must contain a program name).  Note that the "
6768 "command runs directly, and is I<not> invoked via the shell (see "
6769 "C<guestfs_sh>)."
6770 msgstr ""
6771
6772 #. type: textblock
6773 #: ../src/guestfs-actions.pod:1028 ../fish/guestfish-actions.pod:697
6774 msgid "The return value is anything printed to I<stdout> by the command."
6775 msgstr ""
6776
6777 #. type: textblock
6778 #: ../src/guestfs-actions.pod:1031 ../fish/guestfish-actions.pod:700
6779 msgid ""
6780 "If the command returns a non-zero exit status, then this function returns an "
6781 "error message.  The error message string is the content of I<stderr> from "
6782 "the command."
6783 msgstr ""
6784
6785 #. type: textblock
6786 #: ../src/guestfs-actions.pod:1035 ../fish/guestfish-actions.pod:704
6787 msgid ""
6788 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
6789 "C</bin>.  If you require a program from another location, you should provide "
6790 "the full path in the first parameter."
6791 msgstr ""
6792
6793 #. type: textblock
6794 #: ../src/guestfs-actions.pod:1040 ../fish/guestfish-actions.pod:709
6795 msgid ""
6796 "Shared libraries and data files required by the program must be available on "
6797 "filesystems which are mounted in the correct places.  It is the caller's "
6798 "responsibility to ensure all filesystems that are needed are mounted at the "
6799 "right locations."
6800 msgstr ""
6801
6802 #. type: textblock
6803 #: ../src/guestfs-actions.pod:1052 ../src/guestfs-actions.pod:1072 ../src/guestfs-actions.pod:1532
6804 msgid "(Added in 0.9.1)"
6805 msgstr ""
6806
6807 #. type: =head2
6808 #: ../src/guestfs-actions.pod:1054
6809 msgid "guestfs_command_lines"
6810 msgstr ""
6811
6812 #. type: verbatim
6813 #: ../src/guestfs-actions.pod:1056
6814 #, no-wrap
6815 msgid ""
6816 " char **\n"
6817 " guestfs_command_lines (guestfs_h *g,\n"
6818 "                        char *const *arguments);\n"
6819 "\n"
6820 msgstr ""
6821
6822 #. type: textblock
6823 #: ../src/guestfs-actions.pod:1060
6824 msgid ""
6825 "This is the same as C<guestfs_command>, but splits the result into a list of "
6826 "lines."
6827 msgstr ""
6828
6829 #. type: textblock
6830 #: ../src/guestfs-actions.pod:1063
6831 msgid "See also: C<guestfs_sh_lines>"
6832 msgstr ""
6833
6834 #. type: =head2
6835 #: ../src/guestfs-actions.pod:1074
6836 msgid "guestfs_config"
6837 msgstr ""
6838
6839 #. type: verbatim
6840 #: ../src/guestfs-actions.pod:1076
6841 #, no-wrap
6842 msgid ""
6843 " int\n"
6844 " guestfs_config (guestfs_h *g,\n"
6845 "                 const char *qemuparam,\n"
6846 "                 const char *qemuvalue);\n"
6847 "\n"
6848 msgstr ""
6849
6850 #. type: textblock
6851 #: ../src/guestfs-actions.pod:1081 ../fish/guestfish-actions.pod:734
6852 msgid ""
6853 "This can be used to add arbitrary qemu command line parameters of the form "
6854 "C<-param value>.  Actually it's not quite arbitrary - we prevent you from "
6855 "setting some parameters which would interfere with parameters that we use."
6856 msgstr ""
6857
6858 #. type: textblock
6859 #: ../src/guestfs-actions.pod:1086 ../fish/guestfish-actions.pod:739
6860 msgid "The first character of C<param> string must be a C<-> (dash)."
6861 msgstr ""
6862
6863 #. type: textblock
6864 #: ../src/guestfs-actions.pod:1088 ../fish/guestfish-actions.pod:741
6865 msgid "C<value> can be NULL."
6866 msgstr ""
6867
6868 #. type: =head2
6869 #: ../src/guestfs-actions.pod:1094
6870 msgid "guestfs_copy_size"
6871 msgstr ""
6872
6873 #. type: verbatim
6874 #: ../src/guestfs-actions.pod:1096
6875 #, no-wrap
6876 msgid ""
6877 " int\n"
6878 " guestfs_copy_size (guestfs_h *g,\n"
6879 "                    const char *src,\n"
6880 "                    const char *dest,\n"
6881 "                    int64_t size);\n"
6882 "\n"
6883 msgstr ""
6884
6885 #. type: textblock
6886 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:747
6887 msgid ""
6888 "This command copies exactly C<size> bytes from one source device or file "
6889 "C<src> to another destination device or file C<dest>."
6890 msgstr ""
6891
6892 #. type: textblock
6893 #: ../src/guestfs-actions.pod:1105 ../fish/guestfish-actions.pod:750
6894 msgid ""
6895 "Note this will fail if the source is too short or if the destination is not "
6896 "large enough."
6897 msgstr ""
6898
6899 #. type: textblock
6900 #: ../src/guestfs-actions.pod:1110 ../src/guestfs-actions.pod:1233 ../src/guestfs-actions.pod:1264 ../src/guestfs-actions.pod:1681 ../src/guestfs-actions.pod:1703 ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6562 ../src/guestfs-actions.pod:7041 ../src/guestfs-actions.pod:7060
6901 msgid ""
6902 "This long-running command can generate progress notification messages so "
6903 "that the caller can display a progress bar or indicator.  To receive these "
6904 "messages, the caller must register a progress callback.  See "
6905 "L<guestfs(3)/guestfs_set_progress_callback>."
6906 msgstr ""
6907
6908 #. type: textblock
6909 #: ../src/guestfs-actions.pod:1115 ../src/guestfs-actions.pod:3922 ../src/guestfs-actions.pod:5137 ../src/guestfs-actions.pod:6769 ../src/guestfs-actions.pod:6789 ../src/guestfs-actions.pod:6875
6910 msgid "(Added in 1.0.87)"
6911 msgstr ""
6912
6913 #. type: =head2
6914 #: ../src/guestfs-actions.pod:1117
6915 msgid "guestfs_cp"
6916 msgstr ""
6917
6918 #. type: verbatim
6919 #: ../src/guestfs-actions.pod:1119
6920 #, no-wrap
6921 msgid ""
6922 " int\n"
6923 " guestfs_cp (guestfs_h *g,\n"
6924 "             const char *src,\n"
6925 "             const char *dest);\n"
6926 "\n"
6927 msgstr ""
6928
6929 #. type: textblock
6930 #: ../src/guestfs-actions.pod:1124 ../fish/guestfish-actions.pod:757
6931 msgid ""
6932 "This copies a file from C<src> to C<dest> where C<dest> is either a "
6933 "destination filename or destination directory."
6934 msgstr ""
6935
6936 #. type: textblock
6937 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1215 ../src/guestfs-actions.pod:1289 ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:4595 ../src/guestfs-actions.pod:4981
6938 msgid "(Added in 1.0.18)"
6939 msgstr ""
6940
6941 #. type: =head2
6942 #: ../src/guestfs-actions.pod:1131
6943 msgid "guestfs_cp_a"
6944 msgstr ""
6945
6946 #. type: verbatim
6947 #: ../src/guestfs-actions.pod:1133
6948 #, no-wrap
6949 msgid ""
6950 " int\n"
6951 " guestfs_cp_a (guestfs_h *g,\n"
6952 "               const char *src,\n"
6953 "               const char *dest);\n"
6954 "\n"
6955 msgstr ""
6956
6957 #. type: textblock
6958 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:764
6959 msgid ""
6960 "This copies a file or directory from C<src> to C<dest> recursively using the "
6961 "C<cp -a> command."
6962 msgstr ""
6963
6964 #. type: =head2
6965 #: ../src/guestfs-actions.pod:1145
6966 msgid "guestfs_dd"
6967 msgstr ""
6968
6969 #. type: verbatim
6970 #: ../src/guestfs-actions.pod:1147
6971 #, no-wrap
6972 msgid ""
6973 " int\n"
6974 " guestfs_dd (guestfs_h *g,\n"
6975 "             const char *src,\n"
6976 "             const char *dest);\n"
6977 "\n"
6978 msgstr ""
6979
6980 #. type: textblock
6981 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:771
6982 msgid ""
6983 "This command copies from one source device or file C<src> to another "
6984 "destination device or file C<dest>.  Normally you would use this to copy to "
6985 "or from a device or partition, for example to duplicate a filesystem."
6986 msgstr ""
6987
6988 #. type: textblock
6989 #: ../src/guestfs-actions.pod:1157
6990 msgid ""
6991 "If the destination is a device, it must be as large or larger than the "
6992 "source file or device, otherwise the copy will fail.  This command cannot do "
6993 "partial copies (see C<guestfs_copy_size>)."
6994 msgstr ""
6995
6996 #. type: =head2
6997 #: ../src/guestfs-actions.pod:1165
6998 msgid "guestfs_df"
6999 msgstr ""
7000
7001 #. type: verbatim
7002 #: ../src/guestfs-actions.pod:1167
7003 #, no-wrap
7004 msgid ""
7005 " char *\n"
7006 " guestfs_df (guestfs_h *g);\n"
7007 "\n"
7008 msgstr ""
7009
7010 #. type: textblock
7011 #: ../src/guestfs-actions.pod:1170 ../fish/guestfish-actions.pod:784
7012 msgid "This command runs the C<df> command to report disk space used."
7013 msgstr ""
7014
7015 #. type: textblock
7016 #: ../src/guestfs-actions.pod:1172 ../src/guestfs-actions.pod:1189
7017 msgid ""
7018 "This command is mostly useful for interactive sessions.  It is I<not> "
7019 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7020 "from programs."
7021 msgstr ""
7022
7023 #. type: textblock
7024 #: ../src/guestfs-actions.pod:1179 ../src/guestfs-actions.pod:1196 ../src/guestfs-actions.pod:1309 ../src/guestfs-actions.pod:2260 ../src/guestfs-actions.pod:2284 ../src/guestfs-actions.pod:2352 ../src/guestfs-actions.pod:4032 ../src/guestfs-actions.pod:4495 ../src/guestfs-actions.pod:6266 ../src/guestfs-actions.pod:6290 ../src/guestfs-actions.pod:6908 ../src/guestfs-actions.pod:6921 ../src/guestfs-actions.pod:6934
7025 msgid "(Added in 1.0.54)"
7026 msgstr ""
7027
7028 #. type: =head2
7029 #: ../src/guestfs-actions.pod:1181
7030 msgid "guestfs_df_h"
7031 msgstr ""
7032
7033 #. type: verbatim
7034 #: ../src/guestfs-actions.pod:1183
7035 #, no-wrap
7036 msgid ""
7037 " char *\n"
7038 " guestfs_df_h (guestfs_h *g);\n"
7039 "\n"
7040 msgstr ""
7041
7042 #. type: textblock
7043 #: ../src/guestfs-actions.pod:1186 ../fish/guestfish-actions.pod:794
7044 msgid ""
7045 "This command runs the C<df -h> command to report disk space used in "
7046 "human-readable format."
7047 msgstr ""
7048
7049 #. type: =head2
7050 #: ../src/guestfs-actions.pod:1198
7051 msgid "guestfs_dmesg"
7052 msgstr ""
7053
7054 #. type: verbatim
7055 #: ../src/guestfs-actions.pod:1200
7056 #, no-wrap
7057 msgid ""
7058 " char *\n"
7059 " guestfs_dmesg (guestfs_h *g);\n"
7060 "\n"
7061 msgstr ""
7062
7063 #. type: textblock
7064 #: ../src/guestfs-actions.pod:1203 ../fish/guestfish-actions.pod:805
7065 msgid ""
7066 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7067 "This is sometimes useful for extended debugging of problems."
7068 msgstr ""
7069
7070 #. type: textblock
7071 #: ../src/guestfs-actions.pod:1207
7072 msgid ""
7073 "Another way to get the same information is to enable verbose messages with "
7074 "C<guestfs_set_verbose> or by setting the environment variable "
7075 "C<LIBGUESTFS_DEBUG=1> before running the program."
7076 msgstr ""
7077
7078 #. type: =head2
7079 #: ../src/guestfs-actions.pod:1217
7080 msgid "guestfs_download"
7081 msgstr ""
7082
7083 #. type: verbatim
7084 #: ../src/guestfs-actions.pod:1219
7085 #, no-wrap
7086 msgid ""
7087 " int\n"
7088 " guestfs_download (guestfs_h *g,\n"
7089 "                   const char *remotefilename,\n"
7090 "                   const char *filename);\n"
7091 "\n"
7092 msgstr ""
7093
7094 #. type: textblock
7095 #: ../src/guestfs-actions.pod:1224 ../src/guestfs-actions.pod:1249 ../fish/guestfish-actions.pod:818 ../fish/guestfish-actions.pod:831
7096 msgid ""
7097 "Download file C<remotefilename> and save it as C<filename> on the local "
7098 "machine."
7099 msgstr ""
7100
7101 #. type: textblock
7102 #: ../src/guestfs-actions.pod:1227 ../src/guestfs-actions.pod:6522 ../fish/guestfish-actions.pod:821 ../fish/guestfish-actions.pod:4354
7103 msgid "C<filename> can also be a named pipe."
7104 msgstr ""
7105
7106 #. type: textblock
7107 #: ../src/guestfs-actions.pod:1229
7108 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
7109 msgstr ""
7110
7111 #. type: =head2
7112 #: ../src/guestfs-actions.pod:1240
7113 msgid "guestfs_download_offset"
7114 msgstr ""
7115
7116 #. type: verbatim
7117 #: ../src/guestfs-actions.pod:1242
7118 #, no-wrap
7119 msgid ""
7120 " int\n"
7121 " guestfs_download_offset (guestfs_h *g,\n"
7122 "                          const char *remotefilename,\n"
7123 "                          const char *filename,\n"
7124 "                          int64_t offset,\n"
7125 "                          int64_t size);\n"
7126 "\n"
7127 msgstr ""
7128
7129 #. type: textblock
7130 #: ../src/guestfs-actions.pod:1252 ../fish/guestfish-actions.pod:834
7131 msgid ""
7132 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
7133 "region must be within the file or device)."
7134 msgstr ""
7135
7136 #. type: textblock
7137 #: ../src/guestfs-actions.pod:1255
7138 msgid ""
7139 "Note that there is no limit on the amount of data that can be downloaded "
7140 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
7141 "full amount unless an error occurs."
7142 msgstr ""
7143
7144 #. type: textblock
7145 #: ../src/guestfs-actions.pod:1260
7146 msgid "See also C<guestfs_download>, C<guestfs_pread>."
7147 msgstr ""
7148
7149 #. type: textblock
7150 #: ../src/guestfs-actions.pod:1269 ../src/guestfs-actions.pod:6567
7151 msgid "(Added in 1.5.17)"
7152 msgstr ""
7153
7154 #. type: =head2
7155 #: ../src/guestfs-actions.pod:1271
7156 msgid "guestfs_drop_caches"
7157 msgstr ""
7158
7159 #. type: verbatim
7160 #: ../src/guestfs-actions.pod:1273
7161 #, no-wrap
7162 msgid ""
7163 " int\n"
7164 " guestfs_drop_caches (guestfs_h *g,\n"
7165 "                      int whattodrop);\n"
7166 "\n"
7167 msgstr ""
7168
7169 #. type: textblock
7170 #: ../src/guestfs-actions.pod:1277 ../fish/guestfish-actions.pod:850
7171 msgid ""
7172 "This instructs the guest kernel to drop its page cache, and/or dentries and "
7173 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
7174 "to drop, see L<http://linux-mm.org/Drop_Caches>"
7175 msgstr ""
7176
7177 #. type: textblock
7178 #: ../src/guestfs-actions.pod:1282 ../fish/guestfish-actions.pod:855
7179 msgid "Setting C<whattodrop> to 3 should drop everything."
7180 msgstr ""
7181
7182 #. type: textblock
7183 #: ../src/guestfs-actions.pod:1284 ../fish/guestfish-actions.pod:857
7184 msgid ""
7185 "This automatically calls L<sync(2)> before the operation, so that the "
7186 "maximum guest memory is freed."
7187 msgstr ""
7188
7189 #. type: =head2
7190 #: ../src/guestfs-actions.pod:1291
7191 msgid "guestfs_du"
7192 msgstr ""
7193
7194 #. type: verbatim
7195 #: ../src/guestfs-actions.pod:1293
7196 #, no-wrap
7197 msgid ""
7198 " int64_t\n"
7199 " guestfs_du (guestfs_h *g,\n"
7200 "             const char *path);\n"
7201 "\n"
7202 msgstr ""
7203
7204 #. type: textblock
7205 #: ../src/guestfs-actions.pod:1297 ../fish/guestfish-actions.pod:864
7206 msgid ""
7207 "This command runs the C<du -s> command to estimate file space usage for "
7208 "C<path>."
7209 msgstr ""
7210
7211 #. type: textblock
7212 #: ../src/guestfs-actions.pod:1300 ../fish/guestfish-actions.pod:867
7213 msgid ""
7214 "C<path> can be a file or a directory.  If C<path> is a directory then the "
7215 "estimate includes the contents of the directory and all subdirectories "
7216 "(recursively)."
7217 msgstr ""
7218
7219 #. type: textblock
7220 #: ../src/guestfs-actions.pod:1304 ../fish/guestfish-actions.pod:871
7221 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
7222 msgstr ""
7223
7224 #. type: =head2
7225 #: ../src/guestfs-actions.pod:1311
7226 msgid "guestfs_e2fsck_f"
7227 msgstr ""
7228
7229 #. type: verbatim
7230 #: ../src/guestfs-actions.pod:1313
7231 #, no-wrap
7232 msgid ""
7233 " int\n"
7234 " guestfs_e2fsck_f (guestfs_h *g,\n"
7235 "                   const char *device);\n"
7236 "\n"
7237 msgstr ""
7238
7239 #. type: textblock
7240 #: ../src/guestfs-actions.pod:1317 ../fish/guestfish-actions.pod:878
7241 msgid ""
7242 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
7243 "on C<device>, noninteractively (C<-p>), even if the filesystem appears to be "
7244 "clean (C<-f>)."
7245 msgstr ""
7246
7247 #. type: textblock
7248 #: ../src/guestfs-actions.pod:1321
7249 msgid ""
7250 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
7251 "Normally you should use C<guestfs_fsck>."
7252 msgstr ""
7253
7254 #. type: textblock
7255 #: ../src/guestfs-actions.pod:1326
7256 msgid "(Added in 1.0.29)"
7257 msgstr ""
7258
7259 #. type: =head2
7260 #: ../src/guestfs-actions.pod:1328
7261 msgid "guestfs_echo_daemon"
7262 msgstr ""
7263
7264 #. type: verbatim
7265 #: ../src/guestfs-actions.pod:1330
7266 #, no-wrap
7267 msgid ""
7268 " char *\n"
7269 " guestfs_echo_daemon (guestfs_h *g,\n"
7270 "                      char *const *words);\n"
7271 "\n"
7272 msgstr ""
7273
7274 #. type: textblock
7275 #: ../src/guestfs-actions.pod:1334 ../fish/guestfish-actions.pod:889
7276 msgid ""
7277 "This command concatenates the list of C<words> passed with single spaces "
7278 "between them and returns the resulting string."
7279 msgstr ""
7280
7281 #. type: textblock
7282 #: ../src/guestfs-actions.pod:1337 ../fish/guestfish-actions.pod:892
7283 msgid "You can use this command to test the connection through to the daemon."
7284 msgstr ""
7285
7286 #. type: textblock
7287 #: ../src/guestfs-actions.pod:1339
7288 msgid "See also C<guestfs_ping_daemon>."
7289 msgstr ""
7290
7291 #. type: textblock
7292 #: ../src/guestfs-actions.pod:1344 ../src/guestfs-actions.pod:2068 ../src/guestfs-actions.pod:5770
7293 msgid "(Added in 1.0.69)"
7294 msgstr ""
7295
7296 #. type: =head2
7297 #: ../src/guestfs-actions.pod:1346
7298 msgid "guestfs_egrep"
7299 msgstr ""
7300
7301 #. type: verbatim
7302 #: ../src/guestfs-actions.pod:1348
7303 #, no-wrap
7304 msgid ""
7305 " char **\n"
7306 " guestfs_egrep (guestfs_h *g,\n"
7307 "                const char *regex,\n"
7308 "                const char *path);\n"
7309 "\n"
7310 msgstr ""
7311
7312 #. type: textblock
7313 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:900
7314 msgid "This calls the external C<egrep> program and returns the matching lines."
7315 msgstr ""
7316
7317 #. type: textblock
7318 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1439 ../src/guestfs-actions.pod:1485 ../src/guestfs-actions.pod:1504 ../src/guestfs-actions.pod:2198 ../src/guestfs-actions.pod:2217 ../src/guestfs-actions.pod:2373 ../src/guestfs-actions.pod:2386 ../src/guestfs-actions.pod:2401 ../src/guestfs-actions.pod:2447 ../src/guestfs-actions.pod:2469 ../src/guestfs-actions.pod:2482 ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3429 ../src/guestfs-actions.pod:3442 ../src/guestfs-actions.pod:3456 ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:5315 ../src/guestfs-actions.pod:5364 ../src/guestfs-actions.pod:6134 ../src/guestfs-actions.pod:6146 ../src/guestfs-actions.pod:6159 ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6194 ../src/guestfs-actions.pod:6207 ../src/guestfs-actions.pod:6220 ../src/guestfs-actions.pod:6233 ../src/guestfs-actions.pod:7004 ../src/guestfs-actions.pod:7023 ../src/guestfs-actions.pod:7108 ../src/guestfs-actions.pod:7127 ../src/guestfs-actions.pod:7173 ../src/guestfs-actions.pod:7192
7319 msgid "(Added in 1.0.66)"
7320 msgstr ""
7321
7322 #. type: =head2
7323 #: ../src/guestfs-actions.pod:1365
7324 msgid "guestfs_egrepi"
7325 msgstr ""
7326
7327 #. type: verbatim
7328 #: ../src/guestfs-actions.pod:1367
7329 #, no-wrap
7330 msgid ""
7331 " char **\n"
7332 " guestfs_egrepi (guestfs_h *g,\n"
7333 "                 const char *regex,\n"
7334 "                 const char *path);\n"
7335 "\n"
7336 msgstr ""
7337
7338 #. type: textblock
7339 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:910
7340 msgid "This calls the external C<egrep -i> program and returns the matching lines."
7341 msgstr ""
7342
7343 #. type: =head2
7344 #: ../src/guestfs-actions.pod:1384
7345 msgid "guestfs_equal"
7346 msgstr ""
7347
7348 #. type: verbatim
7349 #: ../src/guestfs-actions.pod:1386
7350 #, no-wrap
7351 msgid ""
7352 " int\n"
7353 " guestfs_equal (guestfs_h *g,\n"
7354 "                const char *file1,\n"
7355 "                const char *file2);\n"
7356 "\n"
7357 msgstr ""
7358
7359 #. type: textblock
7360 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:920
7361 msgid ""
7362 "This compares the two files C<file1> and C<file2> and returns true if their "
7363 "content is exactly equal, or false otherwise."
7364 msgstr ""
7365
7366 #. type: textblock
7367 #: ../src/guestfs-actions.pod:1394 ../fish/guestfish-actions.pod:923
7368 msgid "The external L<cmp(1)> program is used for the comparison."
7369 msgstr ""
7370
7371 #. type: =head2
7372 #: ../src/guestfs-actions.pod:1400
7373 msgid "guestfs_exists"
7374 msgstr ""
7375
7376 #. type: verbatim
7377 #: ../src/guestfs-actions.pod:1402
7378 #, no-wrap
7379 msgid ""
7380 " int\n"
7381 " guestfs_exists (guestfs_h *g,\n"
7382 "                 const char *path);\n"
7383 "\n"
7384 msgstr ""
7385
7386 #. type: textblock
7387 #: ../src/guestfs-actions.pod:1406 ../fish/guestfish-actions.pod:929
7388 msgid ""
7389 "This returns C<true> if and only if there is a file, directory (or anything) "
7390 "with the given C<path> name."
7391 msgstr ""
7392
7393 #. type: textblock
7394 #: ../src/guestfs-actions.pod:1409
7395 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
7396 msgstr ""
7397
7398 #. type: =head2
7399 #: ../src/guestfs-actions.pod:1415
7400 msgid "guestfs_fallocate"
7401 msgstr ""
7402
7403 #. type: verbatim
7404 #: ../src/guestfs-actions.pod:1417
7405 #, no-wrap
7406 msgid ""
7407 " int\n"
7408 " guestfs_fallocate (guestfs_h *g,\n"
7409 "                    const char *path,\n"
7410 "                    int len);\n"
7411 "\n"
7412 msgstr ""
7413
7414 #. type: textblock
7415 #: ../src/guestfs-actions.pod:1422 ../src/guestfs-actions.pod:1448 ../fish/guestfish-actions.pod:938 ../fish/guestfish-actions.pod:957
7416 msgid ""
7417 "This command preallocates a file (containing zero bytes) named C<path> of "
7418 "size C<len> bytes.  If the file exists already, it is overwritten."
7419 msgstr ""
7420
7421 #. type: textblock
7422 #: ../src/guestfs-actions.pod:1426 ../fish/guestfish-actions.pod:942
7423 msgid ""
7424 "Do not confuse this with the guestfish-specific C<alloc> command which "
7425 "allocates a file in the host and attaches it as a device."
7426 msgstr ""
7427
7428 #. type: textblock
7429 #: ../src/guestfs-actions.pod:1432
7430 msgid ""
7431 "This function is deprecated.  In new code, use the L</guestfs_fallocate64> "
7432 "call instead."
7433 msgstr ""
7434
7435 #. type: =head2
7436 #: ../src/guestfs-actions.pod:1441
7437 msgid "guestfs_fallocate64"
7438 msgstr ""
7439
7440 #. type: verbatim
7441 #: ../src/guestfs-actions.pod:1443
7442 #, no-wrap
7443 msgid ""
7444 " int\n"
7445 " guestfs_fallocate64 (guestfs_h *g,\n"
7446 "                      const char *path,\n"
7447 "                      int64_t len);\n"
7448 "\n"
7449 msgstr ""
7450
7451 #. type: textblock
7452 #: ../src/guestfs-actions.pod:1452
7453 msgid ""
7454 "Note that this call allocates disk blocks for the file.  To create a sparse "
7455 "file use C<guestfs_truncate_size> instead."
7456 msgstr ""
7457
7458 #. type: textblock
7459 #: ../src/guestfs-actions.pod:1455
7460 msgid ""
7461 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
7462 "oversight it only allowed 30 bit lengths to be specified, effectively "
7463 "limiting the maximum size of files created through that call to 1GB."
7464 msgstr ""
7465
7466 #. type: textblock
7467 #: ../src/guestfs-actions.pod:1460 ../fish/guestfish-actions.pod:969
7468 msgid ""
7469 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
7470 "commands which create a file in the host and attach it as a device."
7471 msgstr ""
7472
7473 #. type: textblock
7474 #: ../src/guestfs-actions.pod:1466
7475 msgid "(Added in 1.3.17)"
7476 msgstr ""
7477
7478 #. type: =head2
7479 #: ../src/guestfs-actions.pod:1468
7480 msgid "guestfs_fgrep"
7481 msgstr ""
7482
7483 #. type: verbatim
7484 #: ../src/guestfs-actions.pod:1470
7485 #, no-wrap
7486 msgid ""
7487 " char **\n"
7488 " guestfs_fgrep (guestfs_h *g,\n"
7489 "                const char *pattern,\n"
7490 "                const char *path);\n"
7491 "\n"
7492 msgstr ""
7493
7494 #. type: textblock
7495 #: ../src/guestfs-actions.pod:1475 ../fish/guestfish-actions.pod:977
7496 msgid "This calls the external C<fgrep> program and returns the matching lines."
7497 msgstr ""
7498
7499 #. type: =head2
7500 #: ../src/guestfs-actions.pod:1487
7501 msgid "guestfs_fgrepi"
7502 msgstr ""
7503
7504 #. type: verbatim
7505 #: ../src/guestfs-actions.pod:1489
7506 #, no-wrap
7507 msgid ""
7508 " char **\n"
7509 " guestfs_fgrepi (guestfs_h *g,\n"
7510 "                 const char *pattern,\n"
7511 "                 const char *path);\n"
7512 "\n"
7513 msgstr ""
7514
7515 #. type: textblock
7516 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:987
7517 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
7518 msgstr ""
7519
7520 #. type: =head2
7521 #: ../src/guestfs-actions.pod:1506
7522 msgid "guestfs_file"
7523 msgstr ""
7524
7525 #. type: verbatim
7526 #: ../src/guestfs-actions.pod:1508
7527 #, no-wrap
7528 msgid ""
7529 " char *\n"
7530 " guestfs_file (guestfs_h *g,\n"
7531 "               const char *path);\n"
7532 "\n"
7533 msgstr ""
7534
7535 #. type: textblock
7536 #: ../src/guestfs-actions.pod:1512 ../fish/guestfish-actions.pod:997
7537 msgid ""
7538 "This call uses the standard L<file(1)> command to determine the type or "
7539 "contents of the file."
7540 msgstr ""
7541
7542 #. type: textblock
7543 #: ../src/guestfs-actions.pod:1515 ../fish/guestfish-actions.pod:1000
7544 msgid ""
7545 "This call will also transparently look inside various types of compressed "
7546 "file."
7547 msgstr ""
7548
7549 #. type: textblock
7550 #: ../src/guestfs-actions.pod:1518 ../fish/guestfish-actions.pod:1003
7551 msgid ""
7552 "The exact command which runs is C<file -zb path>.  Note in particular that "
7553 "the filename is not prepended to the output (the C<-b> option)."
7554 msgstr ""
7555
7556 #. type: textblock
7557 #: ../src/guestfs-actions.pod:1522 ../fish/guestfish-actions.pod:1007
7558 msgid ""
7559 "The output depends on the output of the underlying L<file(1)> command and it "
7560 "can change in future in ways beyond our control.  In other words, the output "
7561 "is not guaranteed by the ABI."
7562 msgstr ""
7563
7564 #. type: textblock
7565 #: ../src/guestfs-actions.pod:1526
7566 msgid ""
7567 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
7568 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
7569 msgstr ""
7570
7571 #. type: =head2
7572 #: ../src/guestfs-actions.pod:1534
7573 msgid "guestfs_file_architecture"
7574 msgstr ""
7575
7576 #. type: verbatim
7577 #: ../src/guestfs-actions.pod:1536
7578 #, no-wrap
7579 msgid ""
7580 " char *\n"
7581 " guestfs_file_architecture (guestfs_h *g,\n"
7582 "                            const char *filename);\n"
7583 "\n"
7584 msgstr ""
7585
7586 #. type: textblock
7587 #: ../src/guestfs-actions.pod:1540 ../fish/guestfish-actions.pod:1018
7588 msgid ""
7589 "This detects the architecture of the binary C<filename>, and returns it if "
7590 "known."
7591 msgstr ""
7592
7593 #. type: textblock
7594 #: ../src/guestfs-actions.pod:1543 ../fish/guestfish-actions.pod:1021
7595 msgid "Currently defined architectures are:"
7596 msgstr ""
7597
7598 #. type: =item
7599 #: ../src/guestfs-actions.pod:1547 ../fish/guestfish-actions.pod:1025
7600 msgid "\"i386\""
7601 msgstr ""
7602
7603 #. type: textblock
7604 #: ../src/guestfs-actions.pod:1549 ../fish/guestfish-actions.pod:1027
7605 msgid ""
7606 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
7607 "irrespective of the precise processor requirements of the binary."
7608 msgstr ""
7609
7610 #. type: =item
7611 #: ../src/guestfs-actions.pod:1552 ../fish/guestfish-actions.pod:1030
7612 msgid "\"x86_64\""
7613 msgstr ""
7614
7615 #. type: textblock
7616 #: ../src/guestfs-actions.pod:1554 ../fish/guestfish-actions.pod:1032
7617 msgid "64 bit x86-64."
7618 msgstr ""
7619
7620 #. type: =item
7621 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1034
7622 msgid "\"sparc\""
7623 msgstr ""
7624
7625 #. type: textblock
7626 #: ../src/guestfs-actions.pod:1558 ../fish/guestfish-actions.pod:1036
7627 msgid "32 bit SPARC."
7628 msgstr ""
7629
7630 #. type: =item
7631 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1038
7632 msgid "\"sparc64\""
7633 msgstr ""
7634
7635 #. type: textblock
7636 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1040
7637 msgid "64 bit SPARC V9 and above."
7638 msgstr ""
7639
7640 #. type: =item
7641 #: ../src/guestfs-actions.pod:1564 ../fish/guestfish-actions.pod:1042
7642 msgid "\"ia64\""
7643 msgstr ""
7644
7645 #. type: textblock
7646 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1044
7647 msgid "Intel Itanium."
7648 msgstr ""
7649
7650 #. type: =item
7651 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1046
7652 msgid "\"ppc\""
7653 msgstr ""
7654
7655 #. type: textblock
7656 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1048
7657 msgid "32 bit Power PC."
7658 msgstr ""
7659
7660 #. type: =item
7661 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1050
7662 msgid "\"ppc64\""
7663 msgstr ""
7664
7665 #. type: textblock
7666 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1052
7667 msgid "64 bit Power PC."
7668 msgstr ""
7669
7670 #. type: textblock
7671 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1056
7672 msgid "Libguestfs may return other architecture strings in future."
7673 msgstr ""
7674
7675 #. type: textblock
7676 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1058
7677 msgid "The function works on at least the following types of files:"
7678 msgstr ""
7679
7680 #. type: textblock
7681 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1064
7682 msgid "many types of Un*x and Linux binary"
7683 msgstr ""
7684
7685 #. type: textblock
7686 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1068
7687 msgid "many types of Un*x and Linux shared library"
7688 msgstr ""
7689
7690 #. type: textblock
7691 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1072
7692 msgid "Windows Win32 and Win64 binaries"
7693 msgstr ""
7694
7695 #. type: textblock
7696 #: ../src/guestfs-actions.pod:1598 ../fish/guestfish-actions.pod:1076
7697 msgid "Windows Win32 and Win64 DLLs"
7698 msgstr ""
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1078
7702 msgid "Win32 binaries and DLLs return C<i386>."
7703 msgstr ""
7704
7705 #. type: textblock
7706 #: ../src/guestfs-actions.pod:1602 ../fish/guestfish-actions.pod:1080
7707 msgid "Win64 binaries and DLLs return C<x86_64>."
7708 msgstr ""
7709
7710 #. type: textblock
7711 #: ../src/guestfs-actions.pod:1606 ../fish/guestfish-actions.pod:1084
7712 msgid "Linux kernel modules"
7713 msgstr ""
7714
7715 #. type: textblock
7716 #: ../src/guestfs-actions.pod:1610 ../fish/guestfish-actions.pod:1088
7717 msgid "Linux new-style initrd images"
7718 msgstr ""
7719
7720 #. type: textblock
7721 #: ../src/guestfs-actions.pod:1614 ../fish/guestfish-actions.pod:1092
7722 msgid "some non-x86 Linux vmlinuz kernels"
7723 msgstr ""
7724
7725 #. type: textblock
7726 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1096
7727 msgid "What it can't do currently:"
7728 msgstr ""
7729
7730 #. type: textblock
7731 #: ../src/guestfs-actions.pod:1624 ../fish/guestfish-actions.pod:1102
7732 msgid "static libraries (libfoo.a)"
7733 msgstr ""
7734
7735 #. type: textblock
7736 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1106
7737 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
7738 msgstr ""
7739
7740 #. type: textblock
7741 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1110
7742 msgid "x86 Linux vmlinuz kernels"
7743 msgstr ""
7744
7745 #. type: textblock
7746 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1112
7747 msgid ""
7748 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
7749 "compressed code, and are horribly hard to unpack.  If you want to find the "
7750 "architecture of a kernel, use the architecture of the associated initrd or "
7751 "kernel module(s) instead."
7752 msgstr ""
7753
7754 #. type: textblock
7755 #: ../src/guestfs-actions.pod:1644 ../src/guestfs-actions.pod:1807 ../src/guestfs-actions.pod:1824 ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:2586 ../src/guestfs-actions.pod:2612 ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2682 ../src/guestfs-actions.pod:2719 ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2865 ../src/guestfs-actions.pod:3038 ../src/guestfs-actions.pod:3170
7756 msgid "(Added in 1.5.3)"
7757 msgstr ""
7758
7759 #. type: =head2
7760 #: ../src/guestfs-actions.pod:1646
7761 msgid "guestfs_filesize"
7762 msgstr ""
7763
7764 #. type: verbatim
7765 #: ../src/guestfs-actions.pod:1648
7766 #, no-wrap
7767 msgid ""
7768 " int64_t\n"
7769 " guestfs_filesize (guestfs_h *g,\n"
7770 "                   const char *file);\n"
7771 "\n"
7772 msgstr ""
7773
7774 #. type: textblock
7775 #: ../src/guestfs-actions.pod:1652 ../fish/guestfish-actions.pod:1123
7776 msgid "This command returns the size of C<file> in bytes."
7777 msgstr ""
7778
7779 #. type: textblock
7780 #: ../src/guestfs-actions.pod:1654
7781 msgid ""
7782 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
7783 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
7784 "devices, use C<guestfs_blockdev_getsize64>."
7785 msgstr ""
7786
7787 #. type: textblock
7788 #: ../src/guestfs-actions.pod:1660
7789 msgid "(Added in 1.0.82)"
7790 msgstr ""
7791
7792 #. type: =head2
7793 #: ../src/guestfs-actions.pod:1662
7794 msgid "guestfs_fill"
7795 msgstr ""
7796
7797 #. type: verbatim
7798 #: ../src/guestfs-actions.pod:1664
7799 #, no-wrap
7800 msgid ""
7801 " int\n"
7802 " guestfs_fill (guestfs_h *g,\n"
7803 "               int c,\n"
7804 "               int len,\n"
7805 "               const char *path);\n"
7806 "\n"
7807 msgstr ""
7808
7809 #. type: textblock
7810 #: ../src/guestfs-actions.pod:1670 ../fish/guestfish-actions.pod:1133
7811 msgid ""
7812 "This command creates a new file called C<path>.  The initial content of the "
7813 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
7814 "C<[0..255]>."
7815 msgstr ""
7816
7817 #. type: textblock
7818 #: ../src/guestfs-actions.pod:1674
7819 msgid ""
7820 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
7821 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
7822 "bytes use C<guestfs_fill_pattern>."
7823 msgstr ""
7824
7825 #. type: textblock
7826 #: ../src/guestfs-actions.pod:1686
7827 msgid "(Added in 1.0.79)"
7828 msgstr ""
7829
7830 #. type: =head2
7831 #: ../src/guestfs-actions.pod:1688
7832 msgid "guestfs_fill_pattern"
7833 msgstr ""
7834
7835 #. type: verbatim
7836 #: ../src/guestfs-actions.pod:1690
7837 #, no-wrap
7838 msgid ""
7839 " int\n"
7840 " guestfs_fill_pattern (guestfs_h *g,\n"
7841 "                       const char *pattern,\n"
7842 "                       int len,\n"
7843 "                       const char *path);\n"
7844 "\n"
7845 msgstr ""
7846
7847 #. type: textblock
7848 #: ../src/guestfs-actions.pod:1696
7849 msgid ""
7850 "This function is like C<guestfs_fill> except that it creates a new file of "
7851 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
7852 "pattern is truncated if necessary to ensure the length of the file is "
7853 "exactly C<len> bytes."
7854 msgstr ""
7855
7856 #. type: textblock
7857 #: ../src/guestfs-actions.pod:1708
7858 msgid "(Added in 1.3.12)"
7859 msgstr ""
7860
7861 #. type: =head2
7862 #: ../src/guestfs-actions.pod:1710
7863 msgid "guestfs_find"
7864 msgstr ""
7865
7866 #. type: verbatim
7867 #: ../src/guestfs-actions.pod:1712
7868 #, no-wrap
7869 msgid ""
7870 " char **\n"
7871 " guestfs_find (guestfs_h *g,\n"
7872 "               const char *directory);\n"
7873 "\n"
7874 msgstr ""
7875
7876 #. type: textblock
7877 #: ../src/guestfs-actions.pod:1716 ../fish/guestfish-actions.pod:1155
7878 msgid ""
7879 "This command lists out all files and directories, recursively, starting at "
7880 "C<directory>.  It is essentially equivalent to running the shell command "
7881 "C<find directory -print> but some post-processing happens on the output, "
7882 "described below."
7883 msgstr ""
7884
7885 #. type: textblock
7886 #: ../src/guestfs-actions.pod:1721 ../fish/guestfish-actions.pod:1160
7887 msgid ""
7888 "This returns a list of strings I<without any prefix>.  Thus if the directory "
7889 "structure was:"
7890 msgstr ""
7891
7892 #. type: verbatim
7893 #: ../src/guestfs-actions.pod:1724 ../fish/guestfish-actions.pod:1163
7894 #, no-wrap
7895 msgid ""
7896 " /tmp/a\n"
7897 " /tmp/b\n"
7898 " /tmp/c/d\n"
7899 "\n"
7900 msgstr ""
7901
7902 #. type: textblock
7903 #: ../src/guestfs-actions.pod:1728
7904 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
7905 msgstr ""
7906
7907 #. type: verbatim
7908 #: ../src/guestfs-actions.pod:1731 ../fish/guestfish-actions.pod:1170
7909 #, no-wrap
7910 msgid ""
7911 " a\n"
7912 " b\n"
7913 " c\n"
7914 " c/d\n"
7915 "\n"
7916 msgstr ""
7917
7918 #. type: textblock
7919 #: ../src/guestfs-actions.pod:1736 ../fish/guestfish-actions.pod:1175
7920 msgid "If C<directory> is not a directory, then this command returns an error."
7921 msgstr ""
7922
7923 #. type: textblock
7924 #: ../src/guestfs-actions.pod:1739 ../fish/guestfish-actions.pod:1178
7925 msgid "The returned list is sorted."
7926 msgstr ""
7927
7928 #. type: textblock
7929 #: ../src/guestfs-actions.pod:1741
7930 msgid "See also C<guestfs_find0>."
7931 msgstr ""
7932
7933 #. type: textblock
7934 #: ../src/guestfs-actions.pod:1750 ../src/guestfs-actions.pod:3859 ../src/guestfs-actions.pod:5399
7935 msgid "(Added in 1.0.27)"
7936 msgstr ""
7937
7938 #. type: =head2
7939 #: ../src/guestfs-actions.pod:1752
7940 msgid "guestfs_find0"
7941 msgstr ""
7942
7943 #. type: verbatim
7944 #: ../src/guestfs-actions.pod:1754
7945 #, no-wrap
7946 msgid ""
7947 " int\n"
7948 " guestfs_find0 (guestfs_h *g,\n"
7949 "                const char *directory,\n"
7950 "                const char *files);\n"
7951 "\n"
7952 msgstr ""
7953
7954 #. type: textblock
7955 #: ../src/guestfs-actions.pod:1759 ../fish/guestfish-actions.pod:1189
7956 msgid ""
7957 "This command lists out all files and directories, recursively, starting at "
7958 "C<directory>, placing the resulting list in the external file called "
7959 "C<files>."
7960 msgstr ""
7961
7962 #. type: textblock
7963 #: ../src/guestfs-actions.pod:1763
7964 msgid ""
7965 "This command works the same way as C<guestfs_find> with the following "
7966 "exceptions:"
7967 msgstr ""
7968
7969 #. type: textblock
7970 #: ../src/guestfs-actions.pod:1770 ../fish/guestfish-actions.pod:1200
7971 msgid "The resulting list is written to an external file."
7972 msgstr ""
7973
7974 #. type: textblock
7975 #: ../src/guestfs-actions.pod:1774 ../fish/guestfish-actions.pod:1204
7976 msgid ""
7977 "Items (filenames) in the result are separated by C<\\0> characters.  See "
7978 "L<find(1)> option I<-print0>."
7979 msgstr ""
7980
7981 #. type: textblock
7982 #: ../src/guestfs-actions.pod:1779 ../fish/guestfish-actions.pod:1209
7983 msgid "This command is not limited in the number of names that it can return."
7984 msgstr ""
7985
7986 #. type: textblock
7987 #: ../src/guestfs-actions.pod:1784 ../fish/guestfish-actions.pod:1214
7988 msgid "The result list is not sorted."
7989 msgstr ""
7990
7991 #. type: textblock
7992 #: ../src/guestfs-actions.pod:1790
7993 msgid "(Added in 1.0.74)"
7994 msgstr ""
7995
7996 #. type: =head2
7997 #: ../src/guestfs-actions.pod:1792
7998 msgid "guestfs_findfs_label"
7999 msgstr ""
8000
8001 #. type: verbatim
8002 #: ../src/guestfs-actions.pod:1794
8003 #, no-wrap
8004 msgid ""
8005 " char *\n"
8006 " guestfs_findfs_label (guestfs_h *g,\n"
8007 "                       const char *label);\n"
8008 "\n"
8009 msgstr ""
8010
8011 #. type: textblock
8012 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1224
8013 msgid ""
8014 "This command searches the filesystems and returns the one which has the "
8015 "given label.  An error is returned if no such filesystem can be found."
8016 msgstr ""
8017
8018 #. type: textblock
8019 #: ../src/guestfs-actions.pod:1802
8020 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8021 msgstr ""
8022
8023 #. type: =head2
8024 #: ../src/guestfs-actions.pod:1809
8025 msgid "guestfs_findfs_uuid"
8026 msgstr ""
8027
8028 #. type: verbatim
8029 #: ../src/guestfs-actions.pod:1811
8030 #, no-wrap
8031 msgid ""
8032 " char *\n"
8033 " guestfs_findfs_uuid (guestfs_h *g,\n"
8034 "                      const char *uuid);\n"
8035 "\n"
8036 msgstr ""
8037
8038 #. type: textblock
8039 #: ../src/guestfs-actions.pod:1815 ../fish/guestfish-actions.pod:1234
8040 msgid ""
8041 "This command searches the filesystems and returns the one which has the "
8042 "given UUID.  An error is returned if no such filesystem can be found."
8043 msgstr ""
8044
8045 #. type: textblock
8046 #: ../src/guestfs-actions.pod:1819
8047 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8048 msgstr ""
8049
8050 #. type: =head2
8051 #: ../src/guestfs-actions.pod:1826
8052 msgid "guestfs_fsck"
8053 msgstr ""
8054
8055 #. type: verbatim
8056 #: ../src/guestfs-actions.pod:1828
8057 #, no-wrap
8058 msgid ""
8059 " int\n"
8060 " guestfs_fsck (guestfs_h *g,\n"
8061 "               const char *fstype,\n"
8062 "               const char *device);\n"
8063 "\n"
8064 msgstr ""
8065
8066 #. type: textblock
8067 #: ../src/guestfs-actions.pod:1833 ../fish/guestfish-actions.pod:1244
8068 msgid ""
8069 "This runs the filesystem checker (fsck) on C<device> which should have "
8070 "filesystem type C<fstype>."
8071 msgstr ""
8072
8073 #. type: textblock
8074 #: ../src/guestfs-actions.pod:1836 ../fish/guestfish-actions.pod:1247
8075 msgid ""
8076 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8077 "codes from C<fsck>."
8078 msgstr ""
8079
8080 #. type: textblock
8081 #: ../src/guestfs-actions.pod:1845 ../fish/guestfish-actions.pod:1256
8082 msgid "Multiple status codes can be summed together."
8083 msgstr ""
8084
8085 #. type: textblock
8086 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1260
8087 msgid ""
8088 "A non-zero return code can mean \"success\", for example if errors have been "
8089 "corrected on the filesystem."
8090 msgstr ""
8091
8092 #. type: textblock
8093 #: ../src/guestfs-actions.pod:1854 ../fish/guestfish-actions.pod:1265
8094 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8095 msgstr ""
8096
8097 #. type: textblock
8098 #: ../src/guestfs-actions.pod:1859 ../fish/guestfish-actions.pod:1270
8099 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8100 msgstr ""
8101
8102 #. type: textblock
8103 #: ../src/guestfs-actions.pod:1863 ../src/guestfs-actions.pod:7046
8104 msgid "(Added in 1.0.16)"
8105 msgstr ""
8106
8107 #. type: =head2
8108 #: ../src/guestfs-actions.pod:1865
8109 msgid "guestfs_get_append"
8110 msgstr ""
8111
8112 #. type: verbatim
8113 #: ../src/guestfs-actions.pod:1867
8114 #, no-wrap
8115 msgid ""
8116 " const char *\n"
8117 " guestfs_get_append (guestfs_h *g);\n"
8118 "\n"
8119 msgstr ""
8120
8121 #. type: textblock
8122 #: ../src/guestfs-actions.pod:1870 ../fish/guestfish-actions.pod:1276
8123 msgid ""
8124 "Return the additional kernel options which are added to the guest kernel "
8125 "command line."
8126 msgstr ""
8127
8128 #. type: textblock
8129 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1279
8130 msgid "If C<NULL> then no options are added."
8131 msgstr ""
8132
8133 #. type: textblock
8134 #: ../src/guestfs-actions.pod:1875
8135 msgid ""
8136 "This function returns a string which may be NULL.  There is no way to return "
8137 "an error from this function.  The string is owned by the guest handle and "
8138 "must I<not> be freed."
8139 msgstr ""
8140
8141 #. type: textblock
8142 #: ../src/guestfs-actions.pod:1879 ../src/guestfs-actions.pod:5077 ../src/guestfs-actions.pod:5540 ../src/guestfs-actions.pod:5908 ../src/guestfs-actions.pod:5927 ../src/guestfs-actions.pod:5943 ../src/guestfs-actions.pod:5960 ../src/guestfs-actions.pod:6717 ../src/guestfs-actions.pod:6735 ../src/guestfs-actions.pod:7089
8143 msgid "(Added in 1.0.26)"
8144 msgstr ""
8145
8146 #. type: =head2
8147 #: ../src/guestfs-actions.pod:1881
8148 msgid "guestfs_get_autosync"
8149 msgstr ""
8150
8151 #. type: verbatim
8152 #: ../src/guestfs-actions.pod:1883
8153 #, no-wrap
8154 msgid ""
8155 " int\n"
8156 " guestfs_get_autosync (guestfs_h *g);\n"
8157 "\n"
8158 msgstr ""
8159
8160 #. type: textblock
8161 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1285
8162 msgid "Get the autosync flag."
8163 msgstr ""
8164
8165 #. type: =head2
8166 #: ../src/guestfs-actions.pod:1892
8167 msgid "guestfs_get_direct"
8168 msgstr ""
8169
8170 #. type: verbatim
8171 #: ../src/guestfs-actions.pod:1894
8172 #, no-wrap
8173 msgid ""
8174 " int\n"
8175 " guestfs_get_direct (guestfs_h *g);\n"
8176 "\n"
8177 msgstr ""
8178
8179 #. type: textblock
8180 #: ../src/guestfs-actions.pod:1897 ../fish/guestfish-actions.pod:1291
8181 msgid "Return the direct appliance mode flag."
8182 msgstr ""
8183
8184 #. type: textblock
8185 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:5581
8186 msgid "(Added in 1.0.72)"
8187 msgstr ""
8188
8189 #. type: =head2
8190 #: ../src/guestfs-actions.pod:1903
8191 msgid "guestfs_get_e2label"
8192 msgstr ""
8193
8194 #. type: verbatim
8195 #: ../src/guestfs-actions.pod:1905
8196 #, no-wrap
8197 msgid ""
8198 " char *\n"
8199 " guestfs_get_e2label (guestfs_h *g,\n"
8200 "                      const char *device);\n"
8201 "\n"
8202 msgstr ""
8203
8204 #. type: textblock
8205 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1297
8206 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
8207 msgstr ""
8208
8209 #. type: textblock
8210 #: ../src/guestfs-actions.pod:1915
8211 msgid ""
8212 "This function is deprecated.  In new code, use the L</guestfs_vfs_label> "
8213 "call instead."
8214 msgstr ""
8215
8216 #. type: textblock
8217 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1943 ../src/guestfs-actions.pod:5599 ../src/guestfs-actions.pod:5618
8218 msgid "(Added in 1.0.15)"
8219 msgstr ""
8220
8221 #. type: =head2
8222 #: ../src/guestfs-actions.pod:1924
8223 msgid "guestfs_get_e2uuid"
8224 msgstr ""
8225
8226 #. type: verbatim
8227 #: ../src/guestfs-actions.pod:1926
8228 #, no-wrap
8229 msgid ""
8230 " char *\n"
8231 " guestfs_get_e2uuid (guestfs_h *g,\n"
8232 "                     const char *device);\n"
8233 "\n"
8234 msgstr ""
8235
8236 #. type: textblock
8237 #: ../src/guestfs-actions.pod:1930 ../fish/guestfish-actions.pod:1311
8238 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
8239 msgstr ""
8240
8241 #. type: textblock
8242 #: ../src/guestfs-actions.pod:1936
8243 msgid ""
8244 "This function is deprecated.  In new code, use the L</guestfs_vfs_uuid> call "
8245 "instead."
8246 msgstr ""
8247
8248 #. type: =head2
8249 #: ../src/guestfs-actions.pod:1945
8250 msgid "guestfs_get_memsize"
8251 msgstr ""
8252
8253 #. type: verbatim
8254 #: ../src/guestfs-actions.pod:1947
8255 #, no-wrap
8256 msgid ""
8257 " int\n"
8258 " guestfs_get_memsize (guestfs_h *g);\n"
8259 "\n"
8260 msgstr ""
8261
8262 #. type: textblock
8263 #: ../src/guestfs-actions.pod:1950 ../fish/guestfish-actions.pod:1325
8264 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
8265 msgstr ""
8266
8267 #. type: textblock
8268 #: ../src/guestfs-actions.pod:1953
8269 msgid ""
8270 "If C<guestfs_set_memsize> was not called on this handle, and if "
8271 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
8272 "value for memsize."
8273 msgstr ""
8274
8275 #. type: textblock
8276 #: ../src/guestfs-actions.pod:1957 ../src/guestfs-actions.pod:2038 ../src/guestfs-actions.pod:5634 ../src/guestfs-actions.pod:5741 ../fish/guestfish-actions.pod:1332 ../fish/guestfish-actions.pod:1383 ../fish/guestfish-actions.pod:3761 ../fish/guestfish-actions.pod:3848
8277 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
8278 msgstr ""
8279
8280 #. type: textblock
8281 #: ../src/guestfs-actions.pod:1962 ../src/guestfs-actions.pod:4150 ../src/guestfs-actions.pod:4335 ../src/guestfs-actions.pod:4354 ../src/guestfs-actions.pod:4373 ../src/guestfs-actions.pod:4385 ../src/guestfs-actions.pod:4402 ../src/guestfs-actions.pod:4415 ../src/guestfs-actions.pod:5302 ../src/guestfs-actions.pod:5639 ../src/guestfs-actions.pod:5882 ../src/guestfs-actions.pod:6483
8282 msgid "(Added in 1.0.55)"
8283 msgstr ""
8284
8285 #. type: =head2
8286 #: ../src/guestfs-actions.pod:1964
8287 msgid "guestfs_get_network"
8288 msgstr ""
8289
8290 #. type: verbatim
8291 #: ../src/guestfs-actions.pod:1966
8292 #, no-wrap
8293 msgid ""
8294 " int\n"
8295 " guestfs_get_network (guestfs_h *g);\n"
8296 "\n"
8297 msgstr ""
8298
8299 #. type: textblock
8300 #: ../src/guestfs-actions.pod:1969 ../fish/guestfish-actions.pod:1339
8301 msgid "This returns the enable network flag."
8302 msgstr ""
8303
8304 #. type: textblock
8305 #: ../src/guestfs-actions.pod:1973 ../src/guestfs-actions.pod:5658
8306 msgid "(Added in 1.5.4)"
8307 msgstr ""
8308
8309 #. type: =head2
8310 #: ../src/guestfs-actions.pod:1975
8311 msgid "guestfs_get_path"
8312 msgstr ""
8313
8314 #. type: verbatim
8315 #: ../src/guestfs-actions.pod:1977
8316 #, no-wrap
8317 msgid ""
8318 " const char *\n"
8319 " guestfs_get_path (guestfs_h *g);\n"
8320 "\n"
8321 msgstr ""
8322
8323 #. type: textblock
8324 #: ../src/guestfs-actions.pod:1980 ../fish/guestfish-actions.pod:1345
8325 msgid "Return the current search path."
8326 msgstr ""
8327
8328 #. type: textblock
8329 #: ../src/guestfs-actions.pod:1982 ../fish/guestfish-actions.pod:1347
8330 msgid ""
8331 "This is always non-NULL.  If it wasn't set already, then this will return "
8332 "the default path."
8333 msgstr ""
8334
8335 #. type: textblock
8336 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:2014
8337 msgid ""
8338 "This function returns a string, or NULL on error.  The string is owned by "
8339 "the guest handle and must I<not> be freed."
8340 msgstr ""
8341
8342 #. type: =head2
8343 #: ../src/guestfs-actions.pod:1990
8344 msgid "guestfs_get_pid"
8345 msgstr ""
8346
8347 #. type: verbatim
8348 #: ../src/guestfs-actions.pod:1992
8349 #, no-wrap
8350 msgid ""
8351 " int\n"
8352 " guestfs_get_pid (guestfs_h *g);\n"
8353 "\n"
8354 msgstr ""
8355
8356 #. type: textblock
8357 #: ../src/guestfs-actions.pod:1995 ../fish/guestfish-actions.pod:1356
8358 msgid ""
8359 "Return the process ID of the qemu subprocess.  If there is no qemu "
8360 "subprocess, then this will return an error."
8361 msgstr ""
8362
8363 #. type: textblock
8364 #: ../src/guestfs-actions.pod:1998 ../fish/guestfish-actions.pod:1359
8365 msgid "This is an internal call used for debugging and testing."
8366 msgstr ""
8367
8368 #. type: textblock
8369 #: ../src/guestfs-actions.pod:2002
8370 msgid "(Added in 1.0.56)"
8371 msgstr ""
8372
8373 #. type: =head2
8374 #: ../src/guestfs-actions.pod:2004
8375 msgid "guestfs_get_qemu"
8376 msgstr ""
8377
8378 #. type: verbatim
8379 #: ../src/guestfs-actions.pod:2006
8380 #, no-wrap
8381 msgid ""
8382 " const char *\n"
8383 " guestfs_get_qemu (guestfs_h *g);\n"
8384 "\n"
8385 msgstr ""
8386
8387 #. type: textblock
8388 #: ../src/guestfs-actions.pod:2009 ../fish/guestfish-actions.pod:1365
8389 msgid "Return the current qemu binary."
8390 msgstr ""
8391
8392 #. type: textblock
8393 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1367
8394 msgid ""
8395 "This is always non-NULL.  If it wasn't set already, then this will return "
8396 "the default qemu binary name."
8397 msgstr ""
8398
8399 #. type: textblock
8400 #: ../src/guestfs-actions.pod:2017 ../src/guestfs-actions.pod:5703
8401 msgid "(Added in 1.0.6)"
8402 msgstr ""
8403
8404 #. type: =head2
8405 #: ../src/guestfs-actions.pod:2019
8406 msgid "guestfs_get_recovery_proc"
8407 msgstr ""
8408
8409 #. type: verbatim
8410 #: ../src/guestfs-actions.pod:2021
8411 #, no-wrap
8412 msgid ""
8413 " int\n"
8414 " guestfs_get_recovery_proc (guestfs_h *g);\n"
8415 "\n"
8416 msgstr ""
8417
8418 #. type: textblock
8419 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1374
8420 msgid "Return the recovery process enabled flag."
8421 msgstr ""
8422
8423 #. type: textblock
8424 #: ../src/guestfs-actions.pod:2028 ../src/guestfs-actions.pod:3260 ../src/guestfs-actions.pod:3557 ../src/guestfs-actions.pod:3957 ../src/guestfs-actions.pod:3989 ../src/guestfs-actions.pod:5007 ../src/guestfs-actions.pod:5350 ../src/guestfs-actions.pod:5727 ../src/guestfs-actions.pod:6386 ../src/guestfs-actions.pod:6406 ../src/guestfs-actions.pod:6598
8425 msgid "(Added in 1.0.77)"
8426 msgstr ""
8427
8428 #. type: =head2
8429 #: ../src/guestfs-actions.pod:2030
8430 msgid "guestfs_get_selinux"
8431 msgstr ""
8432
8433 #. type: verbatim
8434 #: ../src/guestfs-actions.pod:2032
8435 #, no-wrap
8436 msgid ""
8437 " int\n"
8438 " guestfs_get_selinux (guestfs_h *g);\n"
8439 "\n"
8440 msgstr ""
8441
8442 #. type: textblock
8443 #: ../src/guestfs-actions.pod:2035
8444 msgid ""
8445 "This returns the current setting of the selinux flag which is passed to the "
8446 "appliance at boot time.  See C<guestfs_set_selinux>."
8447 msgstr ""
8448
8449 #. type: textblock
8450 #: ../src/guestfs-actions.pod:2043 ../src/guestfs-actions.pod:2106 ../src/guestfs-actions.pod:5746 ../src/guestfs-actions.pod:5800
8451 msgid "(Added in 1.0.67)"
8452 msgstr ""
8453
8454 #. type: =head2
8455 #: ../src/guestfs-actions.pod:2045
8456 msgid "guestfs_get_state"
8457 msgstr ""
8458
8459 #. type: verbatim
8460 #: ../src/guestfs-actions.pod:2047
8461 #, no-wrap
8462 msgid ""
8463 " int\n"
8464 " guestfs_get_state (guestfs_h *g);\n"
8465 "\n"
8466 msgstr ""
8467
8468 #. type: textblock
8469 #: ../src/guestfs-actions.pod:2050 ../fish/guestfish-actions.pod:1390
8470 msgid ""
8471 "This returns the current state as an opaque integer.  This is only useful "
8472 "for printing debug and internal error messages."
8473 msgstr ""
8474
8475 #. type: textblock
8476 #: ../src/guestfs-actions.pod:2053 ../src/guestfs-actions.pod:3063 ../src/guestfs-actions.pod:3092 ../src/guestfs-actions.pod:3153 ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:1393 ../fish/guestfish-actions.pod:2132 ../fish/guestfish-actions.pod:2150 ../fish/guestfish-actions.pod:2188 ../fish/guestfish-actions.pod:2204
8477 msgid "For more information on states, see L<guestfs(3)>."
8478 msgstr ""
8479
8480 #. type: =head2
8481 #: ../src/guestfs-actions.pod:2059
8482 msgid "guestfs_get_trace"
8483 msgstr ""
8484
8485 #. type: verbatim
8486 #: ../src/guestfs-actions.pod:2061
8487 #, no-wrap
8488 msgid ""
8489 " int\n"
8490 " guestfs_get_trace (guestfs_h *g);\n"
8491 "\n"
8492 msgstr ""
8493
8494 #. type: textblock
8495 #: ../src/guestfs-actions.pod:2064 ../fish/guestfish-actions.pod:1399
8496 msgid "Return the command trace flag."
8497 msgstr ""
8498
8499 #. type: =head2
8500 #: ../src/guestfs-actions.pod:2070
8501 msgid "guestfs_get_umask"
8502 msgstr ""
8503
8504 #. type: verbatim
8505 #: ../src/guestfs-actions.pod:2072
8506 #, no-wrap
8507 msgid ""
8508 " int\n"
8509 " guestfs_get_umask (guestfs_h *g);\n"
8510 "\n"
8511 msgstr ""
8512
8513 #. type: textblock
8514 #: ../src/guestfs-actions.pod:2075
8515 msgid ""
8516 "Return the current umask.  By default the umask is C<022> unless it has been "
8517 "set by calling C<guestfs_umask>."
8518 msgstr ""
8519
8520 #. type: =head2
8521 #: ../src/guestfs-actions.pod:2082
8522 msgid "guestfs_get_verbose"
8523 msgstr ""
8524
8525 #. type: verbatim
8526 #: ../src/guestfs-actions.pod:2084
8527 #, no-wrap
8528 msgid ""
8529 " int\n"
8530 " guestfs_get_verbose (guestfs_h *g);\n"
8531 "\n"
8532 msgstr ""
8533
8534 #. type: textblock
8535 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
8536 msgid "This returns the verbose messages flag."
8537 msgstr ""
8538
8539 #. type: =head2
8540 #: ../src/guestfs-actions.pod:2093
8541 msgid "guestfs_getcon"
8542 msgstr ""
8543
8544 #. type: verbatim
8545 #: ../src/guestfs-actions.pod:2095
8546 #, no-wrap
8547 msgid ""
8548 " char *\n"
8549 " guestfs_getcon (guestfs_h *g);\n"
8550 "\n"
8551 msgstr ""
8552
8553 #. type: textblock
8554 #: ../src/guestfs-actions.pod:2098 ../fish/guestfish-actions.pod:1418
8555 msgid "This gets the SELinux security context of the daemon."
8556 msgstr ""
8557
8558 #. type: textblock
8559 #: ../src/guestfs-actions.pod:2100
8560 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
8561 msgstr ""
8562
8563 #. type: =head2
8564 #: ../src/guestfs-actions.pod:2108
8565 msgid "guestfs_getxattr"
8566 msgstr ""
8567
8568 #. type: verbatim
8569 #: ../src/guestfs-actions.pod:2110
8570 #, no-wrap
8571 msgid ""
8572 " char *\n"
8573 " guestfs_getxattr (guestfs_h *g,\n"
8574 "                   const char *path,\n"
8575 "                   const char *name,\n"
8576 "                   size_t *size_r);\n"
8577 "\n"
8578 msgstr ""
8579
8580 #. type: textblock
8581 #: ../src/guestfs-actions.pod:2116
8582 msgid ""
8583 "Get a single extended attribute from file C<path> named C<name>.  This call "
8584 "follows symlinks.  If you want to lookup an extended attribute for the "
8585 "symlink itself, use C<guestfs_lgetxattr>."
8586 msgstr ""
8587
8588 #. type: textblock
8589 #: ../src/guestfs-actions.pod:2120 ../src/guestfs-actions.pod:3274
8590 msgid ""
8591 "Normally it is better to get all extended attributes from a file in one go "
8592 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
8593 "implementations are buggy and do not provide a way to list out attributes.  "
8594 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
8595 "extended attributes you want in advance and call this function."
8596 msgstr ""
8597
8598 #. type: textblock
8599 #: ../src/guestfs-actions.pod:2127 ../src/guestfs-actions.pod:3281 ../fish/guestfish-actions.pod:1438 ../fish/guestfish-actions.pod:2269
8600 msgid ""
8601 "Extended attribute values are blobs of binary data.  If there is no extended "
8602 "attribute named C<name>, this returns an error."
8603 msgstr ""
8604
8605 #. type: textblock
8606 #: ../src/guestfs-actions.pod:2130
8607 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
8608 msgstr ""
8609
8610 #. type: textblock
8611 #: ../src/guestfs-actions.pod:2132 ../src/guestfs-actions.pod:2323 ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:5000 ../src/guestfs-actions.pod:5026 ../src/guestfs-actions.pod:5207
8612 msgid ""
8613 "This function returns a buffer, or NULL on error.  The size of the returned "
8614 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
8615 "after use>."
8616 msgstr ""
8617
8618 #. type: textblock
8619 #: ../src/guestfs-actions.pod:2136 ../src/guestfs-actions.pod:3290
8620 msgid "(Added in 1.7.24)"
8621 msgstr ""
8622
8623 #. type: =head2
8624 #: ../src/guestfs-actions.pod:2138
8625 msgid "guestfs_getxattrs"
8626 msgstr ""
8627
8628 #. type: verbatim
8629 #: ../src/guestfs-actions.pod:2140
8630 #, no-wrap
8631 msgid ""
8632 " struct guestfs_xattr_list *\n"
8633 " guestfs_getxattrs (guestfs_h *g,\n"
8634 "                    const char *path);\n"
8635 "\n"
8636 msgstr ""
8637
8638 #. type: textblock
8639 #: ../src/guestfs-actions.pod:2144 ../fish/guestfish-actions.pod:1447
8640 msgid "This call lists the extended attributes of the file or directory C<path>."
8641 msgstr ""
8642
8643 #. type: textblock
8644 #: ../src/guestfs-actions.pod:2147 ../fish/guestfish-actions.pod:1450
8645 msgid ""
8646 "At the system call level, this is a combination of the L<listxattr(2)> and "
8647 "L<getxattr(2)> calls."
8648 msgstr ""
8649
8650 #. type: textblock
8651 #: ../src/guestfs-actions.pod:2150
8652 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
8653 msgstr ""
8654
8655 #. type: textblock
8656 #: ../src/guestfs-actions.pod:2152 ../src/guestfs-actions.pod:3302 ../src/guestfs-actions.pod:3953
8657 msgid ""
8658 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
8659 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
8660 msgstr ""
8661
8662 #. type: textblock
8663 #: ../src/guestfs-actions.pod:2156 ../src/guestfs-actions.pod:3306 ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3507 ../src/guestfs-actions.pod:5380 ../src/guestfs-actions.pod:5819 ../src/guestfs-actions.pod:7154
8664 msgid "(Added in 1.0.59)"
8665 msgstr ""
8666
8667 #. type: =head2
8668 #: ../src/guestfs-actions.pod:2158
8669 msgid "guestfs_glob_expand"
8670 msgstr ""
8671
8672 #. type: verbatim
8673 #: ../src/guestfs-actions.pod:2160
8674 #, no-wrap
8675 msgid ""
8676 " char **\n"
8677 " guestfs_glob_expand (guestfs_h *g,\n"
8678 "                      const char *pattern);\n"
8679 "\n"
8680 msgstr ""
8681
8682 #. type: textblock
8683 #: ../src/guestfs-actions.pod:2164 ../fish/guestfish-actions.pod:1459
8684 msgid ""
8685 "This command searches for all the pathnames matching C<pattern> according to "
8686 "the wildcard expansion rules used by the shell."
8687 msgstr ""
8688
8689 #. type: textblock
8690 #: ../src/guestfs-actions.pod:2168 ../fish/guestfish-actions.pod:1463
8691 msgid "If no paths match, then this returns an empty list (note: not an error)."
8692 msgstr ""
8693
8694 #. type: textblock
8695 #: ../src/guestfs-actions.pod:2171 ../fish/guestfish-actions.pod:1466
8696 msgid ""
8697 "It is just a wrapper around the C L<glob(3)> function with flags "
8698 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
8699 msgstr ""
8700
8701 #. type: textblock
8702 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:5984 ../src/guestfs-actions.pod:6001
8703 msgid "(Added in 1.0.50)"
8704 msgstr ""
8705
8706 #. type: =head2
8707 #: ../src/guestfs-actions.pod:2181
8708 msgid "guestfs_grep"
8709 msgstr ""
8710
8711 #. type: verbatim
8712 #: ../src/guestfs-actions.pod:2183
8713 #, no-wrap
8714 msgid ""
8715 " char **\n"
8716 " guestfs_grep (guestfs_h *g,\n"
8717 "               const char *regex,\n"
8718 "               const char *path);\n"
8719 "\n"
8720 msgstr ""
8721
8722 #. type: textblock
8723 #: ../src/guestfs-actions.pod:2188 ../fish/guestfish-actions.pod:1474
8724 msgid "This calls the external C<grep> program and returns the matching lines."
8725 msgstr ""
8726
8727 #. type: =head2
8728 #: ../src/guestfs-actions.pod:2200
8729 msgid "guestfs_grepi"
8730 msgstr ""
8731
8732 #. type: verbatim
8733 #: ../src/guestfs-actions.pod:2202
8734 #, no-wrap
8735 msgid ""
8736 " char **\n"
8737 " guestfs_grepi (guestfs_h *g,\n"
8738 "                const char *regex,\n"
8739 "                const char *path);\n"
8740 "\n"
8741 msgstr ""
8742
8743 #. type: textblock
8744 #: ../src/guestfs-actions.pod:2207 ../fish/guestfish-actions.pod:1484
8745 msgid "This calls the external C<grep -i> program and returns the matching lines."
8746 msgstr ""
8747
8748 #. type: =head2
8749 #: ../src/guestfs-actions.pod:2219
8750 msgid "guestfs_grub_install"
8751 msgstr ""
8752
8753 #. type: verbatim
8754 #: ../src/guestfs-actions.pod:2221
8755 #, no-wrap
8756 msgid ""
8757 " int\n"
8758 " guestfs_grub_install (guestfs_h *g,\n"
8759 "                       const char *root,\n"
8760 "                       const char *device);\n"
8761 "\n"
8762 msgstr ""
8763
8764 #. type: textblock
8765 #: ../src/guestfs-actions.pod:2226 ../fish/guestfish-actions.pod:1494
8766 msgid ""
8767 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
8768 "the root directory being C<root>."
8769 msgstr ""
8770
8771 #. type: textblock
8772 #: ../src/guestfs-actions.pod:2229 ../fish/guestfish-actions.pod:1497
8773 msgid ""
8774 "Note: If grub-install reports the error \"No suitable drive was found in the "
8775 "generated device map.\" it may be that you need to create a "
8776 "C</boot/grub/device.map> file first that contains the mapping between grub "
8777 "device names and Linux device names.  It is usually sufficient to create a "
8778 "file containing:"
8779 msgstr ""
8780
8781 #. type: verbatim
8782 #: ../src/guestfs-actions.pod:2236 ../fish/guestfish-actions.pod:1504
8783 #, no-wrap
8784 msgid ""
8785 " (hd0) /dev/vda\n"
8786 "\n"
8787 msgstr ""
8788
8789 #. type: textblock
8790 #: ../src/guestfs-actions.pod:2238 ../fish/guestfish-actions.pod:1506
8791 msgid "replacing C</dev/vda> with the name of the installation device."
8792 msgstr ""
8793
8794 #. type: textblock
8795 #: ../src/guestfs-actions.pod:2242
8796 msgid "(Added in 1.0.17)"
8797 msgstr ""
8798
8799 #. type: =head2
8800 #: ../src/guestfs-actions.pod:2244
8801 msgid "guestfs_head"
8802 msgstr ""
8803
8804 #. type: verbatim
8805 #: ../src/guestfs-actions.pod:2246
8806 #, no-wrap
8807 msgid ""
8808 " char **\n"
8809 " guestfs_head (guestfs_h *g,\n"
8810 "               const char *path);\n"
8811 "\n"
8812 msgstr ""
8813
8814 #. type: textblock
8815 #: ../src/guestfs-actions.pod:2250 ../fish/guestfish-actions.pod:1512
8816 msgid ""
8817 "This command returns up to the first 10 lines of a file as a list of "
8818 "strings."
8819 msgstr ""
8820
8821 #. type: =head2
8822 #: ../src/guestfs-actions.pod:2262
8823 msgid "guestfs_head_n"
8824 msgstr ""
8825
8826 #. type: verbatim
8827 #: ../src/guestfs-actions.pod:2264
8828 #, no-wrap
8829 msgid ""
8830 " char **\n"
8831 " guestfs_head_n (guestfs_h *g,\n"
8832 "                 int nrlines,\n"
8833 "                 const char *path);\n"
8834 "\n"
8835 msgstr ""
8836
8837 #. type: textblock
8838 #: ../src/guestfs-actions.pod:2269 ../fish/guestfish-actions.pod:1522
8839 msgid ""
8840 "If the parameter C<nrlines> is a positive number, this returns the first "
8841 "C<nrlines> lines of the file C<path>."
8842 msgstr ""
8843
8844 #. type: textblock
8845 #: ../src/guestfs-actions.pod:2272 ../fish/guestfish-actions.pod:1525
8846 msgid ""
8847 "If the parameter C<nrlines> is a negative number, this returns lines from "
8848 "the file C<path>, excluding the last C<nrlines> lines."
8849 msgstr ""
8850
8851 #. type: textblock
8852 #: ../src/guestfs-actions.pod:2275 ../src/guestfs-actions.pod:6281 ../fish/guestfish-actions.pod:1528 ../fish/guestfish-actions.pod:4194
8853 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
8854 msgstr ""
8855
8856 #. type: =head2
8857 #: ../src/guestfs-actions.pod:2286
8858 msgid "guestfs_hexdump"
8859 msgstr ""
8860
8861 #. type: verbatim
8862 #: ../src/guestfs-actions.pod:2288
8863 #, no-wrap
8864 msgid ""
8865 " char *\n"
8866 " guestfs_hexdump (guestfs_h *g,\n"
8867 "                  const char *path);\n"
8868 "\n"
8869 msgstr ""
8870
8871 #. type: textblock
8872 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1537
8873 msgid ""
8874 "This runs C<hexdump -C> on the given C<path>.  The result is the "
8875 "human-readable, canonical hex dump of the file."
8876 msgstr ""
8877
8878 #. type: textblock
8879 #: ../src/guestfs-actions.pod:2301 ../src/guestfs-actions.pod:6065 ../src/guestfs-actions.pod:6120
8880 msgid "(Added in 1.0.22)"
8881 msgstr ""
8882
8883 #. type: =head2
8884 #: ../src/guestfs-actions.pod:2303
8885 msgid "guestfs_initrd_cat"
8886 msgstr ""
8887
8888 #. type: verbatim
8889 #: ../src/guestfs-actions.pod:2305
8890 #, no-wrap
8891 msgid ""
8892 " char *\n"
8893 " guestfs_initrd_cat (guestfs_h *g,\n"
8894 "                     const char *initrdpath,\n"
8895 "                     const char *filename,\n"
8896 "                     size_t *size_r);\n"
8897 "\n"
8898 msgstr ""
8899
8900 #. type: textblock
8901 #: ../src/guestfs-actions.pod:2311 ../fish/guestfish-actions.pod:1547
8902 msgid ""
8903 "This command unpacks the file C<filename> from the initrd file called "
8904 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
8905 "character."
8906 msgstr ""
8907
8908 #. type: textblock
8909 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1551
8910 msgid ""
8911 "For example, in guestfish you could use the following command to examine the "
8912 "boot script (usually called C</init>)  contained in a Linux initrd or "
8913 "initramfs image:"
8914 msgstr ""
8915
8916 #. type: verbatim
8917 #: ../src/guestfs-actions.pod:2319 ../fish/guestfish-actions.pod:1555
8918 #, no-wrap
8919 msgid ""
8920 " initrd-cat /boot/initrd-<version>.img init\n"
8921 "\n"
8922 msgstr ""
8923
8924 #. type: textblock
8925 #: ../src/guestfs-actions.pod:2321
8926 msgid "See also C<guestfs_initrd_list>."
8927 msgstr ""
8928
8929 #. type: =head2
8930 #: ../src/guestfs-actions.pod:2332
8931 msgid "guestfs_initrd_list"
8932 msgstr ""
8933
8934 #. type: verbatim
8935 #: ../src/guestfs-actions.pod:2334
8936 #, no-wrap
8937 msgid ""
8938 " char **\n"
8939 " guestfs_initrd_list (guestfs_h *g,\n"
8940 "                      const char *path);\n"
8941 "\n"
8942 msgstr ""
8943
8944 #. type: textblock
8945 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1566
8946 msgid "This command lists out files contained in an initrd."
8947 msgstr ""
8948
8949 #. type: textblock
8950 #: ../src/guestfs-actions.pod:2340 ../fish/guestfish-actions.pod:1568
8951 msgid ""
8952 "The files are listed without any initial C</> character.  The files are "
8953 "listed in the order they appear (not necessarily alphabetical).  Directory "
8954 "names are listed as separate items."
8955 msgstr ""
8956
8957 #. type: textblock
8958 #: ../src/guestfs-actions.pod:2344 ../fish/guestfish-actions.pod:1572
8959 msgid ""
8960 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
8961 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
8962 "files)."
8963 msgstr ""
8964
8965 #. type: =head2
8966 #: ../src/guestfs-actions.pod:2354
8967 msgid "guestfs_inotify_add_watch"
8968 msgstr ""
8969
8970 #. type: verbatim
8971 #: ../src/guestfs-actions.pod:2356
8972 #, no-wrap
8973 msgid ""
8974 " int64_t\n"
8975 " guestfs_inotify_add_watch (guestfs_h *g,\n"
8976 "                            const char *path,\n"
8977 "                            int mask);\n"
8978 "\n"
8979 msgstr ""
8980
8981 #. type: textblock
8982 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1580
8983 msgid "Watch C<path> for the events listed in C<mask>."
8984 msgstr ""
8985
8986 #. type: textblock
8987 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1582
8988 msgid ""
8989 "Note that if C<path> is a directory then events within that directory are "
8990 "watched, but this does I<not> happen recursively (in subdirectories)."
8991 msgstr ""
8992
8993 #. type: textblock
8994 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1586
8995 msgid ""
8996 "Note for non-C or non-Linux callers: the inotify events are defined by the "
8997 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
8998 msgstr ""
8999
9000 #. type: =head2
9001 #: ../src/guestfs-actions.pod:2375
9002 msgid "guestfs_inotify_close"
9003 msgstr ""
9004
9005 #. type: verbatim
9006 #: ../src/guestfs-actions.pod:2377
9007 #, no-wrap
9008 msgid ""
9009 " int\n"
9010 " guestfs_inotify_close (guestfs_h *g);\n"
9011 "\n"
9012 msgstr ""
9013
9014 #. type: textblock
9015 #: ../src/guestfs-actions.pod:2380 ../fish/guestfish-actions.pod:1594
9016 msgid ""
9017 "This closes the inotify handle which was previously opened by inotify_init.  "
9018 "It removes all watches, throws away any pending events, and deallocates all "
9019 "resources."
9020 msgstr ""
9021
9022 #. type: =head2
9023 #: ../src/guestfs-actions.pod:2388
9024 msgid "guestfs_inotify_files"
9025 msgstr ""
9026
9027 #. type: verbatim
9028 #: ../src/guestfs-actions.pod:2390
9029 #, no-wrap
9030 msgid ""
9031 " char **\n"
9032 " guestfs_inotify_files (guestfs_h *g);\n"
9033 "\n"
9034 msgstr ""
9035
9036 #. type: textblock
9037 #: ../src/guestfs-actions.pod:2393
9038 msgid ""
9039 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9040 "returns a list of pathnames of objects that were touched.  The returned "
9041 "pathnames are sorted and deduplicated."
9042 msgstr ""
9043
9044 #. type: =head2
9045 #: ../src/guestfs-actions.pod:2403
9046 msgid "guestfs_inotify_init"
9047 msgstr ""
9048
9049 #. type: verbatim
9050 #: ../src/guestfs-actions.pod:2405
9051 #, no-wrap
9052 msgid ""
9053 " int\n"
9054 " guestfs_inotify_init (guestfs_h *g,\n"
9055 "                       int maxevents);\n"
9056 "\n"
9057 msgstr ""
9058
9059 #. type: textblock
9060 #: ../src/guestfs-actions.pod:2409 ../fish/guestfish-actions.pod:1610
9061 msgid ""
9062 "This command creates a new inotify handle.  The inotify subsystem can be "
9063 "used to notify events which happen to objects in the guest filesystem."
9064 msgstr ""
9065
9066 #. type: textblock
9067 #: ../src/guestfs-actions.pod:2413
9068 msgid ""
9069 "C<maxevents> is the maximum number of events which will be queued up between "
9070 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9071 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9072 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9073 "throws away events, but records the fact that it threw them away by setting "
9074 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9075 "C<guestfs_inotify_read>)."
9076 msgstr ""
9077
9078 #. type: textblock
9079 #: ../src/guestfs-actions.pod:2423
9080 msgid ""
9081 "Before any events are generated, you have to add some watches to the "
9082 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9083 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9084 msgstr ""
9085
9086 #. type: textblock
9087 #: ../src/guestfs-actions.pod:2429
9088 msgid ""
9089 "Queued up events should be read periodically by calling "
9090 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9091 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9092 "often enough then you risk the internal queue overflowing."
9093 msgstr ""
9094
9095 #. type: textblock
9096 #: ../src/guestfs-actions.pod:2436
9097 msgid ""
9098 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9099 "This also removes any watches automatically."
9100 msgstr ""
9101
9102 #. type: textblock
9103 #: ../src/guestfs-actions.pod:2440 ../fish/guestfish-actions.pod:1641
9104 msgid ""
9105 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9106 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9107 "that there is one global inotify handle per libguestfs instance."
9108 msgstr ""
9109
9110 #. type: =head2
9111 #: ../src/guestfs-actions.pod:2449
9112 msgid "guestfs_inotify_read"
9113 msgstr ""
9114
9115 #. type: verbatim
9116 #: ../src/guestfs-actions.pod:2451
9117 #, no-wrap
9118 msgid ""
9119 " struct guestfs_inotify_event_list *\n"
9120 " guestfs_inotify_read (guestfs_h *g);\n"
9121 "\n"
9122 msgstr ""
9123
9124 #. type: textblock
9125 #: ../src/guestfs-actions.pod:2454 ../fish/guestfish-actions.pod:1650
9126 msgid ""
9127 "Return the complete queue of events that have happened since the previous "
9128 "read call."
9129 msgstr ""
9130
9131 #. type: textblock
9132 #: ../src/guestfs-actions.pod:2457 ../fish/guestfish-actions.pod:1653
9133 msgid "If no events have happened, this returns an empty list."
9134 msgstr ""
9135
9136 #. type: textblock
9137 #: ../src/guestfs-actions.pod:2459 ../fish/guestfish-actions.pod:1655
9138 msgid ""
9139 "I<Note>: In order to make sure that all events have been read, you must call "
9140 "this function repeatedly until it returns an empty list.  The reason is that "
9141 "the call will read events up to the maximum appliance-to-host message size "
9142 "and leave remaining events in the queue."
9143 msgstr ""
9144
9145 #. type: textblock
9146 #: ../src/guestfs-actions.pod:2465
9147 msgid ""
9148 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9149 "there was an error.  I<The caller must call "
9150 "C<guestfs_free_inotify_event_list> after use>."
9151 msgstr ""
9152
9153 #. type: =head2
9154 #: ../src/guestfs-actions.pod:2471
9155 msgid "guestfs_inotify_rm_watch"
9156 msgstr ""
9157
9158 #. type: verbatim
9159 #: ../src/guestfs-actions.pod:2473
9160 #, no-wrap
9161 msgid ""
9162 " int\n"
9163 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9164 "                           int wd);\n"
9165 "\n"
9166 msgstr ""
9167
9168 #. type: textblock
9169 #: ../src/guestfs-actions.pod:2477
9170 msgid ""
9171 "Remove a previously defined inotify watch.  See "
9172 "C<guestfs_inotify_add_watch>."
9173 msgstr ""
9174
9175 #. type: =head2
9176 #: ../src/guestfs-actions.pod:2484
9177 msgid "guestfs_inspect_get_arch"
9178 msgstr ""
9179
9180 #. type: verbatim
9181 #: ../src/guestfs-actions.pod:2486
9182 #, no-wrap
9183 msgid ""
9184 " char *\n"
9185 " guestfs_inspect_get_arch (guestfs_h *g,\n"
9186 "                           const char *root);\n"
9187 "\n"
9188 msgstr ""
9189
9190 #. type: textblock
9191 #: ../src/guestfs-actions.pod:2490 ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:2594 ../src/guestfs-actions.pod:2620 ../src/guestfs-actions.pod:2642 ../src/guestfs-actions.pod:2669 ../src/guestfs-actions.pod:2690 ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:2756 ../src/guestfs-actions.pod:2787 ../src/guestfs-actions.pod:2831 ../src/guestfs-actions.pod:2873 ../src/guestfs-actions.pod:2896
9192 msgid ""
9193 "This function should only be called with a root device string as returned by "
9194 "C<guestfs_inspect_os>."
9195 msgstr ""
9196
9197 #. type: textblock
9198 #: ../src/guestfs-actions.pod:2493
9199 msgid ""
9200 "This returns the architecture of the inspected operating system.  The "
9201 "possible return values are listed under C<guestfs_file_architecture>."
9202 msgstr ""
9203
9204 #. type: textblock
9205 #: ../src/guestfs-actions.pod:2497 ../fish/guestfish-actions.pod:1679
9206 msgid ""
9207 "If the architecture could not be determined, then the string C<unknown> is "
9208 "returned."
9209 msgstr ""
9210
9211 #. type: textblock
9212 #: ../src/guestfs-actions.pod:2500 ../src/guestfs-actions.pod:2581 ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2657 ../src/guestfs-actions.pod:2743 ../src/guestfs-actions.pod:2774 ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:2817 ../src/guestfs-actions.pod:2860 ../src/guestfs-actions.pod:2883 ../src/guestfs-actions.pod:2989 ../src/guestfs-actions.pod:3030 ../fish/guestfish-actions.pod:1682 ../fish/guestfish-actions.pod:1756 ../fish/guestfish-actions.pod:1789 ../fish/guestfish-actions.pod:1810 ../fish/guestfish-actions.pod:1874 ../fish/guestfish-actions.pod:1898 ../fish/guestfish-actions.pod:1915 ../fish/guestfish-actions.pod:1928 ../fish/guestfish-actions.pod:1963 ../fish/guestfish-actions.pod:1979 ../fish/guestfish-actions.pod:2078 ../fish/guestfish-actions.pod:2112
9213 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
9214 msgstr ""
9215
9216 #. type: =head2
9217 #: ../src/guestfs-actions.pod:2507
9218 msgid "guestfs_inspect_get_distro"
9219 msgstr ""
9220
9221 #. type: verbatim
9222 #: ../src/guestfs-actions.pod:2509
9223 #, no-wrap
9224 msgid ""
9225 " char *\n"
9226 " guestfs_inspect_get_distro (guestfs_h *g,\n"
9227 "                             const char *root);\n"
9228 "\n"
9229 msgstr ""
9230
9231 #. type: textblock
9232 #: ../src/guestfs-actions.pod:2516 ../fish/guestfish-actions.pod:1691
9233 msgid "This returns the distro (distribution) of the inspected operating system."
9234 msgstr ""
9235
9236 #. type: textblock
9237 #: ../src/guestfs-actions.pod:2519 ../fish/guestfish-actions.pod:1694
9238 msgid "Currently defined distros are:"
9239 msgstr ""
9240
9241 #. type: =item
9242 #: ../src/guestfs-actions.pod:2523 ../fish/guestfish-actions.pod:1698
9243 msgid "\"archlinux\""
9244 msgstr ""
9245
9246 #. type: textblock
9247 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1700
9248 msgid "Arch Linux."
9249 msgstr ""
9250
9251 #. type: =item
9252 #: ../src/guestfs-actions.pod:2527 ../fish/guestfish-actions.pod:1702
9253 msgid "\"debian\""
9254 msgstr ""
9255
9256 #. type: textblock
9257 #: ../src/guestfs-actions.pod:2529 ../fish/guestfish-actions.pod:1704
9258 msgid "Debian."
9259 msgstr ""
9260
9261 #. type: =item
9262 #: ../src/guestfs-actions.pod:2531 ../fish/guestfish-actions.pod:1706
9263 msgid "\"fedora\""
9264 msgstr ""
9265
9266 #. type: textblock
9267 #: ../src/guestfs-actions.pod:2533 ../fish/guestfish-actions.pod:1708
9268 msgid "Fedora."
9269 msgstr ""
9270
9271 #. type: =item
9272 #: ../src/guestfs-actions.pod:2535 ../fish/guestfish-actions.pod:1710
9273 msgid "\"gentoo\""
9274 msgstr ""
9275
9276 #. type: textblock
9277 #: ../src/guestfs-actions.pod:2537 ../fish/guestfish-actions.pod:1712
9278 msgid "Gentoo."
9279 msgstr ""
9280
9281 #. type: =item
9282 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1714
9283 msgid "\"linuxmint\""
9284 msgstr ""
9285
9286 #. type: textblock
9287 #: ../src/guestfs-actions.pod:2541 ../fish/guestfish-actions.pod:1716
9288 msgid "Linux Mint."
9289 msgstr ""
9290
9291 #. type: =item
9292 #: ../src/guestfs-actions.pod:2543 ../fish/guestfish-actions.pod:1718
9293 msgid "\"mandriva\""
9294 msgstr ""
9295
9296 #. type: textblock
9297 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1720
9298 msgid "Mandriva."
9299 msgstr ""
9300
9301 #. type: =item
9302 #: ../src/guestfs-actions.pod:2547 ../fish/guestfish-actions.pod:1722
9303 msgid "\"meego\""
9304 msgstr ""
9305
9306 #. type: textblock
9307 #: ../src/guestfs-actions.pod:2549 ../fish/guestfish-actions.pod:1724
9308 msgid "MeeGo."
9309 msgstr ""
9310
9311 #. type: =item
9312 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1726
9313 msgid "\"pardus\""
9314 msgstr ""
9315
9316 #. type: textblock
9317 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1728
9318 msgid "Pardus."
9319 msgstr ""
9320
9321 #. type: =item
9322 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1730
9323 msgid "\"redhat-based\""
9324 msgstr ""
9325
9326 #. type: textblock
9327 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1732
9328 msgid "Some Red Hat-derived distro."
9329 msgstr ""
9330
9331 #. type: =item
9332 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1734
9333 msgid "\"rhel\""
9334 msgstr ""
9335
9336 #. type: textblock
9337 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1736
9338 msgid "Red Hat Enterprise Linux and some derivatives."
9339 msgstr ""
9340
9341 #. type: =item
9342 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1738
9343 msgid "\"ubuntu\""
9344 msgstr ""
9345
9346 #. type: textblock
9347 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1740
9348 msgid "Ubuntu."
9349 msgstr ""
9350
9351 #. type: =item
9352 #: ../src/guestfs-actions.pod:2567 ../src/guestfs-actions.pod:2851 ../fish/guestfish-actions.pod:1742 ../fish/guestfish-actions.pod:1954
9353 msgid "\"unknown\""
9354 msgstr ""
9355
9356 #. type: textblock
9357 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1744
9358 msgid "The distro could not be determined."
9359 msgstr ""
9360
9361 #. type: =item
9362 #: ../src/guestfs-actions.pod:2571 ../src/guestfs-actions.pod:2843 ../fish/guestfish-actions.pod:1746 ../fish/guestfish-actions.pod:1946
9363 msgid "\"windows\""
9364 msgstr ""
9365
9366 #. type: textblock
9367 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1748
9368 msgid ""
9369 "Windows does not have distributions.  This string is returned if the OS type "
9370 "is Windows."
9371 msgstr ""
9372
9373 #. type: textblock
9374 #: ../src/guestfs-actions.pod:2578 ../src/guestfs-actions.pod:2857 ../fish/guestfish-actions.pod:1753 ../fish/guestfish-actions.pod:1960
9375 msgid ""
9376 "Future versions of libguestfs may return other strings here.  The caller "
9377 "should be prepared to handle any string."
9378 msgstr ""
9379
9380 #. type: =head2
9381 #: ../src/guestfs-actions.pod:2588
9382 msgid "guestfs_inspect_get_filesystems"
9383 msgstr ""
9384
9385 #. type: verbatim
9386 #: ../src/guestfs-actions.pod:2590
9387 #, no-wrap
9388 msgid ""
9389 " char **\n"
9390 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
9391 "                                  const char *root);\n"
9392 "\n"
9393 msgstr ""
9394
9395 #. type: textblock
9396 #: ../src/guestfs-actions.pod:2597 ../fish/guestfish-actions.pod:1765
9397 msgid ""
9398 "This returns a list of all the filesystems that we think are associated with "
9399 "this operating system.  This includes the root filesystem, other ordinary "
9400 "filesystems, and non-mounted devices like swap partitions."
9401 msgstr ""
9402
9403 #. type: textblock
9404 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1770
9405 msgid ""
9406 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
9407 "to be shared between operating systems."
9408 msgstr ""
9409
9410 #. type: textblock
9411 #: ../src/guestfs-actions.pod:2605
9412 msgid ""
9413 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9414 "C<guestfs_inspect_get_mountpoints>."
9415 msgstr ""
9416
9417 #. type: =head2
9418 #: ../src/guestfs-actions.pod:2614
9419 msgid "guestfs_inspect_get_hostname"
9420 msgstr ""
9421
9422 #. type: verbatim
9423 #: ../src/guestfs-actions.pod:2616
9424 #, no-wrap
9425 msgid ""
9426 " char *\n"
9427 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
9428 "                               const char *root);\n"
9429 "\n"
9430 msgstr ""
9431
9432 #. type: textblock
9433 #: ../src/guestfs-actions.pod:2623 ../fish/guestfish-actions.pod:1783
9434 msgid ""
9435 "This function returns the hostname of the operating system as found by "
9436 "inspection of the guest's configuration files."
9437 msgstr ""
9438
9439 #. type: textblock
9440 #: ../src/guestfs-actions.pod:2626 ../fish/guestfish-actions.pod:1786
9441 msgid ""
9442 "If the hostname could not be determined, then the string C<unknown> is "
9443 "returned."
9444 msgstr ""
9445
9446 #. type: textblock
9447 #: ../src/guestfs-actions.pod:2634
9448 msgid "(Added in 1.7.9)"
9449 msgstr ""
9450
9451 #. type: =head2
9452 #: ../src/guestfs-actions.pod:2636
9453 msgid "guestfs_inspect_get_major_version"
9454 msgstr ""
9455
9456 #. type: verbatim
9457 #: ../src/guestfs-actions.pod:2638
9458 #, no-wrap
9459 msgid ""
9460 " int\n"
9461 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
9462 "                                    const char *root);\n"
9463 "\n"
9464 msgstr ""
9465
9466 #. type: textblock
9467 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1798
9468 msgid "This returns the major version number of the inspected operating system."
9469 msgstr ""
9470
9471 #. type: textblock
9472 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1801
9473 msgid ""
9474 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
9475 "popular public names used by the operating system.  Notably the operating "
9476 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
9477 "1).  You can find out the real versions corresponding to releases of Windows "
9478 "by consulting Wikipedia or MSDN."
9479 msgstr ""
9480
9481 #. type: textblock
9482 #: ../src/guestfs-actions.pod:2655 ../src/guestfs-actions.pod:2675 ../fish/guestfish-actions.pod:1808 ../fish/guestfish-actions.pod:1822
9483 msgid "If the version could not be determined, then C<0> is returned."
9484 msgstr ""
9485
9486 #. type: =head2
9487 #: ../src/guestfs-actions.pod:2663
9488 msgid "guestfs_inspect_get_minor_version"
9489 msgstr ""
9490
9491 #. type: verbatim
9492 #: ../src/guestfs-actions.pod:2665
9493 #, no-wrap
9494 msgid ""
9495 " int\n"
9496 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
9497 "                                    const char *root);\n"
9498 "\n"
9499 msgstr ""
9500
9501 #. type: textblock
9502 #: ../src/guestfs-actions.pod:2672 ../fish/guestfish-actions.pod:1819
9503 msgid "This returns the minor version number of the inspected operating system."
9504 msgstr ""
9505
9506 #. type: textblock
9507 #: ../src/guestfs-actions.pod:2677
9508 msgid ""
9509 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9510 "C<guestfs_inspect_get_major_version>."
9511 msgstr ""
9512
9513 #. type: =head2
9514 #: ../src/guestfs-actions.pod:2684
9515 msgid "guestfs_inspect_get_mountpoints"
9516 msgstr ""
9517
9518 #. type: verbatim
9519 #: ../src/guestfs-actions.pod:2686
9520 #, no-wrap
9521 msgid ""
9522 " char **\n"
9523 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
9524 "                                  const char *root);\n"
9525 "\n"
9526 msgstr ""
9527
9528 #. type: textblock
9529 #: ../src/guestfs-actions.pod:2693 ../fish/guestfish-actions.pod:1834
9530 msgid ""
9531 "This returns a hash of where we think the filesystems associated with this "
9532 "operating system should be mounted.  Callers should note that this is at "
9533 "best an educated guess made by reading configuration files such as "
9534 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
9535 "are non-existent or not mountable and callers should be prepared to handle "
9536 "or ignore failures if they try to mount them."
9537 msgstr ""
9538
9539 #. type: textblock
9540 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1843
9541 msgid ""
9542 "Each element in the returned hashtable has a key which is the path of the "
9543 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
9544 "mounted there (eg. C</dev/sda1>)."
9545 msgstr ""
9546
9547 #. type: textblock
9548 #: ../src/guestfs-actions.pod:2707 ../fish/guestfish-actions.pod:1848
9549 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
9550 msgstr ""
9551
9552 #. type: textblock
9553 #: ../src/guestfs-actions.pod:2710
9554 msgid ""
9555 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9556 "C<guestfs_inspect_get_filesystems>."
9557 msgstr ""
9558
9559 #. type: textblock
9560 #: ../src/guestfs-actions.pod:2713 ../src/guestfs-actions.pod:3359 ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:6422
9561 msgid ""
9562 "This function returns a NULL-terminated array of strings, or NULL if there "
9563 "was an error.  The array of strings will always have length C<2n+1>, where "
9564 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
9565 "caller must free the strings and the array after use>."
9566 msgstr ""
9567
9568 #. type: =head2
9569 #: ../src/guestfs-actions.pod:2721
9570 msgid "guestfs_inspect_get_package_format"
9571 msgstr ""
9572
9573 #. type: verbatim
9574 #: ../src/guestfs-actions.pod:2723
9575 #, no-wrap
9576 msgid ""
9577 " char *\n"
9578 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
9579 "                                     const char *root);\n"
9580 "\n"
9581 msgstr ""
9582
9583 #. type: textblock
9584 #: ../src/guestfs-actions.pod:2730
9585 msgid ""
9586 "This function and C<guestfs_inspect_get_package_management> return the "
9587 "package format and package management tool used by the inspected operating "
9588 "system.  For example for Fedora these functions would return C<rpm> (package "
9589 "format) and C<yum> (package management)."
9590 msgstr ""
9591
9592 #. type: textblock
9593 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1867
9594 msgid ""
9595 "This returns the string C<unknown> if we could not determine the package "
9596 "format I<or> if the operating system does not have a real packaging system "
9597 "(eg. Windows)."
9598 msgstr ""
9599
9600 #. type: textblock
9601 #: ../src/guestfs-actions.pod:2740 ../fish/guestfish-actions.pod:1871
9602 msgid ""
9603 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
9604 "Future versions of libguestfs may return other strings."
9605 msgstr ""
9606
9607 #. type: textblock
9608 #: ../src/guestfs-actions.pod:2748 ../src/guestfs-actions.pod:2779
9609 msgid "(Added in 1.7.5)"
9610 msgstr ""
9611
9612 #. type: =head2
9613 #: ../src/guestfs-actions.pod:2750
9614 msgid "guestfs_inspect_get_package_management"
9615 msgstr ""
9616
9617 #. type: verbatim
9618 #: ../src/guestfs-actions.pod:2752
9619 #, no-wrap
9620 msgid ""
9621 " char *\n"
9622 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
9623 "                                         const char *root);\n"
9624 "\n"
9625 msgstr ""
9626
9627 #. type: textblock
9628 #: ../src/guestfs-actions.pod:2759
9629 msgid ""
9630 "C<guestfs_inspect_get_package_format> and this function return the package "
9631 "format and package management tool used by the inspected operating system.  "
9632 "For example for Fedora these functions would return C<rpm> (package format) "
9633 "and C<yum> (package management)."
9634 msgstr ""
9635
9636 #. type: textblock
9637 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1889
9638 msgid ""
9639 "This returns the string C<unknown> if we could not determine the package "
9640 "management tool I<or> if the operating system does not have a real packaging "
9641 "system (eg. Windows)."
9642 msgstr ""
9643
9644 #. type: textblock
9645 #: ../src/guestfs-actions.pod:2769 ../fish/guestfish-actions.pod:1893
9646 msgid ""
9647 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
9648 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
9649 "libguestfs may return other strings."
9650 msgstr ""
9651
9652 #. type: =head2
9653 #: ../src/guestfs-actions.pod:2781
9654 msgid "guestfs_inspect_get_product_name"
9655 msgstr ""
9656
9657 #. type: verbatim
9658 #: ../src/guestfs-actions.pod:2783
9659 #, no-wrap
9660 msgid ""
9661 " char *\n"
9662 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
9663 "                                   const char *root);\n"
9664 "\n"
9665 msgstr ""
9666
9667 #. type: textblock
9668 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1907
9669 msgid ""
9670 "This returns the product name of the inspected operating system.  The "
9671 "product name is generally some freeform string which can be displayed to the "
9672 "user, but should not be parsed by programs."
9673 msgstr ""
9674
9675 #. type: textblock
9676 #: ../src/guestfs-actions.pod:2795 ../fish/guestfish-actions.pod:1912
9677 msgid ""
9678 "If the product name could not be determined, then the string C<unknown> is "
9679 "returned."
9680 msgstr ""
9681
9682 #. type: =head2
9683 #: ../src/guestfs-actions.pod:2805
9684 msgid "guestfs_inspect_get_roots"
9685 msgstr ""
9686
9687 #. type: verbatim
9688 #: ../src/guestfs-actions.pod:2807
9689 #, no-wrap
9690 msgid ""
9691 " char **\n"
9692 " guestfs_inspect_get_roots (guestfs_h *g);\n"
9693 "\n"
9694 msgstr ""
9695
9696 #. type: textblock
9697 #: ../src/guestfs-actions.pod:2810
9698 msgid ""
9699 "This function is a convenient way to get the list of root devices, as "
9700 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
9701 "the whole inspection process."
9702 msgstr ""
9703
9704 #. type: textblock
9705 #: ../src/guestfs-actions.pod:2814
9706 msgid ""
9707 "This returns an empty list if either no root devices were found or the "
9708 "caller has not called C<guestfs_inspect_os>."
9709 msgstr ""
9710
9711 #. type: textblock
9712 #: ../src/guestfs-actions.pod:2823
9713 msgid "(Added in 1.7.3)"
9714 msgstr ""
9715
9716 #. type: =head2
9717 #: ../src/guestfs-actions.pod:2825
9718 msgid "guestfs_inspect_get_type"
9719 msgstr ""
9720
9721 #. type: verbatim
9722 #: ../src/guestfs-actions.pod:2827
9723 #, no-wrap
9724 msgid ""
9725 " char *\n"
9726 " guestfs_inspect_get_type (guestfs_h *g,\n"
9727 "                           const char *root);\n"
9728 "\n"
9729 msgstr ""
9730
9731 #. type: textblock
9732 #: ../src/guestfs-actions.pod:2834 ../fish/guestfish-actions.pod:1937
9733 msgid ""
9734 "This returns the type of the inspected operating system.  Currently defined "
9735 "types are:"
9736 msgstr ""
9737
9738 #. type: =item
9739 #: ../src/guestfs-actions.pod:2839 ../fish/guestfish-actions.pod:1942
9740 msgid "\"linux\""
9741 msgstr ""
9742
9743 #. type: textblock
9744 #: ../src/guestfs-actions.pod:2841 ../fish/guestfish-actions.pod:1944
9745 msgid "Any Linux-based operating system."
9746 msgstr ""
9747
9748 #. type: textblock
9749 #: ../src/guestfs-actions.pod:2845 ../fish/guestfish-actions.pod:1948
9750 msgid "Any Microsoft Windows operating system."
9751 msgstr ""
9752
9753 #. type: =item
9754 #: ../src/guestfs-actions.pod:2847 ../fish/guestfish-actions.pod:1950
9755 msgid "\"freebsd\""
9756 msgstr ""
9757
9758 #. type: textblock
9759 #: ../src/guestfs-actions.pod:2849 ../fish/guestfish-actions.pod:1952
9760 msgid "FreeBSD."
9761 msgstr ""
9762
9763 #. type: textblock
9764 #: ../src/guestfs-actions.pod:2853 ../fish/guestfish-actions.pod:1956
9765 msgid "The operating system type could not be determined."
9766 msgstr ""
9767
9768 #. type: =head2
9769 #: ../src/guestfs-actions.pod:2867
9770 msgid "guestfs_inspect_get_windows_systemroot"
9771 msgstr ""
9772
9773 #. type: verbatim
9774 #: ../src/guestfs-actions.pod:2869
9775 #, no-wrap
9776 msgid ""
9777 " char *\n"
9778 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
9779 "                                         const char *root);\n"
9780 "\n"
9781 msgstr ""
9782
9783 #. type: textblock
9784 #: ../src/guestfs-actions.pod:2876 ../fish/guestfish-actions.pod:1972
9785 msgid ""
9786 "This returns the Windows systemroot of the inspected guest.  The systemroot "
9787 "is a directory path such as C</WINDOWS>."
9788 msgstr ""
9789
9790 #. type: textblock
9791 #: ../src/guestfs-actions.pod:2879 ../fish/guestfish-actions.pod:1975
9792 msgid ""
9793 "This call assumes that the guest is Windows and that the systemroot could be "
9794 "determined by inspection.  If this is not the case then an error is "
9795 "returned."
9796 msgstr ""
9797
9798 #. type: textblock
9799 #: ../src/guestfs-actions.pod:2888
9800 msgid "(Added in 1.5.25)"
9801 msgstr ""
9802
9803 #. type: =head2
9804 #: ../src/guestfs-actions.pod:2890
9805 msgid "guestfs_inspect_list_applications"
9806 msgstr ""
9807
9808 #. type: verbatim
9809 #: ../src/guestfs-actions.pod:2892
9810 #, no-wrap
9811 msgid ""
9812 " struct guestfs_application_list *\n"
9813 " guestfs_inspect_list_applications (guestfs_h *g,\n"
9814 "                                    const char *root);\n"
9815 "\n"
9816 msgstr ""
9817
9818 #. type: textblock
9819 #: ../src/guestfs-actions.pod:2899 ../fish/guestfish-actions.pod:1988
9820 msgid "Return the list of applications installed in the operating system."
9821 msgstr ""
9822
9823 #. type: textblock
9824 #: ../src/guestfs-actions.pod:2901
9825 msgid ""
9826 "I<Note:> This call works differently from other parts of the inspection "
9827 "API.  You have to call C<guestfs_inspect_os>, then "
9828 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
9829 "this.  Listing applications is a significantly more difficult operation "
9830 "which requires access to the full filesystem.  Also note that unlike the "
9831 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
9832 "the libguestfs handle, this call actually reads parts of the mounted "
9833 "filesystems during the call."
9834 msgstr ""
9835
9836 #. type: textblock
9837 #: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:2000
9838 msgid ""
9839 "This returns an empty list if the inspection code was not able to determine "
9840 "the list of applications."
9841 msgstr ""
9842
9843 #. type: textblock
9844 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2003
9845 msgid "The application structure contains the following fields:"
9846 msgstr ""
9847
9848 #. type: =item
9849 #: ../src/guestfs-actions.pod:2918 ../fish/guestfish-actions.pod:2007
9850 msgid "C<app_name>"
9851 msgstr ""
9852
9853 #. type: textblock
9854 #: ../src/guestfs-actions.pod:2920 ../fish/guestfish-actions.pod:2009
9855 msgid ""
9856 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
9857 "guests, this is the package name."
9858 msgstr ""
9859
9860 #. type: =item
9861 #: ../src/guestfs-actions.pod:2923 ../fish/guestfish-actions.pod:2012
9862 msgid "C<app_display_name>"
9863 msgstr ""
9864
9865 #. type: textblock
9866 #: ../src/guestfs-actions.pod:2925 ../fish/guestfish-actions.pod:2014
9867 msgid ""
9868 "The display name of the application, sometimes localized to the install "
9869 "language of the guest operating system."
9870 msgstr ""
9871
9872 #. type: textblock
9873 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:2017
9874 msgid ""
9875 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
9876 "to display something can use C<app_name> instead."
9877 msgstr ""
9878
9879 #. type: =item
9880 #: ../src/guestfs-actions.pod:2931 ../fish/guestfish-actions.pod:2020
9881 msgid "C<app_epoch>"
9882 msgstr ""
9883
9884 #. type: textblock
9885 #: ../src/guestfs-actions.pod:2933 ../fish/guestfish-actions.pod:2022
9886 msgid ""
9887 "For package managers which use epochs, this contains the epoch of the "
9888 "package (an integer).  If unavailable, this is returned as C<0>."
9889 msgstr ""
9890
9891 #. type: =item
9892 #: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2025
9893 msgid "C<app_version>"
9894 msgstr ""
9895
9896 #. type: textblock
9897 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2027
9898 msgid ""
9899 "The version string of the application or package.  If unavailable this is "
9900 "returned as an empty string C<\"\">."
9901 msgstr ""
9902
9903 #. type: =item
9904 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2030
9905 msgid "C<app_release>"
9906 msgstr ""
9907
9908 #. type: textblock
9909 #: ../src/guestfs-actions.pod:2943 ../fish/guestfish-actions.pod:2032
9910 msgid ""
9911 "The release string of the application or package, for package managers that "
9912 "use this.  If unavailable this is returned as an empty string C<\"\">."
9913 msgstr ""
9914
9915 #. type: =item
9916 #: ../src/guestfs-actions.pod:2947 ../fish/guestfish-actions.pod:2036
9917 msgid "C<app_install_path>"
9918 msgstr ""
9919
9920 #. type: textblock
9921 #: ../src/guestfs-actions.pod:2949 ../fish/guestfish-actions.pod:2038
9922 msgid ""
9923 "The installation path of the application (on operating systems such as "
9924 "Windows which use installation paths).  This path is in the format used by "
9925 "the guest operating system, it is not a libguestfs path."
9926 msgstr ""
9927
9928 #. type: textblock
9929 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2043
9930 msgid "If unavailable this is returned as an empty string C<\"\">."
9931 msgstr ""
9932
9933 #. type: =item
9934 #: ../src/guestfs-actions.pod:2956 ../fish/guestfish-actions.pod:2045
9935 msgid "C<app_trans_path>"
9936 msgstr ""
9937
9938 #. type: textblock
9939 #: ../src/guestfs-actions.pod:2958 ../fish/guestfish-actions.pod:2047
9940 msgid ""
9941 "The install path translated into a libguestfs path.  If unavailable this is "
9942 "returned as an empty string C<\"\">."
9943 msgstr ""
9944
9945 #. type: =item
9946 #: ../src/guestfs-actions.pod:2961 ../fish/guestfish-actions.pod:2050
9947 msgid "C<app_publisher>"
9948 msgstr ""
9949
9950 #. type: textblock
9951 #: ../src/guestfs-actions.pod:2963 ../fish/guestfish-actions.pod:2052
9952 msgid ""
9953 "The name of the publisher of the application, for package managers that use "
9954 "this.  If unavailable this is returned as an empty string C<\"\">."
9955 msgstr ""
9956
9957 #. type: =item
9958 #: ../src/guestfs-actions.pod:2967 ../fish/guestfish-actions.pod:2056
9959 msgid "C<app_url>"
9960 msgstr ""
9961
9962 #. type: textblock
9963 #: ../src/guestfs-actions.pod:2969 ../fish/guestfish-actions.pod:2058
9964 msgid ""
9965 "The URL (eg. upstream URL) of the application.  If unavailable this is "
9966 "returned as an empty string C<\"\">."
9967 msgstr ""
9968
9969 #. type: =item
9970 #: ../src/guestfs-actions.pod:2972 ../fish/guestfish-actions.pod:2061
9971 msgid "C<app_source_package>"
9972 msgstr ""
9973
9974 #. type: textblock
9975 #: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2063
9976 msgid ""
9977 "For packaging systems which support this, the name of the source package.  "
9978 "If unavailable this is returned as an empty string C<\"\">."
9979 msgstr ""
9980
9981 #. type: =item
9982 #: ../src/guestfs-actions.pod:2977 ../fish/guestfish-actions.pod:2066
9983 msgid "C<app_summary>"
9984 msgstr ""
9985
9986 #. type: textblock
9987 #: ../src/guestfs-actions.pod:2979 ../fish/guestfish-actions.pod:2068
9988 msgid ""
9989 "A short (usually one line) description of the application or package.  If "
9990 "unavailable this is returned as an empty string C<\"\">."
9991 msgstr ""
9992
9993 #. type: =item
9994 #: ../src/guestfs-actions.pod:2982 ../fish/guestfish-actions.pod:2071
9995 msgid "C<app_description>"
9996 msgstr ""
9997
9998 #. type: textblock
9999 #: ../src/guestfs-actions.pod:2984 ../fish/guestfish-actions.pod:2073
10000 msgid ""
10001 "A longer description of the application or package.  If unavailable this is "
10002 "returned as an empty string C<\"\">."
10003 msgstr ""
10004
10005 #. type: textblock
10006 #: ../src/guestfs-actions.pod:2991
10007 msgid ""
10008 "This function returns a C<struct guestfs_application_list *>, or NULL if "
10009 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
10010 "after use>."
10011 msgstr ""
10012
10013 #. type: textblock
10014 #: ../src/guestfs-actions.pod:2995
10015 msgid "(Added in 1.7.8)"
10016 msgstr ""
10017
10018 #. type: =head2
10019 #: ../src/guestfs-actions.pod:2997
10020 msgid "guestfs_inspect_os"
10021 msgstr ""
10022
10023 #. type: verbatim
10024 #: ../src/guestfs-actions.pod:2999
10025 #, no-wrap
10026 msgid ""
10027 " char **\n"
10028 " guestfs_inspect_os (guestfs_h *g);\n"
10029 "\n"
10030 msgstr ""
10031
10032 #. type: textblock
10033 #: ../src/guestfs-actions.pod:3002 ../fish/guestfish-actions.pod:2084
10034 msgid ""
10035 "This function uses other libguestfs functions and certain heuristics to "
10036 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
10037 "for operating systems."
10038 msgstr ""
10039
10040 #. type: textblock
10041 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2088
10042 msgid "The list returned is empty if no operating systems were found."
10043 msgstr ""
10044
10045 #. type: textblock
10046 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2090
10047 msgid ""
10048 "If one operating system was found, then this returns a list with a single "
10049 "element, which is the name of the root filesystem of this operating system.  "
10050 "It is also possible for this function to return a list containing more than "
10051 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
10052 "element being the root filesystem of one of the operating systems."
10053 msgstr ""
10054
10055 #. type: textblock
10056 #: ../src/guestfs-actions.pod:3015
10057 msgid ""
10058 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
10059 "functions in order to query further information about each operating system, "
10060 "such as the name and version."
10061 msgstr ""
10062
10063 #. type: textblock
10064 #: ../src/guestfs-actions.pod:3020
10065 msgid ""
10066 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
10067 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
10068 "the contents.  This should be called with no disks currently mounted.  The "
10069 "function may also use Augeas, so any existing Augeas handle will be closed."
10070 msgstr ""
10071
10072 #. type: textblock
10073 #: ../src/guestfs-actions.pod:3026 ../fish/guestfish-actions.pod:2108
10074 msgid ""
10075 "This function cannot decrypt encrypted disks.  The caller must do that first "
10076 "(supplying the necessary keys) if the disk is encrypted."
10077 msgstr ""
10078
10079 #. type: textblock
10080 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3317 ../src/guestfs-actions.pod:3379
10081 msgid "See also C<guestfs_list_filesystems>."
10082 msgstr ""
10083
10084 #. type: =head2
10085 #: ../src/guestfs-actions.pod:3040
10086 msgid "guestfs_is_blockdev"
10087 msgstr ""
10088
10089 #. type: verbatim
10090 #: ../src/guestfs-actions.pod:3042
10091 #, no-wrap
10092 msgid ""
10093 " int\n"
10094 " guestfs_is_blockdev (guestfs_h *g,\n"
10095 "                      const char *path);\n"
10096 "\n"
10097 msgstr ""
10098
10099 #. type: textblock
10100 #: ../src/guestfs-actions.pod:3046 ../fish/guestfish-actions.pod:2120
10101 msgid ""
10102 "This returns C<true> if and only if there is a block device with the given "
10103 "C<path> name."
10104 msgstr ""
10105
10106 #. type: textblock
10107 #: ../src/guestfs-actions.pod:3049 ../src/guestfs-actions.pod:3078 ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:3123 ../src/guestfs-actions.pod:3139 ../src/guestfs-actions.pod:3195 ../src/guestfs-actions.pod:3210
10108 msgid "See also C<guestfs_stat>."
10109 msgstr ""
10110
10111 #. type: textblock
10112 #: ../src/guestfs-actions.pod:3053 ../src/guestfs-actions.pod:3082 ../src/guestfs-actions.pod:3127 ../src/guestfs-actions.pod:3199 ../src/guestfs-actions.pod:3214
10113 msgid "(Added in 1.5.10)"
10114 msgstr ""
10115
10116 #. type: =head2
10117 #: ../src/guestfs-actions.pod:3055
10118 msgid "guestfs_is_busy"
10119 msgstr ""
10120
10121 #. type: verbatim
10122 #: ../src/guestfs-actions.pod:3057
10123 #, no-wrap
10124 msgid ""
10125 " int\n"
10126 " guestfs_is_busy (guestfs_h *g);\n"
10127 "\n"
10128 msgstr ""
10129
10130 #. type: textblock
10131 #: ../src/guestfs-actions.pod:3060 ../fish/guestfish-actions.pod:2129
10132 msgid ""
10133 "This returns true iff this handle is busy processing a command (in the "
10134 "C<BUSY> state)."
10135 msgstr ""
10136
10137 #. type: =head2
10138 #: ../src/guestfs-actions.pod:3069
10139 msgid "guestfs_is_chardev"
10140 msgstr ""
10141
10142 #. type: verbatim
10143 #: ../src/guestfs-actions.pod:3071
10144 #, no-wrap
10145 msgid ""
10146 " int\n"
10147 " guestfs_is_chardev (guestfs_h *g,\n"
10148 "                     const char *path);\n"
10149 "\n"
10150 msgstr ""
10151
10152 #. type: textblock
10153 #: ../src/guestfs-actions.pod:3075 ../fish/guestfish-actions.pod:2138
10154 msgid ""
10155 "This returns C<true> if and only if there is a character device with the "
10156 "given C<path> name."
10157 msgstr ""
10158
10159 #. type: =head2
10160 #: ../src/guestfs-actions.pod:3084
10161 msgid "guestfs_is_config"
10162 msgstr ""
10163
10164 #. type: verbatim
10165 #: ../src/guestfs-actions.pod:3086
10166 #, no-wrap
10167 msgid ""
10168 " int\n"
10169 " guestfs_is_config (guestfs_h *g);\n"
10170 "\n"
10171 msgstr ""
10172
10173 #. type: textblock
10174 #: ../src/guestfs-actions.pod:3089 ../fish/guestfish-actions.pod:2147
10175 msgid ""
10176 "This returns true iff this handle is being configured (in the C<CONFIG> "
10177 "state)."
10178 msgstr ""
10179
10180 #. type: =head2
10181 #: ../src/guestfs-actions.pod:3098
10182 msgid "guestfs_is_dir"
10183 msgstr ""
10184
10185 #. type: verbatim
10186 #: ../src/guestfs-actions.pod:3100
10187 #, no-wrap
10188 msgid ""
10189 " int\n"
10190 " guestfs_is_dir (guestfs_h *g,\n"
10191 "                 const char *path);\n"
10192 "\n"
10193 msgstr ""
10194
10195 #. type: textblock
10196 #: ../src/guestfs-actions.pod:3104 ../fish/guestfish-actions.pod:2156
10197 msgid ""
10198 "This returns C<true> if and only if there is a directory with the given "
10199 "C<path> name.  Note that it returns false for other objects like files."
10200 msgstr ""
10201
10202 #. type: =head2
10203 #: ../src/guestfs-actions.pod:3114
10204 msgid "guestfs_is_fifo"
10205 msgstr ""
10206
10207 #. type: verbatim
10208 #: ../src/guestfs-actions.pod:3116
10209 #, no-wrap
10210 msgid ""
10211 " int\n"
10212 " guestfs_is_fifo (guestfs_h *g,\n"
10213 "                  const char *path);\n"
10214 "\n"
10215 msgstr ""
10216
10217 #. type: textblock
10218 #: ../src/guestfs-actions.pod:3120 ../fish/guestfish-actions.pod:2166
10219 msgid ""
10220 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
10221 "given C<path> name."
10222 msgstr ""
10223
10224 #. type: =head2
10225 #: ../src/guestfs-actions.pod:3129
10226 msgid "guestfs_is_file"
10227 msgstr ""
10228
10229 #. type: verbatim
10230 #: ../src/guestfs-actions.pod:3131
10231 #, no-wrap
10232 msgid ""
10233 " int\n"
10234 " guestfs_is_file (guestfs_h *g,\n"
10235 "                  const char *path);\n"
10236 "\n"
10237 msgstr ""
10238
10239 #. type: textblock
10240 #: ../src/guestfs-actions.pod:3135 ../fish/guestfish-actions.pod:2175
10241 msgid ""
10242 "This returns C<true> if and only if there is a regular file with the given "
10243 "C<path> name.  Note that it returns false for other objects like "
10244 "directories."
10245 msgstr ""
10246
10247 #. type: =head2
10248 #: ../src/guestfs-actions.pod:3145
10249 msgid "guestfs_is_launching"
10250 msgstr ""
10251
10252 #. type: verbatim
10253 #: ../src/guestfs-actions.pod:3147
10254 #, no-wrap
10255 msgid ""
10256 " int\n"
10257 " guestfs_is_launching (guestfs_h *g);\n"
10258 "\n"
10259 msgstr ""
10260
10261 #. type: textblock
10262 #: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2185
10263 msgid ""
10264 "This returns true iff this handle is launching the subprocess (in the "
10265 "C<LAUNCHING> state)."
10266 msgstr ""
10267
10268 #. type: =head2
10269 #: ../src/guestfs-actions.pod:3159
10270 msgid "guestfs_is_lv"
10271 msgstr ""
10272
10273 #. type: verbatim
10274 #: ../src/guestfs-actions.pod:3161
10275 #, no-wrap
10276 msgid ""
10277 " int\n"
10278 " guestfs_is_lv (guestfs_h *g,\n"
10279 "                const char *device);\n"
10280 "\n"
10281 msgstr ""
10282
10283 #. type: textblock
10284 #: ../src/guestfs-actions.pod:3165 ../fish/guestfish-actions.pod:2194
10285 msgid ""
10286 "This command tests whether C<device> is a logical volume, and returns true "
10287 "iff this is the case."
10288 msgstr ""
10289
10290 #. type: =head2
10291 #: ../src/guestfs-actions.pod:3172
10292 msgid "guestfs_is_ready"
10293 msgstr ""
10294
10295 #. type: verbatim
10296 #: ../src/guestfs-actions.pod:3174
10297 #, no-wrap
10298 msgid ""
10299 " int\n"
10300 " guestfs_is_ready (guestfs_h *g);\n"
10301 "\n"
10302 msgstr ""
10303
10304 #. type: textblock
10305 #: ../src/guestfs-actions.pod:3177 ../fish/guestfish-actions.pod:2201
10306 msgid ""
10307 "This returns true iff this handle is ready to accept commands (in the "
10308 "C<READY> state)."
10309 msgstr ""
10310
10311 #. type: =head2
10312 #: ../src/guestfs-actions.pod:3186
10313 msgid "guestfs_is_socket"
10314 msgstr ""
10315
10316 #. type: verbatim
10317 #: ../src/guestfs-actions.pod:3188
10318 #, no-wrap
10319 msgid ""
10320 " int\n"
10321 " guestfs_is_socket (guestfs_h *g,\n"
10322 "                    const char *path);\n"
10323 "\n"
10324 msgstr ""
10325
10326 #. type: textblock
10327 #: ../src/guestfs-actions.pod:3192 ../fish/guestfish-actions.pod:2210
10328 msgid ""
10329 "This returns C<true> if and only if there is a Unix domain socket with the "
10330 "given C<path> name."
10331 msgstr ""
10332
10333 #. type: =head2
10334 #: ../src/guestfs-actions.pod:3201
10335 msgid "guestfs_is_symlink"
10336 msgstr ""
10337
10338 #. type: verbatim
10339 #: ../src/guestfs-actions.pod:3203
10340 #, no-wrap
10341 msgid ""
10342 " int\n"
10343 " guestfs_is_symlink (guestfs_h *g,\n"
10344 "                     const char *path);\n"
10345 "\n"
10346 msgstr ""
10347
10348 #. type: textblock
10349 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2219
10350 msgid ""
10351 "This returns C<true> if and only if there is a symbolic link with the given "
10352 "C<path> name."
10353 msgstr ""
10354
10355 #. type: =head2
10356 #: ../src/guestfs-actions.pod:3216
10357 msgid "guestfs_kill_subprocess"
10358 msgstr ""
10359
10360 #. type: verbatim
10361 #: ../src/guestfs-actions.pod:3218
10362 #, no-wrap
10363 msgid ""
10364 " int\n"
10365 " guestfs_kill_subprocess (guestfs_h *g);\n"
10366 "\n"
10367 msgstr ""
10368
10369 #. type: textblock
10370 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2228
10371 msgid "This kills the qemu subprocess.  You should never need to call this."
10372 msgstr ""
10373
10374 #. type: =head2
10375 #: ../src/guestfs-actions.pod:3227
10376 msgid "guestfs_launch"
10377 msgstr ""
10378
10379 #. type: verbatim
10380 #: ../src/guestfs-actions.pod:3229
10381 #, no-wrap
10382 msgid ""
10383 " int\n"
10384 " guestfs_launch (guestfs_h *g);\n"
10385 "\n"
10386 msgstr ""
10387
10388 #. type: textblock
10389 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2236
10390 msgid ""
10391 "Internally libguestfs is implemented by running a virtual machine using "
10392 "L<qemu(1)>."
10393 msgstr ""
10394
10395 #. type: textblock
10396 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2239
10397 msgid ""
10398 "You should call this after configuring the handle (eg. adding drives) but "
10399 "before performing any actions."
10400 msgstr ""
10401
10402 #. type: =head2
10403 #: ../src/guestfs-actions.pod:3242
10404 msgid "guestfs_lchown"
10405 msgstr ""
10406
10407 #. type: verbatim
10408 #: ../src/guestfs-actions.pod:3244
10409 #, no-wrap
10410 msgid ""
10411 " int\n"
10412 " guestfs_lchown (guestfs_h *g,\n"
10413 "                 int owner,\n"
10414 "                 int group,\n"
10415 "                 const char *path);\n"
10416 "\n"
10417 msgstr ""
10418
10419 #. type: textblock
10420 #: ../src/guestfs-actions.pod:3250
10421 msgid ""
10422 "Change the file owner to C<owner> and group to C<group>.  This is like "
10423 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
10424 "changed, not the target."
10425 msgstr ""
10426
10427 #. type: =head2
10428 #: ../src/guestfs-actions.pod:3262
10429 msgid "guestfs_lgetxattr"
10430 msgstr ""
10431
10432 #. type: verbatim
10433 #: ../src/guestfs-actions.pod:3264
10434 #, no-wrap
10435 msgid ""
10436 " char *\n"
10437 " guestfs_lgetxattr (guestfs_h *g,\n"
10438 "                    const char *path,\n"
10439 "                    const char *name,\n"
10440 "                    size_t *size_r);\n"
10441 "\n"
10442 msgstr ""
10443
10444 #. type: textblock
10445 #: ../src/guestfs-actions.pod:3270 ../fish/guestfish-actions.pod:2258
10446 msgid ""
10447 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
10448 "is a symlink, then this call returns an extended attribute from the symlink."
10449 msgstr ""
10450
10451 #. type: textblock
10452 #: ../src/guestfs-actions.pod:3284
10453 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
10454 msgstr ""
10455
10456 #. type: =head2
10457 #: ../src/guestfs-actions.pod:3292
10458 msgid "guestfs_lgetxattrs"
10459 msgstr ""
10460
10461 #. type: verbatim
10462 #: ../src/guestfs-actions.pod:3294
10463 #, no-wrap
10464 msgid ""
10465 " struct guestfs_xattr_list *\n"
10466 " guestfs_lgetxattrs (guestfs_h *g,\n"
10467 "                     const char *path);\n"
10468 "\n"
10469 msgstr ""
10470
10471 #. type: textblock
10472 #: ../src/guestfs-actions.pod:3298
10473 msgid ""
10474 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
10475 "then it returns the extended attributes of the link itself."
10476 msgstr ""
10477
10478 #. type: =head2
10479 #: ../src/guestfs-actions.pod:3308
10480 msgid "guestfs_list_devices"
10481 msgstr ""
10482
10483 #. type: verbatim
10484 #: ../src/guestfs-actions.pod:3310
10485 #, no-wrap
10486 msgid ""
10487 " char **\n"
10488 " guestfs_list_devices (guestfs_h *g);\n"
10489 "\n"
10490 msgstr ""
10491
10492 #. type: textblock
10493 #: ../src/guestfs-actions.pod:3313 ../fish/guestfish-actions.pod:2286
10494 msgid "List all the block devices."
10495 msgstr ""
10496
10497 #. type: textblock
10498 #: ../src/guestfs-actions.pod:3315 ../fish/guestfish-actions.pod:2288
10499 msgid "The full block device names are returned, eg. C</dev/sda>."
10500 msgstr ""
10501
10502 #. type: =head2
10503 #: ../src/guestfs-actions.pod:3325
10504 msgid "guestfs_list_filesystems"
10505 msgstr ""
10506
10507 #. type: verbatim
10508 #: ../src/guestfs-actions.pod:3327
10509 #, no-wrap
10510 msgid ""
10511 " char **\n"
10512 " guestfs_list_filesystems (guestfs_h *g);\n"
10513 "\n"
10514 msgstr ""
10515
10516 #. type: textblock
10517 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2296
10518 msgid ""
10519 "This inspection command looks for filesystems on partitions, block devices "
10520 "and logical volumes, returning a list of devices containing filesystems and "
10521 "their type."
10522 msgstr ""
10523
10524 #. type: textblock
10525 #: ../src/guestfs-actions.pod:3334 ../fish/guestfish-actions.pod:2300
10526 msgid ""
10527 "The return value is a hash, where the keys are the devices containing "
10528 "filesystems, and the values are the filesystem types.  For example:"
10529 msgstr ""
10530
10531 #. type: verbatim
10532 #: ../src/guestfs-actions.pod:3338 ../fish/guestfish-actions.pod:2304
10533 #, no-wrap
10534 msgid ""
10535 " \"/dev/sda1\" => \"ntfs\"\n"
10536 " \"/dev/sda2\" => \"ext2\"\n"
10537 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
10538 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
10539 "\n"
10540 msgstr ""
10541
10542 #. type: textblock
10543 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2309
10544 msgid ""
10545 "The value can have the special value \"unknown\", meaning the content of the "
10546 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
10547 msgstr ""
10548
10549 #. type: textblock
10550 #: ../src/guestfs-actions.pod:3347
10551 msgid ""
10552 "This command runs other libguestfs commands, which might include "
10553 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
10554 "soon after launch and only when nothing is mounted."
10555 msgstr ""
10556
10557 #. type: textblock
10558 #: ../src/guestfs-actions.pod:3351
10559 msgid ""
10560 "Not all of the filesystems returned will be mountable.  In particular, swap "
10561 "partitions are returned in the list.  Also this command does not check that "
10562 "each filesystem found is valid and mountable, and some filesystems might be "
10563 "mountable but require special options.  Filesystems may not all belong to a "
10564 "single logical operating system (use C<guestfs_inspect_os> to look for "
10565 "OSes)."
10566 msgstr ""
10567
10568 #. type: textblock
10569 #: ../src/guestfs-actions.pod:3365 ../src/guestfs-actions.pod:4967
10570 msgid "(Added in 1.5.15)"
10571 msgstr ""
10572
10573 #. type: =head2
10574 #: ../src/guestfs-actions.pod:3367
10575 msgid "guestfs_list_partitions"
10576 msgstr ""
10577
10578 #. type: verbatim
10579 #: ../src/guestfs-actions.pod:3369
10580 #, no-wrap
10581 msgid ""
10582 " char **\n"
10583 " guestfs_list_partitions (guestfs_h *g);\n"
10584 "\n"
10585 msgstr ""
10586
10587 #. type: textblock
10588 #: ../src/guestfs-actions.pod:3372 ../fish/guestfish-actions.pod:2329
10589 msgid "List all the partitions detected on all block devices."
10590 msgstr ""
10591
10592 #. type: textblock
10593 #: ../src/guestfs-actions.pod:3374 ../fish/guestfish-actions.pod:2331
10594 msgid "The full partition device names are returned, eg. C</dev/sda1>"
10595 msgstr ""
10596
10597 #. type: textblock
10598 #: ../src/guestfs-actions.pod:3376
10599 msgid ""
10600 "This does not return logical volumes.  For that you will need to call "
10601 "C<guestfs_lvs>."
10602 msgstr ""
10603
10604 #. type: =head2
10605 #: ../src/guestfs-actions.pod:3387
10606 msgid "guestfs_ll"
10607 msgstr ""
10608
10609 #. type: verbatim
10610 #: ../src/guestfs-actions.pod:3389
10611 #, no-wrap
10612 msgid ""
10613 " char *\n"
10614 " guestfs_ll (guestfs_h *g,\n"
10615 "             const char *directory);\n"
10616 "\n"
10617 msgstr ""
10618
10619 #. type: textblock
10620 #: ../src/guestfs-actions.pod:3393 ../fish/guestfish-actions.pod:2342
10621 msgid ""
10622 "List the files in C<directory> (relative to the root directory, there is no "
10623 "cwd) in the format of 'ls -la'."
10624 msgstr ""
10625
10626 #. type: textblock
10627 #: ../src/guestfs-actions.pod:3396 ../fish/guestfish-actions.pod:2345
10628 msgid ""
10629 "This command is mostly useful for interactive sessions.  It is I<not> "
10630 "intended that you try to parse the output string."
10631 msgstr ""
10632
10633 #. type: =head2
10634 #: ../src/guestfs-actions.pod:3404
10635 msgid "guestfs_ln"
10636 msgstr ""
10637
10638 #. type: verbatim
10639 #: ../src/guestfs-actions.pod:3406
10640 #, no-wrap
10641 msgid ""
10642 " int\n"
10643 " guestfs_ln (guestfs_h *g,\n"
10644 "             const char *target,\n"
10645 "             const char *linkname);\n"
10646 "\n"
10647 msgstr ""
10648
10649 #. type: textblock
10650 #: ../src/guestfs-actions.pod:3411 ../fish/guestfish-actions.pod:2352
10651 msgid "This command creates a hard link using the C<ln> command."
10652 msgstr ""
10653
10654 #. type: =head2
10655 #: ../src/guestfs-actions.pod:3417
10656 msgid "guestfs_ln_f"
10657 msgstr ""
10658
10659 #. type: verbatim
10660 #: ../src/guestfs-actions.pod:3419
10661 #, no-wrap
10662 msgid ""
10663 " int\n"
10664 " guestfs_ln_f (guestfs_h *g,\n"
10665 "               const char *target,\n"
10666 "               const char *linkname);\n"
10667 "\n"
10668 msgstr ""
10669
10670 #. type: textblock
10671 #: ../src/guestfs-actions.pod:3424 ../fish/guestfish-actions.pod:2358
10672 msgid ""
10673 "This command creates a hard link using the C<ln -f> command.  The C<-f> "
10674 "option removes the link (C<linkname>) if it exists already."
10675 msgstr ""
10676
10677 #. type: =head2
10678 #: ../src/guestfs-actions.pod:3431
10679 msgid "guestfs_ln_s"
10680 msgstr ""
10681
10682 #. type: verbatim
10683 #: ../src/guestfs-actions.pod:3433
10684 #, no-wrap
10685 msgid ""
10686 " int\n"
10687 " guestfs_ln_s (guestfs_h *g,\n"
10688 "               const char *target,\n"
10689 "               const char *linkname);\n"
10690 "\n"
10691 msgstr ""
10692
10693 #. type: textblock
10694 #: ../src/guestfs-actions.pod:3438 ../fish/guestfish-actions.pod:2365
10695 msgid "This command creates a symbolic link using the C<ln -s> command."
10696 msgstr ""
10697
10698 #. type: =head2
10699 #: ../src/guestfs-actions.pod:3444
10700 msgid "guestfs_ln_sf"
10701 msgstr ""
10702
10703 #. type: verbatim
10704 #: ../src/guestfs-actions.pod:3446
10705 #, no-wrap
10706 msgid ""
10707 " int\n"
10708 " guestfs_ln_sf (guestfs_h *g,\n"
10709 "                const char *target,\n"
10710 "                const char *linkname);\n"
10711 "\n"
10712 msgstr ""
10713
10714 #. type: textblock
10715 #: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2371
10716 msgid ""
10717 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
10718 "option removes the link (C<linkname>) if it exists already."
10719 msgstr ""
10720
10721 #. type: =head2
10722 #: ../src/guestfs-actions.pod:3458
10723 msgid "guestfs_lremovexattr"
10724 msgstr ""
10725
10726 #. type: verbatim
10727 #: ../src/guestfs-actions.pod:3460
10728 #, no-wrap
10729 msgid ""
10730 " int\n"
10731 " guestfs_lremovexattr (guestfs_h *g,\n"
10732 "                       const char *xattr,\n"
10733 "                       const char *path);\n"
10734 "\n"
10735 msgstr ""
10736
10737 #. type: textblock
10738 #: ../src/guestfs-actions.pod:3465
10739 msgid ""
10740 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
10741 "link, then it removes an extended attribute of the link itself."
10742 msgstr ""
10743
10744 #. type: =head2
10745 #: ../src/guestfs-actions.pod:3473
10746 msgid "guestfs_ls"
10747 msgstr ""
10748
10749 #. type: verbatim
10750 #: ../src/guestfs-actions.pod:3475
10751 #, no-wrap
10752 msgid ""
10753 " char **\n"
10754 " guestfs_ls (guestfs_h *g,\n"
10755 "             const char *directory);\n"
10756 "\n"
10757 msgstr ""
10758
10759 #. type: textblock
10760 #: ../src/guestfs-actions.pod:3479 ../fish/guestfish-actions.pod:2386
10761 msgid ""
10762 "List the files in C<directory> (relative to the root directory, there is no "
10763 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
10764 "shown."
10765 msgstr ""
10766
10767 #. type: textblock
10768 #: ../src/guestfs-actions.pod:3483
10769 msgid ""
10770 "This command is mostly useful for interactive sessions.  Programs should "
10771 "probably use C<guestfs_readdir> instead."
10772 msgstr ""
10773
10774 #. type: =head2
10775 #: ../src/guestfs-actions.pod:3492
10776 msgid "guestfs_lsetxattr"
10777 msgstr ""
10778
10779 #. type: verbatim
10780 #: ../src/guestfs-actions.pod:3494
10781 #, no-wrap
10782 msgid ""
10783 " int\n"
10784 " guestfs_lsetxattr (guestfs_h *g,\n"
10785 "                    const char *xattr,\n"
10786 "                    const char *val,\n"
10787 "                    int vallen,\n"
10788 "                    const char *path);\n"
10789 "\n"
10790 msgstr ""
10791
10792 #. type: textblock
10793 #: ../src/guestfs-actions.pod:3501
10794 msgid ""
10795 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
10796 "then it sets an extended attribute of the link itself."
10797 msgstr ""
10798
10799 #. type: =head2
10800 #: ../src/guestfs-actions.pod:3509
10801 msgid "guestfs_lstat"
10802 msgstr ""
10803
10804 #. type: verbatim
10805 #: ../src/guestfs-actions.pod:3511
10806 #, no-wrap
10807 msgid ""
10808 " struct guestfs_stat *\n"
10809 " guestfs_lstat (guestfs_h *g,\n"
10810 "                const char *path);\n"
10811 "\n"
10812 msgstr ""
10813
10814 #. type: textblock
10815 #: ../src/guestfs-actions.pod:3515 ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:2405 ../fish/guestfish-actions.pod:4029
10816 msgid "Returns file information for the given C<path>."
10817 msgstr ""
10818
10819 #. type: textblock
10820 #: ../src/guestfs-actions.pod:3517
10821 msgid ""
10822 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
10823 "link, then the link is stat-ed, not the file it refers to."
10824 msgstr ""
10825
10826 #. type: textblock
10827 #: ../src/guestfs-actions.pod:3521 ../fish/guestfish-actions.pod:2411
10828 msgid "This is the same as the C<lstat(2)> system call."
10829 msgstr ""
10830
10831 #. type: textblock
10832 #: ../src/guestfs-actions.pod:3523 ../src/guestfs-actions.pod:6025
10833 msgid ""
10834 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
10835 "error.  I<The caller must call C<guestfs_free_stat> after use>."
10836 msgstr ""
10837
10838 #. type: textblock
10839 #: ../src/guestfs-actions.pod:3527 ../src/guestfs-actions.pod:6029 ../src/guestfs-actions.pod:6047 ../src/guestfs-actions.pod:6428
10840 msgid "(Added in 0.9.2)"
10841 msgstr ""
10842
10843 #. type: =head2
10844 #: ../src/guestfs-actions.pod:3529
10845 msgid "guestfs_lstatlist"
10846 msgstr ""
10847
10848 #. type: verbatim
10849 #: ../src/guestfs-actions.pod:3531
10850 #, no-wrap
10851 msgid ""
10852 " struct guestfs_stat_list *\n"
10853 " guestfs_lstatlist (guestfs_h *g,\n"
10854 "                    const char *path,\n"
10855 "                    char *const *names);\n"
10856 "\n"
10857 msgstr ""
10858
10859 #. type: textblock
10860 #: ../src/guestfs-actions.pod:3536
10861 msgid ""
10862 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
10863 "files, where all files are in the directory C<path>.  C<names> is the list "
10864 "of files from this directory."
10865 msgstr ""
10866
10867 #. type: textblock
10868 #: ../src/guestfs-actions.pod:3540 ../fish/guestfish-actions.pod:2421
10869 msgid ""
10870 "On return you get a list of stat structs, with a one-to-one correspondence "
10871 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
10872 "then the C<ino> field of that structure is set to C<-1>."
10873 msgstr ""
10874
10875 #. type: textblock
10876 #: ../src/guestfs-actions.pod:3545
10877 msgid ""
10878 "This call is intended for programs that want to efficiently list a directory "
10879 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
10880 "for a similarly efficient call for getting extended attributes.  Very long "
10881 "directory listings might cause the protocol message size to be exceeded, "
10882 "causing this call to fail.  The caller must split up such requests into "
10883 "smaller groups of names."
10884 msgstr ""
10885
10886 #. type: textblock
10887 #: ../src/guestfs-actions.pod:3553
10888 msgid ""
10889 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
10890 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
10891 msgstr ""
10892
10893 #. type: =head2
10894 #: ../src/guestfs-actions.pod:3559
10895 msgid "guestfs_luks_add_key"
10896 msgstr ""
10897
10898 #. type: verbatim
10899 #: ../src/guestfs-actions.pod:3561
10900 #, no-wrap
10901 msgid ""
10902 " int\n"
10903 " guestfs_luks_add_key (guestfs_h *g,\n"
10904 "                       const char *device,\n"
10905 "                       const char *key,\n"
10906 "                       const char *newkey,\n"
10907 "                       int keyslot);\n"
10908 "\n"
10909 msgstr ""
10910
10911 #. type: textblock
10912 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2438
10913 msgid ""
10914 "This command adds a new key on LUKS device C<device>.  C<key> is any "
10915 "existing key, and is used to access the device.  C<newkey> is the new key to "
10916 "add.  C<keyslot> is the key slot that will be replaced."
10917 msgstr ""
10918
10919 #. type: textblock
10920 #: ../src/guestfs-actions.pod:3573
10921 msgid ""
10922 "Note that if C<keyslot> already contains a key, then this command will "
10923 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
10924 msgstr ""
10925
10926 #. type: textblock
10927 #: ../src/guestfs-actions.pod:3579 ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3642 ../src/guestfs-actions.pod:3662 ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:3713
10928 msgid ""
10929 "This function takes a key or passphrase parameter which could contain "
10930 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
10931 "information."
10932 msgstr ""
10933
10934 #. type: textblock
10935 #: ../src/guestfs-actions.pod:3583 ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3666
10936 msgid "(Added in 1.5.2)"
10937 msgstr ""
10938
10939 #. type: =head2
10940 #: ../src/guestfs-actions.pod:3585
10941 msgid "guestfs_luks_close"
10942 msgstr ""
10943
10944 #. type: verbatim
10945 #: ../src/guestfs-actions.pod:3587
10946 #, no-wrap
10947 msgid ""
10948 " int\n"
10949 " guestfs_luks_close (guestfs_h *g,\n"
10950 "                     const char *device);\n"
10951 "\n"
10952 msgstr ""
10953
10954 #. type: textblock
10955 #: ../src/guestfs-actions.pod:3591
10956 msgid ""
10957 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
10958 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
10959 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
10960 "underlying block device."
10961 msgstr ""
10962
10963 #. type: textblock
10964 #: ../src/guestfs-actions.pod:3599 ../src/guestfs-actions.pod:3698 ../src/guestfs-actions.pod:3717 ../src/guestfs-actions.pod:3767 ../src/guestfs-actions.pod:3815
10965 msgid "(Added in 1.5.1)"
10966 msgstr ""
10967
10968 #. type: =head2
10969 #: ../src/guestfs-actions.pod:3601
10970 msgid "guestfs_luks_format"
10971 msgstr ""
10972
10973 #. type: verbatim
10974 #: ../src/guestfs-actions.pod:3603
10975 #, no-wrap
10976 msgid ""
10977 " int\n"
10978 " guestfs_luks_format (guestfs_h *g,\n"
10979 "                      const char *device,\n"
10980 "                      const char *key,\n"
10981 "                      int keyslot);\n"
10982 "\n"
10983 msgstr ""
10984
10985 #. type: textblock
10986 #: ../src/guestfs-actions.pod:3609 ../fish/guestfish-actions.pod:2464
10987 msgid ""
10988 "This command erases existing data on C<device> and formats the device as a "
10989 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
10990 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
10991 msgstr ""
10992
10993 #. type: textblock
10994 #: ../src/guestfs-actions.pod:3616 ../src/guestfs-actions.pod:3639 ../src/guestfs-actions.pod:3779 ../src/guestfs-actions.pod:4718 ../src/guestfs-actions.pod:5481 ../src/guestfs-actions.pod:5856 ../src/guestfs-actions.pod:5879 ../src/guestfs-actions.pod:5905 ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:2472 ../fish/guestfish-actions.pod:2485 ../fish/guestfish-actions.pod:2569 ../fish/guestfish-actions.pod:3141 ../fish/guestfish-actions.pod:3648 ../fish/guestfish-actions.pod:3928 ../fish/guestfish-actions.pod:3944 ../fish/guestfish-actions.pod:3959 ../fish/guestfish-actions.pod:4674
10995 msgid ""
10996 "B<This command is dangerous.  Without careful use you can easily destroy all "
10997 "your data>."
10998 msgstr ""
10999
11000 #. type: =head2
11001 #: ../src/guestfs-actions.pod:3625
11002 msgid "guestfs_luks_format_cipher"
11003 msgstr ""
11004
11005 #. type: verbatim
11006 #: ../src/guestfs-actions.pod:3627
11007 #, no-wrap
11008 msgid ""
11009 " int\n"
11010 " guestfs_luks_format_cipher (guestfs_h *g,\n"
11011 "                             const char *device,\n"
11012 "                             const char *key,\n"
11013 "                             int keyslot,\n"
11014 "                             const char *cipher);\n"
11015 "\n"
11016 msgstr ""
11017
11018 #. type: textblock
11019 #: ../src/guestfs-actions.pod:3634
11020 msgid ""
11021 "This command is the same as C<guestfs_luks_format> but it also allows you to "
11022 "set the C<cipher> used."
11023 msgstr ""
11024
11025 #. type: =head2
11026 #: ../src/guestfs-actions.pod:3648
11027 msgid "guestfs_luks_kill_slot"
11028 msgstr ""
11029
11030 #. type: verbatim
11031 #: ../src/guestfs-actions.pod:3650
11032 #, no-wrap
11033 msgid ""
11034 " int\n"
11035 " guestfs_luks_kill_slot (guestfs_h *g,\n"
11036 "                         const char *device,\n"
11037 "                         const char *key,\n"
11038 "                         int keyslot);\n"
11039 "\n"
11040 msgstr ""
11041
11042 #. type: textblock
11043 #: ../src/guestfs-actions.pod:3656 ../fish/guestfish-actions.pod:2492
11044 msgid ""
11045 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
11046 "device C<device>.  C<key> must be one of the I<other> keys."
11047 msgstr ""
11048
11049 #. type: =head2
11050 #: ../src/guestfs-actions.pod:3668
11051 msgid "guestfs_luks_open"
11052 msgstr ""
11053
11054 #. type: verbatim
11055 #: ../src/guestfs-actions.pod:3670
11056 #, no-wrap
11057 msgid ""
11058 " int\n"
11059 " guestfs_luks_open (guestfs_h *g,\n"
11060 "                    const char *device,\n"
11061 "                    const char *key,\n"
11062 "                    const char *mapname);\n"
11063 "\n"
11064 msgstr ""
11065
11066 #. type: textblock
11067 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2503
11068 msgid ""
11069 "This command opens a block device which has been encrypted according to the "
11070 "Linux Unified Key Setup (LUKS) standard."
11071 msgstr ""
11072
11073 #. type: textblock
11074 #: ../src/guestfs-actions.pod:3679 ../fish/guestfish-actions.pod:2506
11075 msgid "C<device> is the encrypted block device or partition."
11076 msgstr ""
11077
11078 #. type: textblock
11079 #: ../src/guestfs-actions.pod:3681 ../fish/guestfish-actions.pod:2508
11080 msgid ""
11081 "The caller must supply one of the keys associated with the LUKS block "
11082 "device, in the C<key> parameter."
11083 msgstr ""
11084
11085 #. type: textblock
11086 #: ../src/guestfs-actions.pod:3684 ../fish/guestfish-actions.pod:2511
11087 msgid ""
11088 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
11089 "writes to this block device are decrypted from and encrypted to the "
11090 "underlying C<device> respectively."
11091 msgstr ""
11092
11093 #. type: textblock
11094 #: ../src/guestfs-actions.pod:3688
11095 msgid ""
11096 "If this block device contains LVM volume groups, then calling "
11097 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
11098 "visible."
11099 msgstr ""
11100
11101 #. type: =head2
11102 #: ../src/guestfs-actions.pod:3700
11103 msgid "guestfs_luks_open_ro"
11104 msgstr ""
11105
11106 #. type: verbatim
11107 #: ../src/guestfs-actions.pod:3702
11108 #, no-wrap
11109 msgid ""
11110 " int\n"
11111 " guestfs_luks_open_ro (guestfs_h *g,\n"
11112 "                       const char *device,\n"
11113 "                       const char *key,\n"
11114 "                       const char *mapname);\n"
11115 "\n"
11116 msgstr ""
11117
11118 #. type: textblock
11119 #: ../src/guestfs-actions.pod:3708
11120 msgid ""
11121 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
11122 "created."
11123 msgstr ""
11124
11125 #. type: =head2
11126 #: ../src/guestfs-actions.pod:3719
11127 msgid "guestfs_lvcreate"
11128 msgstr ""
11129
11130 #. type: verbatim
11131 #: ../src/guestfs-actions.pod:3721
11132 #, no-wrap
11133 msgid ""
11134 " int\n"
11135 " guestfs_lvcreate (guestfs_h *g,\n"
11136 "                   const char *logvol,\n"
11137 "                   const char *volgroup,\n"
11138 "                   int mbytes);\n"
11139 "\n"
11140 msgstr ""
11141
11142 #. type: textblock
11143 #: ../src/guestfs-actions.pod:3727 ../fish/guestfish-actions.pod:2536
11144 msgid ""
11145 "This creates an LVM logical volume called C<logvol> on the volume group "
11146 "C<volgroup>, with C<size> megabytes."
11147 msgstr ""
11148
11149 #. type: =head2
11150 #: ../src/guestfs-actions.pod:3734
11151 msgid "guestfs_lvm_canonical_lv_name"
11152 msgstr ""
11153
11154 #. type: verbatim
11155 #: ../src/guestfs-actions.pod:3736
11156 #, no-wrap
11157 msgid ""
11158 " char *\n"
11159 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
11160 "                                const char *lvname);\n"
11161 "\n"
11162 msgstr ""
11163
11164 #. type: textblock
11165 #: ../src/guestfs-actions.pod:3740 ../fish/guestfish-actions.pod:2543
11166 msgid ""
11167 "This converts alternative naming schemes for LVs that you might find to the "
11168 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
11169 "C</dev/VG/LV>."
11170 msgstr ""
11171
11172 #. type: textblock
11173 #: ../src/guestfs-actions.pod:3744 ../fish/guestfish-actions.pod:2547
11174 msgid ""
11175 "This command returns an error if the C<lvname> parameter does not refer to a "
11176 "logical volume."
11177 msgstr ""
11178
11179 #. type: textblock
11180 #: ../src/guestfs-actions.pod:3747
11181 msgid "See also C<guestfs_is_lv>."
11182 msgstr ""
11183
11184 #. type: textblock
11185 #: ../src/guestfs-actions.pod:3752
11186 msgid "(Added in 1.5.24)"
11187 msgstr ""
11188
11189 #. type: =head2
11190 #: ../src/guestfs-actions.pod:3754
11191 msgid "guestfs_lvm_clear_filter"
11192 msgstr ""
11193
11194 #. type: verbatim
11195 #: ../src/guestfs-actions.pod:3756
11196 #, no-wrap
11197 msgid ""
11198 " int\n"
11199 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
11200 "\n"
11201 msgstr ""
11202
11203 #. type: textblock
11204 #: ../src/guestfs-actions.pod:3759
11205 msgid ""
11206 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
11207 "see every block device."
11208 msgstr ""
11209
11210 #. type: textblock
11211 #: ../src/guestfs-actions.pod:3762 ../src/guestfs-actions.pod:3804 ../fish/guestfish-actions.pod:2559 ../fish/guestfish-actions.pod:2590
11212 msgid "This command also clears the LVM cache and performs a volume group scan."
11213 msgstr ""
11214
11215 #. type: =head2
11216 #: ../src/guestfs-actions.pod:3769
11217 msgid "guestfs_lvm_remove_all"
11218 msgstr ""
11219
11220 #. type: verbatim
11221 #: ../src/guestfs-actions.pod:3771
11222 #, no-wrap
11223 msgid ""
11224 " int\n"
11225 " guestfs_lvm_remove_all (guestfs_h *g);\n"
11226 "\n"
11227 msgstr ""
11228
11229 #. type: textblock
11230 #: ../src/guestfs-actions.pod:3774 ../fish/guestfish-actions.pod:2566
11231 msgid ""
11232 "This command removes all LVM logical volumes, volume groups and physical "
11233 "volumes."
11234 msgstr ""
11235
11236 #. type: =head2
11237 #: ../src/guestfs-actions.pod:3784
11238 msgid "guestfs_lvm_set_filter"
11239 msgstr ""
11240
11241 #. type: verbatim
11242 #: ../src/guestfs-actions.pod:3786
11243 #, no-wrap
11244 msgid ""
11245 " int\n"
11246 " guestfs_lvm_set_filter (guestfs_h *g,\n"
11247 "                         char *const *devices);\n"
11248 "\n"
11249 msgstr ""
11250
11251 #. type: textblock
11252 #: ../src/guestfs-actions.pod:3790 ../fish/guestfish-actions.pod:2576
11253 msgid ""
11254 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
11255 "block devices in the list C<devices>, and will ignore all other attached "
11256 "block devices."
11257 msgstr ""
11258
11259 #. type: textblock
11260 #: ../src/guestfs-actions.pod:3794 ../fish/guestfish-actions.pod:2580
11261 msgid ""
11262 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
11263 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
11264 "there are two types of duplication possible: either cloned PVs/VGs which "
11265 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
11266 "same name.  In normal operation you cannot create this situation, but you "
11267 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
11268 "inside the LVM metadata."
11269 msgstr ""
11270
11271 #. type: textblock
11272 #: ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2593
11273 msgid "You can filter whole block devices or individual partitions."
11274 msgstr ""
11275
11276 #. type: textblock
11277 #: ../src/guestfs-actions.pod:3809 ../fish/guestfish-actions.pod:2595
11278 msgid ""
11279 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
11280 "filesystem), even if you are not filtering out that VG."
11281 msgstr ""
11282
11283 #. type: =head2
11284 #: ../src/guestfs-actions.pod:3817
11285 msgid "guestfs_lvremove"
11286 msgstr ""
11287
11288 #. type: verbatim
11289 #: ../src/guestfs-actions.pod:3819
11290 #, no-wrap
11291 msgid ""
11292 " int\n"
11293 " guestfs_lvremove (guestfs_h *g,\n"
11294 "                   const char *device);\n"
11295 "\n"
11296 msgstr ""
11297
11298 #. type: textblock
11299 #: ../src/guestfs-actions.pod:3823 ../fish/guestfish-actions.pod:2603
11300 msgid ""
11301 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
11302 "LV, such as C</dev/VG/LV>."
11303 msgstr ""
11304
11305 #. type: textblock
11306 #: ../src/guestfs-actions.pod:3826 ../fish/guestfish-actions.pod:2606
11307 msgid ""
11308 "You can also remove all LVs in a volume group by specifying the VG name, "
11309 "C</dev/VG>."
11310 msgstr ""
11311
11312 #. type: textblock
11313 #: ../src/guestfs-actions.pod:3831 ../src/guestfs-actions.pod:5064 ../src/guestfs-actions.pod:6804
11314 msgid "(Added in 1.0.13)"
11315 msgstr ""
11316
11317 #. type: =head2
11318 #: ../src/guestfs-actions.pod:3833
11319 msgid "guestfs_lvrename"
11320 msgstr ""
11321
11322 #. type: verbatim
11323 #: ../src/guestfs-actions.pod:3835
11324 #, no-wrap
11325 msgid ""
11326 " int\n"
11327 " guestfs_lvrename (guestfs_h *g,\n"
11328 "                   const char *logvol,\n"
11329 "                   const char *newlogvol);\n"
11330 "\n"
11331 msgstr ""
11332
11333 #. type: textblock
11334 #: ../src/guestfs-actions.pod:3840 ../fish/guestfish-actions.pod:2613
11335 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
11336 msgstr ""
11337
11338 #. type: textblock
11339 #: ../src/guestfs-actions.pod:3844 ../src/guestfs-actions.pod:6817
11340 msgid "(Added in 1.0.83)"
11341 msgstr ""
11342
11343 #. type: =head2
11344 #: ../src/guestfs-actions.pod:3846
11345 msgid "guestfs_lvresize"
11346 msgstr ""
11347
11348 #. type: verbatim
11349 #: ../src/guestfs-actions.pod:3848
11350 #, no-wrap
11351 msgid ""
11352 " int\n"
11353 " guestfs_lvresize (guestfs_h *g,\n"
11354 "                   const char *device,\n"
11355 "                   int mbytes);\n"
11356 "\n"
11357 msgstr ""
11358
11359 #. type: textblock
11360 #: ../src/guestfs-actions.pod:3853 ../fish/guestfish-actions.pod:2619
11361 msgid ""
11362 "This resizes (expands or shrinks) an existing LVM logical volume to "
11363 "C<mbytes>.  When reducing, data in the reduced part is lost."
11364 msgstr ""
11365
11366 #. type: =head2
11367 #: ../src/guestfs-actions.pod:3861
11368 msgid "guestfs_lvresize_free"
11369 msgstr ""
11370
11371 #. type: verbatim
11372 #: ../src/guestfs-actions.pod:3863
11373 #, no-wrap
11374 msgid ""
11375 " int\n"
11376 " guestfs_lvresize_free (guestfs_h *g,\n"
11377 "                        const char *lv,\n"
11378 "                        int percent);\n"
11379 "\n"
11380 msgstr ""
11381
11382 #. type: textblock
11383 #: ../src/guestfs-actions.pod:3868 ../fish/guestfish-actions.pod:2627
11384 msgid ""
11385 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
11386 "remaining free space in the volume group.  Commonly you would call this with "
11387 "pc = 100 which expands the logical volume as much as possible, using all "
11388 "remaining free space in the volume group."
11389 msgstr ""
11390
11391 #. type: textblock
11392 #: ../src/guestfs-actions.pod:3876
11393 msgid "(Added in 1.3.3)"
11394 msgstr ""
11395
11396 #. type: =head2
11397 #: ../src/guestfs-actions.pod:3878
11398 msgid "guestfs_lvs"
11399 msgstr ""
11400
11401 #. type: verbatim
11402 #: ../src/guestfs-actions.pod:3880
11403 #, no-wrap
11404 msgid ""
11405 " char **\n"
11406 " guestfs_lvs (guestfs_h *g);\n"
11407 "\n"
11408 msgstr ""
11409
11410 #. type: textblock
11411 #: ../src/guestfs-actions.pod:3883 ../fish/guestfish-actions.pod:2637
11412 msgid ""
11413 "List all the logical volumes detected.  This is the equivalent of the "
11414 "L<lvs(8)> command."
11415 msgstr ""
11416
11417 #. type: textblock
11418 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2640
11419 msgid ""
11420 "This returns a list of the logical volume device names "
11421 "(eg. C</dev/VolGroup00/LogVol00>)."
11422 msgstr ""
11423
11424 #. type: textblock
11425 #: ../src/guestfs-actions.pod:3889
11426 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
11427 msgstr ""
11428
11429 #. type: =head2
11430 #: ../src/guestfs-actions.pod:3897
11431 msgid "guestfs_lvs_full"
11432 msgstr ""
11433
11434 #. type: verbatim
11435 #: ../src/guestfs-actions.pod:3899
11436 #, no-wrap
11437 msgid ""
11438 " struct guestfs_lvm_lv_list *\n"
11439 " guestfs_lvs_full (guestfs_h *g);\n"
11440 "\n"
11441 msgstr ""
11442
11443 #. type: textblock
11444 #: ../src/guestfs-actions.pod:3902 ../fish/guestfish-actions.pod:2649
11445 msgid ""
11446 "List all the logical volumes detected.  This is the equivalent of the "
11447 "L<lvs(8)> command.  The \"full\" version includes all fields."
11448 msgstr ""
11449
11450 #. type: textblock
11451 #: ../src/guestfs-actions.pod:3905
11452 msgid ""
11453 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
11454 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
11455 "use>."
11456 msgstr ""
11457
11458 #. type: =head2
11459 #: ../src/guestfs-actions.pod:3911
11460 msgid "guestfs_lvuuid"
11461 msgstr ""
11462
11463 #. type: verbatim
11464 #: ../src/guestfs-actions.pod:3913
11465 #, no-wrap
11466 msgid ""
11467 " char *\n"
11468 " guestfs_lvuuid (guestfs_h *g,\n"
11469 "                 const char *device);\n"
11470 "\n"
11471 msgstr ""
11472
11473 #. type: textblock
11474 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2656
11475 msgid "This command returns the UUID of the LVM LV C<device>."
11476 msgstr ""
11477
11478 #. type: =head2
11479 #: ../src/guestfs-actions.pod:3924
11480 msgid "guestfs_lxattrlist"
11481 msgstr ""
11482
11483 #. type: verbatim
11484 #: ../src/guestfs-actions.pod:3926
11485 #, no-wrap
11486 msgid ""
11487 " struct guestfs_xattr_list *\n"
11488 " guestfs_lxattrlist (guestfs_h *g,\n"
11489 "                     const char *path,\n"
11490 "                     char *const *names);\n"
11491 "\n"
11492 msgstr ""
11493
11494 #. type: textblock
11495 #: ../src/guestfs-actions.pod:3931 ../fish/guestfish-actions.pod:2662
11496 msgid ""
11497 "This call allows you to get the extended attributes of multiple files, where "
11498 "all files are in the directory C<path>.  C<names> is the list of files from "
11499 "this directory."
11500 msgstr ""
11501
11502 #. type: textblock
11503 #: ../src/guestfs-actions.pod:3935 ../fish/guestfish-actions.pod:2666
11504 msgid ""
11505 "On return you get a flat list of xattr structs which must be interpreted "
11506 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
11507 "C<attrval> in this struct is zero-length to indicate there was an error "
11508 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
11509 "number (the number of following attributes for this file, which could be "
11510 "C<\"0\">).  Then after the first xattr struct are the zero or more "
11511 "attributes for the first named file.  This repeats for the second and "
11512 "subsequent files."
11513 msgstr ""
11514
11515 #. type: textblock
11516 #: ../src/guestfs-actions.pod:3945
11517 msgid ""
11518 "This call is intended for programs that want to efficiently list a directory "
11519 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
11520 "a similarly efficient call for getting standard stats.  Very long directory "
11521 "listings might cause the protocol message size to be exceeded, causing this "
11522 "call to fail.  The caller must split up such requests into smaller groups of "
11523 "names."
11524 msgstr ""
11525
11526 #. type: =head2
11527 #: ../src/guestfs-actions.pod:3959
11528 msgid "guestfs_mkdir"
11529 msgstr ""
11530
11531 #. type: verbatim
11532 #: ../src/guestfs-actions.pod:3961
11533 #, no-wrap
11534 msgid ""
11535 " int\n"
11536 " guestfs_mkdir (guestfs_h *g,\n"
11537 "                const char *path);\n"
11538 "\n"
11539 msgstr ""
11540
11541 #. type: textblock
11542 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2688
11543 msgid "Create a directory named C<path>."
11544 msgstr ""
11545
11546 #. type: =head2
11547 #: ../src/guestfs-actions.pod:3971
11548 msgid "guestfs_mkdir_mode"
11549 msgstr ""
11550
11551 #. type: verbatim
11552 #: ../src/guestfs-actions.pod:3973
11553 #, no-wrap
11554 msgid ""
11555 " int\n"
11556 " guestfs_mkdir_mode (guestfs_h *g,\n"
11557 "                     const char *path,\n"
11558 "                     int mode);\n"
11559 "\n"
11560 msgstr ""
11561
11562 #. type: textblock
11563 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2694
11564 msgid ""
11565 "This command creates a directory, setting the initial permissions of the "
11566 "directory to C<mode>."
11567 msgstr ""
11568
11569 #. type: textblock
11570 #: ../src/guestfs-actions.pod:3981 ../fish/guestfish-actions.pod:2697
11571 msgid ""
11572 "For common Linux filesystems, the actual mode which is set will be C<mode & "
11573 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
11574 "other ways."
11575 msgstr ""
11576
11577 #. type: textblock
11578 #: ../src/guestfs-actions.pod:3985
11579 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
11580 msgstr ""
11581
11582 #. type: =head2
11583 #: ../src/guestfs-actions.pod:3991
11584 msgid "guestfs_mkdir_p"
11585 msgstr ""
11586
11587 #. type: verbatim
11588 #: ../src/guestfs-actions.pod:3993
11589 #, no-wrap
11590 msgid ""
11591 " int\n"
11592 " guestfs_mkdir_p (guestfs_h *g,\n"
11593 "                  const char *path);\n"
11594 "\n"
11595 msgstr ""
11596
11597 #. type: textblock
11598 #: ../src/guestfs-actions.pod:3997 ../fish/guestfish-actions.pod:2707
11599 msgid ""
11600 "Create a directory named C<path>, creating any parent directories as "
11601 "necessary.  This is like the C<mkdir -p> shell command."
11602 msgstr ""
11603
11604 #. type: =head2
11605 #: ../src/guestfs-actions.pod:4004
11606 msgid "guestfs_mkdtemp"
11607 msgstr ""
11608
11609 #. type: verbatim
11610 #: ../src/guestfs-actions.pod:4006
11611 #, no-wrap
11612 msgid ""
11613 " char *\n"
11614 " guestfs_mkdtemp (guestfs_h *g,\n"
11615 "                  const char *template);\n"
11616 "\n"
11617 msgstr ""
11618
11619 #. type: textblock
11620 #: ../src/guestfs-actions.pod:4010 ../fish/guestfish-actions.pod:2714
11621 msgid ""
11622 "This command creates a temporary directory.  The C<template> parameter "
11623 "should be a full pathname for the temporary directory name with the final "
11624 "six characters being \"XXXXXX\"."
11625 msgstr ""
11626
11627 #. type: textblock
11628 #: ../src/guestfs-actions.pod:4015 ../fish/guestfish-actions.pod:2719
11629 msgid ""
11630 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
11631 "being suitable for Windows filesystems."
11632 msgstr ""
11633
11634 #. type: textblock
11635 #: ../src/guestfs-actions.pod:4018 ../fish/guestfish-actions.pod:2722
11636 msgid "The name of the temporary directory that was created is returned."
11637 msgstr ""
11638
11639 #. type: textblock
11640 #: ../src/guestfs-actions.pod:4021 ../fish/guestfish-actions.pod:2725
11641 msgid "The temporary directory is created with mode 0700 and is owned by root."
11642 msgstr ""
11643
11644 #. type: textblock
11645 #: ../src/guestfs-actions.pod:4024 ../fish/guestfish-actions.pod:2728
11646 msgid ""
11647 "The caller is responsible for deleting the temporary directory and its "
11648 "contents after use."
11649 msgstr ""
11650
11651 #. type: textblock
11652 #: ../src/guestfs-actions.pod:4027 ../fish/guestfish-actions.pod:2731
11653 msgid "See also: L<mkdtemp(3)>"
11654 msgstr ""
11655
11656 #. type: =head2
11657 #: ../src/guestfs-actions.pod:4034
11658 msgid "guestfs_mke2fs_J"
11659 msgstr ""
11660
11661 #. type: verbatim
11662 #: ../src/guestfs-actions.pod:4036
11663 #, no-wrap
11664 msgid ""
11665 " int\n"
11666 " guestfs_mke2fs_J (guestfs_h *g,\n"
11667 "                   const char *fstype,\n"
11668 "                   int blocksize,\n"
11669 "                   const char *device,\n"
11670 "                   const char *journal);\n"
11671 "\n"
11672 msgstr ""
11673
11674 #. type: textblock
11675 #: ../src/guestfs-actions.pod:4043 ../fish/guestfish-actions.pod:2737
11676 msgid ""
11677 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11678 "C<journal>.  It is equivalent to the command:"
11679 msgstr ""
11680
11681 #. type: verbatim
11682 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2741
11683 #, no-wrap
11684 msgid ""
11685 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
11686 "\n"
11687 msgstr ""
11688
11689 #. type: textblock
11690 #: ../src/guestfs-actions.pod:4049
11691 msgid "See also C<guestfs_mke2journal>."
11692 msgstr ""
11693
11694 #. type: textblock
11695 #: ../src/guestfs-actions.pod:4053 ../src/guestfs-actions.pod:4071 ../src/guestfs-actions.pod:4089 ../src/guestfs-actions.pod:4105 ../src/guestfs-actions.pod:4119 ../src/guestfs-actions.pod:4133 ../src/guestfs-actions.pod:4192 ../src/guestfs-actions.pod:4445
11696 msgid "(Added in 1.0.68)"
11697 msgstr ""
11698
11699 #. type: =head2
11700 #: ../src/guestfs-actions.pod:4055
11701 msgid "guestfs_mke2fs_JL"
11702 msgstr ""
11703
11704 #. type: verbatim
11705 #: ../src/guestfs-actions.pod:4057
11706 #, no-wrap
11707 msgid ""
11708 " int\n"
11709 " guestfs_mke2fs_JL (guestfs_h *g,\n"
11710 "                    const char *fstype,\n"
11711 "                    int blocksize,\n"
11712 "                    const char *device,\n"
11713 "                    const char *label);\n"
11714 "\n"
11715 msgstr ""
11716
11717 #. type: textblock
11718 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2749
11719 msgid ""
11720 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11721 "the journal labeled C<label>."
11722 msgstr ""
11723
11724 #. type: textblock
11725 #: ../src/guestfs-actions.pod:4067
11726 msgid "See also C<guestfs_mke2journal_L>."
11727 msgstr ""
11728
11729 #. type: =head2
11730 #: ../src/guestfs-actions.pod:4073
11731 msgid "guestfs_mke2fs_JU"
11732 msgstr ""
11733
11734 #. type: verbatim
11735 #: ../src/guestfs-actions.pod:4075
11736 #, no-wrap
11737 msgid ""
11738 " int\n"
11739 " guestfs_mke2fs_JU (guestfs_h *g,\n"
11740 "                    const char *fstype,\n"
11741 "                    int blocksize,\n"
11742 "                    const char *device,\n"
11743 "                    const char *uuid);\n"
11744 "\n"
11745 msgstr ""
11746
11747 #. type: textblock
11748 #: ../src/guestfs-actions.pod:4082 ../fish/guestfish-actions.pod:2758
11749 msgid ""
11750 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11751 "the journal with UUID C<uuid>."
11752 msgstr ""
11753
11754 #. type: textblock
11755 #: ../src/guestfs-actions.pod:4085
11756 msgid "See also C<guestfs_mke2journal_U>."
11757 msgstr ""
11758
11759 #. type: =head2
11760 #: ../src/guestfs-actions.pod:4091
11761 msgid "guestfs_mke2journal"
11762 msgstr ""
11763
11764 #. type: verbatim
11765 #: ../src/guestfs-actions.pod:4093
11766 #, no-wrap
11767 msgid ""
11768 " int\n"
11769 " guestfs_mke2journal (guestfs_h *g,\n"
11770 "                      int blocksize,\n"
11771 "                      const char *device);\n"
11772 "\n"
11773 msgstr ""
11774
11775 #. type: textblock
11776 #: ../src/guestfs-actions.pod:4098 ../fish/guestfish-actions.pod:2767
11777 msgid ""
11778 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
11779 "command:"
11780 msgstr ""
11781
11782 #. type: verbatim
11783 #: ../src/guestfs-actions.pod:4101 ../fish/guestfish-actions.pod:2770
11784 #, no-wrap
11785 msgid ""
11786 " mke2fs -O journal_dev -b blocksize device\n"
11787 "\n"
11788 msgstr ""
11789
11790 #. type: =head2
11791 #: ../src/guestfs-actions.pod:4107
11792 msgid "guestfs_mke2journal_L"
11793 msgstr ""
11794
11795 #. type: verbatim
11796 #: ../src/guestfs-actions.pod:4109
11797 #, no-wrap
11798 msgid ""
11799 " int\n"
11800 " guestfs_mke2journal_L (guestfs_h *g,\n"
11801 "                        int blocksize,\n"
11802 "                        const char *label,\n"
11803 "                        const char *device);\n"
11804 "\n"
11805 msgstr ""
11806
11807 #. type: textblock
11808 #: ../src/guestfs-actions.pod:4115 ../fish/guestfish-actions.pod:2776
11809 msgid "This creates an ext2 external journal on C<device> with label C<label>."
11810 msgstr ""
11811
11812 #. type: =head2
11813 #: ../src/guestfs-actions.pod:4121
11814 msgid "guestfs_mke2journal_U"
11815 msgstr ""
11816
11817 #. type: verbatim
11818 #: ../src/guestfs-actions.pod:4123
11819 #, no-wrap
11820 msgid ""
11821 " int\n"
11822 " guestfs_mke2journal_U (guestfs_h *g,\n"
11823 "                        int blocksize,\n"
11824 "                        const char *uuid,\n"
11825 "                        const char *device);\n"
11826 "\n"
11827 msgstr ""
11828
11829 #. type: textblock
11830 #: ../src/guestfs-actions.pod:4129 ../fish/guestfish-actions.pod:2782
11831 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
11832 msgstr ""
11833
11834 #. type: =head2
11835 #: ../src/guestfs-actions.pod:4135
11836 msgid "guestfs_mkfifo"
11837 msgstr ""
11838
11839 #. type: verbatim
11840 #: ../src/guestfs-actions.pod:4137
11841 #, no-wrap
11842 msgid ""
11843 " int\n"
11844 " guestfs_mkfifo (guestfs_h *g,\n"
11845 "                 int mode,\n"
11846 "                 const char *path);\n"
11847 "\n"
11848 msgstr ""
11849
11850 #. type: textblock
11851 #: ../src/guestfs-actions.pod:4142
11852 msgid ""
11853 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
11854 "is just a convenient wrapper around C<guestfs_mknod>."
11855 msgstr ""
11856
11857 #. type: =head2
11858 #: ../src/guestfs-actions.pod:4152
11859 msgid "guestfs_mkfs"
11860 msgstr ""
11861
11862 #. type: verbatim
11863 #: ../src/guestfs-actions.pod:4154
11864 #, no-wrap
11865 msgid ""
11866 " int\n"
11867 " guestfs_mkfs (guestfs_h *g,\n"
11868 "               const char *fstype,\n"
11869 "               const char *device);\n"
11870 "\n"
11871 msgstr ""
11872
11873 #. type: textblock
11874 #: ../src/guestfs-actions.pod:4159 ../fish/guestfish-actions.pod:2798
11875 msgid ""
11876 "This creates a filesystem on C<device> (usually a partition or LVM logical "
11877 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
11878 msgstr ""
11879
11880 #. type: =head2
11881 #: ../src/guestfs-actions.pod:4167
11882 msgid "guestfs_mkfs_b"
11883 msgstr ""
11884
11885 #. type: verbatim
11886 #: ../src/guestfs-actions.pod:4169
11887 #, no-wrap
11888 msgid ""
11889 " int\n"
11890 " guestfs_mkfs_b (guestfs_h *g,\n"
11891 "                 const char *fstype,\n"
11892 "                 int blocksize,\n"
11893 "                 const char *device);\n"
11894 "\n"
11895 msgstr ""
11896
11897 #. type: textblock
11898 #: ../src/guestfs-actions.pod:4175
11899 msgid ""
11900 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
11901 "block size of the resulting filesystem.  Supported block sizes depend on the "
11902 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
11903 msgstr ""
11904
11905 #. type: textblock
11906 #: ../src/guestfs-actions.pod:4180 ../src/guestfs-actions.pod:4222 ../fish/guestfish-actions.pod:2811 ../fish/guestfish-actions.pod:2838
11907 msgid ""
11908 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
11909 "cluster size."
11910 msgstr ""
11911
11912 #. type: textblock
11913 #: ../src/guestfs-actions.pod:4185
11914 msgid ""
11915 "This function is deprecated.  In new code, use the L</guestfs_mkfs_opts> "
11916 "call instead."
11917 msgstr ""
11918
11919 #. type: =head2
11920 #: ../src/guestfs-actions.pod:4194
11921 msgid "guestfs_mkfs_opts"
11922 msgstr ""
11923
11924 #. type: verbatim
11925 #: ../src/guestfs-actions.pod:4196
11926 #, no-wrap
11927 msgid ""
11928 " int\n"
11929 " guestfs_mkfs_opts (guestfs_h *g,\n"
11930 "                    const char *fstype,\n"
11931 "                    const char *device,\n"
11932 "                    ...);\n"
11933 "\n"
11934 msgstr ""
11935
11936 #. type: verbatim
11937 #: ../src/guestfs-actions.pod:4207
11938 #, no-wrap
11939 msgid ""
11940 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
11941 "\n"
11942 msgstr ""
11943
11944 #. type: textblock
11945 #: ../src/guestfs-actions.pod:4209 ../fish/guestfish-actions.pod:2825
11946 msgid ""
11947 "This function creates a filesystem on C<device>.  The filesystem type is "
11948 "C<fstype>, for example C<ext3>."
11949 msgstr ""
11950
11951 #. type: =item
11952 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2832
11953 msgid "C<blocksize>"
11954 msgstr ""
11955
11956 #. type: textblock
11957 #: ../src/guestfs-actions.pod:4218 ../fish/guestfish-actions.pod:2834
11958 msgid ""
11959 "The filesystem block size.  Supported block sizes depend on the filesystem "
11960 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
11961 "filesystems."
11962 msgstr ""
11963
11964 #. type: textblock
11965 #: ../src/guestfs-actions.pod:4225 ../fish/guestfish-actions.pod:2841
11966 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
11967 msgstr ""
11968
11969 #. type: textblock
11970 #: ../src/guestfs-actions.pod:4231
11971 msgid "(Added in 1.7.19)"
11972 msgstr ""
11973
11974 #. type: =head2
11975 #: ../src/guestfs-actions.pod:4233
11976 msgid "guestfs_mkfs_opts_va"
11977 msgstr ""
11978
11979 #. type: verbatim
11980 #: ../src/guestfs-actions.pod:4235
11981 #, no-wrap
11982 msgid ""
11983 " int\n"
11984 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
11985 "                       const char *fstype,\n"
11986 "                       const char *device,\n"
11987 "                       va_list args);\n"
11988 "\n"
11989 msgstr ""
11990
11991 #. type: textblock
11992 #: ../src/guestfs-actions.pod:4241
11993 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
11994 msgstr ""
11995
11996 #. type: =head2
11997 #: ../src/guestfs-actions.pod:4245
11998 msgid "guestfs_mkfs_opts_argv"
11999 msgstr ""
12000
12001 #. type: verbatim
12002 #: ../src/guestfs-actions.pod:4247
12003 #, no-wrap
12004 msgid ""
12005 " int\n"
12006 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
12007 "                         const char *fstype,\n"
12008 "                         const char *device,\n"
12009 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
12010 "\n"
12011 msgstr ""
12012
12013 #. type: textblock
12014 #: ../src/guestfs-actions.pod:4253
12015 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
12016 msgstr ""
12017
12018 #. type: =head2
12019 #: ../src/guestfs-actions.pod:4257
12020 msgid "guestfs_mkmountpoint"
12021 msgstr ""
12022
12023 #. type: verbatim
12024 #: ../src/guestfs-actions.pod:4259
12025 #, no-wrap
12026 msgid ""
12027 " int\n"
12028 " guestfs_mkmountpoint (guestfs_h *g,\n"
12029 "                       const char *exemptpath);\n"
12030 "\n"
12031 msgstr ""
12032
12033 #. type: textblock
12034 #: ../src/guestfs-actions.pod:4263
12035 msgid ""
12036 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
12037 "that can be used to create extra mountpoints before mounting the first "
12038 "filesystem."
12039 msgstr ""
12040
12041 #. type: textblock
12042 #: ../src/guestfs-actions.pod:4267 ../fish/guestfish-actions.pod:2855
12043 msgid ""
12044 "These calls are I<only> necessary in some very limited circumstances, mainly "
12045 "the case where you want to mount a mix of unrelated and/or read-only "
12046 "filesystems together."
12047 msgstr ""
12048
12049 #. type: textblock
12050 #: ../src/guestfs-actions.pod:4271 ../fish/guestfish-actions.pod:2859
12051 msgid ""
12052 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
12053 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
12054 "inside that.  You can unpack this as follows in guestfish:"
12055 msgstr ""
12056
12057 #. type: verbatim
12058 #: ../src/guestfs-actions.pod:4276 ../fish/guestfish-actions.pod:2864
12059 #, no-wrap
12060 msgid ""
12061 " add-ro Fedora-11-i686-Live.iso\n"
12062 " run\n"
12063 " mkmountpoint /cd\n"
12064 " mkmountpoint /sqsh\n"
12065 " mkmountpoint /ext3fs\n"
12066 " mount /dev/sda /cd\n"
12067 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
12068 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
12069 "\n"
12070 msgstr ""
12071
12072 #. type: textblock
12073 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2873
12074 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
12075 msgstr ""
12076
12077 #. type: textblock
12078 #: ../src/guestfs-actions.pod:4287
12079 msgid ""
12080 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
12081 "may get unexpected errors if you try to mix these calls.  It is safest to "
12082 "manually unmount filesystems and remove mountpoints after use."
12083 msgstr ""
12084
12085 #. type: textblock
12086 #: ../src/guestfs-actions.pod:4291
12087 msgid ""
12088 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
12089 "first, so for this to work for manual mountpoints, you must ensure that the "
12090 "innermost mountpoints have the longest pathnames, as in the example code "
12091 "above."
12092 msgstr ""
12093
12094 #. type: textblock
12095 #: ../src/guestfs-actions.pod:4296 ../fish/guestfish-actions.pod:2884
12096 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
12097 msgstr ""
12098
12099 #. type: textblock
12100 #: ../src/guestfs-actions.pod:4298
12101 msgid ""
12102 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
12103 "means that C<guestfs_umount_all> is called when the handle is closed which "
12104 "can also trigger these issues."
12105 msgstr ""
12106
12107 #. type: textblock
12108 #: ../src/guestfs-actions.pod:4304 ../src/guestfs-actions.pod:4563 ../src/guestfs-actions.pod:5465
12109 msgid "(Added in 1.0.62)"
12110 msgstr ""
12111
12112 #. type: =head2
12113 #: ../src/guestfs-actions.pod:4306
12114 msgid "guestfs_mknod"
12115 msgstr ""
12116
12117 #. type: verbatim
12118 #: ../src/guestfs-actions.pod:4308
12119 #, no-wrap
12120 msgid ""
12121 " int\n"
12122 " guestfs_mknod (guestfs_h *g,\n"
12123 "                int mode,\n"
12124 "                int devmajor,\n"
12125 "                int devminor,\n"
12126 "                const char *path);\n"
12127 "\n"
12128 msgstr ""
12129
12130 #. type: textblock
12131 #: ../src/guestfs-actions.pod:4315 ../fish/guestfish-actions.pod:2894
12132 msgid ""
12133 "This call creates block or character special devices, or named pipes "
12134 "(FIFOs)."
12135 msgstr ""
12136
12137 #. type: textblock
12138 #: ../src/guestfs-actions.pod:4318 ../fish/guestfish-actions.pod:2897
12139 msgid ""
12140 "The C<mode> parameter should be the mode, using the standard constants.  "
12141 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
12142 "used when creating block and character special devices."
12143 msgstr ""
12144
12145 #. type: textblock
12146 #: ../src/guestfs-actions.pod:4323
12147 msgid ""
12148 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
12149 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
12150 "regular file).  These constants are available in the standard Linux header "
12151 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
12152 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
12153 "the appropriate constant for you."
12154 msgstr ""
12155
12156 #. type: =head2
12157 #: ../src/guestfs-actions.pod:4337
12158 msgid "guestfs_mknod_b"
12159 msgstr ""
12160
12161 #. type: verbatim
12162 #: ../src/guestfs-actions.pod:4339
12163 #, no-wrap
12164 msgid ""
12165 " int\n"
12166 " guestfs_mknod_b (guestfs_h *g,\n"
12167 "                  int mode,\n"
12168 "                  int devmajor,\n"
12169 "                  int devminor,\n"
12170 "                  const char *path);\n"
12171 "\n"
12172 msgstr ""
12173
12174 #. type: textblock
12175 #: ../src/guestfs-actions.pod:4346
12176 msgid ""
12177 "This call creates a block device node called C<path> with mode C<mode> and "
12178 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12179 "wrapper around C<guestfs_mknod>."
12180 msgstr ""
12181
12182 #. type: =head2
12183 #: ../src/guestfs-actions.pod:4356
12184 msgid "guestfs_mknod_c"
12185 msgstr ""
12186
12187 #. type: verbatim
12188 #: ../src/guestfs-actions.pod:4358
12189 #, no-wrap
12190 msgid ""
12191 " int\n"
12192 " guestfs_mknod_c (guestfs_h *g,\n"
12193 "                  int mode,\n"
12194 "                  int devmajor,\n"
12195 "                  int devminor,\n"
12196 "                  const char *path);\n"
12197 "\n"
12198 msgstr ""
12199
12200 #. type: textblock
12201 #: ../src/guestfs-actions.pod:4365
12202 msgid ""
12203 "This call creates a char device node called C<path> with mode C<mode> and "
12204 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12205 "wrapper around C<guestfs_mknod>."
12206 msgstr ""
12207
12208 #. type: =head2
12209 #: ../src/guestfs-actions.pod:4375
12210 msgid "guestfs_mkswap"
12211 msgstr ""
12212
12213 #. type: verbatim
12214 #: ../src/guestfs-actions.pod:4377
12215 #, no-wrap
12216 msgid ""
12217 " int\n"
12218 " guestfs_mkswap (guestfs_h *g,\n"
12219 "                 const char *device);\n"
12220 "\n"
12221 msgstr ""
12222
12223 #. type: textblock
12224 #: ../src/guestfs-actions.pod:4381 ../fish/guestfish-actions.pod:2936
12225 msgid "Create a swap partition on C<device>."
12226 msgstr ""
12227
12228 #. type: =head2
12229 #: ../src/guestfs-actions.pod:4387
12230 msgid "guestfs_mkswap_L"
12231 msgstr ""
12232
12233 #. type: verbatim
12234 #: ../src/guestfs-actions.pod:4389
12235 #, no-wrap
12236 msgid ""
12237 " int\n"
12238 " guestfs_mkswap_L (guestfs_h *g,\n"
12239 "                   const char *label,\n"
12240 "                   const char *device);\n"
12241 "\n"
12242 msgstr ""
12243
12244 #. type: textblock
12245 #: ../src/guestfs-actions.pod:4394 ../fish/guestfish-actions.pod:2942
12246 msgid "Create a swap partition on C<device> with label C<label>."
12247 msgstr ""
12248
12249 #. type: textblock
12250 #: ../src/guestfs-actions.pod:4396 ../fish/guestfish-actions.pod:2944
12251 msgid ""
12252 "Note that you cannot attach a swap label to a block device "
12253 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
12254 "the kernel or swap tools."
12255 msgstr ""
12256
12257 #. type: =head2
12258 #: ../src/guestfs-actions.pod:4404
12259 msgid "guestfs_mkswap_U"
12260 msgstr ""
12261
12262 #. type: verbatim
12263 #: ../src/guestfs-actions.pod:4406
12264 #, no-wrap
12265 msgid ""
12266 " int\n"
12267 " guestfs_mkswap_U (guestfs_h *g,\n"
12268 "                   const char *uuid,\n"
12269 "                   const char *device);\n"
12270 "\n"
12271 msgstr ""
12272
12273 #. type: textblock
12274 #: ../src/guestfs-actions.pod:4411 ../fish/guestfish-actions.pod:2952
12275 msgid "Create a swap partition on C<device> with UUID C<uuid>."
12276 msgstr ""
12277
12278 #. type: =head2
12279 #: ../src/guestfs-actions.pod:4417
12280 msgid "guestfs_mkswap_file"
12281 msgstr ""
12282
12283 #. type: verbatim
12284 #: ../src/guestfs-actions.pod:4419
12285 #, no-wrap
12286 msgid ""
12287 " int\n"
12288 " guestfs_mkswap_file (guestfs_h *g,\n"
12289 "                      const char *path);\n"
12290 "\n"
12291 msgstr ""
12292
12293 #. type: textblock
12294 #: ../src/guestfs-actions.pod:4423 ../fish/guestfish-actions.pod:2958
12295 msgid "Create a swap file."
12296 msgstr ""
12297
12298 #. type: textblock
12299 #: ../src/guestfs-actions.pod:4425
12300 msgid ""
12301 "This command just writes a swap file signature to an existing file.  To "
12302 "create the file itself, use something like C<guestfs_fallocate>."
12303 msgstr ""
12304
12305 #. type: =head2
12306 #: ../src/guestfs-actions.pod:4432
12307 msgid "guestfs_modprobe"
12308 msgstr ""
12309
12310 #. type: verbatim
12311 #: ../src/guestfs-actions.pod:4434
12312 #, no-wrap
12313 msgid ""
12314 " int\n"
12315 " guestfs_modprobe (guestfs_h *g,\n"
12316 "                   const char *modulename);\n"
12317 "\n"
12318 msgstr ""
12319
12320 #. type: textblock
12321 #: ../src/guestfs-actions.pod:4438 ../fish/guestfish-actions.pod:2967
12322 msgid "This loads a kernel module in the appliance."
12323 msgstr ""
12324
12325 #. type: textblock
12326 #: ../src/guestfs-actions.pod:4440 ../fish/guestfish-actions.pod:2969
12327 msgid ""
12328 "The kernel module must have been whitelisted when libguestfs was built (see "
12329 "C<appliance/kmod.whitelist.in> in the source)."
12330 msgstr ""
12331
12332 #. type: =head2
12333 #: ../src/guestfs-actions.pod:4447
12334 msgid "guestfs_mount"
12335 msgstr ""
12336
12337 #. type: verbatim
12338 #: ../src/guestfs-actions.pod:4449
12339 #, no-wrap
12340 msgid ""
12341 " int\n"
12342 " guestfs_mount (guestfs_h *g,\n"
12343 "                const char *device,\n"
12344 "                const char *mountpoint);\n"
12345 "\n"
12346 msgstr ""
12347
12348 #. type: textblock
12349 #: ../src/guestfs-actions.pod:4454 ../fish/guestfish-actions.pod:2976
12350 msgid ""
12351 "Mount a guest disk at a position in the filesystem.  Block devices are named "
12352 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
12353 "those block devices contain partitions, they will have the usual names "
12354 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
12355 msgstr ""
12356
12357 #. type: textblock
12358 #: ../src/guestfs-actions.pod:4460 ../fish/guestfish-actions.pod:2982
12359 msgid ""
12360 "The rules are the same as for L<mount(2)>: A filesystem must first be "
12361 "mounted on C</> before others can be mounted.  Other filesystems can only be "
12362 "mounted on directories which already exist."
12363 msgstr ""
12364
12365 #. type: textblock
12366 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:2987
12367 msgid ""
12368 "The mounted filesystem is writable, if we have sufficient permissions on the "
12369 "underlying device."
12370 msgstr ""
12371
12372 #. type: textblock
12373 #: ../src/guestfs-actions.pod:4468
12374 msgid ""
12375 "B<Important note:> When you use this call, the filesystem options C<sync> "
12376 "and C<noatime> are set implicitly.  This was originally done because we "
12377 "thought it would improve reliability, but it turns out that I<-o sync> has a "
12378 "very large negative performance impact and negligible effect on "
12379 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
12380 "in any code that needs performance, and instead use C<guestfs_mount_options> "
12381 "(use an empty string for the first parameter if you don't want any options)."
12382 msgstr ""
12383
12384 #. type: =head2
12385 #: ../src/guestfs-actions.pod:4482
12386 msgid "guestfs_mount_loop"
12387 msgstr ""
12388
12389 #. type: verbatim
12390 #: ../src/guestfs-actions.pod:4484
12391 #, no-wrap
12392 msgid ""
12393 " int\n"
12394 " guestfs_mount_loop (guestfs_h *g,\n"
12395 "                     const char *file,\n"
12396 "                     const char *mountpoint);\n"
12397 "\n"
12398 msgstr ""
12399
12400 #. type: textblock
12401 #: ../src/guestfs-actions.pod:4489 ../fish/guestfish-actions.pod:3004
12402 msgid ""
12403 "This command lets you mount C<file> (a filesystem image in a file) on a "
12404 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
12405 "mountpoint>."
12406 msgstr ""
12407
12408 #. type: =head2
12409 #: ../src/guestfs-actions.pod:4497
12410 msgid "guestfs_mount_options"
12411 msgstr ""
12412
12413 #. type: verbatim
12414 #: ../src/guestfs-actions.pod:4499
12415 #, no-wrap
12416 msgid ""
12417 " int\n"
12418 " guestfs_mount_options (guestfs_h *g,\n"
12419 "                        const char *options,\n"
12420 "                        const char *device,\n"
12421 "                        const char *mountpoint);\n"
12422 "\n"
12423 msgstr ""
12424
12425 #. type: textblock
12426 #: ../src/guestfs-actions.pod:4505
12427 msgid ""
12428 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12429 "the mount options as for the L<mount(8)> I<-o> flag."
12430 msgstr ""
12431
12432 #. type: textblock
12433 #: ../src/guestfs-actions.pod:4509 ../fish/guestfish-actions.pod:3016
12434 msgid ""
12435 "If the C<options> parameter is an empty string, then no options are passed "
12436 "(all options default to whatever the filesystem uses)."
12437 msgstr ""
12438
12439 #. type: textblock
12440 #: ../src/guestfs-actions.pod:4515 ../src/guestfs-actions.pod:4529 ../src/guestfs-actions.pod:4546
12441 msgid "(Added in 1.0.10)"
12442 msgstr ""
12443
12444 #. type: =head2
12445 #: ../src/guestfs-actions.pod:4517
12446 msgid "guestfs_mount_ro"
12447 msgstr ""
12448
12449 #. type: verbatim
12450 #: ../src/guestfs-actions.pod:4519
12451 #, no-wrap
12452 msgid ""
12453 " int\n"
12454 " guestfs_mount_ro (guestfs_h *g,\n"
12455 "                   const char *device,\n"
12456 "                   const char *mountpoint);\n"
12457 "\n"
12458 msgstr ""
12459
12460 #. type: textblock
12461 #: ../src/guestfs-actions.pod:4524
12462 msgid ""
12463 "This is the same as the C<guestfs_mount> command, but it mounts the "
12464 "filesystem with the read-only (I<-o ro>) flag."
12465 msgstr ""
12466
12467 #. type: =head2
12468 #: ../src/guestfs-actions.pod:4531
12469 msgid "guestfs_mount_vfs"
12470 msgstr ""
12471
12472 #. type: verbatim
12473 #: ../src/guestfs-actions.pod:4533
12474 #, no-wrap
12475 msgid ""
12476 " int\n"
12477 " guestfs_mount_vfs (guestfs_h *g,\n"
12478 "                    const char *options,\n"
12479 "                    const char *vfstype,\n"
12480 "                    const char *device,\n"
12481 "                    const char *mountpoint);\n"
12482 "\n"
12483 msgstr ""
12484
12485 #. type: textblock
12486 #: ../src/guestfs-actions.pod:4540
12487 msgid ""
12488 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12489 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
12490 "I<-t> flags."
12491 msgstr ""
12492
12493 #. type: =head2
12494 #: ../src/guestfs-actions.pod:4548
12495 msgid "guestfs_mountpoints"
12496 msgstr ""
12497
12498 #. type: verbatim
12499 #: ../src/guestfs-actions.pod:4550
12500 #, no-wrap
12501 msgid ""
12502 " char **\n"
12503 " guestfs_mountpoints (guestfs_h *g);\n"
12504 "\n"
12505 msgstr ""
12506
12507 #. type: textblock
12508 #: ../src/guestfs-actions.pod:4553
12509 msgid ""
12510 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
12511 "devices.  This one returns a hash table (map) of device name to directory "
12512 "where the device is mounted."
12513 msgstr ""
12514
12515 #. type: =head2
12516 #: ../src/guestfs-actions.pod:4565
12517 msgid "guestfs_mounts"
12518 msgstr ""
12519
12520 #. type: verbatim
12521 #: ../src/guestfs-actions.pod:4567
12522 #, no-wrap
12523 msgid ""
12524 " char **\n"
12525 " guestfs_mounts (guestfs_h *g);\n"
12526 "\n"
12527 msgstr ""
12528
12529 #. type: textblock
12530 #: ../src/guestfs-actions.pod:4570 ../fish/guestfish-actions.pod:3047
12531 msgid ""
12532 "This returns the list of currently mounted filesystems.  It returns the list "
12533 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
12534 msgstr ""
12535
12536 #. type: textblock
12537 #: ../src/guestfs-actions.pod:4573 ../fish/guestfish-actions.pod:3050
12538 msgid "Some internal mounts are not shown."
12539 msgstr ""
12540
12541 #. type: textblock
12542 #: ../src/guestfs-actions.pod:4575
12543 msgid "See also: C<guestfs_mountpoints>"
12544 msgstr ""
12545
12546 #. type: =head2
12547 #: ../src/guestfs-actions.pod:4583
12548 msgid "guestfs_mv"
12549 msgstr ""
12550
12551 #. type: verbatim
12552 #: ../src/guestfs-actions.pod:4585
12553 #, no-wrap
12554 msgid ""
12555 " int\n"
12556 " guestfs_mv (guestfs_h *g,\n"
12557 "             const char *src,\n"
12558 "             const char *dest);\n"
12559 "\n"
12560 msgstr ""
12561
12562 #. type: textblock
12563 #: ../src/guestfs-actions.pod:4590 ../fish/guestfish-actions.pod:3058
12564 msgid ""
12565 "This moves a file from C<src> to C<dest> where C<dest> is either a "
12566 "destination filename or destination directory."
12567 msgstr ""
12568
12569 #. type: =head2
12570 #: ../src/guestfs-actions.pod:4597
12571 msgid "guestfs_ntfs_3g_probe"
12572 msgstr ""
12573
12574 #. type: verbatim
12575 #: ../src/guestfs-actions.pod:4599
12576 #, no-wrap
12577 msgid ""
12578 " int\n"
12579 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
12580 "                        int rw,\n"
12581 "                        const char *device);\n"
12582 "\n"
12583 msgstr ""
12584
12585 #. type: textblock
12586 #: ../src/guestfs-actions.pod:4604 ../fish/guestfish-actions.pod:3065
12587 msgid ""
12588 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
12589 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
12590 "read-write, and some cannot be mounted at all)."
12591 msgstr ""
12592
12593 #. type: textblock
12594 #: ../src/guestfs-actions.pod:4608 ../fish/guestfish-actions.pod:3069
12595 msgid ""
12596 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
12597 "can be mounted read-write.  Set it to false if you want to test if the "
12598 "volume can be mounted read-only."
12599 msgstr ""
12600
12601 #. type: textblock
12602 #: ../src/guestfs-actions.pod:4612 ../fish/guestfish-actions.pod:3073
12603 msgid ""
12604 "The return value is an integer which C<0> if the operation would succeed, or "
12605 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
12606 msgstr ""
12607
12608 #. type: textblock
12609 #: ../src/guestfs-actions.pod:4618
12610 msgid "(Added in 1.0.43)"
12611 msgstr ""
12612
12613 #. type: =head2
12614 #: ../src/guestfs-actions.pod:4620
12615 msgid "guestfs_ntfsresize"
12616 msgstr ""
12617
12618 #. type: verbatim
12619 #: ../src/guestfs-actions.pod:4622
12620 #, no-wrap
12621 msgid ""
12622 " int\n"
12623 " guestfs_ntfsresize (guestfs_h *g,\n"
12624 "                     const char *device);\n"
12625 "\n"
12626 msgstr ""
12627
12628 #. type: textblock
12629 #: ../src/guestfs-actions.pod:4626 ../fish/guestfish-actions.pod:3081
12630 msgid ""
12631 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
12632 "size of the underlying device."
12633 msgstr ""
12634
12635 #. type: textblock
12636 #: ../src/guestfs-actions.pod:4629 ../fish/guestfish-actions.pod:3084
12637 msgid ""
12638 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
12639 "consistency check (for safety).  You have to boot into Windows to perform "
12640 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
12641 "resize filesystems which have been marked in this way.  So in effect it is "
12642 "not possible to call ntfsresize multiple times on a single filesystem "
12643 "without booting into Windows between each resize."
12644 msgstr ""
12645
12646 #. type: textblock
12647 #: ../src/guestfs-actions.pod:4637 ../fish/guestfish-actions.pod:3092
12648 msgid "See also L<ntfsresize(8)>."
12649 msgstr ""
12650
12651 #. type: =head2
12652 #: ../src/guestfs-actions.pod:4643
12653 msgid "guestfs_ntfsresize_size"
12654 msgstr ""
12655
12656 #. type: verbatim
12657 #: ../src/guestfs-actions.pod:4645
12658 #, no-wrap
12659 msgid ""
12660 " int\n"
12661 " guestfs_ntfsresize_size (guestfs_h *g,\n"
12662 "                          const char *device,\n"
12663 "                          int64_t size);\n"
12664 "\n"
12665 msgstr ""
12666
12667 #. type: textblock
12668 #: ../src/guestfs-actions.pod:4650
12669 msgid ""
12670 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
12671 "to specify the new size (in bytes) explicitly."
12672 msgstr ""
12673
12674 #. type: textblock
12675 #: ../src/guestfs-actions.pod:4655 ../src/guestfs-actions.pod:5091 ../src/guestfs-actions.pod:5164 ../src/guestfs-actions.pod:5413 ../src/guestfs-actions.pod:6952
12676 msgid "(Added in 1.3.14)"
12677 msgstr ""
12678
12679 #. type: =head2
12680 #: ../src/guestfs-actions.pod:4657
12681 msgid "guestfs_part_add"
12682 msgstr ""
12683
12684 #. type: verbatim
12685 #: ../src/guestfs-actions.pod:4659
12686 #, no-wrap
12687 msgid ""
12688 " int\n"
12689 " guestfs_part_add (guestfs_h *g,\n"
12690 "                   const char *device,\n"
12691 "                   const char *prlogex,\n"
12692 "                   int64_t startsect,\n"
12693 "                   int64_t endsect);\n"
12694 "\n"
12695 msgstr ""
12696
12697 #. type: textblock
12698 #: ../src/guestfs-actions.pod:4666
12699 msgid ""
12700 "This command adds a partition to C<device>.  If there is no partition table "
12701 "on the device, call C<guestfs_part_init> first."
12702 msgstr ""
12703
12704 #. type: textblock
12705 #: ../src/guestfs-actions.pod:4669 ../fish/guestfish-actions.pod:3108
12706 msgid ""
12707 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
12708 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
12709 "C<logical>) and C<e> (or C<extended>) partition types."
12710 msgstr ""
12711
12712 #. type: textblock
12713 #: ../src/guestfs-actions.pod:4674 ../fish/guestfish-actions.pod:3113
12714 msgid ""
12715 "C<startsect> and C<endsect> are the start and end of the partition in "
12716 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
12717 "from the end of the disk (C<-1> is the last sector)."
12718 msgstr ""
12719
12720 #. type: textblock
12721 #: ../src/guestfs-actions.pod:4678
12722 msgid ""
12723 "Creating a partition which covers the whole disk is not so easy.  Use "
12724 "C<guestfs_part_disk> to do that."
12725 msgstr ""
12726
12727 #. type: textblock
12728 #: ../src/guestfs-actions.pod:4683 ../src/guestfs-actions.pod:4721 ../src/guestfs-actions.pod:4774 ../src/guestfs-actions.pod:4852 ../src/guestfs-actions.pod:4890 ../src/guestfs-actions.pod:4909 ../src/guestfs-actions.pod:4949
12729 msgid "(Added in 1.0.78)"
12730 msgstr ""
12731
12732 #. type: =head2
12733 #: ../src/guestfs-actions.pod:4685
12734 msgid "guestfs_part_del"
12735 msgstr ""
12736
12737 #. type: verbatim
12738 #: ../src/guestfs-actions.pod:4687
12739 #, no-wrap
12740 msgid ""
12741 " int\n"
12742 " guestfs_part_del (guestfs_h *g,\n"
12743 "                   const char *device,\n"
12744 "                   int partnum);\n"
12745 "\n"
12746 msgstr ""
12747
12748 #. type: textblock
12749 #: ../src/guestfs-actions.pod:4692 ../fish/guestfish-actions.pod:3124
12750 msgid "This command deletes the partition numbered C<partnum> on C<device>."
12751 msgstr ""
12752
12753 #. type: textblock
12754 #: ../src/guestfs-actions.pod:4694 ../fish/guestfish-actions.pod:3126
12755 msgid ""
12756 "Note that in the case of MBR partitioning, deleting an extended partition "
12757 "also deletes any logical partitions it contains."
12758 msgstr ""
12759
12760 #. type: =head2
12761 #: ../src/guestfs-actions.pod:4702
12762 msgid "guestfs_part_disk"
12763 msgstr ""
12764
12765 #. type: verbatim
12766 #: ../src/guestfs-actions.pod:4704
12767 #, no-wrap
12768 msgid ""
12769 " int\n"
12770 " guestfs_part_disk (guestfs_h *g,\n"
12771 "                    const char *device,\n"
12772 "                    const char *parttype);\n"
12773 "\n"
12774 msgstr ""
12775
12776 #. type: textblock
12777 #: ../src/guestfs-actions.pod:4709
12778 msgid ""
12779 "This command is simply a combination of C<guestfs_part_init> followed by "
12780 "C<guestfs_part_add> to create a single primary partition covering the whole "
12781 "disk."
12782 msgstr ""
12783
12784 #. type: textblock
12785 #: ../src/guestfs-actions.pod:4713
12786 msgid ""
12787 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
12788 "possible values are described in C<guestfs_part_init>."
12789 msgstr ""
12790
12791 #. type: =head2
12792 #: ../src/guestfs-actions.pod:4723
12793 msgid "guestfs_part_get_bootable"
12794 msgstr ""
12795
12796 #. type: verbatim
12797 #: ../src/guestfs-actions.pod:4725
12798 #, no-wrap
12799 msgid ""
12800 " int\n"
12801 " guestfs_part_get_bootable (guestfs_h *g,\n"
12802 "                            const char *device,\n"
12803 "                            int partnum);\n"
12804 "\n"
12805 msgstr ""
12806
12807 #. type: textblock
12808 #: ../src/guestfs-actions.pod:4730 ../fish/guestfish-actions.pod:3148
12809 msgid ""
12810 "This command returns true if the partition C<partnum> on C<device> has the "
12811 "bootable flag set."
12812 msgstr ""
12813
12814 #. type: textblock
12815 #: ../src/guestfs-actions.pod:4733
12816 msgid "See also C<guestfs_part_set_bootable>."
12817 msgstr ""
12818
12819 #. type: =head2
12820 #: ../src/guestfs-actions.pod:4739
12821 msgid "guestfs_part_get_mbr_id"
12822 msgstr ""
12823
12824 #. type: verbatim
12825 #: ../src/guestfs-actions.pod:4741
12826 #, no-wrap
12827 msgid ""
12828 " int\n"
12829 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
12830 "                          const char *device,\n"
12831 "                          int partnum);\n"
12832 "\n"
12833 msgstr ""
12834
12835 #. type: textblock
12836 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3157
12837 msgid ""
12838 "Returns the MBR type byte (also known as the ID byte) from the numbered "
12839 "partition C<partnum>."
12840 msgstr ""
12841
12842 #. type: textblock
12843 #: ../src/guestfs-actions.pod:4749 ../src/guestfs-actions.pod:4925
12844 msgid ""
12845 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
12846 "undefined results for other partition table types (see "
12847 "C<guestfs_part_get_parttype>)."
12848 msgstr ""
12849
12850 #. type: =head2
12851 #: ../src/guestfs-actions.pod:4757
12852 msgid "guestfs_part_get_parttype"
12853 msgstr ""
12854
12855 #. type: verbatim
12856 #: ../src/guestfs-actions.pod:4759
12857 #, no-wrap
12858 msgid ""
12859 " char *\n"
12860 " guestfs_part_get_parttype (guestfs_h *g,\n"
12861 "                            const char *device);\n"
12862 "\n"
12863 msgstr ""
12864
12865 #. type: textblock
12866 #: ../src/guestfs-actions.pod:4763 ../fish/guestfish-actions.pod:3168
12867 msgid ""
12868 "This command examines the partition table on C<device> and returns the "
12869 "partition table type (format) being used."
12870 msgstr ""
12871
12872 #. type: textblock
12873 #: ../src/guestfs-actions.pod:4766
12874 msgid ""
12875 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
12876 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
12877 "possible, although unusual.  See C<guestfs_part_init> for a full list."
12878 msgstr ""
12879
12880 #. type: =head2
12881 #: ../src/guestfs-actions.pod:4776
12882 msgid "guestfs_part_init"
12883 msgstr ""
12884
12885 #. type: verbatim
12886 #: ../src/guestfs-actions.pod:4778
12887 #, no-wrap
12888 msgid ""
12889 " int\n"
12890 " guestfs_part_init (guestfs_h *g,\n"
12891 "                    const char *device,\n"
12892 "                    const char *parttype);\n"
12893 "\n"
12894 msgstr ""
12895
12896 #. type: textblock
12897 #: ../src/guestfs-actions.pod:4783 ../fish/guestfish-actions.pod:3180
12898 msgid ""
12899 "This creates an empty partition table on C<device> of one of the partition "
12900 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
12901 "(for large disks)."
12902 msgstr ""
12903
12904 #. type: textblock
12905 #: ../src/guestfs-actions.pod:4787
12906 msgid ""
12907 "Initially there are no partitions.  Following this, you should call "
12908 "C<guestfs_part_add> for each partition required."
12909 msgstr ""
12910
12911 #. type: textblock
12912 #: ../src/guestfs-actions.pod:4790 ../fish/guestfish-actions.pod:3187
12913 msgid "Possible values for C<parttype> are:"
12914 msgstr ""
12915
12916 #. type: =item
12917 #: ../src/guestfs-actions.pod:4794 ../fish/guestfish-actions.pod:3191
12918 msgid "B<efi> | B<gpt>"
12919 msgstr ""
12920
12921 #. type: textblock
12922 #: ../src/guestfs-actions.pod:4796 ../fish/guestfish-actions.pod:3193
12923 msgid "Intel EFI / GPT partition table."
12924 msgstr ""
12925
12926 #. type: textblock
12927 #: ../src/guestfs-actions.pod:4798 ../fish/guestfish-actions.pod:3195
12928 msgid ""
12929 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
12930 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
12931 "the C<mbr> format."
12932 msgstr ""
12933
12934 #. type: =item
12935 #: ../src/guestfs-actions.pod:4802 ../fish/guestfish-actions.pod:3199
12936 msgid "B<mbr> | B<msdos>"
12937 msgstr ""
12938
12939 #. type: textblock
12940 #: ../src/guestfs-actions.pod:4804 ../fish/guestfish-actions.pod:3201
12941 msgid ""
12942 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
12943 "Windows.  This partition type will B<only> work for device sizes up to 2 "
12944 "TB.  For large disks we recommend using C<gpt>."
12945 msgstr ""
12946
12947 #. type: textblock
12948 #: ../src/guestfs-actions.pod:4811 ../fish/guestfish-actions.pod:3208
12949 msgid "Other partition table types that may work but are not supported include:"
12950 msgstr ""
12951
12952 #. type: =item
12953 #: ../src/guestfs-actions.pod:4816 ../fish/guestfish-actions.pod:3213
12954 msgid "B<aix>"
12955 msgstr ""
12956
12957 #. type: textblock
12958 #: ../src/guestfs-actions.pod:4818 ../fish/guestfish-actions.pod:3215
12959 msgid "AIX disk labels."
12960 msgstr ""
12961
12962 #. type: =item
12963 #: ../src/guestfs-actions.pod:4820 ../fish/guestfish-actions.pod:3217
12964 msgid "B<amiga> | B<rdb>"
12965 msgstr ""
12966
12967 #. type: textblock
12968 #: ../src/guestfs-actions.pod:4822 ../fish/guestfish-actions.pod:3219
12969 msgid "Amiga \"Rigid Disk Block\" format."
12970 msgstr ""
12971
12972 #. type: =item
12973 #: ../src/guestfs-actions.pod:4824 ../fish/guestfish-actions.pod:3221
12974 msgid "B<bsd>"
12975 msgstr ""
12976
12977 #. type: textblock
12978 #: ../src/guestfs-actions.pod:4826 ../fish/guestfish-actions.pod:3223
12979 msgid "BSD disk labels."
12980 msgstr ""
12981
12982 #. type: =item
12983 #: ../src/guestfs-actions.pod:4828 ../fish/guestfish-actions.pod:3225
12984 msgid "B<dasd>"
12985 msgstr ""
12986
12987 #. type: textblock
12988 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3227
12989 msgid "DASD, used on IBM mainframes."
12990 msgstr ""
12991
12992 #. type: =item
12993 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3229
12994 msgid "B<dvh>"
12995 msgstr ""
12996
12997 #. type: textblock
12998 #: ../src/guestfs-actions.pod:4834 ../fish/guestfish-actions.pod:3231
12999 msgid "MIPS/SGI volumes."
13000 msgstr ""
13001
13002 #. type: =item
13003 #: ../src/guestfs-actions.pod:4836 ../fish/guestfish-actions.pod:3233
13004 msgid "B<mac>"
13005 msgstr ""
13006
13007 #. type: textblock
13008 #: ../src/guestfs-actions.pod:4838 ../fish/guestfish-actions.pod:3235
13009 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
13010 msgstr ""
13011
13012 #. type: =item
13013 #: ../src/guestfs-actions.pod:4840 ../fish/guestfish-actions.pod:3237
13014 msgid "B<pc98>"
13015 msgstr ""
13016
13017 #. type: textblock
13018 #: ../src/guestfs-actions.pod:4842 ../fish/guestfish-actions.pod:3239
13019 msgid "NEC PC-98 format, common in Japan apparently."
13020 msgstr ""
13021
13022 #. type: =item
13023 #: ../src/guestfs-actions.pod:4844 ../fish/guestfish-actions.pod:3241
13024 msgid "B<sun>"
13025 msgstr ""
13026
13027 #. type: textblock
13028 #: ../src/guestfs-actions.pod:4846 ../fish/guestfish-actions.pod:3243
13029 msgid "Sun disk labels."
13030 msgstr ""
13031
13032 #. type: =head2
13033 #: ../src/guestfs-actions.pod:4854
13034 msgid "guestfs_part_list"
13035 msgstr ""
13036
13037 #. type: verbatim
13038 #: ../src/guestfs-actions.pod:4856
13039 #, no-wrap
13040 msgid ""
13041 " struct guestfs_partition_list *\n"
13042 " guestfs_part_list (guestfs_h *g,\n"
13043 "                    const char *device);\n"
13044 "\n"
13045 msgstr ""
13046
13047 #. type: textblock
13048 #: ../src/guestfs-actions.pod:4860 ../fish/guestfish-actions.pod:3251
13049 msgid ""
13050 "This command parses the partition table on C<device> and returns the list of "
13051 "partitions found."
13052 msgstr ""
13053
13054 #. type: textblock
13055 #: ../src/guestfs-actions.pod:4863 ../fish/guestfish-actions.pod:3254
13056 msgid "The fields in the returned structure are:"
13057 msgstr ""
13058
13059 #. type: =item
13060 #: ../src/guestfs-actions.pod:4867 ../fish/guestfish-actions.pod:3258
13061 msgid "B<part_num>"
13062 msgstr ""
13063
13064 #. type: textblock
13065 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3260
13066 msgid "Partition number, counting from 1."
13067 msgstr ""
13068
13069 #. type: =item
13070 #: ../src/guestfs-actions.pod:4871 ../fish/guestfish-actions.pod:3262
13071 msgid "B<part_start>"
13072 msgstr ""
13073
13074 #. type: textblock
13075 #: ../src/guestfs-actions.pod:4873
13076 msgid ""
13077 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
13078 "the device's sector size, see C<guestfs_blockdev_getss>."
13079 msgstr ""
13080
13081 #. type: =item
13082 #: ../src/guestfs-actions.pod:4876 ../fish/guestfish-actions.pod:3267
13083 msgid "B<part_end>"
13084 msgstr ""
13085
13086 #. type: textblock
13087 #: ../src/guestfs-actions.pod:4878 ../fish/guestfish-actions.pod:3269
13088 msgid "End of the partition in bytes."
13089 msgstr ""
13090
13091 #. type: =item
13092 #: ../src/guestfs-actions.pod:4880 ../fish/guestfish-actions.pod:3271
13093 msgid "B<part_size>"
13094 msgstr ""
13095
13096 #. type: textblock
13097 #: ../src/guestfs-actions.pod:4882 ../fish/guestfish-actions.pod:3273
13098 msgid "Size of the partition in bytes."
13099 msgstr ""
13100
13101 #. type: textblock
13102 #: ../src/guestfs-actions.pod:4886
13103 msgid ""
13104 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
13105 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
13106 "use>."
13107 msgstr ""
13108
13109 #. type: =head2
13110 #: ../src/guestfs-actions.pod:4892
13111 msgid "guestfs_part_set_bootable"
13112 msgstr ""
13113
13114 #. type: verbatim
13115 #: ../src/guestfs-actions.pod:4894
13116 #, no-wrap
13117 msgid ""
13118 " int\n"
13119 " guestfs_part_set_bootable (guestfs_h *g,\n"
13120 "                            const char *device,\n"
13121 "                            int partnum,\n"
13122 "                            int bootable);\n"
13123 "\n"
13124 msgstr ""
13125
13126 #. type: textblock
13127 #: ../src/guestfs-actions.pod:4900 ../fish/guestfish-actions.pod:3281
13128 msgid ""
13129 "This sets the bootable flag on partition numbered C<partnum> on device "
13130 "C<device>.  Note that partitions are numbered from 1."
13131 msgstr ""
13132
13133 #. type: textblock
13134 #: ../src/guestfs-actions.pod:4903 ../fish/guestfish-actions.pod:3284
13135 msgid ""
13136 "The bootable flag is used by some operating systems (notably Windows) to "
13137 "determine which partition to boot from.  It is by no means universally "
13138 "recognized."
13139 msgstr ""
13140
13141 #. type: =head2
13142 #: ../src/guestfs-actions.pod:4911
13143 msgid "guestfs_part_set_mbr_id"
13144 msgstr ""
13145
13146 #. type: verbatim
13147 #: ../src/guestfs-actions.pod:4913
13148 #, no-wrap
13149 msgid ""
13150 " int\n"
13151 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
13152 "                          const char *device,\n"
13153 "                          int partnum,\n"
13154 "                          int idbyte);\n"
13155 "\n"
13156 msgstr ""
13157
13158 #. type: textblock
13159 #: ../src/guestfs-actions.pod:4919 ../fish/guestfish-actions.pod:3292
13160 msgid ""
13161 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
13162 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
13163 "documentation are in fact hexadecimal numbers, but usually documented "
13164 "without any leading \"0x\" which might be confusing."
13165 msgstr ""
13166
13167 #. type: =head2
13168 #: ../src/guestfs-actions.pod:4933
13169 msgid "guestfs_part_set_name"
13170 msgstr ""
13171
13172 #. type: verbatim
13173 #: ../src/guestfs-actions.pod:4935
13174 #, no-wrap
13175 msgid ""
13176 " int\n"
13177 " guestfs_part_set_name (guestfs_h *g,\n"
13178 "                        const char *device,\n"
13179 "                        int partnum,\n"
13180 "                        const char *name);\n"
13181 "\n"
13182 msgstr ""
13183
13184 #. type: textblock
13185 #: ../src/guestfs-actions.pod:4941 ../fish/guestfish-actions.pod:3306
13186 msgid ""
13187 "This sets the partition name on partition numbered C<partnum> on device "
13188 "C<device>.  Note that partitions are numbered from 1."
13189 msgstr ""
13190
13191 #. type: textblock
13192 #: ../src/guestfs-actions.pod:4944 ../fish/guestfish-actions.pod:3309
13193 msgid ""
13194 "The partition name can only be set on certain types of partition table.  "
13195 "This works on C<gpt> but not on C<mbr> partitions."
13196 msgstr ""
13197
13198 #. type: =head2
13199 #: ../src/guestfs-actions.pod:4951
13200 msgid "guestfs_part_to_dev"
13201 msgstr ""
13202
13203 #. type: verbatim
13204 #: ../src/guestfs-actions.pod:4953
13205 #, no-wrap
13206 msgid ""
13207 " char *\n"
13208 " guestfs_part_to_dev (guestfs_h *g,\n"
13209 "                      const char *partition);\n"
13210 "\n"
13211 msgstr ""
13212
13213 #. type: textblock
13214 #: ../src/guestfs-actions.pod:4957 ../fish/guestfish-actions.pod:3316
13215 msgid ""
13216 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
13217 "partition number, returning the device name (eg. \"/dev/sdb\")."
13218 msgstr ""
13219
13220 #. type: textblock
13221 #: ../src/guestfs-actions.pod:4961
13222 msgid ""
13223 "The named partition must exist, for example as a string returned from "
13224 "C<guestfs_list_partitions>."
13225 msgstr ""
13226
13227 #. type: =head2
13228 #: ../src/guestfs-actions.pod:4969
13229 msgid "guestfs_ping_daemon"
13230 msgstr ""
13231
13232 #. type: verbatim
13233 #: ../src/guestfs-actions.pod:4971
13234 #, no-wrap
13235 msgid ""
13236 " int\n"
13237 " guestfs_ping_daemon (guestfs_h *g);\n"
13238 "\n"
13239 msgstr ""
13240
13241 #. type: textblock
13242 #: ../src/guestfs-actions.pod:4974 ../fish/guestfish-actions.pod:3327
13243 msgid ""
13244 "This is a test probe into the guestfs daemon running inside the qemu "
13245 "subprocess.  Calling this function checks that the daemon responds to the "
13246 "ping message, without affecting the daemon or attached block device(s) in "
13247 "any other way."
13248 msgstr ""
13249
13250 #. type: =head2
13251 #: ../src/guestfs-actions.pod:4983
13252 msgid "guestfs_pread"
13253 msgstr ""
13254
13255 #. type: verbatim
13256 #: ../src/guestfs-actions.pod:4985
13257 #, no-wrap
13258 msgid ""
13259 " char *\n"
13260 " guestfs_pread (guestfs_h *g,\n"
13261 "                const char *path,\n"
13262 "                int count,\n"
13263 "                int64_t offset,\n"
13264 "                size_t *size_r);\n"
13265 "\n"
13266 msgstr ""
13267
13268 #. type: textblock
13269 #: ../src/guestfs-actions.pod:4992 ../fish/guestfish-actions.pod:3336
13270 msgid ""
13271 "This command lets you read part of a file.  It reads C<count> bytes of the "
13272 "file, starting at C<offset>, from file C<path>."
13273 msgstr ""
13274
13275 #. type: textblock
13276 #: ../src/guestfs-actions.pod:4995 ../src/guestfs-actions.pod:5021 ../fish/guestfish-actions.pod:3339 ../fish/guestfish-actions.pod:3354
13277 msgid ""
13278 "This may read fewer bytes than requested.  For further details see the "
13279 "L<pread(2)> system call."
13280 msgstr ""
13281
13282 #. type: textblock
13283 #: ../src/guestfs-actions.pod:4998
13284 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
13285 msgstr ""
13286
13287 #. type: =head2
13288 #: ../src/guestfs-actions.pod:5009
13289 msgid "guestfs_pread_device"
13290 msgstr ""
13291
13292 #. type: verbatim
13293 #: ../src/guestfs-actions.pod:5011
13294 #, no-wrap
13295 msgid ""
13296 " char *\n"
13297 " guestfs_pread_device (guestfs_h *g,\n"
13298 "                       const char *device,\n"
13299 "                       int count,\n"
13300 "                       int64_t offset,\n"
13301 "                       size_t *size_r);\n"
13302 "\n"
13303 msgstr ""
13304
13305 #. type: textblock
13306 #: ../src/guestfs-actions.pod:5018 ../fish/guestfish-actions.pod:3351
13307 msgid ""
13308 "This command lets you read part of a file.  It reads C<count> bytes of "
13309 "C<device>, starting at C<offset>."
13310 msgstr ""
13311
13312 #. type: textblock
13313 #: ../src/guestfs-actions.pod:5024
13314 msgid "See also C<guestfs_pread>."
13315 msgstr ""
13316
13317 #. type: textblock
13318 #: ../src/guestfs-actions.pod:5033
13319 msgid "(Added in 1.5.21)"
13320 msgstr ""
13321
13322 #. type: =head2
13323 #: ../src/guestfs-actions.pod:5035
13324 msgid "guestfs_pvcreate"
13325 msgstr ""
13326
13327 #. type: verbatim
13328 #: ../src/guestfs-actions.pod:5037
13329 #, no-wrap
13330 msgid ""
13331 " int\n"
13332 " guestfs_pvcreate (guestfs_h *g,\n"
13333 "                   const char *device);\n"
13334 "\n"
13335 msgstr ""
13336
13337 #. type: textblock
13338 #: ../src/guestfs-actions.pod:5041 ../fish/guestfish-actions.pod:3366
13339 msgid ""
13340 "This creates an LVM physical volume on the named C<device>, where C<device> "
13341 "should usually be a partition name such as C</dev/sda1>."
13342 msgstr ""
13343
13344 #. type: =head2
13345 #: ../src/guestfs-actions.pod:5049
13346 msgid "guestfs_pvremove"
13347 msgstr ""
13348
13349 #. type: verbatim
13350 #: ../src/guestfs-actions.pod:5051
13351 #, no-wrap
13352 msgid ""
13353 " int\n"
13354 " guestfs_pvremove (guestfs_h *g,\n"
13355 "                   const char *device);\n"
13356 "\n"
13357 msgstr ""
13358
13359 #. type: textblock
13360 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3374
13361 msgid ""
13362 "This wipes a physical volume C<device> so that LVM will no longer recognise "
13363 "it."
13364 msgstr ""
13365
13366 #. type: textblock
13367 #: ../src/guestfs-actions.pod:5058 ../fish/guestfish-actions.pod:3377
13368 msgid ""
13369 "The implementation uses the C<pvremove> command which refuses to wipe "
13370 "physical volumes that contain any volume groups, so you have to remove those "
13371 "first."
13372 msgstr ""
13373
13374 #. type: =head2
13375 #: ../src/guestfs-actions.pod:5066
13376 msgid "guestfs_pvresize"
13377 msgstr ""
13378
13379 #. type: verbatim
13380 #: ../src/guestfs-actions.pod:5068
13381 #, no-wrap
13382 msgid ""
13383 " int\n"
13384 " guestfs_pvresize (guestfs_h *g,\n"
13385 "                   const char *device);\n"
13386 "\n"
13387 msgstr ""
13388
13389 #. type: textblock
13390 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3385
13391 msgid ""
13392 "This resizes (expands or shrinks) an existing LVM physical volume to match "
13393 "the new size of the underlying device."
13394 msgstr ""
13395
13396 #. type: =head2
13397 #: ../src/guestfs-actions.pod:5079
13398 msgid "guestfs_pvresize_size"
13399 msgstr ""
13400
13401 #. type: verbatim
13402 #: ../src/guestfs-actions.pod:5081
13403 #, no-wrap
13404 msgid ""
13405 " int\n"
13406 " guestfs_pvresize_size (guestfs_h *g,\n"
13407 "                        const char *device,\n"
13408 "                        int64_t size);\n"
13409 "\n"
13410 msgstr ""
13411
13412 #. type: textblock
13413 #: ../src/guestfs-actions.pod:5086
13414 msgid ""
13415 "This command is the same as C<guestfs_pvresize> except that it allows you to "
13416 "specify the new size (in bytes) explicitly."
13417 msgstr ""
13418
13419 #. type: =head2
13420 #: ../src/guestfs-actions.pod:5093
13421 msgid "guestfs_pvs"
13422 msgstr ""
13423
13424 #. type: verbatim
13425 #: ../src/guestfs-actions.pod:5095
13426 #, no-wrap
13427 msgid ""
13428 " char **\n"
13429 " guestfs_pvs (guestfs_h *g);\n"
13430 "\n"
13431 msgstr ""
13432
13433 #. type: textblock
13434 #: ../src/guestfs-actions.pod:5098 ../fish/guestfish-actions.pod:3399
13435 msgid ""
13436 "List all the physical volumes detected.  This is the equivalent of the "
13437 "L<pvs(8)> command."
13438 msgstr ""
13439
13440 #. type: textblock
13441 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3402
13442 msgid ""
13443 "This returns a list of just the device names that contain PVs "
13444 "(eg. C</dev/sda2>)."
13445 msgstr ""
13446
13447 #. type: textblock
13448 #: ../src/guestfs-actions.pod:5104
13449 msgid "See also C<guestfs_pvs_full>."
13450 msgstr ""
13451
13452 #. type: =head2
13453 #: ../src/guestfs-actions.pod:5112
13454 msgid "guestfs_pvs_full"
13455 msgstr ""
13456
13457 #. type: verbatim
13458 #: ../src/guestfs-actions.pod:5114
13459 #, no-wrap
13460 msgid ""
13461 " struct guestfs_lvm_pv_list *\n"
13462 " guestfs_pvs_full (guestfs_h *g);\n"
13463 "\n"
13464 msgstr ""
13465
13466 #. type: textblock
13467 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3411
13468 msgid ""
13469 "List all the physical volumes detected.  This is the equivalent of the "
13470 "L<pvs(8)> command.  The \"full\" version includes all fields."
13471 msgstr ""
13472
13473 #. type: textblock
13474 #: ../src/guestfs-actions.pod:5120
13475 msgid ""
13476 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
13477 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
13478 "use>."
13479 msgstr ""
13480
13481 #. type: =head2
13482 #: ../src/guestfs-actions.pod:5126
13483 msgid "guestfs_pvuuid"
13484 msgstr ""
13485
13486 #. type: verbatim
13487 #: ../src/guestfs-actions.pod:5128
13488 #, no-wrap
13489 msgid ""
13490 " char *\n"
13491 " guestfs_pvuuid (guestfs_h *g,\n"
13492 "                 const char *device);\n"
13493 "\n"
13494 msgstr ""
13495
13496 #. type: textblock
13497 #: ../src/guestfs-actions.pod:5132 ../fish/guestfish-actions.pod:3418
13498 msgid "This command returns the UUID of the LVM PV C<device>."
13499 msgstr ""
13500
13501 #. type: =head2
13502 #: ../src/guestfs-actions.pod:5139
13503 msgid "guestfs_pwrite"
13504 msgstr ""
13505
13506 #. type: verbatim
13507 #: ../src/guestfs-actions.pod:5141
13508 #, no-wrap
13509 msgid ""
13510 " int\n"
13511 " guestfs_pwrite (guestfs_h *g,\n"
13512 "                 const char *path,\n"
13513 "                 const char *content,\n"
13514 "                 size_t content_size,\n"
13515 "                 int64_t offset);\n"
13516 "\n"
13517 msgstr ""
13518
13519 #. type: textblock
13520 #: ../src/guestfs-actions.pod:5148 ../fish/guestfish-actions.pod:3424
13521 msgid ""
13522 "This command writes to part of a file.  It writes the data buffer C<content> "
13523 "to the file C<path> starting at offset C<offset>."
13524 msgstr ""
13525
13526 #. type: textblock
13527 #: ../src/guestfs-actions.pod:5151 ../fish/guestfish-actions.pod:3427
13528 msgid ""
13529 "This command implements the L<pwrite(2)> system call, and like that system "
13530 "call it may not write the full data requested.  The return value is the "
13531 "number of bytes that were actually written to the file.  This could even be "
13532 "0, although short writes are unlikely for regular files in ordinary "
13533 "circumstances."
13534 msgstr ""
13535
13536 #. type: textblock
13537 #: ../src/guestfs-actions.pod:5157
13538 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
13539 msgstr ""
13540
13541 #. type: =head2
13542 #: ../src/guestfs-actions.pod:5166
13543 msgid "guestfs_pwrite_device"
13544 msgstr ""
13545
13546 #. type: verbatim
13547 #: ../src/guestfs-actions.pod:5168
13548 #, no-wrap
13549 msgid ""
13550 " int\n"
13551 " guestfs_pwrite_device (guestfs_h *g,\n"
13552 "                        const char *device,\n"
13553 "                        const char *content,\n"
13554 "                        size_t content_size,\n"
13555 "                        int64_t offset);\n"
13556 "\n"
13557 msgstr ""
13558
13559 #. type: textblock
13560 #: ../src/guestfs-actions.pod:5175 ../fish/guestfish-actions.pod:3442
13561 msgid ""
13562 "This command writes to part of a device.  It writes the data buffer "
13563 "C<content> to C<device> starting at offset C<offset>."
13564 msgstr ""
13565
13566 #. type: textblock
13567 #: ../src/guestfs-actions.pod:5178 ../fish/guestfish-actions.pod:3445
13568 msgid ""
13569 "This command implements the L<pwrite(2)> system call, and like that system "
13570 "call it may not write the full data requested (although short writes to disk "
13571 "devices and partitions are probably impossible with standard Linux kernels)."
13572 msgstr ""
13573
13574 #. type: textblock
13575 #: ../src/guestfs-actions.pod:5183
13576 msgid "See also C<guestfs_pwrite>."
13577 msgstr ""
13578
13579 #. type: textblock
13580 #: ../src/guestfs-actions.pod:5190
13581 msgid "(Added in 1.5.20)"
13582 msgstr ""
13583
13584 #. type: =head2
13585 #: ../src/guestfs-actions.pod:5192
13586 msgid "guestfs_read_file"
13587 msgstr ""
13588
13589 #. type: verbatim
13590 #: ../src/guestfs-actions.pod:5194
13591 #, no-wrap
13592 msgid ""
13593 " char *\n"
13594 " guestfs_read_file (guestfs_h *g,\n"
13595 "                    const char *path,\n"
13596 "                    size_t *size_r);\n"
13597 "\n"
13598 msgstr ""
13599
13600 #. type: textblock
13601 #: ../src/guestfs-actions.pod:5199 ../fish/guestfish-actions.pod:3459
13602 msgid "This calls returns the contents of the file C<path> as a buffer."
13603 msgstr ""
13604
13605 #. type: textblock
13606 #: ../src/guestfs-actions.pod:5202
13607 msgid ""
13608 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
13609 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
13610 "function is limited in the total size of file that can be handled."
13611 msgstr ""
13612
13613 #. type: textblock
13614 #: ../src/guestfs-actions.pod:5214
13615 msgid "(Added in 1.0.63)"
13616 msgstr ""
13617
13618 #. type: =head2
13619 #: ../src/guestfs-actions.pod:5216
13620 msgid "guestfs_read_lines"
13621 msgstr ""
13622
13623 #. type: verbatim
13624 #: ../src/guestfs-actions.pod:5218
13625 #, no-wrap
13626 msgid ""
13627 " char **\n"
13628 " guestfs_read_lines (guestfs_h *g,\n"
13629 "                     const char *path);\n"
13630 "\n"
13631 msgstr ""
13632
13633 #. type: textblock
13634 #: ../src/guestfs-actions.pod:5224 ../fish/guestfish-actions.pod:3476
13635 msgid ""
13636 "The file contents are returned as a list of lines.  Trailing C<LF> and "
13637 "C<CRLF> character sequences are I<not> returned."
13638 msgstr ""
13639
13640 #. type: textblock
13641 #: ../src/guestfs-actions.pod:5227
13642 msgid ""
13643 "Note that this function cannot correctly handle binary files (specifically, "
13644 "files containing C<\\0> character which is treated as end of line).  For "
13645 "those you need to use the C<guestfs_read_file> function which has a more "
13646 "complex interface."
13647 msgstr ""
13648
13649 #. type: =head2
13650 #: ../src/guestfs-actions.pod:5238
13651 msgid "guestfs_readdir"
13652 msgstr ""
13653
13654 #. type: verbatim
13655 #: ../src/guestfs-actions.pod:5240
13656 #, no-wrap
13657 msgid ""
13658 " struct guestfs_dirent_list *\n"
13659 " guestfs_readdir (guestfs_h *g,\n"
13660 "                  const char *dir);\n"
13661 "\n"
13662 msgstr ""
13663
13664 #. type: textblock
13665 #: ../src/guestfs-actions.pod:5244 ../fish/guestfish-actions.pod:3488
13666 msgid "This returns the list of directory entries in directory C<dir>."
13667 msgstr ""
13668
13669 #. type: textblock
13670 #: ../src/guestfs-actions.pod:5246 ../fish/guestfish-actions.pod:3490
13671 msgid ""
13672 "All entries in the directory are returned, including C<.> and C<..>.  The "
13673 "entries are I<not> sorted, but returned in the same order as the underlying "
13674 "filesystem."
13675 msgstr ""
13676
13677 #. type: textblock
13678 #: ../src/guestfs-actions.pod:5250 ../fish/guestfish-actions.pod:3494
13679 msgid ""
13680 "Also this call returns basic file type information about each file.  The "
13681 "C<ftyp> field will contain one of the following characters:"
13682 msgstr ""
13683
13684 #. type: =item
13685 #: ../src/guestfs-actions.pod:5255 ../fish/guestfish-actions.pod:3499
13686 msgid "'b'"
13687 msgstr ""
13688
13689 #. type: textblock
13690 #: ../src/guestfs-actions.pod:5257 ../fish/guestfish-actions.pod:3501
13691 msgid "Block special"
13692 msgstr ""
13693
13694 #. type: =item
13695 #: ../src/guestfs-actions.pod:5259 ../fish/guestfish-actions.pod:3503
13696 msgid "'c'"
13697 msgstr ""
13698
13699 #. type: textblock
13700 #: ../src/guestfs-actions.pod:5261 ../fish/guestfish-actions.pod:3505
13701 msgid "Char special"
13702 msgstr ""
13703
13704 #. type: =item
13705 #: ../src/guestfs-actions.pod:5263 ../fish/guestfish-actions.pod:3507
13706 msgid "'d'"
13707 msgstr ""
13708
13709 #. type: textblock
13710 #: ../src/guestfs-actions.pod:5265 ../fish/guestfish-actions.pod:3509
13711 msgid "Directory"
13712 msgstr ""
13713
13714 #. type: =item
13715 #: ../src/guestfs-actions.pod:5267 ../fish/guestfish-actions.pod:3511
13716 msgid "'f'"
13717 msgstr ""
13718
13719 #. type: textblock
13720 #: ../src/guestfs-actions.pod:5269 ../fish/guestfish-actions.pod:3513
13721 msgid "FIFO (named pipe)"
13722 msgstr ""
13723
13724 #. type: =item
13725 #: ../src/guestfs-actions.pod:5271 ../fish/guestfish-actions.pod:3515
13726 msgid "'l'"
13727 msgstr ""
13728
13729 #. type: textblock
13730 #: ../src/guestfs-actions.pod:5273 ../fish/guestfish-actions.pod:3517
13731 msgid "Symbolic link"
13732 msgstr ""
13733
13734 #. type: =item
13735 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3519
13736 msgid "'r'"
13737 msgstr ""
13738
13739 #. type: textblock
13740 #: ../src/guestfs-actions.pod:5277 ../fish/guestfish-actions.pod:3521
13741 msgid "Regular file"
13742 msgstr ""
13743
13744 #. type: =item
13745 #: ../src/guestfs-actions.pod:5279 ../fish/guestfish-actions.pod:3523
13746 msgid "'s'"
13747 msgstr ""
13748
13749 #. type: textblock
13750 #: ../src/guestfs-actions.pod:5281 ../fish/guestfish-actions.pod:3525
13751 msgid "Socket"
13752 msgstr ""
13753
13754 #. type: =item
13755 #: ../src/guestfs-actions.pod:5283 ../fish/guestfish-actions.pod:3527
13756 msgid "'u'"
13757 msgstr ""
13758
13759 #. type: textblock
13760 #: ../src/guestfs-actions.pod:5285 ../fish/guestfish-actions.pod:3529
13761 msgid "Unknown file type"
13762 msgstr ""
13763
13764 #. type: =item
13765 #: ../src/guestfs-actions.pod:5287 ../fish/guestfish-actions.pod:3531
13766 msgid "'?'"
13767 msgstr ""
13768
13769 #. type: textblock
13770 #: ../src/guestfs-actions.pod:5289 ../fish/guestfish-actions.pod:3533
13771 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
13772 msgstr ""
13773
13774 #. type: textblock
13775 #: ../src/guestfs-actions.pod:5294
13776 msgid ""
13777 "This function is primarily intended for use by programs.  To get a simple "
13778 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
13779 "consumption, use C<guestfs_ll>."
13780 msgstr ""
13781
13782 #. type: textblock
13783 #: ../src/guestfs-actions.pod:5298
13784 msgid ""
13785 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
13786 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
13787 "use>."
13788 msgstr ""
13789
13790 #. type: =head2
13791 #: ../src/guestfs-actions.pod:5304
13792 msgid "guestfs_readlink"
13793 msgstr ""
13794
13795 #. type: verbatim
13796 #: ../src/guestfs-actions.pod:5306
13797 #, no-wrap
13798 msgid ""
13799 " char *\n"
13800 " guestfs_readlink (guestfs_h *g,\n"
13801 "                   const char *path);\n"
13802 "\n"
13803 msgstr ""
13804
13805 #. type: textblock
13806 #: ../src/guestfs-actions.pod:5310 ../fish/guestfish-actions.pod:3546
13807 msgid "This command reads the target of a symbolic link."
13808 msgstr ""
13809
13810 #. type: =head2
13811 #: ../src/guestfs-actions.pod:5317
13812 msgid "guestfs_readlinklist"
13813 msgstr ""
13814
13815 #. type: verbatim
13816 #: ../src/guestfs-actions.pod:5319
13817 #, no-wrap
13818 msgid ""
13819 " char **\n"
13820 " guestfs_readlinklist (guestfs_h *g,\n"
13821 "                       const char *path,\n"
13822 "                       char *const *names);\n"
13823 "\n"
13824 msgstr ""
13825
13826 #. type: textblock
13827 #: ../src/guestfs-actions.pod:5324 ../fish/guestfish-actions.pod:3552
13828 msgid ""
13829 "This call allows you to do a C<readlink> operation on multiple files, where "
13830 "all files are in the directory C<path>.  C<names> is the list of files from "
13831 "this directory."
13832 msgstr ""
13833
13834 #. type: textblock
13835 #: ../src/guestfs-actions.pod:5328 ../fish/guestfish-actions.pod:3556
13836 msgid ""
13837 "On return you get a list of strings, with a one-to-one correspondence to the "
13838 "C<names> list.  Each string is the value of the symbolic link."
13839 msgstr ""
13840
13841 #. type: textblock
13842 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3560
13843 msgid ""
13844 "If the C<readlink(2)> operation fails on any name, then the corresponding "
13845 "result string is the empty string C<\"\">.  However the whole operation is "
13846 "completed even if there were C<readlink(2)> errors, and so you can call this "
13847 "function with names where you don't know if they are symbolic links already "
13848 "(albeit slightly less efficient)."
13849 msgstr ""
13850
13851 #. type: textblock
13852 #: ../src/guestfs-actions.pod:5339 ../fish/guestfish-actions.pod:3567
13853 msgid ""
13854 "This call is intended for programs that want to efficiently list a directory "
13855 "contents without making many round-trips.  Very long directory listings "
13856 "might cause the protocol message size to be exceeded, causing this call to "
13857 "fail.  The caller must split up such requests into smaller groups of names."
13858 msgstr ""
13859
13860 #. type: =head2
13861 #: ../src/guestfs-actions.pod:5352
13862 msgid "guestfs_realpath"
13863 msgstr ""
13864
13865 #. type: verbatim
13866 #: ../src/guestfs-actions.pod:5354
13867 #, no-wrap
13868 msgid ""
13869 " char *\n"
13870 " guestfs_realpath (guestfs_h *g,\n"
13871 "                   const char *path);\n"
13872 "\n"
13873 msgstr ""
13874
13875 #. type: textblock
13876 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3578
13877 msgid ""
13878 "Return the canonicalized absolute pathname of C<path>.  The returned path "
13879 "has no C<.>, C<..> or symbolic link path elements."
13880 msgstr ""
13881
13882 #. type: =head2
13883 #: ../src/guestfs-actions.pod:5366
13884 msgid "guestfs_removexattr"
13885 msgstr ""
13886
13887 #. type: verbatim
13888 #: ../src/guestfs-actions.pod:5368
13889 #, no-wrap
13890 msgid ""
13891 " int\n"
13892 " guestfs_removexattr (guestfs_h *g,\n"
13893 "                      const char *xattr,\n"
13894 "                      const char *path);\n"
13895 "\n"
13896 msgstr ""
13897
13898 #. type: textblock
13899 #: ../src/guestfs-actions.pod:5373 ../fish/guestfish-actions.pod:3585
13900 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
13901 msgstr ""
13902
13903 #. type: textblock
13904 #: ../src/guestfs-actions.pod:5376
13905 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
13906 msgstr ""
13907
13908 #. type: =head2
13909 #: ../src/guestfs-actions.pod:5382
13910 msgid "guestfs_resize2fs"
13911 msgstr ""
13912
13913 #. type: verbatim
13914 #: ../src/guestfs-actions.pod:5384
13915 #, no-wrap
13916 msgid ""
13917 " int\n"
13918 " guestfs_resize2fs (guestfs_h *g,\n"
13919 "                    const char *device);\n"
13920 "\n"
13921 msgstr ""
13922
13923 #. type: textblock
13924 #: ../src/guestfs-actions.pod:5388 ../fish/guestfish-actions.pod:3594
13925 msgid ""
13926 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
13927 "underlying device."
13928 msgstr ""
13929
13930 #. type: textblock
13931 #: ../src/guestfs-actions.pod:5391
13932 msgid ""
13933 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
13934 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
13935 "sometimes gives an error about this and sometimes not.  In any case, it is "
13936 "always safe to call C<guestfs_e2fsck_f> before calling this function."
13937 msgstr ""
13938
13939 #. type: =head2
13940 #: ../src/guestfs-actions.pod:5401
13941 msgid "guestfs_resize2fs_size"
13942 msgstr ""
13943
13944 #. type: verbatim
13945 #: ../src/guestfs-actions.pod:5403
13946 #, no-wrap
13947 msgid ""
13948 " int\n"
13949 " guestfs_resize2fs_size (guestfs_h *g,\n"
13950 "                         const char *device,\n"
13951 "                         int64_t size);\n"
13952 "\n"
13953 msgstr ""
13954
13955 #. type: textblock
13956 #: ../src/guestfs-actions.pod:5408
13957 msgid ""
13958 "This command is the same as C<guestfs_resize2fs> except that it allows you "
13959 "to specify the new size (in bytes) explicitly."
13960 msgstr ""
13961
13962 #. type: =head2
13963 #: ../src/guestfs-actions.pod:5415
13964 msgid "guestfs_rm"
13965 msgstr ""
13966
13967 #. type: verbatim
13968 #: ../src/guestfs-actions.pod:5417
13969 #, no-wrap
13970 msgid ""
13971 " int\n"
13972 " guestfs_rm (guestfs_h *g,\n"
13973 "             const char *path);\n"
13974 "\n"
13975 msgstr ""
13976
13977 #. type: textblock
13978 #: ../src/guestfs-actions.pod:5421 ../fish/guestfish-actions.pod:3614
13979 msgid "Remove the single file C<path>."
13980 msgstr ""
13981
13982 #. type: =head2
13983 #: ../src/guestfs-actions.pod:5427
13984 msgid "guestfs_rm_rf"
13985 msgstr ""
13986
13987 #. type: verbatim
13988 #: ../src/guestfs-actions.pod:5429
13989 #, no-wrap
13990 msgid ""
13991 " int\n"
13992 " guestfs_rm_rf (guestfs_h *g,\n"
13993 "                const char *path);\n"
13994 "\n"
13995 msgstr ""
13996
13997 #. type: textblock
13998 #: ../src/guestfs-actions.pod:5433 ../fish/guestfish-actions.pod:3620
13999 msgid ""
14000 "Remove the file or directory C<path>, recursively removing the contents if "
14001 "its a directory.  This is like the C<rm -rf> shell command."
14002 msgstr ""
14003
14004 #. type: =head2
14005 #: ../src/guestfs-actions.pod:5441
14006 msgid "guestfs_rmdir"
14007 msgstr ""
14008
14009 #. type: verbatim
14010 #: ../src/guestfs-actions.pod:5443
14011 #, no-wrap
14012 msgid ""
14013 " int\n"
14014 " guestfs_rmdir (guestfs_h *g,\n"
14015 "                const char *path);\n"
14016 "\n"
14017 msgstr ""
14018
14019 #. type: textblock
14020 #: ../src/guestfs-actions.pod:5447 ../fish/guestfish-actions.pod:3628
14021 msgid "Remove the single directory C<path>."
14022 msgstr ""
14023
14024 #. type: =head2
14025 #: ../src/guestfs-actions.pod:5453
14026 msgid "guestfs_rmmountpoint"
14027 msgstr ""
14028
14029 #. type: verbatim
14030 #: ../src/guestfs-actions.pod:5455
14031 #, no-wrap
14032 msgid ""
14033 " int\n"
14034 " guestfs_rmmountpoint (guestfs_h *g,\n"
14035 "                       const char *exemptpath);\n"
14036 "\n"
14037 msgstr ""
14038
14039 #. type: textblock
14040 #: ../src/guestfs-actions.pod:5459
14041 msgid ""
14042 "This calls removes a mountpoint that was previously created with "
14043 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
14044 msgstr ""
14045
14046 #. type: =head2
14047 #: ../src/guestfs-actions.pod:5467
14048 msgid "guestfs_scrub_device"
14049 msgstr ""
14050
14051 #. type: verbatim
14052 #: ../src/guestfs-actions.pod:5469
14053 #, no-wrap
14054 msgid ""
14055 " int\n"
14056 " guestfs_scrub_device (guestfs_h *g,\n"
14057 "                       const char *device);\n"
14058 "\n"
14059 msgstr ""
14060
14061 #. type: textblock
14062 #: ../src/guestfs-actions.pod:5473 ../fish/guestfish-actions.pod:3642
14063 msgid ""
14064 "This command writes patterns over C<device> to make data retrieval more "
14065 "difficult."
14066 msgstr ""
14067
14068 #. type: textblock
14069 #: ../src/guestfs-actions.pod:5476 ../src/guestfs-actions.pod:5497 ../src/guestfs-actions.pod:5516 ../fish/guestfish-actions.pod:3645 ../fish/guestfish-actions.pod:3660 ../fish/guestfish-actions.pod:3673
14070 msgid ""
14071 "It is an interface to the L<scrub(1)> program.  See that manual page for "
14072 "more details."
14073 msgstr ""
14074
14075 #. type: textblock
14076 #: ../src/guestfs-actions.pod:5484 ../src/guestfs-actions.pod:5502 ../src/guestfs-actions.pod:5521
14077 msgid "(Added in 1.0.52)"
14078 msgstr ""
14079
14080 #. type: =head2
14081 #: ../src/guestfs-actions.pod:5486
14082 msgid "guestfs_scrub_file"
14083 msgstr ""
14084
14085 #. type: verbatim
14086 #: ../src/guestfs-actions.pod:5488
14087 #, no-wrap
14088 msgid ""
14089 " int\n"
14090 " guestfs_scrub_file (guestfs_h *g,\n"
14091 "                     const char *file);\n"
14092 "\n"
14093 msgstr ""
14094
14095 #. type: textblock
14096 #: ../src/guestfs-actions.pod:5492 ../fish/guestfish-actions.pod:3655
14097 msgid ""
14098 "This command writes patterns over a file to make data retrieval more "
14099 "difficult."
14100 msgstr ""
14101
14102 #. type: textblock
14103 #: ../src/guestfs-actions.pod:5495 ../fish/guestfish-actions.pod:3658
14104 msgid "The file is I<removed> after scrubbing."
14105 msgstr ""
14106
14107 #. type: =head2
14108 #: ../src/guestfs-actions.pod:5504
14109 msgid "guestfs_scrub_freespace"
14110 msgstr ""
14111
14112 #. type: verbatim
14113 #: ../src/guestfs-actions.pod:5506
14114 #, no-wrap
14115 msgid ""
14116 " int\n"
14117 " guestfs_scrub_freespace (guestfs_h *g,\n"
14118 "                          const char *dir);\n"
14119 "\n"
14120 msgstr ""
14121
14122 #. type: textblock
14123 #: ../src/guestfs-actions.pod:5510
14124 msgid ""
14125 "This command creates the directory C<dir> and then fills it with files until "
14126 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
14127 "and deletes them.  The intention is to scrub any free space on the partition "
14128 "containing C<dir>."
14129 msgstr ""
14130
14131 #. type: =head2
14132 #: ../src/guestfs-actions.pod:5523
14133 msgid "guestfs_set_append"
14134 msgstr ""
14135
14136 #. type: verbatim
14137 #: ../src/guestfs-actions.pod:5525
14138 #, no-wrap
14139 msgid ""
14140 " int\n"
14141 " guestfs_set_append (guestfs_h *g,\n"
14142 "                     const char *append);\n"
14143 "\n"
14144 msgstr ""
14145
14146 #. type: textblock
14147 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3682
14148 msgid ""
14149 "This function is used to add additional options to the guest kernel command "
14150 "line."
14151 msgstr ""
14152
14153 #. type: textblock
14154 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3685
14155 msgid ""
14156 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
14157 "environment variable."
14158 msgstr ""
14159
14160 #. type: textblock
14161 #: ../src/guestfs-actions.pod:5535 ../fish/guestfish-actions.pod:3688
14162 msgid ""
14163 "Setting C<append> to C<NULL> means I<no> additional options are passed "
14164 "(libguestfs always adds a few of its own)."
14165 msgstr ""
14166
14167 #. type: =head2
14168 #: ../src/guestfs-actions.pod:5542
14169 msgid "guestfs_set_autosync"
14170 msgstr ""
14171
14172 #. type: verbatim
14173 #: ../src/guestfs-actions.pod:5544
14174 #, no-wrap
14175 msgid ""
14176 " int\n"
14177 " guestfs_set_autosync (guestfs_h *g,\n"
14178 "                       int autosync);\n"
14179 "\n"
14180 msgstr ""
14181
14182 #. type: textblock
14183 #: ../src/guestfs-actions.pod:5548
14184 msgid ""
14185 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
14186 "effort attempt to run C<guestfs_umount_all> followed by C<guestfs_sync> when "
14187 "the handle is closed (also if the program exits without closing handles)."
14188 msgstr ""
14189
14190 #. type: textblock
14191 #: ../src/guestfs-actions.pod:5553 ../fish/guestfish-actions.pod:3702
14192 msgid ""
14193 "This is enabled by default (since libguestfs 1.5.24, previously it was "
14194 "disabled by default)."
14195 msgstr ""
14196
14197 #. type: =head2
14198 #: ../src/guestfs-actions.pod:5560
14199 msgid "guestfs_set_direct"
14200 msgstr ""
14201
14202 #. type: verbatim
14203 #: ../src/guestfs-actions.pod:5562
14204 #, no-wrap
14205 msgid ""
14206 " int\n"
14207 " guestfs_set_direct (guestfs_h *g,\n"
14208 "                     int direct);\n"
14209 "\n"
14210 msgstr ""
14211
14212 #. type: textblock
14213 #: ../src/guestfs-actions.pod:5566 ../fish/guestfish-actions.pod:3711
14214 msgid ""
14215 "If the direct appliance mode flag is enabled, then stdin and stdout are "
14216 "passed directly through to the appliance once it is launched."
14217 msgstr ""
14218
14219 #. type: textblock
14220 #: ../src/guestfs-actions.pod:5570
14221 msgid ""
14222 "One consequence of this is that log messages aren't caught by the library "
14223 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
14224 "stdout."
14225 msgstr ""
14226
14227 #. type: textblock
14228 #: ../src/guestfs-actions.pod:5574 ../fish/guestfish-actions.pod:3719
14229 msgid "You probably don't want to use this unless you know what you are doing."
14230 msgstr ""
14231
14232 #. type: textblock
14233 #: ../src/guestfs-actions.pod:5577 ../fish/guestfish-actions.pod:3722
14234 msgid "The default is disabled."
14235 msgstr ""
14236
14237 #. type: =head2
14238 #: ../src/guestfs-actions.pod:5583
14239 msgid "guestfs_set_e2label"
14240 msgstr ""
14241
14242 #. type: verbatim
14243 #: ../src/guestfs-actions.pod:5585
14244 #, no-wrap
14245 msgid ""
14246 " int\n"
14247 " guestfs_set_e2label (guestfs_h *g,\n"
14248 "                      const char *device,\n"
14249 "                      const char *label);\n"
14250 "\n"
14251 msgstr ""
14252
14253 #. type: textblock
14254 #: ../src/guestfs-actions.pod:5590 ../fish/guestfish-actions.pod:3728
14255 msgid ""
14256 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
14257 "C<label>.  Filesystem labels are limited to 16 characters."
14258 msgstr ""
14259
14260 #. type: textblock
14261 #: ../src/guestfs-actions.pod:5594
14262 msgid ""
14263 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
14264 "the existing label on a filesystem."
14265 msgstr ""
14266
14267 #. type: =head2
14268 #: ../src/guestfs-actions.pod:5601
14269 msgid "guestfs_set_e2uuid"
14270 msgstr ""
14271
14272 #. type: verbatim
14273 #: ../src/guestfs-actions.pod:5603
14274 #, no-wrap
14275 msgid ""
14276 " int\n"
14277 " guestfs_set_e2uuid (guestfs_h *g,\n"
14278 "                     const char *device,\n"
14279 "                     const char *uuid);\n"
14280 "\n"
14281 msgstr ""
14282
14283 #. type: textblock
14284 #: ../src/guestfs-actions.pod:5608 ../fish/guestfish-actions.pod:3739
14285 msgid ""
14286 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
14287 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
14288 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
14289 msgstr ""
14290
14291 #. type: textblock
14292 #: ../src/guestfs-actions.pod:5613
14293 msgid ""
14294 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
14295 "the existing UUID of a filesystem."
14296 msgstr ""
14297
14298 #. type: =head2
14299 #: ../src/guestfs-actions.pod:5620
14300 msgid "guestfs_set_memsize"
14301 msgstr ""
14302
14303 #. type: verbatim
14304 #: ../src/guestfs-actions.pod:5622
14305 #, no-wrap
14306 msgid ""
14307 " int\n"
14308 " guestfs_set_memsize (guestfs_h *g,\n"
14309 "                      int memsize);\n"
14310 "\n"
14311 msgstr ""
14312
14313 #. type: textblock
14314 #: ../src/guestfs-actions.pod:5626
14315 msgid ""
14316 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
14317 "This only has any effect if called before C<guestfs_launch>."
14318 msgstr ""
14319
14320 #. type: textblock
14321 #: ../src/guestfs-actions.pod:5630 ../fish/guestfish-actions.pod:3757
14322 msgid ""
14323 "You can also change this by setting the environment variable "
14324 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
14325 msgstr ""
14326
14327 #. type: =head2
14328 #: ../src/guestfs-actions.pod:5641
14329 msgid "guestfs_set_network"
14330 msgstr ""
14331
14332 #. type: verbatim
14333 #: ../src/guestfs-actions.pod:5643
14334 #, no-wrap
14335 msgid ""
14336 " int\n"
14337 " guestfs_set_network (guestfs_h *g,\n"
14338 "                      int network);\n"
14339 "\n"
14340 msgstr ""
14341
14342 #. type: textblock
14343 #: ../src/guestfs-actions.pod:5647 ../fish/guestfish-actions.pod:3770
14344 msgid ""
14345 "If C<network> is true, then the network is enabled in the libguestfs "
14346 "appliance.  The default is false."
14347 msgstr ""
14348
14349 #. type: textblock
14350 #: ../src/guestfs-actions.pod:5650 ../fish/guestfish-actions.pod:3773
14351 msgid ""
14352 "This affects whether commands are able to access the network (see "
14353 "L<guestfs(3)/RUNNING COMMANDS>)."
14354 msgstr ""
14355
14356 #. type: textblock
14357 #: ../src/guestfs-actions.pod:5653
14358 msgid ""
14359 "You must call this before calling C<guestfs_launch>, otherwise it has no "
14360 "effect."
14361 msgstr ""
14362
14363 #. type: =head2
14364 #: ../src/guestfs-actions.pod:5660
14365 msgid "guestfs_set_path"
14366 msgstr ""
14367
14368 #. type: verbatim
14369 #: ../src/guestfs-actions.pod:5662
14370 #, no-wrap
14371 msgid ""
14372 " int\n"
14373 " guestfs_set_path (guestfs_h *g,\n"
14374 "                   const char *searchpath);\n"
14375 "\n"
14376 msgstr ""
14377
14378 #. type: textblock
14379 #: ../src/guestfs-actions.pod:5666 ../fish/guestfish-actions.pod:3785
14380 msgid "Set the path that libguestfs searches for kernel and initrd.img."
14381 msgstr ""
14382
14383 #. type: textblock
14384 #: ../src/guestfs-actions.pod:5668 ../fish/guestfish-actions.pod:3787
14385 msgid ""
14386 "The default is C<$libdir/guestfs> unless overridden by setting "
14387 "C<LIBGUESTFS_PATH> environment variable."
14388 msgstr ""
14389
14390 #. type: textblock
14391 #: ../src/guestfs-actions.pod:5671 ../fish/guestfish-actions.pod:3790
14392 msgid "Setting C<path> to C<NULL> restores the default path."
14393 msgstr ""
14394
14395 #. type: =head2
14396 #: ../src/guestfs-actions.pod:5677
14397 msgid "guestfs_set_qemu"
14398 msgstr ""
14399
14400 #. type: verbatim
14401 #: ../src/guestfs-actions.pod:5679
14402 #, no-wrap
14403 msgid ""
14404 " int\n"
14405 " guestfs_set_qemu (guestfs_h *g,\n"
14406 "                   const char *qemu);\n"
14407 "\n"
14408 msgstr ""
14409
14410 #. type: textblock
14411 #: ../src/guestfs-actions.pod:5683 ../fish/guestfish-actions.pod:3798
14412 msgid "Set the qemu binary that we will use."
14413 msgstr ""
14414
14415 #. type: textblock
14416 #: ../src/guestfs-actions.pod:5685 ../fish/guestfish-actions.pod:3800
14417 msgid "The default is chosen when the library was compiled by the configure script."
14418 msgstr ""
14419
14420 #. type: textblock
14421 #: ../src/guestfs-actions.pod:5688 ../fish/guestfish-actions.pod:3803
14422 msgid ""
14423 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
14424 "variable."
14425 msgstr ""
14426
14427 #. type: textblock
14428 #: ../src/guestfs-actions.pod:5691 ../fish/guestfish-actions.pod:3806
14429 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
14430 msgstr ""
14431
14432 #. type: textblock
14433 #: ../src/guestfs-actions.pod:5693 ../fish/guestfish-actions.pod:3808
14434 msgid ""
14435 "Note that you should call this function as early as possible after creating "
14436 "the handle.  This is because some pre-launch operations depend on testing "
14437 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
14438 "don't retest features, and so you might see inconsistent results.  Using the "
14439 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
14440 "the qemu binary at the same time as the handle is created."
14441 msgstr ""
14442
14443 #. type: =head2
14444 #: ../src/guestfs-actions.pod:5705
14445 msgid "guestfs_set_recovery_proc"
14446 msgstr ""
14447
14448 #. type: verbatim
14449 #: ../src/guestfs-actions.pod:5707
14450 #, no-wrap
14451 msgid ""
14452 " int\n"
14453 " guestfs_set_recovery_proc (guestfs_h *g,\n"
14454 "                            int recoveryproc);\n"
14455 "\n"
14456 msgstr ""
14457
14458 #. type: textblock
14459 #: ../src/guestfs-actions.pod:5711
14460 msgid ""
14461 "If this is called with the parameter C<false> then C<guestfs_launch> does "
14462 "not create a recovery process.  The purpose of the recovery process is to "
14463 "stop runaway qemu processes in the case where the main program aborts "
14464 "abruptly."
14465 msgstr ""
14466
14467 #. type: textblock
14468 #: ../src/guestfs-actions.pod:5716
14469 msgid ""
14470 "This only has any effect if called before C<guestfs_launch>, and the default "
14471 "is true."
14472 msgstr ""
14473
14474 #. type: textblock
14475 #: ../src/guestfs-actions.pod:5719 ../fish/guestfish-actions.pod:3830
14476 msgid ""
14477 "About the only time when you would want to disable this is if the main "
14478 "process will fork itself into the background (\"daemonize\" itself).  In "
14479 "this case the recovery process thinks that the main program has disappeared "
14480 "and so kills qemu, which is not very helpful."
14481 msgstr ""
14482
14483 #. type: =head2
14484 #: ../src/guestfs-actions.pod:5729
14485 msgid "guestfs_set_selinux"
14486 msgstr ""
14487
14488 #. type: verbatim
14489 #: ../src/guestfs-actions.pod:5731
14490 #, no-wrap
14491 msgid ""
14492 " int\n"
14493 " guestfs_set_selinux (guestfs_h *g,\n"
14494 "                      int selinux);\n"
14495 "\n"
14496 msgstr ""
14497
14498 #. type: textblock
14499 #: ../src/guestfs-actions.pod:5735 ../fish/guestfish-actions.pod:3842
14500 msgid ""
14501 "This sets the selinux flag that is passed to the appliance at boot time.  "
14502 "The default is C<selinux=0> (disabled)."
14503 msgstr ""
14504
14505 #. type: textblock
14506 #: ../src/guestfs-actions.pod:5738 ../fish/guestfish-actions.pod:3845
14507 msgid ""
14508 "Note that if SELinux is enabled, it is always in Permissive mode "
14509 "(C<enforcing=0>)."
14510 msgstr ""
14511
14512 #. type: =head2
14513 #: ../src/guestfs-actions.pod:5748
14514 msgid "guestfs_set_trace"
14515 msgstr ""
14516
14517 #. type: verbatim
14518 #: ../src/guestfs-actions.pod:5750
14519 #, no-wrap
14520 msgid ""
14521 " int\n"
14522 " guestfs_set_trace (guestfs_h *g,\n"
14523 "                    int trace);\n"
14524 "\n"
14525 msgstr ""
14526
14527 #. type: textblock
14528 #: ../src/guestfs-actions.pod:5754 ../fish/guestfish-actions.pod:3857
14529 msgid ""
14530 "If the command trace flag is set to 1, then commands are printed on stderr "
14531 "before they are executed in a format which is very similar to the one used "
14532 "by guestfish.  In other words, you can run a program with this enabled, and "
14533 "you will get out a script which you can feed to guestfish to perform the "
14534 "same set of actions."
14535 msgstr ""
14536
14537 #. type: textblock
14538 #: ../src/guestfs-actions.pod:5761 ../fish/guestfish-actions.pod:3864
14539 msgid ""
14540 "If you want to trace C API calls into libguestfs (and other libraries) then "
14541 "possibly a better way is to use the external ltrace(1) command."
14542 msgstr ""
14543
14544 #. type: textblock
14545 #: ../src/guestfs-actions.pod:5765 ../fish/guestfish-actions.pod:3868
14546 msgid ""
14547 "Command traces are disabled unless the environment variable "
14548 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
14549 msgstr ""
14550
14551 #. type: =head2
14552 #: ../src/guestfs-actions.pod:5772
14553 msgid "guestfs_set_verbose"
14554 msgstr ""
14555
14556 #. type: verbatim
14557 #: ../src/guestfs-actions.pod:5774
14558 #, no-wrap
14559 msgid ""
14560 " int\n"
14561 " guestfs_set_verbose (guestfs_h *g,\n"
14562 "                      int verbose);\n"
14563 "\n"
14564 msgstr ""
14565
14566 #. type: textblock
14567 #: ../src/guestfs-actions.pod:5778 ../fish/guestfish-actions.pod:3877
14568 msgid "If C<verbose> is true, this turns on verbose messages (to C<stderr>)."
14569 msgstr ""
14570
14571 #. type: textblock
14572 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3879
14573 msgid ""
14574 "Verbose messages are disabled unless the environment variable "
14575 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
14576 msgstr ""
14577
14578 #. type: =head2
14579 #: ../src/guestfs-actions.pod:5787
14580 msgid "guestfs_setcon"
14581 msgstr ""
14582
14583 #. type: verbatim
14584 #: ../src/guestfs-actions.pod:5789
14585 #, no-wrap
14586 msgid ""
14587 " int\n"
14588 " guestfs_setcon (guestfs_h *g,\n"
14589 "                 const char *context);\n"
14590 "\n"
14591 msgstr ""
14592
14593 #. type: textblock
14594 #: ../src/guestfs-actions.pod:5793 ../fish/guestfish-actions.pod:3886
14595 msgid ""
14596 "This sets the SELinux security context of the daemon to the string "
14597 "C<context>."
14598 msgstr ""
14599
14600 #. type: textblock
14601 #: ../src/guestfs-actions.pod:5796 ../fish/guestfish-actions.pod:3889
14602 msgid "See the documentation about SELINUX in L<guestfs(3)>."
14603 msgstr ""
14604
14605 #. type: =head2
14606 #: ../src/guestfs-actions.pod:5802
14607 msgid "guestfs_setxattr"
14608 msgstr ""
14609
14610 #. type: verbatim
14611 #: ../src/guestfs-actions.pod:5804
14612 #, no-wrap
14613 msgid ""
14614 " int\n"
14615 " guestfs_setxattr (guestfs_h *g,\n"
14616 "                   const char *xattr,\n"
14617 "                   const char *val,\n"
14618 "                   int vallen,\n"
14619 "                   const char *path);\n"
14620 "\n"
14621 msgstr ""
14622
14623 #. type: textblock
14624 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3895
14625 msgid ""
14626 "This call sets the extended attribute named C<xattr> of the file C<path> to "
14627 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
14628 msgstr ""
14629
14630 #. type: textblock
14631 #: ../src/guestfs-actions.pod:5815
14632 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
14633 msgstr ""
14634
14635 #. type: =head2
14636 #: ../src/guestfs-actions.pod:5821
14637 msgid "guestfs_sfdisk"
14638 msgstr ""
14639
14640 #. type: verbatim
14641 #: ../src/guestfs-actions.pod:5823
14642 #, no-wrap
14643 msgid ""
14644 " int\n"
14645 " guestfs_sfdisk (guestfs_h *g,\n"
14646 "                 const char *device,\n"
14647 "                 int cyls,\n"
14648 "                 int heads,\n"
14649 "                 int sectors,\n"
14650 "                 char *const *lines);\n"
14651 "\n"
14652 msgstr ""
14653
14654 #. type: textblock
14655 #: ../src/guestfs-actions.pod:5831 ../fish/guestfish-actions.pod:3905
14656 msgid ""
14657 "This is a direct interface to the L<sfdisk(8)> program for creating "
14658 "partitions on block devices."
14659 msgstr ""
14660
14661 #. type: textblock
14662 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3908
14663 msgid "C<device> should be a block device, for example C</dev/sda>."
14664 msgstr ""
14665
14666 #. type: textblock
14667 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3910
14668 msgid ""
14669 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
14670 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
14671 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
14672 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
14673 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
14674 "the kernel) cannot work out the right geometry and you will need to tell it."
14675 msgstr ""
14676
14677 #. type: textblock
14678 #: ../src/guestfs-actions.pod:5844 ../fish/guestfish-actions.pod:3918
14679 msgid ""
14680 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
14681 "refer to the L<sfdisk(8)> manpage."
14682 msgstr ""
14683
14684 #. type: textblock
14685 #: ../src/guestfs-actions.pod:5847 ../fish/guestfish-actions.pod:3921
14686 msgid ""
14687 "To create a single partition occupying the whole disk, you would pass "
14688 "C<lines> as a single element list, when the single element being the string "
14689 "C<,> (comma)."
14690 msgstr ""
14691
14692 #. type: textblock
14693 #: ../src/guestfs-actions.pod:5851
14694 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
14695 msgstr ""
14696
14697 #. type: =head2
14698 #: ../src/guestfs-actions.pod:5861
14699 msgid "guestfs_sfdiskM"
14700 msgstr ""
14701
14702 #. type: verbatim
14703 #: ../src/guestfs-actions.pod:5863
14704 #, no-wrap
14705 msgid ""
14706 " int\n"
14707 " guestfs_sfdiskM (guestfs_h *g,\n"
14708 "                  const char *device,\n"
14709 "                  char *const *lines);\n"
14710 "\n"
14711 msgstr ""
14712
14713 #. type: textblock
14714 #: ../src/guestfs-actions.pod:5868
14715 msgid ""
14716 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
14717 "partition sizes are specified in megabytes only (rounded to the nearest "
14718 "cylinder) and you don't need to specify the cyls, heads and sectors "
14719 "parameters which were rarely if ever used anyway."
14720 msgstr ""
14721
14722 #. type: textblock
14723 #: ../src/guestfs-actions.pod:5874
14724 msgid ""
14725 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
14726 "C<guestfs_part_disk>"
14727 msgstr ""
14728
14729 #. type: =head2
14730 #: ../src/guestfs-actions.pod:5884
14731 msgid "guestfs_sfdisk_N"
14732 msgstr ""
14733
14734 #. type: verbatim
14735 #: ../src/guestfs-actions.pod:5886
14736 #, no-wrap
14737 msgid ""
14738 " int\n"
14739 " guestfs_sfdisk_N (guestfs_h *g,\n"
14740 "                   const char *device,\n"
14741 "                   int partnum,\n"
14742 "                   int cyls,\n"
14743 "                   int heads,\n"
14744 "                   int sectors,\n"
14745 "                   const char *line);\n"
14746 "\n"
14747 msgstr ""
14748
14749 #. type: textblock
14750 #: ../src/guestfs-actions.pod:5895 ../fish/guestfish-actions.pod:3951
14751 msgid ""
14752 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
14753 "(note: C<n> counts from 1)."
14754 msgstr ""
14755
14756 #. type: textblock
14757 #: ../src/guestfs-actions.pod:5898
14758 msgid ""
14759 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
14760 "for the cyls/heads/sectors parameters."
14761 msgstr ""
14762
14763 #. type: textblock
14764 #: ../src/guestfs-actions.pod:5901
14765 msgid "See also: C<guestfs_part_add>"
14766 msgstr ""
14767
14768 #. type: =head2
14769 #: ../src/guestfs-actions.pod:5910
14770 msgid "guestfs_sfdisk_disk_geometry"
14771 msgstr ""
14772
14773 #. type: verbatim
14774 #: ../src/guestfs-actions.pod:5912
14775 #, no-wrap
14776 msgid ""
14777 " char *\n"
14778 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
14779 "                               const char *device);\n"
14780 "\n"
14781 msgstr ""
14782
14783 #. type: textblock
14784 #: ../src/guestfs-actions.pod:5916
14785 msgid ""
14786 "This displays the disk geometry of C<device> read from the partition table.  "
14787 "Especially in the case where the underlying block device has been resized, "
14788 "this can be different from the kernel's idea of the geometry (see "
14789 "C<guestfs_sfdisk_kernel_geometry>)."
14790 msgstr ""
14791
14792 #. type: textblock
14793 #: ../src/guestfs-actions.pod:5921 ../src/guestfs-actions.pod:5937 ../fish/guestfish-actions.pod:3971 ../fish/guestfish-actions.pod:3980
14794 msgid "The result is in human-readable format, and not designed to be parsed."
14795 msgstr ""
14796
14797 #. type: =head2
14798 #: ../src/guestfs-actions.pod:5929
14799 msgid "guestfs_sfdisk_kernel_geometry"
14800 msgstr ""
14801
14802 #. type: verbatim
14803 #: ../src/guestfs-actions.pod:5931
14804 #, no-wrap
14805 msgid ""
14806 " char *\n"
14807 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
14808 "                                 const char *device);\n"
14809 "\n"
14810 msgstr ""
14811
14812 #. type: textblock
14813 #: ../src/guestfs-actions.pod:5935 ../fish/guestfish-actions.pod:3978
14814 msgid "This displays the kernel's idea of the geometry of C<device>."
14815 msgstr ""
14816
14817 #. type: =head2
14818 #: ../src/guestfs-actions.pod:5945
14819 msgid "guestfs_sfdisk_l"
14820 msgstr ""
14821
14822 #. type: verbatim
14823 #: ../src/guestfs-actions.pod:5947
14824 #, no-wrap
14825 msgid ""
14826 " char *\n"
14827 " guestfs_sfdisk_l (guestfs_h *g,\n"
14828 "                   const char *device);\n"
14829 "\n"
14830 msgstr ""
14831
14832 #. type: textblock
14833 #: ../src/guestfs-actions.pod:5951 ../fish/guestfish-actions.pod:3987
14834 msgid ""
14835 "This displays the partition table on C<device>, in the human-readable output "
14836 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
14837 msgstr ""
14838
14839 #. type: textblock
14840 #: ../src/guestfs-actions.pod:5955
14841 msgid "See also: C<guestfs_part_list>"
14842 msgstr ""
14843
14844 #. type: =head2
14845 #: ../src/guestfs-actions.pod:5962
14846 msgid "guestfs_sh"
14847 msgstr ""
14848
14849 #. type: verbatim
14850 #: ../src/guestfs-actions.pod:5964
14851 #, no-wrap
14852 msgid ""
14853 " char *\n"
14854 " guestfs_sh (guestfs_h *g,\n"
14855 "             const char *command);\n"
14856 "\n"
14857 msgstr ""
14858
14859 #. type: textblock
14860 #: ../src/guestfs-actions.pod:5968 ../fish/guestfish-actions.pod:3997
14861 msgid ""
14862 "This call runs a command from the guest filesystem via the guest's "
14863 "C</bin/sh>."
14864 msgstr ""
14865
14866 #. type: textblock
14867 #: ../src/guestfs-actions.pod:5971
14868 msgid "This is like C<guestfs_command>, but passes the command to:"
14869 msgstr ""
14870
14871 #. type: verbatim
14872 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4002
14873 #, no-wrap
14874 msgid ""
14875 " /bin/sh -c \"command\"\n"
14876 "\n"
14877 msgstr ""
14878
14879 #. type: textblock
14880 #: ../src/guestfs-actions.pod:5975 ../fish/guestfish-actions.pod:4004
14881 msgid ""
14882 "Depending on the guest's shell, this usually results in wildcards being "
14883 "expanded, shell expressions being interpolated and so on."
14884 msgstr ""
14885
14886 #. type: textblock
14887 #: ../src/guestfs-actions.pod:5979
14888 msgid "All the provisos about C<guestfs_command> apply to this call."
14889 msgstr ""
14890
14891 #. type: =head2
14892 #: ../src/guestfs-actions.pod:5986
14893 msgid "guestfs_sh_lines"
14894 msgstr ""
14895
14896 #. type: verbatim
14897 #: ../src/guestfs-actions.pod:5988
14898 #, no-wrap
14899 msgid ""
14900 " char **\n"
14901 " guestfs_sh_lines (guestfs_h *g,\n"
14902 "                   const char *command);\n"
14903 "\n"
14904 msgstr ""
14905
14906 #. type: textblock
14907 #: ../src/guestfs-actions.pod:5992
14908 msgid ""
14909 "This is the same as C<guestfs_sh>, but splits the result into a list of "
14910 "lines."
14911 msgstr ""
14912
14913 #. type: textblock
14914 #: ../src/guestfs-actions.pod:5995
14915 msgid "See also: C<guestfs_command_lines>"
14916 msgstr ""
14917
14918 #. type: =head2
14919 #: ../src/guestfs-actions.pod:6003
14920 msgid "guestfs_sleep"
14921 msgstr ""
14922
14923 #. type: verbatim
14924 #: ../src/guestfs-actions.pod:6005
14925 #, no-wrap
14926 msgid ""
14927 " int\n"
14928 " guestfs_sleep (guestfs_h *g,\n"
14929 "                int secs);\n"
14930 "\n"
14931 msgstr ""
14932
14933 #. type: textblock
14934 #: ../src/guestfs-actions.pod:6009 ../fish/guestfish-actions.pod:4023
14935 msgid "Sleep for C<secs> seconds."
14936 msgstr ""
14937
14938 #. type: textblock
14939 #: ../src/guestfs-actions.pod:6013
14940 msgid "(Added in 1.0.41)"
14941 msgstr ""
14942
14943 #. type: =head2
14944 #: ../src/guestfs-actions.pod:6015 ../src/guestfs-structs.pod:109
14945 msgid "guestfs_stat"
14946 msgstr ""
14947
14948 #. type: verbatim
14949 #: ../src/guestfs-actions.pod:6017
14950 #, no-wrap
14951 msgid ""
14952 " struct guestfs_stat *\n"
14953 " guestfs_stat (guestfs_h *g,\n"
14954 "               const char *path);\n"
14955 "\n"
14956 msgstr ""
14957
14958 #. type: textblock
14959 #: ../src/guestfs-actions.pod:6023 ../fish/guestfish-actions.pod:4031
14960 msgid "This is the same as the C<stat(2)> system call."
14961 msgstr ""
14962
14963 #. type: =head2
14964 #: ../src/guestfs-actions.pod:6031 ../src/guestfs-structs.pod:135
14965 msgid "guestfs_statvfs"
14966 msgstr ""
14967
14968 #. type: verbatim
14969 #: ../src/guestfs-actions.pod:6033
14970 #, no-wrap
14971 msgid ""
14972 " struct guestfs_statvfs *\n"
14973 " guestfs_statvfs (guestfs_h *g,\n"
14974 "                  const char *path);\n"
14975 "\n"
14976 msgstr ""
14977
14978 #. type: textblock
14979 #: ../src/guestfs-actions.pod:6037 ../fish/guestfish-actions.pod:4037
14980 msgid ""
14981 "Returns file system statistics for any mounted file system.  C<path> should "
14982 "be a file or directory in the mounted file system (typically it is the mount "
14983 "point itself, but it doesn't need to be)."
14984 msgstr ""
14985
14986 #. type: textblock
14987 #: ../src/guestfs-actions.pod:6041 ../fish/guestfish-actions.pod:4041
14988 msgid "This is the same as the C<statvfs(2)> system call."
14989 msgstr ""
14990
14991 #. type: textblock
14992 #: ../src/guestfs-actions.pod:6043
14993 msgid ""
14994 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
14995 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
14996 msgstr ""
14997
14998 #. type: =head2
14999 #: ../src/guestfs-actions.pod:6049
15000 msgid "guestfs_strings"
15001 msgstr ""
15002
15003 #. type: verbatim
15004 #: ../src/guestfs-actions.pod:6051
15005 #, no-wrap
15006 msgid ""
15007 " char **\n"
15008 " guestfs_strings (guestfs_h *g,\n"
15009 "                  const char *path);\n"
15010 "\n"
15011 msgstr ""
15012
15013 #. type: textblock
15014 #: ../src/guestfs-actions.pod:6055 ../fish/guestfish-actions.pod:4047
15015 msgid ""
15016 "This runs the L<strings(1)> command on a file and returns the list of "
15017 "printable strings found."
15018 msgstr ""
15019
15020 #. type: =head2
15021 #: ../src/guestfs-actions.pod:6067
15022 msgid "guestfs_strings_e"
15023 msgstr ""
15024
15025 #. type: verbatim
15026 #: ../src/guestfs-actions.pod:6069
15027 #, no-wrap
15028 msgid ""
15029 " char **\n"
15030 " guestfs_strings_e (guestfs_h *g,\n"
15031 "                    const char *encoding,\n"
15032 "                    const char *path);\n"
15033 "\n"
15034 msgstr ""
15035
15036 #. type: textblock
15037 #: ../src/guestfs-actions.pod:6074
15038 msgid ""
15039 "This is like the C<guestfs_strings> command, but allows you to specify the "
15040 "encoding of strings that are looked for in the source file C<path>."
15041 msgstr ""
15042
15043 #. type: textblock
15044 #: ../src/guestfs-actions.pod:6078 ../fish/guestfish-actions.pod:4061
15045 msgid "Allowed encodings are:"
15046 msgstr ""
15047
15048 #. type: =item
15049 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4065
15050 msgid "s"
15051 msgstr ""
15052
15053 #. type: textblock
15054 #: ../src/guestfs-actions.pod:6084
15055 msgid ""
15056 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
15057 "ISO-8859-X (this is what C<guestfs_strings> uses)."
15058 msgstr ""
15059
15060 #. type: =item
15061 #: ../src/guestfs-actions.pod:6087 ../fish/guestfish-actions.pod:4070
15062 msgid "S"
15063 msgstr ""
15064
15065 #. type: textblock
15066 #: ../src/guestfs-actions.pod:6089 ../fish/guestfish-actions.pod:4072
15067 msgid "Single 8-bit-byte characters."
15068 msgstr ""
15069
15070 #. type: =item
15071 #: ../src/guestfs-actions.pod:6091 ../fish/guestfish-actions.pod:4074
15072 msgid "b"
15073 msgstr ""
15074
15075 #. type: textblock
15076 #: ../src/guestfs-actions.pod:6093 ../fish/guestfish-actions.pod:4076
15077 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
15078 msgstr ""
15079
15080 #. type: =item
15081 #: ../src/guestfs-actions.pod:6096 ../fish/guestfish-actions.pod:4079
15082 msgid "l (lower case letter L)"
15083 msgstr ""
15084
15085 #. type: textblock
15086 #: ../src/guestfs-actions.pod:6098 ../fish/guestfish-actions.pod:4081
15087 msgid ""
15088 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
15089 "examining binaries in Windows guests."
15090 msgstr ""
15091
15092 #. type: =item
15093 #: ../src/guestfs-actions.pod:6101 ../fish/guestfish-actions.pod:4084
15094 msgid "B"
15095 msgstr ""
15096
15097 #. type: textblock
15098 #: ../src/guestfs-actions.pod:6103 ../fish/guestfish-actions.pod:4086
15099 msgid "32-bit big endian such as UCS-4BE."
15100 msgstr ""
15101
15102 #. type: =item
15103 #: ../src/guestfs-actions.pod:6105 ../fish/guestfish-actions.pod:4088
15104 msgid "L"
15105 msgstr ""
15106
15107 #. type: textblock
15108 #: ../src/guestfs-actions.pod:6107 ../fish/guestfish-actions.pod:4090
15109 msgid "32-bit little endian such as UCS-4LE."
15110 msgstr ""
15111
15112 #. type: textblock
15113 #: ../src/guestfs-actions.pod:6111 ../fish/guestfish-actions.pod:4094
15114 msgid "The returned strings are transcoded to UTF-8."
15115 msgstr ""
15116
15117 #. type: =head2
15118 #: ../src/guestfs-actions.pod:6122
15119 msgid "guestfs_swapoff_device"
15120 msgstr ""
15121
15122 #. type: verbatim
15123 #: ../src/guestfs-actions.pod:6124
15124 #, no-wrap
15125 msgid ""
15126 " int\n"
15127 " guestfs_swapoff_device (guestfs_h *g,\n"
15128 "                         const char *device);\n"
15129 "\n"
15130 msgstr ""
15131
15132 #. type: textblock
15133 #: ../src/guestfs-actions.pod:6128
15134 msgid ""
15135 "This command disables the libguestfs appliance swap device or partition "
15136 "named C<device>.  See C<guestfs_swapon_device>."
15137 msgstr ""
15138
15139 #. type: =head2
15140 #: ../src/guestfs-actions.pod:6136
15141 msgid "guestfs_swapoff_file"
15142 msgstr ""
15143
15144 #. type: verbatim
15145 #: ../src/guestfs-actions.pod:6138
15146 #, no-wrap
15147 msgid ""
15148 " int\n"
15149 " guestfs_swapoff_file (guestfs_h *g,\n"
15150 "                       const char *file);\n"
15151 "\n"
15152 msgstr ""
15153
15154 #. type: textblock
15155 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4111
15156 msgid "This command disables the libguestfs appliance swap on file."
15157 msgstr ""
15158
15159 #. type: =head2
15160 #: ../src/guestfs-actions.pod:6148
15161 msgid "guestfs_swapoff_label"
15162 msgstr ""
15163
15164 #. type: verbatim
15165 #: ../src/guestfs-actions.pod:6150
15166 #, no-wrap
15167 msgid ""
15168 " int\n"
15169 " guestfs_swapoff_label (guestfs_h *g,\n"
15170 "                        const char *label);\n"
15171 "\n"
15172 msgstr ""
15173
15174 #. type: textblock
15175 #: ../src/guestfs-actions.pod:6154 ../fish/guestfish-actions.pod:4117
15176 msgid ""
15177 "This command disables the libguestfs appliance swap on labeled swap "
15178 "partition."
15179 msgstr ""
15180
15181 #. type: =head2
15182 #: ../src/guestfs-actions.pod:6161
15183 msgid "guestfs_swapoff_uuid"
15184 msgstr ""
15185
15186 #. type: verbatim
15187 #: ../src/guestfs-actions.pod:6163
15188 #, no-wrap
15189 msgid ""
15190 " int\n"
15191 " guestfs_swapoff_uuid (guestfs_h *g,\n"
15192 "                       const char *uuid);\n"
15193 "\n"
15194 msgstr ""
15195
15196 #. type: textblock
15197 #: ../src/guestfs-actions.pod:6167 ../fish/guestfish-actions.pod:4124
15198 msgid ""
15199 "This command disables the libguestfs appliance swap partition with the given "
15200 "UUID."
15201 msgstr ""
15202
15203 #. type: =head2
15204 #: ../src/guestfs-actions.pod:6174
15205 msgid "guestfs_swapon_device"
15206 msgstr ""
15207
15208 #. type: verbatim
15209 #: ../src/guestfs-actions.pod:6176
15210 #, no-wrap
15211 msgid ""
15212 " int\n"
15213 " guestfs_swapon_device (guestfs_h *g,\n"
15214 "                        const char *device);\n"
15215 "\n"
15216 msgstr ""
15217
15218 #. type: textblock
15219 #: ../src/guestfs-actions.pod:6180
15220 msgid ""
15221 "This command enables the libguestfs appliance to use the swap device or "
15222 "partition named C<device>.  The increased memory is made available for all "
15223 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
15224 msgstr ""
15225
15226 #. type: textblock
15227 #: ../src/guestfs-actions.pod:6185 ../fish/guestfish-actions.pod:4136
15228 msgid ""
15229 "Note that you should not swap to existing guest swap partitions unless you "
15230 "know what you are doing.  They may contain hibernation information, or other "
15231 "information that the guest doesn't want you to trash.  You also risk leaking "
15232 "information about the host to the guest this way.  Instead, attach a new "
15233 "host device to the guest and swap on that."
15234 msgstr ""
15235
15236 #. type: =head2
15237 #: ../src/guestfs-actions.pod:6196
15238 msgid "guestfs_swapon_file"
15239 msgstr ""
15240
15241 #. type: verbatim
15242 #: ../src/guestfs-actions.pod:6198
15243 #, no-wrap
15244 msgid ""
15245 " int\n"
15246 " guestfs_swapon_file (guestfs_h *g,\n"
15247 "                      const char *file);\n"
15248 "\n"
15249 msgstr ""
15250
15251 #. type: textblock
15252 #: ../src/guestfs-actions.pod:6202
15253 msgid ""
15254 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
15255 "notes."
15256 msgstr ""
15257
15258 #. type: =head2
15259 #: ../src/guestfs-actions.pod:6209
15260 msgid "guestfs_swapon_label"
15261 msgstr ""
15262
15263 #. type: verbatim
15264 #: ../src/guestfs-actions.pod:6211
15265 #, no-wrap
15266 msgid ""
15267 " int\n"
15268 " guestfs_swapon_label (guestfs_h *g,\n"
15269 "                       const char *label);\n"
15270 "\n"
15271 msgstr ""
15272
15273 #. type: textblock
15274 #: ../src/guestfs-actions.pod:6215
15275 msgid ""
15276 "This command enables swap to a labeled swap partition.  See "
15277 "C<guestfs_swapon_device> for other notes."
15278 msgstr ""
15279
15280 #. type: =head2
15281 #: ../src/guestfs-actions.pod:6222
15282 msgid "guestfs_swapon_uuid"
15283 msgstr ""
15284
15285 #. type: verbatim
15286 #: ../src/guestfs-actions.pod:6224
15287 #, no-wrap
15288 msgid ""
15289 " int\n"
15290 " guestfs_swapon_uuid (guestfs_h *g,\n"
15291 "                      const char *uuid);\n"
15292 "\n"
15293 msgstr ""
15294
15295 #. type: textblock
15296 #: ../src/guestfs-actions.pod:6228
15297 msgid ""
15298 "This command enables swap to a swap partition with the given UUID.  See "
15299 "C<guestfs_swapon_device> for other notes."
15300 msgstr ""
15301
15302 #. type: =head2
15303 #: ../src/guestfs-actions.pod:6235
15304 msgid "guestfs_sync"
15305 msgstr ""
15306
15307 #. type: verbatim
15308 #: ../src/guestfs-actions.pod:6237
15309 #, no-wrap
15310 msgid ""
15311 " int\n"
15312 " guestfs_sync (guestfs_h *g);\n"
15313 "\n"
15314 msgstr ""
15315
15316 #. type: textblock
15317 #: ../src/guestfs-actions.pod:6240 ../fish/guestfish-actions.pod:4168
15318 msgid ""
15319 "This syncs the disk, so that any writes are flushed through to the "
15320 "underlying disk image."
15321 msgstr ""
15322
15323 #. type: textblock
15324 #: ../src/guestfs-actions.pod:6243 ../fish/guestfish-actions.pod:4171
15325 msgid ""
15326 "You should always call this if you have modified a disk image, before "
15327 "closing the handle."
15328 msgstr ""
15329
15330 #. type: =head2
15331 #: ../src/guestfs-actions.pod:6250
15332 msgid "guestfs_tail"
15333 msgstr ""
15334
15335 #. type: verbatim
15336 #: ../src/guestfs-actions.pod:6252
15337 #, no-wrap
15338 msgid ""
15339 " char **\n"
15340 " guestfs_tail (guestfs_h *g,\n"
15341 "               const char *path);\n"
15342 "\n"
15343 msgstr ""
15344
15345 #. type: textblock
15346 #: ../src/guestfs-actions.pod:6256 ../fish/guestfish-actions.pod:4178
15347 msgid "This command returns up to the last 10 lines of a file as a list of strings."
15348 msgstr ""
15349
15350 #. type: =head2
15351 #: ../src/guestfs-actions.pod:6268
15352 msgid "guestfs_tail_n"
15353 msgstr ""
15354
15355 #. type: verbatim
15356 #: ../src/guestfs-actions.pod:6270
15357 #, no-wrap
15358 msgid ""
15359 " char **\n"
15360 " guestfs_tail_n (guestfs_h *g,\n"
15361 "                 int nrlines,\n"
15362 "                 const char *path);\n"
15363 "\n"
15364 msgstr ""
15365
15366 #. type: textblock
15367 #: ../src/guestfs-actions.pod:6275 ../fish/guestfish-actions.pod:4188
15368 msgid ""
15369 "If the parameter C<nrlines> is a positive number, this returns the last "
15370 "C<nrlines> lines of the file C<path>."
15371 msgstr ""
15372
15373 #. type: textblock
15374 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4191
15375 msgid ""
15376 "If the parameter C<nrlines> is a negative number, this returns lines from "
15377 "the file C<path>, starting with the C<-nrlines>th line."
15378 msgstr ""
15379
15380 #. type: =head2
15381 #: ../src/guestfs-actions.pod:6292
15382 msgid "guestfs_tar_in"
15383 msgstr ""
15384
15385 #. type: verbatim
15386 #: ../src/guestfs-actions.pod:6294
15387 #, no-wrap
15388 msgid ""
15389 " int\n"
15390 " guestfs_tar_in (guestfs_h *g,\n"
15391 "                 const char *tarfile,\n"
15392 "                 const char *directory);\n"
15393 "\n"
15394 msgstr ""
15395
15396 #. type: textblock
15397 #: ../src/guestfs-actions.pod:6299 ../fish/guestfish-actions.pod:4203
15398 msgid ""
15399 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
15400 "tar file) into C<directory>."
15401 msgstr ""
15402
15403 #. type: textblock
15404 #: ../src/guestfs-actions.pod:6302
15405 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
15406 msgstr ""
15407
15408 #. type: textblock
15409 #: ../src/guestfs-actions.pod:6307 ../src/guestfs-actions.pod:6324 ../src/guestfs-actions.pod:6340 ../src/guestfs-actions.pod:6356
15410 msgid "(Added in 1.0.3)"
15411 msgstr ""
15412
15413 #. type: =head2
15414 #: ../src/guestfs-actions.pod:6309
15415 msgid "guestfs_tar_out"
15416 msgstr ""
15417
15418 #. type: verbatim
15419 #: ../src/guestfs-actions.pod:6311
15420 #, no-wrap
15421 msgid ""
15422 " int\n"
15423 " guestfs_tar_out (guestfs_h *g,\n"
15424 "                  const char *directory,\n"
15425 "                  const char *tarfile);\n"
15426 "\n"
15427 msgstr ""
15428
15429 #. type: textblock
15430 #: ../src/guestfs-actions.pod:6316 ../fish/guestfish-actions.pod:4215
15431 msgid ""
15432 "This command packs the contents of C<directory> and downloads it to local "
15433 "file C<tarfile>."
15434 msgstr ""
15435
15436 #. type: textblock
15437 #: ../src/guestfs-actions.pod:6319
15438 msgid ""
15439 "To download a compressed tarball, use C<guestfs_tgz_out> or "
15440 "C<guestfs_txz_out>."
15441 msgstr ""
15442
15443 #. type: =head2
15444 #: ../src/guestfs-actions.pod:6326
15445 msgid "guestfs_tgz_in"
15446 msgstr ""
15447
15448 #. type: verbatim
15449 #: ../src/guestfs-actions.pod:6328
15450 #, no-wrap
15451 msgid ""
15452 " int\n"
15453 " guestfs_tgz_in (guestfs_h *g,\n"
15454 "                 const char *tarball,\n"
15455 "                 const char *directory);\n"
15456 "\n"
15457 msgstr ""
15458
15459 #. type: textblock
15460 #: ../src/guestfs-actions.pod:6333 ../fish/guestfish-actions.pod:4227
15461 msgid ""
15462 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
15463 "tar file) into C<directory>."
15464 msgstr ""
15465
15466 #. type: textblock
15467 #: ../src/guestfs-actions.pod:6336
15468 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
15469 msgstr ""
15470
15471 #. type: =head2
15472 #: ../src/guestfs-actions.pod:6342
15473 msgid "guestfs_tgz_out"
15474 msgstr ""
15475
15476 #. type: verbatim
15477 #: ../src/guestfs-actions.pod:6344
15478 #, no-wrap
15479 msgid ""
15480 " int\n"
15481 " guestfs_tgz_out (guestfs_h *g,\n"
15482 "                  const char *directory,\n"
15483 "                  const char *tarball);\n"
15484 "\n"
15485 msgstr ""
15486
15487 #. type: textblock
15488 #: ../src/guestfs-actions.pod:6349 ../fish/guestfish-actions.pod:4238
15489 msgid ""
15490 "This command packs the contents of C<directory> and downloads it to local "
15491 "file C<tarball>."
15492 msgstr ""
15493
15494 #. type: textblock
15495 #: ../src/guestfs-actions.pod:6352
15496 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
15497 msgstr ""
15498
15499 #. type: =head2
15500 #: ../src/guestfs-actions.pod:6358
15501 msgid "guestfs_touch"
15502 msgstr ""
15503
15504 #. type: verbatim
15505 #: ../src/guestfs-actions.pod:6360
15506 #, no-wrap
15507 msgid ""
15508 " int\n"
15509 " guestfs_touch (guestfs_h *g,\n"
15510 "                const char *path);\n"
15511 "\n"
15512 msgstr ""
15513
15514 #. type: textblock
15515 #: ../src/guestfs-actions.pod:6364 ../fish/guestfish-actions.pod:4249
15516 msgid ""
15517 "Touch acts like the L<touch(1)> command.  It can be used to update the "
15518 "timestamps on a file, or, if the file does not exist, to create a new "
15519 "zero-length file."
15520 msgstr ""
15521
15522 #. type: textblock
15523 #: ../src/guestfs-actions.pod:6368 ../fish/guestfish-actions.pod:4253
15524 msgid ""
15525 "This command only works on regular files, and will fail on other file types "
15526 "such as directories, symbolic links, block special etc."
15527 msgstr ""
15528
15529 #. type: =head2
15530 #: ../src/guestfs-actions.pod:6375
15531 msgid "guestfs_truncate"
15532 msgstr ""
15533
15534 #. type: verbatim
15535 #: ../src/guestfs-actions.pod:6377
15536 #, no-wrap
15537 msgid ""
15538 " int\n"
15539 " guestfs_truncate (guestfs_h *g,\n"
15540 "                   const char *path);\n"
15541 "\n"
15542 msgstr ""
15543
15544 #. type: textblock
15545 #: ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:4260
15546 msgid ""
15547 "This command truncates C<path> to a zero-length file.  The file must exist "
15548 "already."
15549 msgstr ""
15550
15551 #. type: =head2
15552 #: ../src/guestfs-actions.pod:6388
15553 msgid "guestfs_truncate_size"
15554 msgstr ""
15555
15556 #. type: verbatim
15557 #: ../src/guestfs-actions.pod:6390
15558 #, no-wrap
15559 msgid ""
15560 " int\n"
15561 " guestfs_truncate_size (guestfs_h *g,\n"
15562 "                        const char *path,\n"
15563 "                        int64_t size);\n"
15564 "\n"
15565 msgstr ""
15566
15567 #. type: textblock
15568 #: ../src/guestfs-actions.pod:6395 ../fish/guestfish-actions.pod:4267
15569 msgid ""
15570 "This command truncates C<path> to size C<size> bytes.  The file must exist "
15571 "already."
15572 msgstr ""
15573
15574 #. type: textblock
15575 #: ../src/guestfs-actions.pod:6398
15576 msgid ""
15577 "If the current file size is less than C<size> then the file is extended to "
15578 "the required size with zero bytes.  This creates a sparse file (ie. disk "
15579 "blocks are not allocated for the file until you write to it).  To create a "
15580 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
15581 msgstr ""
15582
15583 #. type: =head2
15584 #: ../src/guestfs-actions.pod:6408
15585 msgid "guestfs_tune2fs_l"
15586 msgstr ""
15587
15588 #. type: verbatim
15589 #: ../src/guestfs-actions.pod:6410
15590 #, no-wrap
15591 msgid ""
15592 " char **\n"
15593 " guestfs_tune2fs_l (guestfs_h *g,\n"
15594 "                    const char *device);\n"
15595 "\n"
15596 msgstr ""
15597
15598 #. type: textblock
15599 #: ../src/guestfs-actions.pod:6414 ../fish/guestfish-actions.pod:4280
15600 msgid ""
15601 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
15602 "C<device>."
15603 msgstr ""
15604
15605 #. type: textblock
15606 #: ../src/guestfs-actions.pod:6417 ../fish/guestfish-actions.pod:4283
15607 msgid ""
15608 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
15609 "for more details.  The list of fields returned isn't clearly defined, and "
15610 "depends on both the version of C<tune2fs> that libguestfs was built against, "
15611 "and the filesystem itself."
15612 msgstr ""
15613
15614 #. type: =head2
15615 #: ../src/guestfs-actions.pod:6430
15616 msgid "guestfs_txz_in"
15617 msgstr ""
15618
15619 #. type: verbatim
15620 #: ../src/guestfs-actions.pod:6432
15621 #, no-wrap
15622 msgid ""
15623 " int\n"
15624 " guestfs_txz_in (guestfs_h *g,\n"
15625 "                 const char *tarball,\n"
15626 "                 const char *directory);\n"
15627 "\n"
15628 msgstr ""
15629
15630 #. type: textblock
15631 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4292
15632 msgid ""
15633 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
15634 "tar file) into C<directory>."
15635 msgstr ""
15636
15637 #. type: =head2
15638 #: ../src/guestfs-actions.pod:6444
15639 msgid "guestfs_txz_out"
15640 msgstr ""
15641
15642 #. type: verbatim
15643 #: ../src/guestfs-actions.pod:6446
15644 #, no-wrap
15645 msgid ""
15646 " int\n"
15647 " guestfs_txz_out (guestfs_h *g,\n"
15648 "                  const char *directory,\n"
15649 "                  const char *tarball);\n"
15650 "\n"
15651 msgstr ""
15652
15653 #. type: textblock
15654 #: ../src/guestfs-actions.pod:6451 ../fish/guestfish-actions.pod:4301
15655 msgid ""
15656 "This command packs the contents of C<directory> and downloads it to local "
15657 "file C<tarball> (as an xz compressed tar archive)."
15658 msgstr ""
15659
15660 #. type: =head2
15661 #: ../src/guestfs-actions.pod:6458
15662 msgid "guestfs_umask"
15663 msgstr ""
15664
15665 #. type: verbatim
15666 #: ../src/guestfs-actions.pod:6460
15667 #, no-wrap
15668 msgid ""
15669 " int\n"
15670 " guestfs_umask (guestfs_h *g,\n"
15671 "                int mask);\n"
15672 "\n"
15673 msgstr ""
15674
15675 #. type: textblock
15676 #: ../src/guestfs-actions.pod:6464 ../fish/guestfish-actions.pod:4310
15677 msgid ""
15678 "This function sets the mask used for creating new files and device nodes to "
15679 "C<mask & 0777>."
15680 msgstr ""
15681
15682 #. type: textblock
15683 #: ../src/guestfs-actions.pod:6467 ../fish/guestfish-actions.pod:4313
15684 msgid ""
15685 "Typical umask values would be C<022> which creates new files with "
15686 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
15687 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
15688 msgstr ""
15689
15690 #. type: textblock
15691 #: ../src/guestfs-actions.pod:6472 ../fish/guestfish-actions.pod:4318
15692 msgid ""
15693 "The default umask is C<022>.  This is important because it means that "
15694 "directories and device nodes will be created with C<0644> or C<0755> mode "
15695 "even if you specify C<0777>."
15696 msgstr ""
15697
15698 #. type: textblock
15699 #: ../src/guestfs-actions.pod:6476
15700 msgid ""
15701 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
15702 "C<guestfs_mkdir>."
15703 msgstr ""
15704
15705 #. type: textblock
15706 #: ../src/guestfs-actions.pod:6479 ../fish/guestfish-actions.pod:4325
15707 msgid "This call returns the previous umask."
15708 msgstr ""
15709
15710 #. type: =head2
15711 #: ../src/guestfs-actions.pod:6485
15712 msgid "guestfs_umount"
15713 msgstr ""
15714
15715 #. type: verbatim
15716 #: ../src/guestfs-actions.pod:6487
15717 #, no-wrap
15718 msgid ""
15719 " int\n"
15720 " guestfs_umount (guestfs_h *g,\n"
15721 "                 const char *pathordevice);\n"
15722 "\n"
15723 msgstr ""
15724
15725 #. type: textblock
15726 #: ../src/guestfs-actions.pod:6491 ../fish/guestfish-actions.pod:4333
15727 msgid ""
15728 "This unmounts the given filesystem.  The filesystem may be specified either "
15729 "by its mountpoint (path) or the device which contains the filesystem."
15730 msgstr ""
15731
15732 #. type: =head2
15733 #: ../src/guestfs-actions.pod:6499
15734 msgid "guestfs_umount_all"
15735 msgstr ""
15736
15737 #. type: verbatim
15738 #: ../src/guestfs-actions.pod:6501
15739 #, no-wrap
15740 msgid ""
15741 " int\n"
15742 " guestfs_umount_all (guestfs_h *g);\n"
15743 "\n"
15744 msgstr ""
15745
15746 #. type: textblock
15747 #: ../src/guestfs-actions.pod:6504 ../fish/guestfish-actions.pod:4343
15748 msgid "This unmounts all mounted filesystems."
15749 msgstr ""
15750
15751 #. type: textblock
15752 #: ../src/guestfs-actions.pod:6506 ../fish/guestfish-actions.pod:4345
15753 msgid "Some internal mounts are not unmounted by this call."
15754 msgstr ""
15755
15756 #. type: =head2
15757 #: ../src/guestfs-actions.pod:6512
15758 msgid "guestfs_upload"
15759 msgstr ""
15760
15761 #. type: verbatim
15762 #: ../src/guestfs-actions.pod:6514
15763 #, no-wrap
15764 msgid ""
15765 " int\n"
15766 " guestfs_upload (guestfs_h *g,\n"
15767 "                 const char *filename,\n"
15768 "                 const char *remotefilename);\n"
15769 "\n"
15770 msgstr ""
15771
15772 #. type: textblock
15773 #: ../src/guestfs-actions.pod:6519 ../src/guestfs-actions.pod:6543 ../fish/guestfish-actions.pod:4351 ../fish/guestfish-actions.pod:4364
15774 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
15775 msgstr ""
15776
15777 #. type: textblock
15778 #: ../src/guestfs-actions.pod:6524
15779 msgid "See also C<guestfs_download>."
15780 msgstr ""
15781
15782 #. type: =head2
15783 #: ../src/guestfs-actions.pod:6535
15784 msgid "guestfs_upload_offset"
15785 msgstr ""
15786
15787 #. type: verbatim
15788 #: ../src/guestfs-actions.pod:6537
15789 #, no-wrap
15790 msgid ""
15791 " int\n"
15792 " guestfs_upload_offset (guestfs_h *g,\n"
15793 "                        const char *filename,\n"
15794 "                        const char *remotefilename,\n"
15795 "                        int64_t offset);\n"
15796 "\n"
15797 msgstr ""
15798
15799 #. type: textblock
15800 #: ../src/guestfs-actions.pod:6546 ../fish/guestfish-actions.pod:4367
15801 msgid ""
15802 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
15803 "The intention is to overwrite parts of existing files or devices, although "
15804 "if a non-existant file is specified then it is created with a \"hole\" "
15805 "before C<offset>.  The size of the data written is implicit in the size of "
15806 "the source C<filename>."
15807 msgstr ""
15808
15809 #. type: textblock
15810 #: ../src/guestfs-actions.pod:6553
15811 msgid ""
15812 "Note that there is no limit on the amount of data that can be uploaded with "
15813 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
15814 "full amount unless an error occurs."
15815 msgstr ""
15816
15817 #. type: textblock
15818 #: ../src/guestfs-actions.pod:6558
15819 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
15820 msgstr ""
15821
15822 #. type: =head2
15823 #: ../src/guestfs-actions.pod:6569
15824 msgid "guestfs_utimens"
15825 msgstr ""
15826
15827 #. type: verbatim
15828 #: ../src/guestfs-actions.pod:6571
15829 #, no-wrap
15830 msgid ""
15831 " int\n"
15832 " guestfs_utimens (guestfs_h *g,\n"
15833 "                  const char *path,\n"
15834 "                  int64_t atsecs,\n"
15835 "                  int64_t atnsecs,\n"
15836 "                  int64_t mtsecs,\n"
15837 "                  int64_t mtnsecs);\n"
15838 "\n"
15839 msgstr ""
15840
15841 #. type: textblock
15842 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4387
15843 msgid "This command sets the timestamps of a file with nanosecond precision."
15844 msgstr ""
15845
15846 #. type: textblock
15847 #: ../src/guestfs-actions.pod:6582 ../fish/guestfish-actions.pod:4390
15848 msgid ""
15849 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
15850 "from the epoch."
15851 msgstr ""
15852
15853 #. type: textblock
15854 #: ../src/guestfs-actions.pod:6585 ../fish/guestfish-actions.pod:4393
15855 msgid ""
15856 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
15857 "nanoseconds from the epoch."
15858 msgstr ""
15859
15860 #. type: textblock
15861 #: ../src/guestfs-actions.pod:6588 ../fish/guestfish-actions.pod:4396
15862 msgid ""
15863 "If the C<*nsecs> field contains the special value C<-1> then the "
15864 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
15865 "ignored in this case)."
15866 msgstr ""
15867
15868 #. type: textblock
15869 #: ../src/guestfs-actions.pod:6592 ../fish/guestfish-actions.pod:4400
15870 msgid ""
15871 "If the C<*nsecs> field contains the special value C<-2> then the "
15872 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
15873 "in this case)."
15874 msgstr ""
15875
15876 #. type: =head2
15877 #: ../src/guestfs-actions.pod:6600 ../src/guestfs-structs.pod:175
15878 msgid "guestfs_version"
15879 msgstr ""
15880
15881 #. type: verbatim
15882 #: ../src/guestfs-actions.pod:6602
15883 #, no-wrap
15884 msgid ""
15885 " struct guestfs_version *\n"
15886 " guestfs_version (guestfs_h *g);\n"
15887 "\n"
15888 msgstr ""
15889
15890 #. type: textblock
15891 #: ../src/guestfs-actions.pod:6605 ../fish/guestfish-actions.pod:4408
15892 msgid "Return the libguestfs version number that the program is linked against."
15893 msgstr ""
15894
15895 #. type: textblock
15896 #: ../src/guestfs-actions.pod:6608 ../fish/guestfish-actions.pod:4411
15897 msgid ""
15898 "Note that because of dynamic linking this is not necessarily the version of "
15899 "libguestfs that you compiled against.  You can compile the program, and then "
15900 "at runtime dynamically link against a completely different C<libguestfs.so> "
15901 "library."
15902 msgstr ""
15903
15904 #. type: textblock
15905 #: ../src/guestfs-actions.pod:6613 ../fish/guestfish-actions.pod:4416
15906 msgid ""
15907 "This call was added in version C<1.0.58>.  In previous versions of "
15908 "libguestfs there was no way to get the version number.  From C code you can "
15909 "use dynamic linker functions to find out if this symbol exists (if it "
15910 "doesn't, then it's an earlier version)."
15911 msgstr ""
15912
15913 #. type: textblock
15914 #: ../src/guestfs-actions.pod:6619 ../fish/guestfish-actions.pod:4422
15915 msgid ""
15916 "The call returns a structure with four elements.  The first three (C<major>, "
15917 "C<minor> and C<release>) are numbers and correspond to the usual version "
15918 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
15919 "but may be used for distro-specific information."
15920 msgstr ""
15921
15922 #. type: textblock
15923 #: ../src/guestfs-actions.pod:6625 ../fish/guestfish-actions.pod:4428
15924 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
15925 msgstr ""
15926
15927 #. type: textblock
15928 #: ../src/guestfs-actions.pod:6628 ../fish/guestfish-actions.pod:4431
15929 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
15930 msgstr ""
15931
15932 #. type: textblock
15933 #: ../src/guestfs-actions.pod:6630
15934 msgid ""
15935 "I<Note:> Don't use this call to test for availability of features.  In "
15936 "enterprise distributions we backport features from later versions into "
15937 "earlier versions, making this an unreliable way to test for features.  Use "
15938 "C<guestfs_available> instead."
15939 msgstr ""
15940
15941 #. type: textblock
15942 #: ../src/guestfs-actions.pod:6636
15943 msgid ""
15944 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
15945 "error.  I<The caller must call C<guestfs_free_version> after use>."
15946 msgstr ""
15947
15948 #. type: textblock
15949 #: ../src/guestfs-actions.pod:6640
15950 msgid "(Added in 1.0.58)"
15951 msgstr ""
15952
15953 #. type: =head2
15954 #: ../src/guestfs-actions.pod:6642
15955 msgid "guestfs_vfs_label"
15956 msgstr ""
15957
15958 #. type: verbatim
15959 #: ../src/guestfs-actions.pod:6644
15960 #, no-wrap
15961 msgid ""
15962 " char *\n"
15963 " guestfs_vfs_label (guestfs_h *g,\n"
15964 "                    const char *device);\n"
15965 "\n"
15966 msgstr ""
15967
15968 #. type: textblock
15969 #: ../src/guestfs-actions.pod:6648 ../fish/guestfish-actions.pod:4443
15970 msgid "This returns the filesystem label of the filesystem on C<device>."
15971 msgstr ""
15972
15973 #. type: textblock
15974 #: ../src/guestfs-actions.pod:6651 ../fish/guestfish-actions.pod:4446
15975 msgid "If the filesystem is unlabeled, this returns the empty string."
15976 msgstr ""
15977
15978 #. type: textblock
15979 #: ../src/guestfs-actions.pod:6653
15980 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
15981 msgstr ""
15982
15983 #. type: textblock
15984 #: ../src/guestfs-actions.pod:6658 ../src/guestfs-actions.pod:6695
15985 msgid "(Added in 1.3.18)"
15986 msgstr ""
15987
15988 #. type: =head2
15989 #: ../src/guestfs-actions.pod:6660
15990 msgid "guestfs_vfs_type"
15991 msgstr ""
15992
15993 #. type: verbatim
15994 #: ../src/guestfs-actions.pod:6662
15995 #, no-wrap
15996 msgid ""
15997 " char *\n"
15998 " guestfs_vfs_type (guestfs_h *g,\n"
15999 "                   const char *device);\n"
16000 "\n"
16001 msgstr ""
16002
16003 #. type: textblock
16004 #: ../src/guestfs-actions.pod:6666 ../fish/guestfish-actions.pod:4454
16005 msgid ""
16006 "This command gets the filesystem type corresponding to the filesystem on "
16007 "C<device>."
16008 msgstr ""
16009
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:6669 ../fish/guestfish-actions.pod:4457
16012 msgid ""
16013 "For most filesystems, the result is the name of the Linux VFS module which "
16014 "would be used to mount this filesystem if you mounted it without specifying "
16015 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
16016 msgstr ""
16017
16018 #. type: =head2
16019 #: ../src/guestfs-actions.pod:6679
16020 msgid "guestfs_vfs_uuid"
16021 msgstr ""
16022
16023 #. type: verbatim
16024 #: ../src/guestfs-actions.pod:6681
16025 #, no-wrap
16026 msgid ""
16027 " char *\n"
16028 " guestfs_vfs_uuid (guestfs_h *g,\n"
16029 "                   const char *device);\n"
16030 "\n"
16031 msgstr ""
16032
16033 #. type: textblock
16034 #: ../src/guestfs-actions.pod:6685 ../fish/guestfish-actions.pod:4466
16035 msgid "This returns the filesystem UUID of the filesystem on C<device>."
16036 msgstr ""
16037
16038 #. type: textblock
16039 #: ../src/guestfs-actions.pod:6688 ../fish/guestfish-actions.pod:4469
16040 msgid "If the filesystem does not have a UUID, this returns the empty string."
16041 msgstr ""
16042
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:6690
16045 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
16046 msgstr ""
16047
16048 #. type: =head2
16049 #: ../src/guestfs-actions.pod:6697
16050 msgid "guestfs_vg_activate"
16051 msgstr ""
16052
16053 #. type: verbatim
16054 #: ../src/guestfs-actions.pod:6699
16055 #, no-wrap
16056 msgid ""
16057 " int\n"
16058 " guestfs_vg_activate (guestfs_h *g,\n"
16059 "                      int activate,\n"
16060 "                      char *const *volgroups);\n"
16061 "\n"
16062 msgstr ""
16063
16064 #. type: textblock
16065 #: ../src/guestfs-actions.pod:6704 ../fish/guestfish-actions.pod:4477
16066 msgid ""
16067 "This command activates or (if C<activate> is false) deactivates all logical "
16068 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
16069 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
16070 "deactivated, then those devices disappear."
16071 msgstr ""
16072
16073 #. type: textblock
16074 #: ../src/guestfs-actions.pod:6710 ../fish/guestfish-actions.pod:4483
16075 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
16076 msgstr ""
16077
16078 #. type: textblock
16079 #: ../src/guestfs-actions.pod:6712 ../fish/guestfish-actions.pod:4485
16080 msgid ""
16081 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
16082 "activated or deactivated."
16083 msgstr ""
16084
16085 #. type: =head2
16086 #: ../src/guestfs-actions.pod:6719
16087 msgid "guestfs_vg_activate_all"
16088 msgstr ""
16089
16090 #. type: verbatim
16091 #: ../src/guestfs-actions.pod:6721
16092 #, no-wrap
16093 msgid ""
16094 " int\n"
16095 " guestfs_vg_activate_all (guestfs_h *g,\n"
16096 "                          int activate);\n"
16097 "\n"
16098 msgstr ""
16099
16100 #. type: textblock
16101 #: ../src/guestfs-actions.pod:6725 ../fish/guestfish-actions.pod:4492
16102 msgid ""
16103 "This command activates or (if C<activate> is false) deactivates all logical "
16104 "volumes in all volume groups.  If activated, then they are made known to the "
16105 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
16106 "those devices disappear."
16107 msgstr ""
16108
16109 #. type: textblock
16110 #: ../src/guestfs-actions.pod:6731 ../fish/guestfish-actions.pod:4498
16111 msgid "This command is the same as running C<vgchange -a y|n>"
16112 msgstr ""
16113
16114 #. type: =head2
16115 #: ../src/guestfs-actions.pod:6737
16116 msgid "guestfs_vgcreate"
16117 msgstr ""
16118
16119 #. type: verbatim
16120 #: ../src/guestfs-actions.pod:6739
16121 #, no-wrap
16122 msgid ""
16123 " int\n"
16124 " guestfs_vgcreate (guestfs_h *g,\n"
16125 "                   const char *volgroup,\n"
16126 "                   char *const *physvols);\n"
16127 "\n"
16128 msgstr ""
16129
16130 #. type: textblock
16131 #: ../src/guestfs-actions.pod:6744 ../fish/guestfish-actions.pod:4504
16132 msgid ""
16133 "This creates an LVM volume group called C<volgroup> from the non-empty list "
16134 "of physical volumes C<physvols>."
16135 msgstr ""
16136
16137 #. type: =head2
16138 #: ../src/guestfs-actions.pod:6751
16139 msgid "guestfs_vglvuuids"
16140 msgstr ""
16141
16142 #. type: verbatim
16143 #: ../src/guestfs-actions.pod:6753
16144 #, no-wrap
16145 msgid ""
16146 " char **\n"
16147 " guestfs_vglvuuids (guestfs_h *g,\n"
16148 "                    const char *vgname);\n"
16149 "\n"
16150 msgstr ""
16151
16152 #. type: textblock
16153 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4511
16154 msgid ""
16155 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
16156 "volumes created in this volume group."
16157 msgstr ""
16158
16159 #. type: textblock
16160 #: ../src/guestfs-actions.pod:6760
16161 msgid ""
16162 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
16163 "associate logical volumes and volume groups."
16164 msgstr ""
16165
16166 #. type: textblock
16167 #: ../src/guestfs-actions.pod:6763
16168 msgid "See also C<guestfs_vgpvuuids>."
16169 msgstr ""
16170
16171 #. type: =head2
16172 #: ../src/guestfs-actions.pod:6771
16173 msgid "guestfs_vgpvuuids"
16174 msgstr ""
16175
16176 #. type: verbatim
16177 #: ../src/guestfs-actions.pod:6773
16178 #, no-wrap
16179 msgid ""
16180 " char **\n"
16181 " guestfs_vgpvuuids (guestfs_h *g,\n"
16182 "                    const char *vgname);\n"
16183 "\n"
16184 msgstr ""
16185
16186 #. type: textblock
16187 #: ../src/guestfs-actions.pod:6777 ../fish/guestfish-actions.pod:4523
16188 msgid ""
16189 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
16190 "volumes that this volume group resides on."
16191 msgstr ""
16192
16193 #. type: textblock
16194 #: ../src/guestfs-actions.pod:6780
16195 msgid ""
16196 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
16197 "associate physical volumes and volume groups."
16198 msgstr ""
16199
16200 #. type: textblock
16201 #: ../src/guestfs-actions.pod:6783
16202 msgid "See also C<guestfs_vglvuuids>."
16203 msgstr ""
16204
16205 #. type: =head2
16206 #: ../src/guestfs-actions.pod:6791
16207 msgid "guestfs_vgremove"
16208 msgstr ""
16209
16210 #. type: verbatim
16211 #: ../src/guestfs-actions.pod:6793
16212 #, no-wrap
16213 msgid ""
16214 " int\n"
16215 " guestfs_vgremove (guestfs_h *g,\n"
16216 "                   const char *vgname);\n"
16217 "\n"
16218 msgstr ""
16219
16220 #. type: textblock
16221 #: ../src/guestfs-actions.pod:6797 ../fish/guestfish-actions.pod:4535
16222 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
16223 msgstr ""
16224
16225 #. type: textblock
16226 #: ../src/guestfs-actions.pod:6799 ../fish/guestfish-actions.pod:4537
16227 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
16228 msgstr ""
16229
16230 #. type: =head2
16231 #: ../src/guestfs-actions.pod:6806
16232 msgid "guestfs_vgrename"
16233 msgstr ""
16234
16235 #. type: verbatim
16236 #: ../src/guestfs-actions.pod:6808
16237 #, no-wrap
16238 msgid ""
16239 " int\n"
16240 " guestfs_vgrename (guestfs_h *g,\n"
16241 "                   const char *volgroup,\n"
16242 "                   const char *newvolgroup);\n"
16243 "\n"
16244 msgstr ""
16245
16246 #. type: textblock
16247 #: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4544
16248 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
16249 msgstr ""
16250
16251 #. type: =head2
16252 #: ../src/guestfs-actions.pod:6819
16253 msgid "guestfs_vgs"
16254 msgstr ""
16255
16256 #. type: verbatim
16257 #: ../src/guestfs-actions.pod:6821
16258 #, no-wrap
16259 msgid ""
16260 " char **\n"
16261 " guestfs_vgs (guestfs_h *g);\n"
16262 "\n"
16263 msgstr ""
16264
16265 #. type: textblock
16266 #: ../src/guestfs-actions.pod:6824 ../fish/guestfish-actions.pod:4550
16267 msgid ""
16268 "List all the volumes groups detected.  This is the equivalent of the "
16269 "L<vgs(8)> command."
16270 msgstr ""
16271
16272 #. type: textblock
16273 #: ../src/guestfs-actions.pod:6827 ../fish/guestfish-actions.pod:4553
16274 msgid ""
16275 "This returns a list of just the volume group names that were detected "
16276 "(eg. C<VolGroup00>)."
16277 msgstr ""
16278
16279 #. type: textblock
16280 #: ../src/guestfs-actions.pod:6830
16281 msgid "See also C<guestfs_vgs_full>."
16282 msgstr ""
16283
16284 #. type: =head2
16285 #: ../src/guestfs-actions.pod:6838
16286 msgid "guestfs_vgs_full"
16287 msgstr ""
16288
16289 #. type: verbatim
16290 #: ../src/guestfs-actions.pod:6840
16291 #, no-wrap
16292 msgid ""
16293 " struct guestfs_lvm_vg_list *\n"
16294 " guestfs_vgs_full (guestfs_h *g);\n"
16295 "\n"
16296 msgstr ""
16297
16298 #. type: textblock
16299 #: ../src/guestfs-actions.pod:6843 ../fish/guestfish-actions.pod:4562
16300 msgid ""
16301 "List all the volumes groups detected.  This is the equivalent of the "
16302 "L<vgs(8)> command.  The \"full\" version includes all fields."
16303 msgstr ""
16304
16305 #. type: textblock
16306 #: ../src/guestfs-actions.pod:6846
16307 msgid ""
16308 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
16309 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
16310 "use>."
16311 msgstr ""
16312
16313 #. type: =head2
16314 #: ../src/guestfs-actions.pod:6852
16315 msgid "guestfs_vgscan"
16316 msgstr ""
16317
16318 #. type: verbatim
16319 #: ../src/guestfs-actions.pod:6854
16320 #, no-wrap
16321 msgid ""
16322 " int\n"
16323 " guestfs_vgscan (guestfs_h *g);\n"
16324 "\n"
16325 msgstr ""
16326
16327 #. type: textblock
16328 #: ../src/guestfs-actions.pod:6857 ../fish/guestfish-actions.pod:4569
16329 msgid ""
16330 "This rescans all block devices and rebuilds the list of LVM physical "
16331 "volumes, volume groups and logical volumes."
16332 msgstr ""
16333
16334 #. type: =head2
16335 #: ../src/guestfs-actions.pod:6864
16336 msgid "guestfs_vguuid"
16337 msgstr ""
16338
16339 #. type: verbatim
16340 #: ../src/guestfs-actions.pod:6866
16341 #, no-wrap
16342 msgid ""
16343 " char *\n"
16344 " guestfs_vguuid (guestfs_h *g,\n"
16345 "                 const char *vgname);\n"
16346 "\n"
16347 msgstr ""
16348
16349 #. type: textblock
16350 #: ../src/guestfs-actions.pod:6870 ../fish/guestfish-actions.pod:4576
16351 msgid "This command returns the UUID of the LVM VG named C<vgname>."
16352 msgstr ""
16353
16354 #. type: =head2
16355 #: ../src/guestfs-actions.pod:6877
16356 msgid "guestfs_wait_ready"
16357 msgstr ""
16358
16359 #. type: verbatim
16360 #: ../src/guestfs-actions.pod:6879
16361 #, no-wrap
16362 msgid ""
16363 " int\n"
16364 " guestfs_wait_ready (guestfs_h *g);\n"
16365 "\n"
16366 msgstr ""
16367
16368 #. type: textblock
16369 #: ../src/guestfs-actions.pod:6882
16370 msgid "This function is a no op."
16371 msgstr ""
16372
16373 #. type: textblock
16374 #: ../src/guestfs-actions.pod:6884
16375 msgid ""
16376 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
16377 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
16378 "is no longer necessary because C<guestfs_launch> now does the waiting."
16379 msgstr ""
16380
16381 #. type: textblock
16382 #: ../src/guestfs-actions.pod:6889
16383 msgid ""
16384 "If you see any calls to this function in code then you can just remove them, "
16385 "unless you want to retain compatibility with older versions of the API."
16386 msgstr ""
16387
16388 #. type: =head2
16389 #: ../src/guestfs-actions.pod:6897
16390 msgid "guestfs_wc_c"
16391 msgstr ""
16392
16393 #. type: verbatim
16394 #: ../src/guestfs-actions.pod:6899
16395 #, no-wrap
16396 msgid ""
16397 " int\n"
16398 " guestfs_wc_c (guestfs_h *g,\n"
16399 "               const char *path);\n"
16400 "\n"
16401 msgstr ""
16402
16403 #. type: textblock
16404 #: ../src/guestfs-actions.pod:6903 ../fish/guestfish-actions.pod:4582
16405 msgid ""
16406 "This command counts the characters in a file, using the C<wc -c> external "
16407 "command."
16408 msgstr ""
16409
16410 #. type: =head2
16411 #: ../src/guestfs-actions.pod:6910
16412 msgid "guestfs_wc_l"
16413 msgstr ""
16414
16415 #. type: verbatim
16416 #: ../src/guestfs-actions.pod:6912
16417 #, no-wrap
16418 msgid ""
16419 " int\n"
16420 " guestfs_wc_l (guestfs_h *g,\n"
16421 "               const char *path);\n"
16422 "\n"
16423 msgstr ""
16424
16425 #. type: textblock
16426 #: ../src/guestfs-actions.pod:6916 ../fish/guestfish-actions.pod:4589
16427 msgid ""
16428 "This command counts the lines in a file, using the C<wc -l> external "
16429 "command."
16430 msgstr ""
16431
16432 #. type: =head2
16433 #: ../src/guestfs-actions.pod:6923
16434 msgid "guestfs_wc_w"
16435 msgstr ""
16436
16437 #. type: verbatim
16438 #: ../src/guestfs-actions.pod:6925
16439 #, no-wrap
16440 msgid ""
16441 " int\n"
16442 " guestfs_wc_w (guestfs_h *g,\n"
16443 "               const char *path);\n"
16444 "\n"
16445 msgstr ""
16446
16447 #. type: textblock
16448 #: ../src/guestfs-actions.pod:6929 ../fish/guestfish-actions.pod:4596
16449 msgid ""
16450 "This command counts the words in a file, using the C<wc -w> external "
16451 "command."
16452 msgstr ""
16453
16454 #. type: =head2
16455 #: ../src/guestfs-actions.pod:6936
16456 msgid "guestfs_write"
16457 msgstr ""
16458
16459 #. type: verbatim
16460 #: ../src/guestfs-actions.pod:6938
16461 #, no-wrap
16462 msgid ""
16463 " int\n"
16464 " guestfs_write (guestfs_h *g,\n"
16465 "                const char *path,\n"
16466 "                const char *content,\n"
16467 "                size_t content_size);\n"
16468 "\n"
16469 msgstr ""
16470
16471 #. type: textblock
16472 #: ../src/guestfs-actions.pod:6944 ../fish/guestfish-actions.pod:4603
16473 msgid ""
16474 "This call creates a file called C<path>.  The content of the file is the "
16475 "string C<content> (which can contain any 8 bit data)."
16476 msgstr ""
16477
16478 #. type: =head2
16479 #: ../src/guestfs-actions.pod:6954
16480 msgid "guestfs_write_file"
16481 msgstr ""
16482
16483 #. type: verbatim
16484 #: ../src/guestfs-actions.pod:6956
16485 #, no-wrap
16486 msgid ""
16487 " int\n"
16488 " guestfs_write_file (guestfs_h *g,\n"
16489 "                     const char *path,\n"
16490 "                     const char *content,\n"
16491 "                     int size);\n"
16492 "\n"
16493 msgstr ""
16494
16495 #. type: textblock
16496 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4613
16497 msgid ""
16498 "This call creates a file called C<path>.  The contents of the file is the "
16499 "string C<content> (which can contain any 8 bit data), with length C<size>."
16500 msgstr ""
16501
16502 #. type: textblock
16503 #: ../src/guestfs-actions.pod:6966 ../fish/guestfish-actions.pod:4617
16504 msgid ""
16505 "As a special case, if C<size> is C<0> then the length is calculated using "
16506 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
16507 msgstr ""
16508
16509 #. type: textblock
16510 #: ../src/guestfs-actions.pod:6970 ../fish/guestfish-actions.pod:4621
16511 msgid ""
16512 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
16513 "I<not> work, even if the length is specified."
16514 msgstr ""
16515
16516 #. type: textblock
16517 #: ../src/guestfs-actions.pod:6978
16518 msgid ""
16519 "This function is deprecated.  In new code, use the L</guestfs_write> call "
16520 "instead."
16521 msgstr ""
16522
16523 #. type: =head2
16524 #: ../src/guestfs-actions.pod:6987
16525 msgid "guestfs_zegrep"
16526 msgstr ""
16527
16528 #. type: verbatim
16529 #: ../src/guestfs-actions.pod:6989
16530 #, no-wrap
16531 msgid ""
16532 " char **\n"
16533 " guestfs_zegrep (guestfs_h *g,\n"
16534 "                 const char *regex,\n"
16535 "                 const char *path);\n"
16536 "\n"
16537 msgstr ""
16538
16539 #. type: textblock
16540 #: ../src/guestfs-actions.pod:6994 ../fish/guestfish-actions.pod:4638
16541 msgid "This calls the external C<zegrep> program and returns the matching lines."
16542 msgstr ""
16543
16544 #. type: =head2
16545 #: ../src/guestfs-actions.pod:7006
16546 msgid "guestfs_zegrepi"
16547 msgstr ""
16548
16549 #. type: verbatim
16550 #: ../src/guestfs-actions.pod:7008
16551 #, no-wrap
16552 msgid ""
16553 " char **\n"
16554 " guestfs_zegrepi (guestfs_h *g,\n"
16555 "                  const char *regex,\n"
16556 "                  const char *path);\n"
16557 "\n"
16558 msgstr ""
16559
16560 #. type: textblock
16561 #: ../src/guestfs-actions.pod:7013 ../fish/guestfish-actions.pod:4648
16562 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
16563 msgstr ""
16564
16565 #. type: =head2
16566 #: ../src/guestfs-actions.pod:7025
16567 msgid "guestfs_zero"
16568 msgstr ""
16569
16570 #. type: verbatim
16571 #: ../src/guestfs-actions.pod:7027
16572 #, no-wrap
16573 msgid ""
16574 " int\n"
16575 " guestfs_zero (guestfs_h *g,\n"
16576 "               const char *device);\n"
16577 "\n"
16578 msgstr ""
16579
16580 #. type: textblock
16581 #: ../src/guestfs-actions.pod:7031 ../fish/guestfish-actions.pod:4658
16582 msgid "This command writes zeroes over the first few blocks of C<device>."
16583 msgstr ""
16584
16585 #. type: textblock
16586 #: ../src/guestfs-actions.pod:7033 ../fish/guestfish-actions.pod:4660
16587 msgid ""
16588 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
16589 "securely wipe the device).  It should be sufficient to remove any partition "
16590 "tables, filesystem superblocks and so on."
16591 msgstr ""
16592
16593 #. type: textblock
16594 #: ../src/guestfs-actions.pod:7037
16595 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
16596 msgstr ""
16597
16598 #. type: =head2
16599 #: ../src/guestfs-actions.pod:7048
16600 msgid "guestfs_zero_device"
16601 msgstr ""
16602
16603 #. type: verbatim
16604 #: ../src/guestfs-actions.pod:7050
16605 #, no-wrap
16606 msgid ""
16607 " int\n"
16608 " guestfs_zero_device (guestfs_h *g,\n"
16609 "                      const char *device);\n"
16610 "\n"
16611 msgstr ""
16612
16613 #. type: textblock
16614 #: ../src/guestfs-actions.pod:7054
16615 msgid ""
16616 "This command writes zeroes over the entire C<device>.  Compare with "
16617 "C<guestfs_zero> which just zeroes the first few blocks of a device."
16618 msgstr ""
16619
16620 #. type: textblock
16621 #: ../src/guestfs-actions.pod:7068
16622 msgid "(Added in 1.3.1)"
16623 msgstr ""
16624
16625 #. type: =head2
16626 #: ../src/guestfs-actions.pod:7070
16627 msgid "guestfs_zerofree"
16628 msgstr ""
16629
16630 #. type: verbatim
16631 #: ../src/guestfs-actions.pod:7072
16632 #, no-wrap
16633 msgid ""
16634 " int\n"
16635 " guestfs_zerofree (guestfs_h *g,\n"
16636 "                   const char *device);\n"
16637 "\n"
16638 msgstr ""
16639
16640 #. type: textblock
16641 #: ../src/guestfs-actions.pod:7076 ../fish/guestfish-actions.pod:4681
16642 msgid ""
16643 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
16644 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
16645 "possible to compress the filesystem more effectively."
16646 msgstr ""
16647
16648 #. type: textblock
16649 #: ../src/guestfs-actions.pod:7081 ../fish/guestfish-actions.pod:4686
16650 msgid "You should B<not> run this program if the filesystem is mounted."
16651 msgstr ""
16652
16653 #. type: textblock
16654 #: ../src/guestfs-actions.pod:7084 ../fish/guestfish-actions.pod:4689
16655 msgid ""
16656 "It is possible that using this program can damage the filesystem or data on "
16657 "the filesystem."
16658 msgstr ""
16659
16660 #. type: =head2
16661 #: ../src/guestfs-actions.pod:7091
16662 msgid "guestfs_zfgrep"
16663 msgstr ""
16664
16665 #. type: verbatim
16666 #: ../src/guestfs-actions.pod:7093
16667 #, no-wrap
16668 msgid ""
16669 " char **\n"
16670 " guestfs_zfgrep (guestfs_h *g,\n"
16671 "                 const char *pattern,\n"
16672 "                 const char *path);\n"
16673 "\n"
16674 msgstr ""
16675
16676 #. type: textblock
16677 #: ../src/guestfs-actions.pod:7098 ../fish/guestfish-actions.pod:4696
16678 msgid "This calls the external C<zfgrep> program and returns the matching lines."
16679 msgstr ""
16680
16681 #. type: =head2
16682 #: ../src/guestfs-actions.pod:7110
16683 msgid "guestfs_zfgrepi"
16684 msgstr ""
16685
16686 #. type: verbatim
16687 #: ../src/guestfs-actions.pod:7112
16688 #, no-wrap
16689 msgid ""
16690 " char **\n"
16691 " guestfs_zfgrepi (guestfs_h *g,\n"
16692 "                  const char *pattern,\n"
16693 "                  const char *path);\n"
16694 "\n"
16695 msgstr ""
16696
16697 #. type: textblock
16698 #: ../src/guestfs-actions.pod:7117 ../fish/guestfish-actions.pod:4706
16699 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
16700 msgstr ""
16701
16702 #. type: =head2
16703 #: ../src/guestfs-actions.pod:7129
16704 msgid "guestfs_zfile"
16705 msgstr ""
16706
16707 #. type: verbatim
16708 #: ../src/guestfs-actions.pod:7131
16709 #, no-wrap
16710 msgid ""
16711 " char *\n"
16712 " guestfs_zfile (guestfs_h *g,\n"
16713 "                const char *meth,\n"
16714 "                const char *path);\n"
16715 "\n"
16716 msgstr ""
16717
16718 #. type: textblock
16719 #: ../src/guestfs-actions.pod:7136 ../fish/guestfish-actions.pod:4716
16720 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
16721 msgstr ""
16722
16723 #. type: textblock
16724 #: ../src/guestfs-actions.pod:7139 ../fish/guestfish-actions.pod:4719
16725 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
16726 msgstr ""
16727
16728 #. type: textblock
16729 #: ../src/guestfs-actions.pod:7141
16730 msgid ""
16731 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
16732 "files."
16733 msgstr ""
16734
16735 #. type: textblock
16736 #: ../src/guestfs-actions.pod:7147
16737 msgid ""
16738 "This function is deprecated.  In new code, use the L</guestfs_file> call "
16739 "instead."
16740 msgstr ""
16741
16742 #. type: =head2
16743 #: ../src/guestfs-actions.pod:7156
16744 msgid "guestfs_zgrep"
16745 msgstr ""
16746
16747 #. type: verbatim
16748 #: ../src/guestfs-actions.pod:7158
16749 #, no-wrap
16750 msgid ""
16751 " char **\n"
16752 " guestfs_zgrep (guestfs_h *g,\n"
16753 "                const char *regex,\n"
16754 "                const char *path);\n"
16755 "\n"
16756 msgstr ""
16757
16758 #. type: textblock
16759 #: ../src/guestfs-actions.pod:7163 ../fish/guestfish-actions.pod:4735
16760 msgid "This calls the external C<zgrep> program and returns the matching lines."
16761 msgstr ""
16762
16763 #. type: =head2
16764 #: ../src/guestfs-actions.pod:7175
16765 msgid "guestfs_zgrepi"
16766 msgstr ""
16767
16768 #. type: verbatim
16769 #: ../src/guestfs-actions.pod:7177
16770 #, no-wrap
16771 msgid ""
16772 " char **\n"
16773 " guestfs_zgrepi (guestfs_h *g,\n"
16774 "                 const char *regex,\n"
16775 "                 const char *path);\n"
16776 "\n"
16777 msgstr ""
16778
16779 #. type: textblock
16780 #: ../src/guestfs-actions.pod:7182 ../fish/guestfish-actions.pod:4745
16781 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
16782 msgstr ""
16783
16784 #. type: =item
16785 #: ../src/guestfs-availability.pod:3
16786 msgid "B<augeas>"
16787 msgstr ""
16788
16789 #. type: textblock
16790 #: ../src/guestfs-availability.pod:5
16791 msgid ""
16792 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
16793 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
16794 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
16795 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
16796 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
16797 msgstr ""
16798
16799 #. type: =item
16800 #: ../src/guestfs-availability.pod:21
16801 msgid "B<inotify>"
16802 msgstr ""
16803
16804 #. type: textblock
16805 #: ../src/guestfs-availability.pod:23
16806 msgid ""
16807 "The following functions: L</guestfs_inotify_add_watch> "
16808 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
16809 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
16810 msgstr ""
16811
16812 #. type: =item
16813 #: ../src/guestfs-availability.pod:31
16814 msgid "B<linuxfsuuid>"
16815 msgstr ""
16816
16817 #. type: textblock
16818 #: ../src/guestfs-availability.pod:33
16819 msgid ""
16820 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
16821 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
16822 msgstr ""
16823
16824 #. type: =item
16825 #: ../src/guestfs-availability.pod:40
16826 msgid "B<linuxmodules>"
16827 msgstr ""
16828
16829 #. type: textblock
16830 #: ../src/guestfs-availability.pod:42
16831 msgid "The following functions: L</guestfs_modprobe>"
16832 msgstr ""
16833
16834 #. type: =item
16835 #: ../src/guestfs-availability.pod:45
16836 msgid "B<linuxxattrs>"
16837 msgstr ""
16838
16839 #. type: textblock
16840 #: ../src/guestfs-availability.pod:47
16841 msgid ""
16842 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
16843 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
16844 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
16845 "L</guestfs_setxattr>"
16846 msgstr ""
16847
16848 #. type: =item
16849 #: ../src/guestfs-availability.pod:58
16850 msgid "B<luks>"
16851 msgstr ""
16852
16853 #. type: textblock
16854 #: ../src/guestfs-availability.pod:60
16855 msgid ""
16856 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
16857 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
16858 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
16859 msgstr ""
16860
16861 #. type: =item
16862 #: ../src/guestfs-availability.pod:69
16863 msgid "B<lvm2>"
16864 msgstr ""
16865
16866 #. type: textblock
16867 #: ../src/guestfs-availability.pod:71
16868 msgid ""
16869 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
16870 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
16871 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
16872 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
16873 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
16874 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
16875 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
16876 "L</guestfs_vgs_full>"
16877 msgstr ""
16878
16879 #. type: =item
16880 #: ../src/guestfs-availability.pod:94
16881 msgid "B<mknod>"
16882 msgstr ""
16883
16884 #. type: textblock
16885 #: ../src/guestfs-availability.pod:96
16886 msgid ""
16887 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
16888 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
16889 msgstr ""
16890
16891 #. type: =item
16892 #: ../src/guestfs-availability.pod:102
16893 msgid "B<ntfs3g>"
16894 msgstr ""
16895
16896 #. type: textblock
16897 #: ../src/guestfs-availability.pod:104
16898 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
16899 msgstr ""
16900
16901 #. type: =item
16902 #: ../src/guestfs-availability.pod:107
16903 msgid "B<ntfsprogs>"
16904 msgstr ""
16905
16906 #. type: textblock
16907 #: ../src/guestfs-availability.pod:109
16908 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
16909 msgstr ""
16910
16911 #. type: =item
16912 #: ../src/guestfs-availability.pod:113
16913 msgid "B<realpath>"
16914 msgstr ""
16915
16916 #. type: textblock
16917 #: ../src/guestfs-availability.pod:115
16918 msgid "The following functions: L</guestfs_realpath>"
16919 msgstr ""
16920
16921 #. type: =item
16922 #: ../src/guestfs-availability.pod:118
16923 msgid "B<scrub>"
16924 msgstr ""
16925
16926 #. type: textblock
16927 #: ../src/guestfs-availability.pod:120
16928 msgid ""
16929 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
16930 "L</guestfs_scrub_freespace>"
16931 msgstr ""
16932
16933 #. type: =item
16934 #: ../src/guestfs-availability.pod:125
16935 msgid "B<selinux>"
16936 msgstr ""
16937
16938 #. type: textblock
16939 #: ../src/guestfs-availability.pod:127
16940 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
16941 msgstr ""
16942
16943 #. type: =item
16944 #: ../src/guestfs-availability.pod:131
16945 msgid "B<xz>"
16946 msgstr ""
16947
16948 #. type: textblock
16949 #: ../src/guestfs-availability.pod:133
16950 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
16951 msgstr ""
16952
16953 #. type: =item
16954 #: ../src/guestfs-availability.pod:137
16955 msgid "B<zerofree>"
16956 msgstr ""
16957
16958 #. type: textblock
16959 #: ../src/guestfs-availability.pod:139
16960 msgid "The following functions: L</guestfs_zerofree>"
16961 msgstr ""
16962
16963 #. type: =head2
16964 #: ../src/guestfs-structs.pod:1
16965 msgid "guestfs_int_bool"
16966 msgstr ""
16967
16968 #. type: verbatim
16969 #: ../src/guestfs-structs.pod:3
16970 #, no-wrap
16971 msgid ""
16972 " struct guestfs_int_bool {\n"
16973 "   int32_t i;\n"
16974 "   int32_t b;\n"
16975 " };\n"
16976 " \n"
16977 msgstr ""
16978
16979 #. type: verbatim
16980 #: ../src/guestfs-structs.pod:8
16981 #, no-wrap
16982 msgid ""
16983 " struct guestfs_int_bool_list {\n"
16984 "   uint32_t len; /* Number of elements in list. */\n"
16985 "   struct guestfs_int_bool *val; /* Elements. */\n"
16986 " };\n"
16987 " \n"
16988 msgstr ""
16989
16990 #. type: verbatim
16991 #: ../src/guestfs-structs.pod:13
16992 #, no-wrap
16993 msgid ""
16994 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
16995 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
16996 "\n"
16997 msgstr ""
16998
16999 #. type: =head2
17000 #: ../src/guestfs-structs.pod:16
17001 msgid "guestfs_lvm_pv"
17002 msgstr ""
17003
17004 #. type: verbatim
17005 #: ../src/guestfs-structs.pod:18
17006 #, no-wrap
17007 msgid ""
17008 " struct guestfs_lvm_pv {\n"
17009 "   char *pv_name;\n"
17010 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17011 "*/\n"
17012 "   char pv_uuid[32];\n"
17013 "   char *pv_fmt;\n"
17014 "   uint64_t pv_size;\n"
17015 "   uint64_t dev_size;\n"
17016 "   uint64_t pv_free;\n"
17017 "   uint64_t pv_used;\n"
17018 "   char *pv_attr;\n"
17019 "   int64_t pv_pe_count;\n"
17020 "   int64_t pv_pe_alloc_count;\n"
17021 "   char *pv_tags;\n"
17022 "   uint64_t pe_start;\n"
17023 "   int64_t pv_mda_count;\n"
17024 "   uint64_t pv_mda_free;\n"
17025 " };\n"
17026 " \n"
17027 msgstr ""
17028
17029 #. type: verbatim
17030 #: ../src/guestfs-structs.pod:36
17031 #, no-wrap
17032 msgid ""
17033 " struct guestfs_lvm_pv_list {\n"
17034 "   uint32_t len; /* Number of elements in list. */\n"
17035 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
17036 " };\n"
17037 " \n"
17038 msgstr ""
17039
17040 #. type: verbatim
17041 #: ../src/guestfs-structs.pod:41
17042 #, no-wrap
17043 msgid ""
17044 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
17045 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
17046 "\n"
17047 msgstr ""
17048
17049 #. type: =head2
17050 #: ../src/guestfs-structs.pod:44
17051 msgid "guestfs_lvm_vg"
17052 msgstr ""
17053
17054 #. type: verbatim
17055 #: ../src/guestfs-structs.pod:46
17056 #, no-wrap
17057 msgid ""
17058 " struct guestfs_lvm_vg {\n"
17059 "   char *vg_name;\n"
17060 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17061 "*/\n"
17062 "   char vg_uuid[32];\n"
17063 "   char *vg_fmt;\n"
17064 "   char *vg_attr;\n"
17065 "   uint64_t vg_size;\n"
17066 "   uint64_t vg_free;\n"
17067 "   char *vg_sysid;\n"
17068 "   uint64_t vg_extent_size;\n"
17069 "   int64_t vg_extent_count;\n"
17070 "   int64_t vg_free_count;\n"
17071 "   int64_t max_lv;\n"
17072 "   int64_t max_pv;\n"
17073 "   int64_t pv_count;\n"
17074 "   int64_t lv_count;\n"
17075 "   int64_t snap_count;\n"
17076 "   int64_t vg_seqno;\n"
17077 "   char *vg_tags;\n"
17078 "   int64_t vg_mda_count;\n"
17079 "   uint64_t vg_mda_free;\n"
17080 " };\n"
17081 " \n"
17082 msgstr ""
17083
17084 #. type: verbatim
17085 #: ../src/guestfs-structs.pod:69
17086 #, no-wrap
17087 msgid ""
17088 " struct guestfs_lvm_vg_list {\n"
17089 "   uint32_t len; /* Number of elements in list. */\n"
17090 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
17091 " };\n"
17092 " \n"
17093 msgstr ""
17094
17095 #. type: verbatim
17096 #: ../src/guestfs-structs.pod:74
17097 #, no-wrap
17098 msgid ""
17099 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
17100 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
17101 "\n"
17102 msgstr ""
17103
17104 #. type: =head2
17105 #: ../src/guestfs-structs.pod:77
17106 msgid "guestfs_lvm_lv"
17107 msgstr ""
17108
17109 #. type: verbatim
17110 #: ../src/guestfs-structs.pod:79
17111 #, no-wrap
17112 msgid ""
17113 " struct guestfs_lvm_lv {\n"
17114 "   char *lv_name;\n"
17115 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17116 "*/\n"
17117 "   char lv_uuid[32];\n"
17118 "   char *lv_attr;\n"
17119 "   int64_t lv_major;\n"
17120 "   int64_t lv_minor;\n"
17121 "   int64_t lv_kernel_major;\n"
17122 "   int64_t lv_kernel_minor;\n"
17123 "   uint64_t lv_size;\n"
17124 "   int64_t seg_count;\n"
17125 "   char *origin;\n"
17126 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17127 "   float snap_percent;\n"
17128 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17129 "   float copy_percent;\n"
17130 "   char *move_pv;\n"
17131 "   char *lv_tags;\n"
17132 "   char *mirror_log;\n"
17133 "   char *modules;\n"
17134 " };\n"
17135 " \n"
17136 msgstr ""
17137
17138 #. type: verbatim
17139 #: ../src/guestfs-structs.pod:101
17140 #, no-wrap
17141 msgid ""
17142 " struct guestfs_lvm_lv_list {\n"
17143 "   uint32_t len; /* Number of elements in list. */\n"
17144 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
17145 " };\n"
17146 " \n"
17147 msgstr ""
17148
17149 #. type: verbatim
17150 #: ../src/guestfs-structs.pod:106
17151 #, no-wrap
17152 msgid ""
17153 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
17154 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
17155 "\n"
17156 msgstr ""
17157
17158 #. type: verbatim
17159 #: ../src/guestfs-structs.pod:111
17160 #, no-wrap
17161 msgid ""
17162 " struct guestfs_stat {\n"
17163 "   int64_t dev;\n"
17164 "   int64_t ino;\n"
17165 "   int64_t mode;\n"
17166 "   int64_t nlink;\n"
17167 "   int64_t uid;\n"
17168 "   int64_t gid;\n"
17169 "   int64_t rdev;\n"
17170 "   int64_t size;\n"
17171 "   int64_t blksize;\n"
17172 "   int64_t blocks;\n"
17173 "   int64_t atime;\n"
17174 "   int64_t mtime;\n"
17175 "   int64_t ctime;\n"
17176 " };\n"
17177 " \n"
17178 msgstr ""
17179
17180 #. type: verbatim
17181 #: ../src/guestfs-structs.pod:127
17182 #, no-wrap
17183 msgid ""
17184 " struct guestfs_stat_list {\n"
17185 "   uint32_t len; /* Number of elements in list. */\n"
17186 "   struct guestfs_stat *val; /* Elements. */\n"
17187 " };\n"
17188 " \n"
17189 msgstr ""
17190
17191 #. type: verbatim
17192 #: ../src/guestfs-structs.pod:132
17193 #, no-wrap
17194 msgid ""
17195 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
17196 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
17197 "\n"
17198 msgstr ""
17199
17200 #. type: verbatim
17201 #: ../src/guestfs-structs.pod:137
17202 #, no-wrap
17203 msgid ""
17204 " struct guestfs_statvfs {\n"
17205 "   int64_t bsize;\n"
17206 "   int64_t frsize;\n"
17207 "   int64_t blocks;\n"
17208 "   int64_t bfree;\n"
17209 "   int64_t bavail;\n"
17210 "   int64_t files;\n"
17211 "   int64_t ffree;\n"
17212 "   int64_t favail;\n"
17213 "   int64_t fsid;\n"
17214 "   int64_t flag;\n"
17215 "   int64_t namemax;\n"
17216 " };\n"
17217 " \n"
17218 msgstr ""
17219
17220 #. type: verbatim
17221 #: ../src/guestfs-structs.pod:151
17222 #, no-wrap
17223 msgid ""
17224 " struct guestfs_statvfs_list {\n"
17225 "   uint32_t len; /* Number of elements in list. */\n"
17226 "   struct guestfs_statvfs *val; /* Elements. */\n"
17227 " };\n"
17228 " \n"
17229 msgstr ""
17230
17231 #. type: verbatim
17232 #: ../src/guestfs-structs.pod:156
17233 #, no-wrap
17234 msgid ""
17235 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
17236 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
17237 "\n"
17238 msgstr ""
17239
17240 #. type: =head2
17241 #: ../src/guestfs-structs.pod:159
17242 msgid "guestfs_dirent"
17243 msgstr ""
17244
17245 #. type: verbatim
17246 #: ../src/guestfs-structs.pod:161
17247 #, no-wrap
17248 msgid ""
17249 " struct guestfs_dirent {\n"
17250 "   int64_t ino;\n"
17251 "   char ftyp;\n"
17252 "   char *name;\n"
17253 " };\n"
17254 " \n"
17255 msgstr ""
17256
17257 #. type: verbatim
17258 #: ../src/guestfs-structs.pod:167
17259 #, no-wrap
17260 msgid ""
17261 " struct guestfs_dirent_list {\n"
17262 "   uint32_t len; /* Number of elements in list. */\n"
17263 "   struct guestfs_dirent *val; /* Elements. */\n"
17264 " };\n"
17265 " \n"
17266 msgstr ""
17267
17268 #. type: verbatim
17269 #: ../src/guestfs-structs.pod:172
17270 #, no-wrap
17271 msgid ""
17272 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
17273 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
17274 "\n"
17275 msgstr ""
17276
17277 #. type: verbatim
17278 #: ../src/guestfs-structs.pod:177
17279 #, no-wrap
17280 msgid ""
17281 " struct guestfs_version {\n"
17282 "   int64_t major;\n"
17283 "   int64_t minor;\n"
17284 "   int64_t release;\n"
17285 "   char *extra;\n"
17286 " };\n"
17287 " \n"
17288 msgstr ""
17289
17290 #. type: verbatim
17291 #: ../src/guestfs-structs.pod:184
17292 #, no-wrap
17293 msgid ""
17294 " struct guestfs_version_list {\n"
17295 "   uint32_t len; /* Number of elements in list. */\n"
17296 "   struct guestfs_version *val; /* Elements. */\n"
17297 " };\n"
17298 " \n"
17299 msgstr ""
17300
17301 #. type: verbatim
17302 #: ../src/guestfs-structs.pod:189
17303 #, no-wrap
17304 msgid ""
17305 " void guestfs_free_version (struct guestfs_free_version *);\n"
17306 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
17307 "\n"
17308 msgstr ""
17309
17310 #. type: =head2
17311 #: ../src/guestfs-structs.pod:192
17312 msgid "guestfs_xattr"
17313 msgstr ""
17314
17315 #. type: verbatim
17316 #: ../src/guestfs-structs.pod:194
17317 #, no-wrap
17318 msgid ""
17319 " struct guestfs_xattr {\n"
17320 "   char *attrname;\n"
17321 "   /* The next two fields describe a byte array. */\n"
17322 "   uint32_t attrval_len;\n"
17323 "   char *attrval;\n"
17324 " };\n"
17325 " \n"
17326 msgstr ""
17327
17328 #. type: verbatim
17329 #: ../src/guestfs-structs.pod:201
17330 #, no-wrap
17331 msgid ""
17332 " struct guestfs_xattr_list {\n"
17333 "   uint32_t len; /* Number of elements in list. */\n"
17334 "   struct guestfs_xattr *val; /* Elements. */\n"
17335 " };\n"
17336 " \n"
17337 msgstr ""
17338
17339 #. type: verbatim
17340 #: ../src/guestfs-structs.pod:206
17341 #, no-wrap
17342 msgid ""
17343 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
17344 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
17345 "\n"
17346 msgstr ""
17347
17348 #. type: =head2
17349 #: ../src/guestfs-structs.pod:209
17350 msgid "guestfs_inotify_event"
17351 msgstr ""
17352
17353 #. type: verbatim
17354 #: ../src/guestfs-structs.pod:211
17355 #, no-wrap
17356 msgid ""
17357 " struct guestfs_inotify_event {\n"
17358 "   int64_t in_wd;\n"
17359 "   uint32_t in_mask;\n"
17360 "   uint32_t in_cookie;\n"
17361 "   char *in_name;\n"
17362 " };\n"
17363 " \n"
17364 msgstr ""
17365
17366 #. type: verbatim
17367 #: ../src/guestfs-structs.pod:218
17368 #, no-wrap
17369 msgid ""
17370 " struct guestfs_inotify_event_list {\n"
17371 "   uint32_t len; /* Number of elements in list. */\n"
17372 "   struct guestfs_inotify_event *val; /* Elements. */\n"
17373 " };\n"
17374 " \n"
17375 msgstr ""
17376
17377 #. type: verbatim
17378 #: ../src/guestfs-structs.pod:223
17379 #, no-wrap
17380 msgid ""
17381 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
17382 " void guestfs_free_inotify_event_list (struct "
17383 "guestfs_free_inotify_event_list *);\n"
17384 "\n"
17385 msgstr ""
17386
17387 #. type: =head2
17388 #: ../src/guestfs-structs.pod:226
17389 msgid "guestfs_partition"
17390 msgstr ""
17391
17392 #. type: verbatim
17393 #: ../src/guestfs-structs.pod:228
17394 #, no-wrap
17395 msgid ""
17396 " struct guestfs_partition {\n"
17397 "   int32_t part_num;\n"
17398 "   uint64_t part_start;\n"
17399 "   uint64_t part_end;\n"
17400 "   uint64_t part_size;\n"
17401 " };\n"
17402 " \n"
17403 msgstr ""
17404
17405 #. type: verbatim
17406 #: ../src/guestfs-structs.pod:235
17407 #, no-wrap
17408 msgid ""
17409 " struct guestfs_partition_list {\n"
17410 "   uint32_t len; /* Number of elements in list. */\n"
17411 "   struct guestfs_partition *val; /* Elements. */\n"
17412 " };\n"
17413 " \n"
17414 msgstr ""
17415
17416 #. type: verbatim
17417 #: ../src/guestfs-structs.pod:240
17418 #, no-wrap
17419 msgid ""
17420 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
17421 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
17422 "\n"
17423 msgstr ""
17424
17425 #. type: =head2
17426 #: ../src/guestfs-structs.pod:243
17427 msgid "guestfs_application"
17428 msgstr ""
17429
17430 #. type: verbatim
17431 #: ../src/guestfs-structs.pod:245
17432 #, no-wrap
17433 msgid ""
17434 " struct guestfs_application {\n"
17435 "   char *app_name;\n"
17436 "   char *app_display_name;\n"
17437 "   int32_t app_epoch;\n"
17438 "   char *app_version;\n"
17439 "   char *app_release;\n"
17440 "   char *app_install_path;\n"
17441 "   char *app_trans_path;\n"
17442 "   char *app_publisher;\n"
17443 "   char *app_url;\n"
17444 "   char *app_source_package;\n"
17445 "   char *app_summary;\n"
17446 "   char *app_description;\n"
17447 " };\n"
17448 " \n"
17449 msgstr ""
17450
17451 #. type: verbatim
17452 #: ../src/guestfs-structs.pod:260
17453 #, no-wrap
17454 msgid ""
17455 " struct guestfs_application_list {\n"
17456 "   uint32_t len; /* Number of elements in list. */\n"
17457 "   struct guestfs_application *val; /* Elements. */\n"
17458 " };\n"
17459 " \n"
17460 msgstr ""
17461
17462 #. type: verbatim
17463 #: ../src/guestfs-structs.pod:265
17464 #, no-wrap
17465 msgid ""
17466 " void guestfs_free_application (struct guestfs_free_application *);\n"
17467 " void guestfs_free_application_list (struct guestfs_free_application_list "
17468 "*);\n"
17469 "\n"
17470 msgstr ""
17471
17472 #. type: textblock
17473 #: ../fish/guestfish.pod:5
17474 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
17475 msgstr ""
17476
17477 #. type: verbatim
17478 #: ../fish/guestfish.pod:9
17479 #, no-wrap
17480 msgid ""
17481 " guestfish [--options] [commands]\n"
17482 "\n"
17483 msgstr ""
17484
17485 #. type: verbatim
17486 #: ../fish/guestfish.pod:11
17487 #, no-wrap
17488 msgid ""
17489 " guestfish\n"
17490 "\n"
17491 msgstr ""
17492
17493 #. type: verbatim
17494 #: ../fish/guestfish.pod:13
17495 #, no-wrap
17496 msgid ""
17497 " guestfish [--ro|--rw] -a disk.img\n"
17498 "\n"
17499 msgstr ""
17500
17501 #. type: verbatim
17502 #: ../fish/guestfish.pod:15
17503 #, no-wrap
17504 msgid ""
17505 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
17506 "\n"
17507 msgstr ""
17508
17509 #. type: verbatim
17510 #: ../fish/guestfish.pod:17
17511 #, no-wrap
17512 msgid ""
17513 " guestfish -d libvirt-domain\n"
17514 "\n"
17515 msgstr ""
17516
17517 #. type: verbatim
17518 #: ../fish/guestfish.pod:19
17519 #, no-wrap
17520 msgid ""
17521 " guestfish [--ro|--rw] -a disk.img -i\n"
17522 "\n"
17523 msgstr ""
17524
17525 #. type: verbatim
17526 #: ../fish/guestfish.pod:21
17527 #, no-wrap
17528 msgid ""
17529 " guestfish -d libvirt-domain -i\n"
17530 "\n"
17531 msgstr ""
17532
17533 #. type: =head1
17534 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:59
17535 msgid "WARNING"
17536 msgstr ""
17537
17538 #. type: textblock
17539 #: ../fish/guestfish.pod:25
17540 msgid ""
17541 "Using guestfish in read/write mode on live virtual machines can be "
17542 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
17543 "option to use guestfish safely if the disk image or virtual machine might be "
17544 "live."
17545 msgstr ""
17546
17547 #. type: textblock
17548 #: ../fish/guestfish.pod:32
17549 msgid ""
17550 "Guestfish is a shell and command-line tool for examining and modifying "
17551 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
17552 "functionality of the guestfs API, see L<guestfs(3)>."
17553 msgstr ""
17554
17555 #. type: textblock
17556 #: ../fish/guestfish.pod:36
17557 msgid ""
17558 "Guestfish gives you structured access to the libguestfs API, from shell "
17559 "scripts or the command line or interactively.  If you want to rescue a "
17560 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
17561 "command."
17562 msgstr ""
17563
17564 #. type: =head1
17565 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:897 ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-resize.pl:64 ../tools/virt-tar.pl:45
17566 msgid "EXAMPLES"
17567 msgstr ""
17568
17569 #. type: =head2
17570 #: ../fish/guestfish.pod:43
17571 msgid "As an interactive shell"
17572 msgstr ""
17573
17574 #. type: verbatim
17575 #: ../fish/guestfish.pod:45
17576 #, no-wrap
17577 msgid ""
17578 " $ guestfish\n"
17579 " \n"
17580 msgstr ""
17581
17582 #. type: verbatim
17583 #: ../fish/guestfish.pod:47
17584 #, no-wrap
17585 msgid ""
17586 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
17587 " editing virtual machine filesystems.\n"
17588 " \n"
17589 msgstr ""
17590
17591 #. type: verbatim
17592 #: ../fish/guestfish.pod:50
17593 #, no-wrap
17594 msgid ""
17595 " Type: 'help' for a list of commands\n"
17596 "       'man' to read the manual\n"
17597 "       'quit' to quit the shell\n"
17598 " \n"
17599 msgstr ""
17600
17601 #. type: verbatim
17602 #: ../fish/guestfish.pod:54
17603 #, no-wrap
17604 msgid ""
17605 " ><fs> add-ro disk.img\n"
17606 " ><fs> run\n"
17607 " ><fs> list-filesystems\n"
17608 " /dev/sda1: ext4\n"
17609 " /dev/vg_guest/lv_root: ext4\n"
17610 " /dev/vg_guest/lv_swap: swap\n"
17611 " ><fs> mount /dev/vg_guest/lv_root /\n"
17612 " ><fs> cat /etc/fstab\n"
17613 " # /etc/fstab\n"
17614 " # Created by anaconda\n"
17615 " [...]\n"
17616 " ><fs> exit\n"
17617 "\n"
17618 msgstr ""
17619
17620 #. type: =head2
17621 #: ../fish/guestfish.pod:67
17622 msgid "From shell scripts"
17623 msgstr ""
17624
17625 #. type: textblock
17626 #: ../fish/guestfish.pod:69
17627 msgid "Create a new C</etc/motd> file in a guest or disk image:"
17628 msgstr ""
17629
17630 #. type: verbatim
17631 #: ../fish/guestfish.pod:71
17632 #, no-wrap
17633 msgid ""
17634 " guestfish <<_EOF_\n"
17635 " add disk.img\n"
17636 " run\n"
17637 " mount /dev/vg_guest/lv_root /\n"
17638 " write /etc/motd \"Welcome, new users\"\n"
17639 " _EOF_\n"
17640 "\n"
17641 msgstr ""
17642
17643 #. type: textblock
17644 #: ../fish/guestfish.pod:78
17645 msgid "List the LVM logical volumes in a disk image:"
17646 msgstr ""
17647
17648 #. type: verbatim
17649 #: ../fish/guestfish.pod:80
17650 #, no-wrap
17651 msgid ""
17652 " guestfish -a disk.img --ro <<_EOF_\n"
17653 " run\n"
17654 " lvs\n"
17655 " _EOF_\n"
17656 "\n"
17657 msgstr ""
17658
17659 #. type: textblock
17660 #: ../fish/guestfish.pod:85
17661 msgid "List all the filesystems in a disk image:"
17662 msgstr ""
17663
17664 #. type: verbatim
17665 #: ../fish/guestfish.pod:87
17666 #, no-wrap
17667 msgid ""
17668 " guestfish -a disk.img --ro <<_EOF_\n"
17669 " run\n"
17670 " list-filesystems\n"
17671 " _EOF_\n"
17672 "\n"
17673 msgstr ""
17674
17675 #. type: =head2
17676 #: ../fish/guestfish.pod:92
17677 msgid "On one command line"
17678 msgstr ""
17679
17680 #. type: textblock
17681 #: ../fish/guestfish.pod:94
17682 msgid "Update C</etc/resolv.conf> in a guest:"
17683 msgstr ""
17684
17685 #. type: verbatim
17686 #: ../fish/guestfish.pod:96
17687 #, no-wrap
17688 msgid ""
17689 " guestfish \\\n"
17690 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
17691 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
17692 "\n"
17693 msgstr ""
17694
17695 #. type: textblock
17696 #: ../fish/guestfish.pod:100
17697 msgid "Edit C</boot/grub/grub.conf> interactively:"
17698 msgstr ""
17699
17700 #. type: verbatim
17701 #: ../fish/guestfish.pod:102
17702 #, no-wrap
17703 msgid ""
17704 " guestfish --rw --add disk.img \\\n"
17705 "   --mount /dev/vg_guest/lv_root \\\n"
17706 "   --mount /dev/sda1:/boot \\\n"
17707 "   edit /boot/grub/grub.conf\n"
17708 "\n"
17709 msgstr ""
17710
17711 #. type: =head2
17712 #: ../fish/guestfish.pod:107
17713 msgid "Mount disks automatically"
17714 msgstr ""
17715
17716 #. type: textblock
17717 #: ../fish/guestfish.pod:109
17718 msgid ""
17719 "Use the I<-i> option to automatically mount the disks from a virtual "
17720 "machine:"
17721 msgstr ""
17722
17723 #. type: verbatim
17724 #: ../fish/guestfish.pod:112
17725 #, no-wrap
17726 msgid ""
17727 " guestfish --ro -a disk.img -i cat /etc/group\n"
17728 "\n"
17729 msgstr ""
17730
17731 #. type: verbatim
17732 #: ../fish/guestfish.pod:114
17733 #, no-wrap
17734 msgid ""
17735 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
17736 "\n"
17737 msgstr ""
17738
17739 #. type: textblock
17740 #: ../fish/guestfish.pod:116
17741 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
17742 msgstr ""
17743
17744 #. type: verbatim
17745 #: ../fish/guestfish.pod:118
17746 #, no-wrap
17747 msgid ""
17748 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
17749 "\n"
17750 msgstr ""
17751
17752 #. type: =head2
17753 #: ../fish/guestfish.pod:120
17754 msgid "As a script interpreter"
17755 msgstr ""
17756
17757 #. type: textblock
17758 #: ../fish/guestfish.pod:122
17759 msgid "Create a 100MB disk containing an ext2-formatted partition:"
17760 msgstr ""
17761
17762 #. type: verbatim
17763 #: ../fish/guestfish.pod:124
17764 #, no-wrap
17765 msgid ""
17766 " #!/usr/bin/guestfish -f\n"
17767 " sparse test1.img 100M\n"
17768 " run\n"
17769 " part-disk /dev/sda mbr\n"
17770 " mkfs ext2 /dev/sda1\n"
17771 "\n"
17772 msgstr ""
17773
17774 #. type: =head2
17775 #: ../fish/guestfish.pod:130
17776 msgid "Start with a prepared disk"
17777 msgstr ""
17778
17779 #. type: textblock
17780 #: ../fish/guestfish.pod:132
17781 msgid ""
17782 "An alternate way to create a 100MB disk called C<test1.img> containing a "
17783 "single ext2-formatted partition:"
17784 msgstr ""
17785
17786 #. type: verbatim
17787 #: ../fish/guestfish.pod:135
17788 #, no-wrap
17789 msgid ""
17790 " guestfish -N fs\n"
17791 "\n"
17792 msgstr ""
17793
17794 #. type: textblock
17795 #: ../fish/guestfish.pod:137
17796 msgid "To list what is available do:"
17797 msgstr ""
17798
17799 #. type: verbatim
17800 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:888
17801 #, no-wrap
17802 msgid ""
17803 " guestfish -N help | less\n"
17804 "\n"
17805 msgstr ""
17806
17807 #. type: =head2
17808 #: ../fish/guestfish.pod:141
17809 msgid "Remote control"
17810 msgstr ""
17811
17812 #. type: verbatim
17813 #: ../fish/guestfish.pod:143
17814 #, no-wrap
17815 msgid ""
17816 " eval \"`guestfish --listen`\"\n"
17817 " guestfish --remote add-ro disk.img\n"
17818 " guestfish --remote run\n"
17819 " guestfish --remote lvs\n"
17820 "\n"
17821 msgstr ""
17822
17823 #. type: =head1
17824 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37 ../fuse/guestmount.pod:73 ../tools/virt-edit.pl:77 ../tools/virt-win-reg.pl:96 ../tools/virt-resize.pl:254 ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:98 ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
17825 msgid "OPTIONS"
17826 msgstr ""
17827
17828 #. type: =item
17829 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:131 ../tools/virt-edit.pl:85 ../tools/virt-win-reg.pl:104 ../tools/virt-resize.pl:262 ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:106 ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
17830 msgid "B<--help>"
17831 msgstr ""
17832
17833 #. type: textblock
17834 #: ../fish/guestfish.pod:154
17835 msgid "Displays general help on options."
17836 msgstr ""
17837
17838 #. type: =item
17839 #: ../fish/guestfish.pod:156
17840 msgid "B<-h>"
17841 msgstr ""
17842
17843 #. type: =item
17844 #: ../fish/guestfish.pod:158
17845 msgid "B<--cmd-help>"
17846 msgstr ""
17847
17848 #. type: textblock
17849 #: ../fish/guestfish.pod:160
17850 msgid "Lists all available guestfish commands."
17851 msgstr ""
17852
17853 #. type: =item
17854 #: ../fish/guestfish.pod:162
17855 msgid "B<-h cmd>"
17856 msgstr ""
17857
17858 #. type: =item
17859 #: ../fish/guestfish.pod:164
17860 msgid "B<--cmd-help cmd>"
17861 msgstr ""
17862
17863 #. type: textblock
17864 #: ../fish/guestfish.pod:166
17865 msgid "Displays detailed help on a single command C<cmd>."
17866 msgstr ""
17867
17868 #. type: =item
17869 #: ../fish/guestfish.pod:168
17870 msgid "B<-a image>"
17871 msgstr ""
17872
17873 #. type: =item
17874 #: ../fish/guestfish.pod:170
17875 msgid "B<--add image>"
17876 msgstr ""
17877
17878 #. type: textblock
17879 #: ../fish/guestfish.pod:172
17880 msgid "Add a block device or virtual machine image to the shell."
17881 msgstr ""
17882
17883 #. type: textblock
17884 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
17885 msgid ""
17886 "The format of the disk image is auto-detected.  To override this and force a "
17887 "particular format use the I<--format=..> option."
17888 msgstr ""
17889
17890 #. type: textblock
17891 #: ../fish/guestfish.pod:177
17892 msgid ""
17893 "Using this flag is mostly equivalent to using the C<add> command, with "
17894 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
17895 "the I<--format=...> flag was given."
17896 msgstr ""
17897
17898 #. type: =item
17899 #: ../fish/guestfish.pod:181
17900 msgid "B<-c URI>"
17901 msgstr ""
17902
17903 #. type: =item
17904 #: ../fish/guestfish.pod:183
17905 msgid "B<--connect URI>"
17906 msgstr ""
17907
17908 #. type: textblock
17909 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
17910 msgid ""
17911 "When used in conjunction with the I<-d> option, this specifies the libvirt "
17912 "URI to use.  The default is to use the default libvirt connection."
17913 msgstr ""
17914
17915 #. type: =item
17916 #: ../fish/guestfish.pod:189
17917 msgid "B<--csh>"
17918 msgstr ""
17919
17920 #. type: textblock
17921 #: ../fish/guestfish.pod:191
17922 msgid ""
17923 "If using the I<--listen> option and a csh-like shell, use this option.  See "
17924 "section L</REMOTE CONTROL AND CSH> below."
17925 msgstr ""
17926
17927 #. type: =item
17928 #: ../fish/guestfish.pod:194
17929 msgid "B<-d libvirt-domain>"
17930 msgstr ""
17931
17932 #. type: =item
17933 #: ../fish/guestfish.pod:196
17934 msgid "B<--domain libvirt-domain>"
17935 msgstr ""
17936
17937 #. type: textblock
17938 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
17939 msgid ""
17940 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
17941 "used, then any libvirt domain can be used.  However in write mode, only "
17942 "libvirt domains which are shut down can be named here."
17943 msgstr ""
17944
17945 #. type: textblock
17946 #: ../fish/guestfish.pod:202
17947 msgid ""
17948 "Using this flag is mostly equivalent to using the C<add-domain> command, "
17949 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
17950 "if the I<--format:...> flag was given."
17951 msgstr ""
17952
17953 #. type: =item
17954 #: ../fish/guestfish.pod:206
17955 msgid "B<-D>"
17956 msgstr ""
17957
17958 #. type: =item
17959 #: ../fish/guestfish.pod:208
17960 msgid "B<--no-dest-paths>"
17961 msgstr ""
17962
17963 #. type: textblock
17964 #: ../fish/guestfish.pod:210
17965 msgid ""
17966 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
17967 "to hit the tab key to complete paths on the guest filesystem, but this "
17968 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
17969 "allow this feature to be disabled."
17970 msgstr ""
17971
17972 #. type: =item
17973 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
17974 msgid "B<--echo-keys>"
17975 msgstr ""
17976
17977 #. type: textblock
17978 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
17979 msgid ""
17980 "When prompting for keys and passphrases, guestfish normally turns echoing "
17981 "off so you cannot see what you are typing.  If you are not worried about "
17982 "Tempest attacks and there is no one else in the room you can specify this "
17983 "flag to see what you are typing."
17984 msgstr ""
17985
17986 #. type: =item
17987 #: ../fish/guestfish.pod:222
17988 msgid "B<-f file>"
17989 msgstr ""
17990
17991 #. type: =item
17992 #: ../fish/guestfish.pod:224
17993 msgid "B<--file file>"
17994 msgstr ""
17995
17996 #. type: textblock
17997 #: ../fish/guestfish.pod:226
17998 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
17999 msgstr ""
18000
18001 #. type: verbatim
18002 #: ../fish/guestfish.pod:229
18003 #, no-wrap
18004 msgid ""
18005 " #!/usr/bin/guestfish -f\n"
18006 "\n"
18007 msgstr ""
18008
18009 #. type: =item
18010 #: ../fish/guestfish.pod:231
18011 msgid "B<--format=raw|qcow2|..>"
18012 msgstr ""
18013
18014 #. type: =item
18015 #: ../fish/guestfish.pod:233
18016 msgid "B<--format>"
18017 msgstr ""
18018
18019 #. type: textblock
18020 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
18021 msgid ""
18022 "The default for the I<-a> option is to auto-detect the format of the disk "
18023 "image.  Using this forces the disk format for I<-a> options which follow on "
18024 "the command line.  Using I<--format> with no argument switches back to "
18025 "auto-detection for subsequent I<-a> options."
18026 msgstr ""
18027
18028 #. type: verbatim
18029 #: ../fish/guestfish.pod:242
18030 #, no-wrap
18031 msgid ""
18032 " guestfish --format=raw -a disk.img\n"
18033 "\n"
18034 msgstr ""
18035
18036 #. type: textblock
18037 #: ../fish/guestfish.pod:244
18038 msgid "forces raw format (no auto-detection) for C<disk.img>."
18039 msgstr ""
18040
18041 #. type: verbatim
18042 #: ../fish/guestfish.pod:246
18043 #, no-wrap
18044 msgid ""
18045 " guestfish --format=raw -a disk.img --format -a another.img\n"
18046 "\n"
18047 msgstr ""
18048
18049 #. type: textblock
18050 #: ../fish/guestfish.pod:248
18051 msgid ""
18052 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
18053 "auto-detection for C<another.img>."
18054 msgstr ""
18055
18056 #. type: textblock
18057 #: ../fish/guestfish.pod:251
18058 msgid ""
18059 "If you have untrusted raw-format guest disk images, you should use this "
18060 "option to specify the disk format.  This avoids a possible security problem "
18061 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
18062 msgstr ""
18063
18064 #. type: =item
18065 #: ../fish/guestfish.pod:256
18066 msgid "B<-i>"
18067 msgstr ""
18068
18069 #. type: =item
18070 #: ../fish/guestfish.pod:258
18071 msgid "B<--inspector>"
18072 msgstr ""
18073
18074 #. type: textblock
18075 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
18076 msgid ""
18077 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
18078 "system and mount filesystems as they would be mounted on the real virtual "
18079 "machine."
18080 msgstr ""
18081
18082 #. type: textblock
18083 #: ../fish/guestfish.pod:264
18084 msgid "Typical usage is either:"
18085 msgstr ""
18086
18087 #. type: verbatim
18088 #: ../fish/guestfish.pod:266
18089 #, no-wrap
18090 msgid ""
18091 " guestfish -d myguest -i\n"
18092 "\n"
18093 msgstr ""
18094
18095 #. type: textblock
18096 #: ../fish/guestfish.pod:268
18097 msgid "(for an inactive libvirt domain called I<myguest>), or:"
18098 msgstr ""
18099
18100 #. type: verbatim
18101 #: ../fish/guestfish.pod:270
18102 #, no-wrap
18103 msgid ""
18104 " guestfish --ro -d myguest -i\n"
18105 "\n"
18106 msgstr ""
18107
18108 #. type: textblock
18109 #: ../fish/guestfish.pod:272
18110 msgid "(for active domains, readonly), or specify the block device directly:"
18111 msgstr ""
18112
18113 #. type: verbatim
18114 #: ../fish/guestfish.pod:274
18115 #, no-wrap
18116 msgid ""
18117 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
18118 "\n"
18119 msgstr ""
18120
18121 #. type: textblock
18122 #: ../fish/guestfish.pod:276
18123 msgid ""
18124 "Note that the command line syntax changed slightly over older versions of "
18125 "guestfish.  You can still use the old syntax:"
18126 msgstr ""
18127
18128 #. type: verbatim
18129 #: ../fish/guestfish.pod:279
18130 #, no-wrap
18131 msgid ""
18132 " guestfish [--ro] -i disk.img\n"
18133 "\n"
18134 msgstr ""
18135
18136 #. type: verbatim
18137 #: ../fish/guestfish.pod:281
18138 #, no-wrap
18139 msgid ""
18140 " guestfish [--ro] -i libvirt-domain\n"
18141 "\n"
18142 msgstr ""
18143
18144 #. type: textblock
18145 #: ../fish/guestfish.pod:283
18146 msgid ""
18147 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
18148 "then using other commands to mount the filesystems that were found."
18149 msgstr ""
18150
18151 #. type: =item
18152 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
18153 msgid "B<--keys-from-stdin>"
18154 msgstr ""
18155
18156 #. type: textblock
18157 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
18158 msgid ""
18159 "Read key or passphrase parameters from stdin.  The default is to try to read "
18160 "passphrases from the user by opening C</dev/tty>."
18161 msgstr ""
18162
18163 #. type: =item
18164 #: ../fish/guestfish.pod:292
18165 msgid "B<--listen>"
18166 msgstr ""
18167
18168 #. type: textblock
18169 #: ../fish/guestfish.pod:294
18170 msgid ""
18171 "Fork into the background and listen for remote commands.  See section "
18172 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
18173 msgstr ""
18174
18175 #. type: =item
18176 #: ../fish/guestfish.pod:297
18177 msgid "B<-m dev[:mountpoint]>"
18178 msgstr ""
18179
18180 #. type: =item
18181 #: ../fish/guestfish.pod:299
18182 msgid "B<--mount dev[:mountpoint]>"
18183 msgstr ""
18184
18185 #. type: textblock
18186 #: ../fish/guestfish.pod:301
18187 msgid "Mount the named partition or logical volume on the given mountpoint."
18188 msgstr ""
18189
18190 #. type: textblock
18191 #: ../fish/guestfish.pod:303
18192 msgid "If the mountpoint is omitted, it defaults to C</>."
18193 msgstr ""
18194
18195 #. type: textblock
18196 #: ../fish/guestfish.pod:305
18197 msgid "You have to mount something on C</> before most commands will work."
18198 msgstr ""
18199
18200 #. type: textblock
18201 #: ../fish/guestfish.pod:307
18202 msgid ""
18203 "If any I<-m> or I<--mount> options are given, the guest is automatically "
18204 "launched."
18205 msgstr ""
18206
18207 #. type: textblock
18208 #: ../fish/guestfish.pod:310
18209 msgid ""
18210 "If you don't know what filesystems a disk image contains, you can either run "
18211 "guestfish without this option, then list the partitions, filesystems and LVs "
18212 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
18213 "commands), or you can use the L<virt-filesystems(1)> program."
18214 msgstr ""
18215
18216 #. type: textblock
18217 #: ../fish/guestfish.pod:316
18218 msgid ""
18219 "Using this flag is mostly equivalent to using the C<mount-options> command "
18220 "or the C<mount-ro> command if the I<--ro> flag was given."
18221 msgstr ""
18222
18223 #. type: =item
18224 #: ../fish/guestfish.pod:319
18225 msgid "B<-n>"
18226 msgstr ""
18227
18228 #. type: =item
18229 #: ../fish/guestfish.pod:321
18230 msgid "B<--no-sync>"
18231 msgstr ""
18232
18233 #. type: textblock
18234 #: ../fish/guestfish.pod:323
18235 msgid ""
18236 "Disable autosync.  This is enabled by default.  See the discussion of "
18237 "autosync in the L<guestfs(3)> manpage."
18238 msgstr ""
18239
18240 #. type: =item
18241 #: ../fish/guestfish.pod:326
18242 msgid "B<-N type>"
18243 msgstr ""
18244
18245 #. type: =item
18246 #: ../fish/guestfish.pod:328
18247 msgid "B<--new type>"
18248 msgstr ""
18249
18250 #. type: =item
18251 #: ../fish/guestfish.pod:330
18252 msgid "B<-N help>"
18253 msgstr ""
18254
18255 #. type: textblock
18256 #: ../fish/guestfish.pod:332
18257 msgid ""
18258 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
18259 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
18260 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
18261 "IMAGES> below."
18262 msgstr ""
18263
18264 #. type: =item
18265 #: ../fish/guestfish.pod:337
18266 msgid "B<--progress-bars>"
18267 msgstr ""
18268
18269 #. type: textblock
18270 #: ../fish/guestfish.pod:339
18271 msgid "Enable progress bars, even when guestfish is used non-interactively."
18272 msgstr ""
18273
18274 #. type: textblock
18275 #: ../fish/guestfish.pod:341
18276 msgid ""
18277 "Progress bars are enabled by default when guestfish is used as an "
18278 "interactive shell."
18279 msgstr ""
18280
18281 #. type: =item
18282 #: ../fish/guestfish.pod:344
18283 msgid "B<--no-progress-bars>"
18284 msgstr ""
18285
18286 #. type: textblock
18287 #: ../fish/guestfish.pod:346
18288 msgid "Disable progress bars."
18289 msgstr ""
18290
18291 #. type: =item
18292 #: ../fish/guestfish.pod:348
18293 msgid "B<--remote[=pid]>"
18294 msgstr ""
18295
18296 #. type: textblock
18297 #: ../fish/guestfish.pod:350
18298 msgid ""
18299 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
18300 "CONTROL GUESTFISH OVER A SOCKET> below."
18301 msgstr ""
18302
18303 #. type: =item
18304 #: ../fish/guestfish.pod:353
18305 msgid "B<-r>"
18306 msgstr ""
18307
18308 #. type: =item
18309 #: ../fish/guestfish.pod:355
18310 msgid "B<--ro>"
18311 msgstr ""
18312
18313 #. type: textblock
18314 #: ../fish/guestfish.pod:357
18315 msgid ""
18316 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
18317 "mounts are done read-only."
18318 msgstr ""
18319
18320 #. type: textblock
18321 #: ../fish/guestfish.pod:360
18322 msgid ""
18323 "The option must always be used if the disk image or virtual machine might be "
18324 "running, and is generally recommended in cases where you don't need write "
18325 "access to the disk."
18326 msgstr ""
18327
18328 #. type: textblock
18329 #: ../fish/guestfish.pod:364
18330 msgid ""
18331 "Note that prepared disk images created with I<-N> are not affected by this "
18332 "option.  Also commands like C<add> are not affected - you have to specify "
18333 "the C<readonly:true> option explicitly if you need it."
18334 msgstr ""
18335
18336 #. type: textblock
18337 #: ../fish/guestfish.pod:368
18338 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
18339 msgstr ""
18340
18341 #. type: =item
18342 #: ../fish/guestfish.pod:370 ../fuse/guestmount.pod:208
18343 msgid "B<--selinux>"
18344 msgstr ""
18345
18346 #. type: textblock
18347 #: ../fish/guestfish.pod:372
18348 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
18349 msgstr ""
18350
18351 #. type: =item
18352 #: ../fish/guestfish.pod:374
18353 msgid "B<-v>"
18354 msgstr ""
18355
18356 #. type: =item
18357 #: ../fish/guestfish.pod:376
18358 msgid "B<--verbose>"
18359 msgstr ""
18360
18361 #. type: textblock
18362 #: ../fish/guestfish.pod:378
18363 msgid ""
18364 "Enable very verbose messages.  This is particularly useful if you find a "
18365 "bug."
18366 msgstr ""
18367
18368 #. type: =item
18369 #: ../fish/guestfish.pod:381
18370 msgid "B<-V>"
18371 msgstr ""
18372
18373 #. type: =item
18374 #: ../fish/guestfish.pod:383 ../tools/virt-edit.pl:93 ../tools/virt-win-reg.pl:112 ../tools/virt-resize.pl:270 ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:114 ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
18375 msgid "B<--version>"
18376 msgstr ""
18377
18378 #. type: textblock
18379 #: ../fish/guestfish.pod:385
18380 msgid "Display the guestfish / libguestfs version number and exit."
18381 msgstr ""
18382
18383 #. type: =item
18384 #: ../fish/guestfish.pod:387
18385 msgid "B<-w>"
18386 msgstr ""
18387
18388 #. type: =item
18389 #: ../fish/guestfish.pod:389
18390 msgid "B<--rw>"
18391 msgstr ""
18392
18393 #. type: textblock
18394 #: ../fish/guestfish.pod:391
18395 msgid ""
18396 "This option does nothing at the moment.  See L</OPENING DISKS FOR READ AND "
18397 "WRITE> below."
18398 msgstr ""
18399
18400 #. type: =item
18401 #: ../fish/guestfish.pod:394
18402 msgid "B<-x>"
18403 msgstr ""
18404
18405 #. type: textblock
18406 #: ../fish/guestfish.pod:396
18407 msgid "Echo each command before executing it."
18408 msgstr ""
18409
18410 #. type: =head1
18411 #: ../fish/guestfish.pod:400
18412 msgid "COMMANDS ON COMMAND LINE"
18413 msgstr ""
18414
18415 #. type: textblock
18416 #: ../fish/guestfish.pod:402
18417 msgid "Any additional (non-option) arguments are treated as commands to execute."
18418 msgstr ""
18419
18420 #. type: textblock
18421 #: ../fish/guestfish.pod:405
18422 msgid ""
18423 "Commands to execute should be separated by a colon (C<:>), where the colon "
18424 "is a separate parameter.  Thus:"
18425 msgstr ""
18426
18427 #. type: verbatim
18428 #: ../fish/guestfish.pod:408
18429 #, no-wrap
18430 msgid ""
18431 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
18432 "\n"
18433 msgstr ""
18434
18435 #. type: textblock
18436 #: ../fish/guestfish.pod:410
18437 msgid ""
18438 "If there are no additional arguments, then we enter a shell, either an "
18439 "interactive shell with a prompt (if the input is a terminal) or a "
18440 "non-interactive shell."
18441 msgstr ""
18442
18443 #. type: textblock
18444 #: ../fish/guestfish.pod:414
18445 msgid ""
18446 "In either command line mode or non-interactive shell, the first command that "
18447 "gives an error causes the whole shell to exit.  In interactive mode (with a "
18448 "prompt) if a command fails, you can continue to enter commands."
18449 msgstr ""
18450
18451 #. type: =head1
18452 #: ../fish/guestfish.pod:419
18453 msgid "USING launch (OR run)"
18454 msgstr ""
18455
18456 #. type: textblock
18457 #: ../fish/guestfish.pod:421
18458 msgid ""
18459 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
18460 "then launch it, then mount any disks you need, and finally issue "
18461 "actions/commands.  So the general order of the day is:"
18462 msgstr ""
18463
18464 #. type: textblock
18465 #: ../fish/guestfish.pod:429
18466 msgid "add or -a/--add"
18467 msgstr ""
18468
18469 #. type: textblock
18470 #: ../fish/guestfish.pod:433
18471 msgid "launch (aka run)"
18472 msgstr ""
18473
18474 #. type: textblock
18475 #: ../fish/guestfish.pod:437
18476 msgid "mount or -m/--mount"
18477 msgstr ""
18478
18479 #. type: textblock
18480 #: ../fish/guestfish.pod:441
18481 msgid "any other commands"
18482 msgstr ""
18483
18484 #. type: textblock
18485 #: ../fish/guestfish.pod:445
18486 msgid ""
18487 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
18488 "guest before mounting or performing any other commands."
18489 msgstr ""
18490
18491 #. type: textblock
18492 #: ../fish/guestfish.pod:448
18493 msgid ""
18494 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
18495 "I<--new> options were given then C<run> is done automatically, simply "
18496 "because guestfish can't perform the action you asked for without doing this."
18497 msgstr ""
18498
18499 #. type: =head1
18500 #: ../fish/guestfish.pod:453
18501 msgid "OPENING DISKS FOR READ AND WRITE"
18502 msgstr ""
18503
18504 #. type: textblock
18505 #: ../fish/guestfish.pod:455
18506 msgid ""
18507 "The guestfish (and L<guestmount(1)>) options I<--ro> and I<--rw> affect "
18508 "whether the other command line options I<-a>, I<-c>, I<-d>, I<-i> and I<-m> "
18509 "open disk images read-only or for writing."
18510 msgstr ""
18511
18512 #. type: textblock
18513 #: ../fish/guestfish.pod:459
18514 msgid ""
18515 "In libguestfs E<lt> 1.6.2, guestfish and guestmount defaulted to opening "
18516 "disk images supplied on the command line for write.  To open a disk image "
18517 "read-only you have to do I<-a image --ro>."
18518 msgstr ""
18519
18520 #. type: textblock
18521 #: ../fish/guestfish.pod:463
18522 msgid ""
18523 "This matters: If you accidentally open a live VM disk image writable then "
18524 "you will cause irreversible disk corruption."
18525 msgstr ""
18526
18527 #. type: textblock
18528 #: ../fish/guestfish.pod:466
18529 msgid ""
18530 "By libguestfs 1.10 we intend to change the default the other way.  Disk "
18531 "images will be opened read-only.  You will have to either specify "
18532 "I<guestfish --rw> or change a configuration file in order to get write "
18533 "access for disk images specified by those other command line options."
18534 msgstr ""
18535
18536 #. type: textblock
18537 #: ../fish/guestfish.pod:471
18538 msgid ""
18539 "This version of guestfish has a I<--rw> option which does nothing (it is "
18540 "already the default).  However it is highly recommended that you use this "
18541 "option to indicate that guestfish needs write access, and to prepare your "
18542 "scripts for the day when this option will be required for write access."
18543 msgstr ""
18544
18545 #. type: textblock
18546 #: ../fish/guestfish.pod:477
18547 msgid ""
18548 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
18549 "other libguestfs program apart from guestfish and guestmount."
18550 msgstr ""
18551
18552 #. type: =head1
18553 #: ../fish/guestfish.pod:480
18554 msgid "QUOTING"
18555 msgstr ""
18556
18557 #. type: textblock
18558 #: ../fish/guestfish.pod:482
18559 msgid ""
18560 "You can quote ordinary parameters using either single or double quotes.  For "
18561 "example:"
18562 msgstr ""
18563
18564 #. type: verbatim
18565 #: ../fish/guestfish.pod:485
18566 #, no-wrap
18567 msgid ""
18568 " add \"file with a space.img\"\n"
18569 "\n"
18570 msgstr ""
18571
18572 #. type: verbatim
18573 #: ../fish/guestfish.pod:487
18574 #, no-wrap
18575 msgid ""
18576 " rm '/file name'\n"
18577 "\n"
18578 msgstr ""
18579
18580 #. type: verbatim
18581 #: ../fish/guestfish.pod:489
18582 #, no-wrap
18583 msgid ""
18584 " rm '/\"'\n"
18585 "\n"
18586 msgstr ""
18587
18588 #. type: textblock
18589 #: ../fish/guestfish.pod:491
18590 msgid ""
18591 "A few commands require a list of strings to be passed.  For these, use a "
18592 "whitespace-separated list, enclosed in quotes.  Strings containing "
18593 "whitespace to be passed through must be enclosed in single quotes.  A "
18594 "literal single quote must be escaped with a backslash."
18595 msgstr ""
18596
18597 #. type: verbatim
18598 #: ../fish/guestfish.pod:496
18599 #, no-wrap
18600 msgid ""
18601 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
18602 " command \"/bin/echo 'foo      bar'\"\n"
18603 " command \"/bin/echo \\'foo\\'\"\n"
18604 "\n"
18605 msgstr ""
18606
18607 #. type: =head1
18608 #: ../fish/guestfish.pod:500
18609 msgid "OPTIONAL ARGUMENTS"
18610 msgstr ""
18611
18612 #. type: textblock
18613 #: ../fish/guestfish.pod:502
18614 msgid ""
18615 "Some commands take optional arguments.  These arguments appear in this "
18616 "documentation as C<[argname:..]>.  You can use them as in these examples:"
18617 msgstr ""
18618
18619 #. type: verbatim
18620 #: ../fish/guestfish.pod:506
18621 #, no-wrap
18622 msgid ""
18623 " add-drive-opts filename\n"
18624 "\n"
18625 msgstr ""
18626
18627 #. type: verbatim
18628 #: ../fish/guestfish.pod:508
18629 #, no-wrap
18630 msgid ""
18631 " add-drive-opts filename readonly:true\n"
18632 "\n"
18633 msgstr ""
18634
18635 #. type: verbatim
18636 #: ../fish/guestfish.pod:510
18637 #, no-wrap
18638 msgid ""
18639 " add-drive-opts filename format:qcow2 readonly:false\n"
18640 "\n"
18641 msgstr ""
18642
18643 #. type: textblock
18644 #: ../fish/guestfish.pod:512
18645 msgid ""
18646 "Each optional argument can appear at most once.  All optional arguments must "
18647 "appear after the required ones."
18648 msgstr ""
18649
18650 #. type: =head1
18651 #: ../fish/guestfish.pod:515
18652 msgid "NUMBERS"
18653 msgstr ""
18654
18655 #. type: textblock
18656 #: ../fish/guestfish.pod:517
18657 msgid "This section applies to all commands which can take integers as parameters."
18658 msgstr ""
18659
18660 #. type: =head2
18661 #: ../fish/guestfish.pod:520
18662 msgid "SIZE SUFFIX"
18663 msgstr ""
18664
18665 #. type: textblock
18666 #: ../fish/guestfish.pod:522
18667 msgid ""
18668 "When the command takes a parameter measured in bytes, you can use one of the "
18669 "following suffixes to specify kilobytes, megabytes and larger sizes:"
18670 msgstr ""
18671
18672 #. type: =item
18673 #: ../fish/guestfish.pod:528
18674 msgid "B<k> or B<K> or B<KiB>"
18675 msgstr ""
18676
18677 #. type: textblock
18678 #: ../fish/guestfish.pod:530
18679 msgid "The size in kilobytes (multiplied by 1024)."
18680 msgstr ""
18681
18682 #. type: =item
18683 #: ../fish/guestfish.pod:532
18684 msgid "B<KB>"
18685 msgstr ""
18686
18687 #. type: textblock
18688 #: ../fish/guestfish.pod:534
18689 msgid "The size in SI 1000 byte units."
18690 msgstr ""
18691
18692 #. type: =item
18693 #: ../fish/guestfish.pod:536
18694 msgid "B<M> or B<MiB>"
18695 msgstr ""
18696
18697 #. type: textblock
18698 #: ../fish/guestfish.pod:538
18699 msgid "The size in megabytes (multiplied by 1048576)."
18700 msgstr ""
18701
18702 #. type: =item
18703 #: ../fish/guestfish.pod:540
18704 msgid "B<MB>"
18705 msgstr ""
18706
18707 #. type: textblock
18708 #: ../fish/guestfish.pod:542
18709 msgid "The size in SI 1000000 byte units."
18710 msgstr ""
18711
18712 #. type: =item
18713 #: ../fish/guestfish.pod:544
18714 msgid "B<G> or B<GiB>"
18715 msgstr ""
18716
18717 #. type: textblock
18718 #: ../fish/guestfish.pod:546
18719 msgid "The size in gigabytes (multiplied by 2**30)."
18720 msgstr ""
18721
18722 #. type: =item
18723 #: ../fish/guestfish.pod:548
18724 msgid "B<GB>"
18725 msgstr ""
18726
18727 #. type: textblock
18728 #: ../fish/guestfish.pod:550
18729 msgid "The size in SI 10**9 byte units."
18730 msgstr ""
18731
18732 #. type: =item
18733 #: ../fish/guestfish.pod:552
18734 msgid "B<T> or B<TiB>"
18735 msgstr ""
18736
18737 #. type: textblock
18738 #: ../fish/guestfish.pod:554
18739 msgid "The size in terabytes (multiplied by 2**40)."
18740 msgstr ""
18741
18742 #. type: =item
18743 #: ../fish/guestfish.pod:556
18744 msgid "B<TB>"
18745 msgstr ""
18746
18747 #. type: textblock
18748 #: ../fish/guestfish.pod:558
18749 msgid "The size in SI 10**12 byte units."
18750 msgstr ""
18751
18752 #. type: =item
18753 #: ../fish/guestfish.pod:560
18754 msgid "B<P> or B<PiB>"
18755 msgstr ""
18756
18757 #. type: textblock
18758 #: ../fish/guestfish.pod:562
18759 msgid "The size in petabytes (multiplied by 2**50)."
18760 msgstr ""
18761
18762 #. type: =item
18763 #: ../fish/guestfish.pod:564
18764 msgid "B<PB>"
18765 msgstr ""
18766
18767 #. type: textblock
18768 #: ../fish/guestfish.pod:566
18769 msgid "The size in SI 10**15 byte units."
18770 msgstr ""
18771
18772 #. type: =item
18773 #: ../fish/guestfish.pod:568
18774 msgid "B<E> or B<EiB>"
18775 msgstr ""
18776
18777 #. type: textblock
18778 #: ../fish/guestfish.pod:570
18779 msgid "The size in exabytes (multiplied by 2**60)."
18780 msgstr ""
18781
18782 #. type: =item
18783 #: ../fish/guestfish.pod:572
18784 msgid "B<EB>"
18785 msgstr ""
18786
18787 #. type: textblock
18788 #: ../fish/guestfish.pod:574
18789 msgid "The size in SI 10**18 byte units."
18790 msgstr ""
18791
18792 #. type: =item
18793 #: ../fish/guestfish.pod:576
18794 msgid "B<Z> or B<ZiB>"
18795 msgstr ""
18796
18797 #. type: textblock
18798 #: ../fish/guestfish.pod:578
18799 msgid "The size in zettabytes (multiplied by 2**70)."
18800 msgstr ""
18801
18802 #. type: =item
18803 #: ../fish/guestfish.pod:580
18804 msgid "B<ZB>"
18805 msgstr ""
18806
18807 #. type: textblock
18808 #: ../fish/guestfish.pod:582
18809 msgid "The size in SI 10**21 byte units."
18810 msgstr ""
18811
18812 #. type: =item
18813 #: ../fish/guestfish.pod:584
18814 msgid "B<Y> or B<YiB>"
18815 msgstr ""
18816
18817 #. type: textblock
18818 #: ../fish/guestfish.pod:586
18819 msgid "The size in yottabytes (multiplied by 2**80)."
18820 msgstr ""
18821
18822 #. type: =item
18823 #: ../fish/guestfish.pod:588
18824 msgid "B<YB>"
18825 msgstr ""
18826
18827 #. type: textblock
18828 #: ../fish/guestfish.pod:590
18829 msgid "The size in SI 10**24 byte units."
18830 msgstr ""
18831
18832 #. type: verbatim
18833 #: ../fish/guestfish.pod:596
18834 #, no-wrap
18835 msgid ""
18836 " truncate-size /file 1G\n"
18837 "\n"
18838 msgstr ""
18839
18840 #. type: textblock
18841 #: ../fish/guestfish.pod:598
18842 msgid "would truncate the file to 1 gigabyte."
18843 msgstr ""
18844
18845 #. type: textblock
18846 #: ../fish/guestfish.pod:600
18847 msgid ""
18848 "Be careful because a few commands take sizes in kilobytes or megabytes "
18849 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
18850 "Adding a suffix will probably not do what you expect."
18851 msgstr ""
18852
18853 #. type: =head2
18854 #: ../fish/guestfish.pod:604
18855 msgid "OCTAL AND HEXADECIMAL NUMBERS"
18856 msgstr ""
18857
18858 #. type: textblock
18859 #: ../fish/guestfish.pod:606
18860 msgid ""
18861 "For specifying the radix (base) use the C convention: C<0> to prefix an "
18862 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
18863 msgstr ""
18864
18865 #. type: verbatim
18866 #: ../fish/guestfish.pod:609
18867 #, no-wrap
18868 msgid ""
18869 " 1234      decimal number 1234\n"
18870 " 02322     octal number, equivalent to decimal 1234\n"
18871 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
18872 "\n"
18873 msgstr ""
18874
18875 #. type: textblock
18876 #: ../fish/guestfish.pod:613
18877 msgid ""
18878 "When using the C<chmod> command, you almost always want to specify an octal "
18879 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
18880 "L<chmod(1)> program):"
18881 msgstr ""
18882
18883 #. type: verbatim
18884 #: ../fish/guestfish.pod:617
18885 #, no-wrap
18886 msgid ""
18887 " chmod 0777 /public  # OK\n"
18888 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
18889 "\n"
18890 msgstr ""
18891
18892 #. type: textblock
18893 #: ../fish/guestfish.pod:620
18894 msgid ""
18895 "Commands that return numbers usually print them in decimal, but some "
18896 "commands print numbers in other radices (eg. C<umask> prints the mode in "
18897 "octal, preceeded by C<0>)."
18898 msgstr ""
18899
18900 #. type: =head1
18901 #: ../fish/guestfish.pod:624
18902 msgid "WILDCARDS AND GLOBBING"
18903 msgstr ""
18904
18905 #. type: textblock
18906 #: ../fish/guestfish.pod:626
18907 msgid ""
18908 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
18909 "(globbing) by default.  So for example the following will not do what you "
18910 "expect:"
18911 msgstr ""
18912
18913 #. type: verbatim
18914 #: ../fish/guestfish.pod:630
18915 #, no-wrap
18916 msgid ""
18917 " rm-rf /home/*\n"
18918 "\n"
18919 msgstr ""
18920
18921 #. type: textblock
18922 #: ../fish/guestfish.pod:632
18923 msgid ""
18924 "Assuming you don't have a directory called literally C</home/*> then the "
18925 "above command will return an error."
18926 msgstr ""
18927
18928 #. type: textblock
18929 #: ../fish/guestfish.pod:635
18930 msgid "To perform wildcard expansion, use the C<glob> command."
18931 msgstr ""
18932
18933 #. type: verbatim
18934 #: ../fish/guestfish.pod:637
18935 #, no-wrap
18936 msgid ""
18937 " glob rm-rf /home/*\n"
18938 "\n"
18939 msgstr ""
18940
18941 #. type: textblock
18942 #: ../fish/guestfish.pod:639
18943 msgid ""
18944 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
18945 "many times), equivalent to:"
18946 msgstr ""
18947
18948 #. type: verbatim
18949 #: ../fish/guestfish.pod:642
18950 #, no-wrap
18951 msgid ""
18952 " rm-rf /home/jim\n"
18953 " rm-rf /home/joe\n"
18954 " rm-rf /home/mary\n"
18955 "\n"
18956 msgstr ""
18957
18958 #. type: textblock
18959 #: ../fish/guestfish.pod:646
18960 msgid "C<glob> only works on simple guest paths and not on device names."
18961 msgstr ""
18962
18963 #. type: textblock
18964 #: ../fish/guestfish.pod:648
18965 msgid ""
18966 "If you have several parameters, each containing a wildcard, then glob will "
18967 "perform a Cartesian product."
18968 msgstr ""
18969
18970 #. type: =head1
18971 #: ../fish/guestfish.pod:651
18972 msgid "COMMENTS"
18973 msgstr ""
18974
18975 #. type: textblock
18976 #: ../fish/guestfish.pod:653
18977 msgid ""
18978 "Any line which starts with a I<#> character is treated as a comment and "
18979 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
18980 "a command.  For example:"
18981 msgstr ""
18982
18983 #. type: verbatim
18984 #: ../fish/guestfish.pod:657
18985 #, no-wrap
18986 msgid ""
18987 " # this is a comment\n"
18988 "         # this is a comment\n"
18989 " foo # NOT a comment\n"
18990 "\n"
18991 msgstr ""
18992
18993 #. type: textblock
18994 #: ../fish/guestfish.pod:661
18995 msgid "Blank lines are also ignored."
18996 msgstr ""
18997
18998 #. type: =head1
18999 #: ../fish/guestfish.pod:663
19000 msgid "RUNNING COMMANDS LOCALLY"
19001 msgstr ""
19002
19003 #. type: textblock
19004 #: ../fish/guestfish.pod:665
19005 msgid ""
19006 "Any line which starts with a I<!> character is treated as a command sent to "
19007 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
19008 msgstr ""
19009
19010 #. type: verbatim
19011 #: ../fish/guestfish.pod:669
19012 #, no-wrap
19013 msgid ""
19014 " !mkdir local\n"
19015 " tgz-out /remote local/remote-data.tar.gz\n"
19016 "\n"
19017 msgstr ""
19018
19019 #. type: textblock
19020 #: ../fish/guestfish.pod:672
19021 msgid ""
19022 "will create a directory C<local> on the host, and then export the contents "
19023 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
19024 "(See C<tgz-out>)."
19025 msgstr ""
19026
19027 #. type: textblock
19028 #: ../fish/guestfish.pod:676
19029 msgid ""
19030 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
19031 "effect, due to the way that subprocesses work in Unix."
19032 msgstr ""
19033
19034 #. type: =head1
19035 #: ../fish/guestfish.pod:679
19036 msgid "PIPES"
19037 msgstr ""
19038
19039 #. type: textblock
19040 #: ../fish/guestfish.pod:681
19041 msgid ""
19042 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
19043 "command (a guestfish command) to the second command (any host command).  For "
19044 "example:"
19045 msgstr ""
19046
19047 #. type: verbatim
19048 #: ../fish/guestfish.pod:685
19049 #, no-wrap
19050 msgid ""
19051 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
19052 "\n"
19053 msgstr ""
19054
19055 #. type: textblock
19056 #: ../fish/guestfish.pod:687
19057 msgid ""
19058 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
19059 "program).  The above command would list all accounts in the guest filesystem "
19060 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
19061 msgstr ""
19062
19063 #. type: verbatim
19064 #: ../fish/guestfish.pod:692
19065 #, no-wrap
19066 msgid ""
19067 " hexdump /bin/ls | head\n"
19068 " list-devices | tail -1\n"
19069 " tgz-out / - | tar ztf -\n"
19070 "\n"
19071 msgstr ""
19072
19073 #. type: textblock
19074 #: ../fish/guestfish.pod:696
19075 msgid ""
19076 "The space before the pipe symbol is required, any space after the pipe "
19077 "symbol is optional.  Everything after the pipe symbol is just passed "
19078 "straight to the host shell, so it can contain redirections, globs and "
19079 "anything else that makes sense on the host side."
19080 msgstr ""
19081
19082 #. type: textblock
19083 #: ../fish/guestfish.pod:701
19084 msgid ""
19085 "To use a literal argument which begins with a pipe symbol, you have to quote "
19086 "it, eg:"
19087 msgstr ""
19088
19089 #. type: verbatim
19090 #: ../fish/guestfish.pod:704
19091 #, no-wrap
19092 msgid ""
19093 " echo \"|\"\n"
19094 "\n"
19095 msgstr ""
19096
19097 #. type: =head1
19098 #: ../fish/guestfish.pod:706
19099 msgid "HOME DIRECTORIES"
19100 msgstr ""
19101
19102 #. type: textblock
19103 #: ../fish/guestfish.pod:708
19104 msgid ""
19105 "If a parameter starts with the character C<~> then the tilde may be expanded "
19106 "as a home directory path (either C<~> for the current user's home directory, "
19107 "or C<~user> for another user)."
19108 msgstr ""
19109
19110 #. type: textblock
19111 #: ../fish/guestfish.pod:712
19112 msgid ""
19113 "Note that home directory expansion happens for users known I<on the host>, "
19114 "not in the guest filesystem."
19115 msgstr ""
19116
19117 #. type: textblock
19118 #: ../fish/guestfish.pod:715
19119 msgid ""
19120 "To use a literal argument which begins with a tilde, you have to quote it, "
19121 "eg:"
19122 msgstr ""
19123
19124 #. type: verbatim
19125 #: ../fish/guestfish.pod:718
19126 #, no-wrap
19127 msgid ""
19128 " echo \"~\"\n"
19129 "\n"
19130 msgstr ""
19131
19132 #. type: textblock
19133 #: ../fish/guestfish.pod:722
19134 msgid ""
19135 "Libguestfs has some support for Linux guests encrypted according to the "
19136 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
19137 "disk encryption systems used by modern Linux guests.  Currently only "
19138 "LVM-on-LUKS is supported."
19139 msgstr ""
19140
19141 #. type: textblock
19142 #: ../fish/guestfish.pod:727
19143 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
19144 msgstr ""
19145
19146 #. type: verbatim
19147 #: ../fish/guestfish.pod:729
19148 #, no-wrap
19149 msgid ""
19150 " ><fs> vfs-type /dev/sda2\n"
19151 " crypto_LUKS\n"
19152 "\n"
19153 msgstr ""
19154
19155 #. type: textblock
19156 #: ../fish/guestfish.pod:732
19157 msgid ""
19158 "Then open those devices using L</luks-open>.  This creates a device-mapper "
19159 "device called C</dev/mapper/luksdev>."
19160 msgstr ""
19161
19162 #. type: verbatim
19163 #: ../fish/guestfish.pod:735
19164 #, no-wrap
19165 msgid ""
19166 " ><fs> luks-open /dev/sda2 luksdev\n"
19167 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
19168 "\n"
19169 msgstr ""
19170
19171 #. type: textblock
19172 #: ../fish/guestfish.pod:738
19173 msgid ""
19174 "Finally you have to tell LVM to scan for volume groups on the newly created "
19175 "mapper device:"
19176 msgstr ""
19177
19178 #. type: verbatim
19179 #: ../fish/guestfish.pod:741
19180 #, no-wrap
19181 msgid ""
19182 " vgscan\n"
19183 " vg-activate-all true\n"
19184 "\n"
19185 msgstr ""
19186
19187 #. type: textblock
19188 #: ../fish/guestfish.pod:744
19189 msgid "The logical volume(s) can now be mounted in the usual way."
19190 msgstr ""
19191
19192 #. type: textblock
19193 #: ../fish/guestfish.pod:746
19194 msgid ""
19195 "Before closing a LUKS device you must unmount any logical volumes on it and "
19196 "deactivate the volume groups by calling C<vg-activate false VG> on each "
19197 "one.  Then you can close the mapper device:"
19198 msgstr ""
19199
19200 #. type: verbatim
19201 #: ../fish/guestfish.pod:750
19202 #, no-wrap
19203 msgid ""
19204 " vg-activate false /dev/VG\n"
19205 " luks-close /dev/mapper/luksdev\n"
19206 "\n"
19207 msgstr ""
19208
19209 #. type: =head1
19210 #: ../fish/guestfish.pod:753
19211 msgid "WINDOWS PATHS"
19212 msgstr ""
19213
19214 #. type: textblock
19215 #: ../fish/guestfish.pod:755
19216 msgid ""
19217 "If a path is prefixed with C<win:> then you can use Windows-style paths "
19218 "(with some limitations).  The following commands are equivalent:"
19219 msgstr ""
19220
19221 #. type: verbatim
19222 #: ../fish/guestfish.pod:758
19223 #, no-wrap
19224 msgid ""
19225 " file /WINDOWS/system32/config/system.LOG\n"
19226 "\n"
19227 msgstr ""
19228
19229 #. type: verbatim
19230 #: ../fish/guestfish.pod:760
19231 #, no-wrap
19232 msgid ""
19233 " file win:/windows/system32/config/system.log\n"
19234 "\n"
19235 msgstr ""
19236
19237 #. type: verbatim
19238 #: ../fish/guestfish.pod:762
19239 #, no-wrap
19240 msgid ""
19241 " file win:\\windows\\system32\\config\\system.log\n"
19242 "\n"
19243 msgstr ""
19244
19245 #. type: verbatim
19246 #: ../fish/guestfish.pod:764
19247 #, no-wrap
19248 msgid ""
19249 " file WIN:C:\\Windows\\SYSTEM32\\conFIG\\SYSTEM.LOG\n"
19250 "\n"
19251 msgstr ""
19252
19253 #. type: textblock
19254 #: ../fish/guestfish.pod:766
19255 msgid ""
19256 "This syntax implicitly calls C<case-sensitive-path> (q.v.) so it also "
19257 "handles case insensitivity like Windows would.  This only works in argument "
19258 "positions that expect a path."
19259 msgstr ""
19260
19261 #. type: =head1
19262 #: ../fish/guestfish.pod:770
19263 msgid "UPLOADING AND DOWNLOADING FILES"
19264 msgstr ""
19265
19266 #. type: textblock
19267 #: ../fish/guestfish.pod:772
19268 msgid ""
19269 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
19270 "others which upload from or download to a local file, you can use the "
19271 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
19272 msgstr ""
19273
19274 #. type: verbatim
19275 #: ../fish/guestfish.pod:776
19276 #, no-wrap
19277 msgid ""
19278 " upload - /foo\n"
19279 "\n"
19280 msgstr ""
19281
19282 #. type: textblock
19283 #: ../fish/guestfish.pod:778
19284 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
19285 msgstr ""
19286
19287 #. type: verbatim
19288 #: ../fish/guestfish.pod:781
19289 #, no-wrap
19290 msgid ""
19291 " tar-out /etc - | tar tf -\n"
19292 "\n"
19293 msgstr ""
19294
19295 #. type: textblock
19296 #: ../fish/guestfish.pod:783
19297 msgid ""
19298 "writes the tarball to stdout and then pipes that into the external \"tar\" "
19299 "command (see L</PIPES>)."
19300 msgstr ""
19301
19302 #. type: textblock
19303 #: ../fish/guestfish.pod:786
19304 msgid ""
19305 "When using C<-> to read from stdin, the input is read up to the end of "
19306 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
19307 "some arbitrary end marker:"
19308 msgstr ""
19309
19310 #. type: verbatim
19311 #: ../fish/guestfish.pod:790
19312 #, no-wrap
19313 msgid ""
19314 " upload -<<END /foo\n"
19315 " input line 1\n"
19316 " input line 2\n"
19317 " input line 3\n"
19318 " END\n"
19319 "\n"
19320 msgstr ""
19321
19322 #. type: textblock
19323 #: ../fish/guestfish.pod:796
19324 msgid ""
19325 "Any string of characters can be used instead of C<END>.  The end marker must "
19326 "appear on a line of its own, without any preceeding or following characters "
19327 "(not even spaces)."
19328 msgstr ""
19329
19330 #. type: textblock
19331 #: ../fish/guestfish.pod:800
19332 msgid ""
19333 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
19334 "upload local files (so-called \"FileIn\" parameters in the generator)."
19335 msgstr ""
19336
19337 #. type: =head1
19338 #: ../fish/guestfish.pod:803
19339 msgid "EXIT ON ERROR BEHAVIOUR"
19340 msgstr ""
19341
19342 #. type: textblock
19343 #: ../fish/guestfish.pod:805
19344 msgid ""
19345 "By default, guestfish will ignore any errors when in interactive mode "
19346 "(ie. taking commands from a human over a tty), and will exit on the first "
19347 "error in non-interactive mode (scripts, commands given on the command line)."
19348 msgstr ""
19349
19350 #. type: textblock
19351 #: ../fish/guestfish.pod:810
19352 msgid ""
19353 "If you prefix a command with a I<-> character, then that command will not "
19354 "cause guestfish to exit, even if that (one) command returns an error."
19355 msgstr ""
19356
19357 #. type: =head1
19358 #: ../fish/guestfish.pod:814
19359 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
19360 msgstr ""
19361
19362 #. type: textblock
19363 #: ../fish/guestfish.pod:816
19364 msgid ""
19365 "Guestfish can be remote-controlled over a socket.  This is useful "
19366 "particularly in shell scripts where you want to make several different "
19367 "changes to a filesystem, but you don't want the overhead of starting up a "
19368 "guestfish process each time."
19369 msgstr ""
19370
19371 #. type: textblock
19372 #: ../fish/guestfish.pod:821
19373 msgid "Start a guestfish server process using:"
19374 msgstr ""
19375
19376 #. type: verbatim
19377 #: ../fish/guestfish.pod:823
19378 #, no-wrap
19379 msgid ""
19380 " eval \"`guestfish --listen`\"\n"
19381 "\n"
19382 msgstr ""
19383
19384 #. type: textblock
19385 #: ../fish/guestfish.pod:825
19386 msgid "and then send it commands by doing:"
19387 msgstr ""
19388
19389 #. type: verbatim
19390 #: ../fish/guestfish.pod:827
19391 #, no-wrap
19392 msgid ""
19393 " guestfish --remote cmd [...]\n"
19394 "\n"
19395 msgstr ""
19396
19397 #. type: textblock
19398 #: ../fish/guestfish.pod:829
19399 msgid "To cause the server to exit, send it the exit command:"
19400 msgstr ""
19401
19402 #. type: verbatim
19403 #: ../fish/guestfish.pod:831
19404 #, no-wrap
19405 msgid ""
19406 " guestfish --remote exit\n"
19407 "\n"
19408 msgstr ""
19409
19410 #. type: textblock
19411 #: ../fish/guestfish.pod:833
19412 msgid ""
19413 "Note that the server will normally exit if there is an error in a command.  "
19414 "You can change this in the usual way.  See section L</EXIT ON ERROR "
19415 "BEHAVIOUR>."
19416 msgstr ""
19417
19418 #. type: =head2
19419 #: ../fish/guestfish.pod:837
19420 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
19421 msgstr ""
19422
19423 #. type: textblock
19424 #: ../fish/guestfish.pod:839
19425 msgid ""
19426 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
19427 "is how the I<--remote> option knows where to send the commands.  You can "
19428 "have several guestfish listener processes running using:"
19429 msgstr ""
19430
19431 #. type: verbatim
19432 #: ../fish/guestfish.pod:843
19433 #, no-wrap
19434 msgid ""
19435 " eval \"`guestfish --listen`\"\n"
19436 " pid1=$GUESTFISH_PID\n"
19437 " eval \"`guestfish --listen`\"\n"
19438 " pid2=$GUESTFISH_PID\n"
19439 " ...\n"
19440 " guestfish --remote=$pid1 cmd\n"
19441 " guestfish --remote=$pid2 cmd\n"
19442 "\n"
19443 msgstr ""
19444
19445 #. type: =head2
19446 #: ../fish/guestfish.pod:851
19447 msgid "REMOTE CONTROL AND CSH"
19448 msgstr ""
19449
19450 #. type: textblock
19451 #: ../fish/guestfish.pod:853
19452 msgid ""
19453 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
19454 "option:"
19455 msgstr ""
19456
19457 #. type: verbatim
19458 #: ../fish/guestfish.pod:856
19459 #, no-wrap
19460 msgid ""
19461 " eval \"`guestfish --listen --csh`\"\n"
19462 "\n"
19463 msgstr ""
19464
19465 #. type: =head2
19466 #: ../fish/guestfish.pod:858
19467 msgid "REMOTE CONTROL DETAILS"
19468 msgstr ""
19469
19470 #. type: textblock
19471 #: ../fish/guestfish.pod:860
19472 msgid ""
19473 "Remote control happens over a Unix domain socket called "
19474 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
19475 "of the process, and C<$PID> is the process ID of the server."
19476 msgstr ""
19477
19478 #. type: textblock
19479 #: ../fish/guestfish.pod:864
19480 msgid "Guestfish client and server versions must match exactly."
19481 msgstr ""
19482
19483 #. type: =head1
19484 #: ../fish/guestfish.pod:866
19485 msgid "PREPARED DISK IMAGES"
19486 msgstr ""
19487
19488 #. type: textblock
19489 #: ../fish/guestfish.pod:868
19490 msgid ""
19491 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
19492 "preformatted disk images that guestfish can make for you to save typing.  "
19493 "This is particularly useful for testing purposes.  This option is used "
19494 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
19495 "can be mixed with I<-a>)."
19496 msgstr ""
19497
19498 #. type: textblock
19499 #: ../fish/guestfish.pod:874
19500 msgid ""
19501 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
19502 "the second and so on.  Existing files in the current directory are "
19503 "I<overwritten>."
19504 msgstr ""
19505
19506 #. type: textblock
19507 #: ../fish/guestfish.pod:878
19508 msgid ""
19509 "The type briefly describes how the disk should be sized, partitioned, how "
19510 "filesystem(s) should be created, and how content should be added.  "
19511 "Optionally the type can be followed by extra parameters, separated by C<:> "
19512 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
19513 "sparsely-allocated disk, containing a single partition, with the partition "
19514 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
19515 "on a 1GB disk instead."
19516 msgstr ""
19517
19518 #. type: textblock
19519 #: ../fish/guestfish.pod:886
19520 msgid "To list the available types and any extra parameters they take, run:"
19521 msgstr ""
19522
19523 #. type: textblock
19524 #: ../fish/guestfish.pod:890
19525 msgid ""
19526 "Note that the prepared filesystem is not mounted.  You would usually have to "
19527 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
19528 msgstr ""
19529
19530 #. type: textblock
19531 #: ../fish/guestfish.pod:894
19532 msgid ""
19533 "If any I<-N> or I<--new> options are given, the guest is automatically "
19534 "launched."
19535 msgstr ""
19536
19537 #. type: textblock
19538 #: ../fish/guestfish.pod:899
19539 msgid "Create a 100MB disk with an ext4-formatted partition:"
19540 msgstr ""
19541
19542 #. type: verbatim
19543 #: ../fish/guestfish.pod:901
19544 #, no-wrap
19545 msgid ""
19546 " guestfish -N fs:ext4\n"
19547 "\n"
19548 msgstr ""
19549
19550 #. type: textblock
19551 #: ../fish/guestfish.pod:903
19552 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
19553 msgstr ""
19554
19555 #. type: verbatim
19556 #: ../fish/guestfish.pod:905
19557 #, no-wrap
19558 msgid ""
19559 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
19560 "\n"
19561 msgstr ""
19562
19563 #. type: textblock
19564 #: ../fish/guestfish.pod:907
19565 msgid "Create a blank 200MB disk:"
19566 msgstr ""
19567
19568 #. type: verbatim
19569 #: ../fish/guestfish.pod:909
19570 #, no-wrap
19571 msgid ""
19572 " guestfish -N disk:200M\n"
19573 "\n"
19574 msgstr ""
19575
19576 #. type: =head1
19577 #: ../fish/guestfish.pod:911
19578 msgid "PROGRESS BARS"
19579 msgstr ""
19580
19581 #. type: textblock
19582 #: ../fish/guestfish.pod:913
19583 msgid ""
19584 "Some (not all) long-running commands send progress notification messages as "
19585 "they are running.  Guestfish turns these messages into progress bars."
19586 msgstr ""
19587
19588 #. type: textblock
19589 #: ../fish/guestfish.pod:917
19590 msgid ""
19591 "When a command that supports progress bars takes longer than two seconds to "
19592 "run, and if progress bars are enabled, then you will see one appearing below "
19593 "the command:"
19594 msgstr ""
19595
19596 #. type: verbatim
19597 #: ../fish/guestfish.pod:921
19598 #, no-wrap
19599 msgid ""
19600 " ><fs> copy-size /large-file /another-file 2048M\n"
19601 " / 10% [#####-----------------------------------------] 00:30\n"
19602 "\n"
19603 msgstr ""
19604
19605 #. type: textblock
19606 #: ../fish/guestfish.pod:924
19607 msgid ""
19608 "The spinner on the left hand side moves round once for every progress "
19609 "notification received from the backend.  This is a (reasonably) golden "
19610 "assurance that the command is \"doing something\" even if the progress bar "
19611 "is not moving, because the command is able to send the progress "
19612 "notifications.  When the bar reaches 100% and the command finishes, the "
19613 "spinner disappears."
19614 msgstr ""
19615
19616 #. type: textblock
19617 #: ../fish/guestfish.pod:931
19618 msgid ""
19619 "Progress bars are enabled by default when guestfish is used interactively.  "
19620 "You can enable them even for non-interactive modes using I<--progress-bars>, "
19621 "and you can disable them completely using I<--no-progress-bars>."
19622 msgstr ""
19623
19624 #. type: =head1
19625 #: ../fish/guestfish.pod:936
19626 msgid "GUESTFISH COMMANDS"
19627 msgstr ""
19628
19629 #. type: textblock
19630 #: ../fish/guestfish.pod:938
19631 msgid ""
19632 "The commands in this section are guestfish convenience commands, in other "
19633 "words, they are not part of the L<guestfs(3)> API."
19634 msgstr ""
19635
19636 #. type: =head2
19637 #: ../fish/guestfish.pod:941
19638 msgid "help"
19639 msgstr ""
19640
19641 #. type: verbatim
19642 #: ../fish/guestfish.pod:943
19643 #, no-wrap
19644 msgid ""
19645 " help\n"
19646 " help cmd\n"
19647 "\n"
19648 msgstr ""
19649
19650 #. type: textblock
19651 #: ../fish/guestfish.pod:946
19652 msgid "Without any parameter, this provides general help."
19653 msgstr ""
19654
19655 #. type: textblock
19656 #: ../fish/guestfish.pod:948
19657 msgid "With a C<cmd> parameter, this displays detailed help for that command."
19658 msgstr ""
19659
19660 #. type: =head2
19661 #: ../fish/guestfish.pod:950
19662 msgid "quit | exit"
19663 msgstr ""
19664
19665 #. type: textblock
19666 #: ../fish/guestfish.pod:952
19667 msgid "This exits guestfish.  You can also use C<^D> key."
19668 msgstr ""
19669
19670 #. type: textblock
19671 #: ../fish/guestfish.pod:954
19672 msgid "@FISH_COMMANDS@"
19673 msgstr ""
19674
19675 #. type: =head1
19676 #: ../fish/guestfish.pod:956
19677 msgid "COMMANDS"
19678 msgstr ""
19679
19680 #. type: =head1
19681 #: ../fish/guestfish.pod:960 ../test-tool/libguestfs-test-tool.pod:83
19682 msgid "EXIT CODE"
19683 msgstr ""
19684
19685 #. type: textblock
19686 #: ../fish/guestfish.pod:962
19687 msgid ""
19688 "guestfish returns 0 if the commands completed without error, or 1 if there "
19689 "was an error."
19690 msgstr ""
19691
19692 #. type: =item
19693 #: ../fish/guestfish.pod:969
19694 msgid "EDITOR"
19695 msgstr ""
19696
19697 #. type: textblock
19698 #: ../fish/guestfish.pod:971
19699 msgid ""
19700 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
19701 "C<vi>."
19702 msgstr ""
19703
19704 #. type: =item
19705 #: ../fish/guestfish.pod:974
19706 msgid "GUESTFISH_PID"
19707 msgstr ""
19708
19709 #. type: textblock
19710 #: ../fish/guestfish.pod:976
19711 msgid ""
19712 "Used with the I<--remote> option to specify the remote guestfish process to "
19713 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
19714 msgstr ""
19715
19716 #. type: =item
19717 #: ../fish/guestfish.pod:980
19718 msgid "HEXEDITOR"
19719 msgstr ""
19720
19721 #. type: textblock
19722 #: ../fish/guestfish.pod:982
19723 msgid ""
19724 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
19725 "not specified, the external L<hexedit(1)> program is used."
19726 msgstr ""
19727
19728 #. type: =item
19729 #: ../fish/guestfish.pod:986
19730 msgid "HOME"
19731 msgstr ""
19732
19733 #. type: textblock
19734 #: ../fish/guestfish.pod:988
19735 msgid ""
19736 "If compiled with GNU readline support, various files in the home directory "
19737 "can be used.  See L</FILES>."
19738 msgstr ""
19739
19740 #. type: textblock
19741 #: ../fish/guestfish.pod:997
19742 msgid ""
19743 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
19744 "effect as using the B<-v> option."
19745 msgstr ""
19746
19747 #. type: textblock
19748 #: ../fish/guestfish.pod:1009
19749 msgid ""
19750 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
19751 "the discussion of paths in L<guestfs(3)>."
19752 msgstr ""
19753
19754 #. type: textblock
19755 #: ../fish/guestfish.pod:1020
19756 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
19757 msgstr ""
19758
19759 #. type: =item
19760 #: ../fish/guestfish.pod:1022
19761 msgid "PAGER"
19762 msgstr ""
19763
19764 #. type: textblock
19765 #: ../fish/guestfish.pod:1024
19766 msgid ""
19767 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
19768 "C<more>."
19769 msgstr ""
19770
19771 #. type: =head1
19772 #: ../fish/guestfish.pod:1039 ../test-tool/libguestfs-test-tool.pod:88
19773 msgid "FILES"
19774 msgstr ""
19775
19776 #. type: =item
19777 #: ../fish/guestfish.pod:1043
19778 msgid "$HOME/.guestfish"
19779 msgstr ""
19780
19781 #. type: textblock
19782 #: ../fish/guestfish.pod:1045
19783 msgid ""
19784 "If compiled with GNU readline support, then the command history is saved in "
19785 "this file."
19786 msgstr ""
19787
19788 #. type: =item
19789 #: ../fish/guestfish.pod:1048
19790 msgid "$HOME/.inputrc"
19791 msgstr ""
19792
19793 #. type: =item
19794 #: ../fish/guestfish.pod:1050
19795 msgid "/etc/inputrc"
19796 msgstr ""
19797
19798 #. type: textblock
19799 #: ../fish/guestfish.pod:1052
19800 msgid ""
19801 "If compiled with GNU readline support, then these files can be used to "
19802 "configure readline.  For further information, please see "
19803 "L<readline(3)/INITIALIZATION FILE>."
19804 msgstr ""
19805
19806 #. type: textblock
19807 #: ../fish/guestfish.pod:1056
19808 msgid "To write rules which only apply to guestfish, use:"
19809 msgstr ""
19810
19811 #. type: verbatim
19812 #: ../fish/guestfish.pod:1058
19813 #, no-wrap
19814 msgid ""
19815 " $if guestfish\n"
19816 " ...\n"
19817 " $endif\n"
19818 "\n"
19819 msgstr ""
19820
19821 #. type: textblock
19822 #: ../fish/guestfish.pod:1062
19823 msgid ""
19824 "Variables that you can set in inputrc that change the behaviour of guestfish "
19825 "in useful ways include:"
19826 msgstr ""
19827
19828 #. type: =item
19829 #: ../fish/guestfish.pod:1067
19830 msgid "completion-ignore-case (default: on)"
19831 msgstr ""
19832
19833 #. type: textblock
19834 #: ../fish/guestfish.pod:1069
19835 msgid ""
19836 "By default, guestfish will ignore case when tab-completing paths on the "
19837 "disk.  Use:"
19838 msgstr ""
19839
19840 #. type: verbatim
19841 #: ../fish/guestfish.pod:1072
19842 #, no-wrap
19843 msgid ""
19844 " set completion-ignore-case off\n"
19845 "\n"
19846 msgstr ""
19847
19848 #. type: textblock
19849 #: ../fish/guestfish.pod:1074
19850 msgid "to make guestfish case sensitive."
19851 msgstr ""
19852
19853 #. type: =item
19854 #: ../fish/guestfish.pod:1078
19855 msgid "test1.img"
19856 msgstr ""
19857
19858 #. type: =item
19859 #: ../fish/guestfish.pod:1080
19860 msgid "test2.img (etc)"
19861 msgstr ""
19862
19863 #. type: textblock
19864 #: ../fish/guestfish.pod:1082
19865 msgid ""
19866 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
19867 "will be created in the file C<test1.img> in the current directory.  The "
19868 "second use of C<-N> will use C<test2.img> and so on.  Any existing file with "
19869 "the same name will be overwritten."
19870 msgstr ""
19871
19872 #. type: textblock
19873 #: ../fish/guestfish.pod:1091
19874 msgid ""
19875 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-df(1)>, "
19876 "L<virt-edit(1)>, L<virt-filesystems(1)>, L<virt-inspector(1)>, "
19877 "L<virt-list-filesystems(1)>, L<virt-list-partitions(1)>, L<virt-ls(1)>, "
19878 "L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, "
19879 "L<virt-win-reg(1)>, L<hexedit(1)>."
19880 msgstr ""
19881
19882 #. type: textblock
19883 #: ../fish/guestfish.pod:1117 ../test-tool/libguestfs-test-tool.pod:124 ../fuse/guestmount.pod:253 ../tools/virt-edit.pl:415 ../tools/virt-win-reg.pl:606 ../tools/virt-resize.pl:1512 ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:300 ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
19884 msgid ""
19885 "This program is free software; you can redistribute it and/or modify it "
19886 "under the terms of the GNU General Public License as published by the Free "
19887 "Software Foundation; either version 2 of the License, or (at your option) "
19888 "any later version."
19889 msgstr ""
19890
19891 #. type: textblock
19892 #: ../fish/guestfish.pod:1122 ../test-tool/libguestfs-test-tool.pod:129 ../fuse/guestmount.pod:258 ../tools/virt-edit.pl:420 ../tools/virt-win-reg.pl:611 ../tools/virt-resize.pl:1517 ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
19893 msgid ""
19894 "This program is distributed in the hope that it will be useful, but WITHOUT "
19895 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
19896 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
19897 "more details."
19898 msgstr ""
19899
19900 #. type: textblock
19901 #: ../fish/guestfish.pod:1127 ../test-tool/libguestfs-test-tool.pod:134 ../fuse/guestmount.pod:263 ../tools/virt-edit.pl:425 ../tools/virt-win-reg.pl:616 ../tools/virt-resize.pl:1522 ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:310 ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
19902 msgid ""
19903 "You should have received a copy of the GNU General Public License along with "
19904 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
19905 "Ave, Cambridge, MA 02139, USA."
19906 msgstr ""
19907
19908 #. type: =head2
19909 #: ../fish/guestfish-actions.pod:1
19910 msgid "add-cdrom"
19911 msgstr ""
19912
19913 #. type: verbatim
19914 #: ../fish/guestfish-actions.pod:3
19915 #, no-wrap
19916 msgid ""
19917 " add-cdrom filename\n"
19918 "\n"
19919 msgstr ""
19920
19921 #. type: textblock
19922 #: ../fish/guestfish-actions.pod:15
19923 msgid ""
19924 "This call checks for the existence of C<filename>.  This stops you from "
19925 "specifying other types of drive which are supported by qemu such as C<nbd:> "
19926 "and C<http:> URLs.  To specify those, use the general L</config> call "
19927 "instead."
19928 msgstr ""
19929
19930 #. type: textblock
19931 #: ../fish/guestfish-actions.pod:22
19932 msgid ""
19933 "If you just want to add an ISO file (often you use this as an efficient way "
19934 "to transfer large files into the guest), then you should probably use "
19935 "L</add-drive-ro> instead."
19936 msgstr ""
19937
19938 #. type: textblock
19939 #: ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:151 ../fish/guestfish-actions.pod:165
19940 msgid ""
19941 "This function is deprecated.  In new code, use the L</add_drive_opts> call "
19942 "instead."
19943 msgstr ""
19944
19945 #. type: =head2
19946 #: ../fish/guestfish-actions.pod:35
19947 msgid "add-domain"
19948 msgstr ""
19949
19950 #. type: =head2
19951 #: ../fish/guestfish-actions.pod:37
19952 msgid "domain"
19953 msgstr ""
19954
19955 #. type: verbatim
19956 #: ../fish/guestfish-actions.pod:39
19957 #, no-wrap
19958 msgid ""
19959 " add-domain dom [libvirturi:..] [readonly:..] [iface:..]\n"
19960 "\n"
19961 msgstr ""
19962
19963 #. type: textblock
19964 #: ../fish/guestfish-actions.pod:41
19965 msgid ""
19966 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
19967 "It works by connecting to libvirt, requesting the domain and domain XML from "
19968 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
19969 msgstr ""
19970
19971 #. type: textblock
19972 #: ../fish/guestfish-actions.pod:64
19973 msgid ""
19974 "The other optional parameters are passed directly through to "
19975 "L</add-drive-opts>."
19976 msgstr ""
19977
19978 #. type: textblock
19979 #: ../fish/guestfish-actions.pod:67 ../fish/guestfish-actions.pod:131 ../fish/guestfish-actions.pod:2845
19980 msgid ""
19981 "This command has one or more optional arguments.  See L</OPTIONAL "
19982 "ARGUMENTS>."
19983 msgstr ""
19984
19985 #. type: =head2
19986 #: ../fish/guestfish-actions.pod:69
19987 msgid "add-drive"
19988 msgstr ""
19989
19990 #. type: verbatim
19991 #: ../fish/guestfish-actions.pod:71
19992 #, no-wrap
19993 msgid ""
19994 " add-drive filename\n"
19995 "\n"
19996 msgstr ""
19997
19998 #. type: textblock
19999 #: ../fish/guestfish-actions.pod:73
20000 msgid ""
20001 "This function is the equivalent of calling L</add-drive-opts> with no "
20002 "optional parameters, so the disk is added writable, with the format being "
20003 "detected automatically."
20004 msgstr ""
20005
20006 #. type: textblock
20007 #: ../fish/guestfish-actions.pod:77
20008 msgid ""
20009 "Automatic detection of the format opens you up to a potential security hole "
20010 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
20011 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
20012 "you should think about replacing calls to this function with calls to "
20013 "L</add-drive-opts>, and specifying the format."
20014 msgstr ""
20015
20016 #. type: =head2
20017 #: ../fish/guestfish-actions.pod:84
20018 msgid "add-drive-opts"
20019 msgstr ""
20020
20021 #. type: =head2
20022 #: ../fish/guestfish-actions.pod:86
20023 msgid "add"
20024 msgstr ""
20025
20026 #. type: verbatim
20027 #: ../fish/guestfish-actions.pod:88
20028 #, no-wrap
20029 msgid ""
20030 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
20031 "\n"
20032 msgstr ""
20033
20034 #. type: textblock
20035 #: ../fish/guestfish-actions.pod:115
20036 msgid ""
20037 "This forces the image format.  If you omit this (or use L</add-drive> or "
20038 "L</add-drive-ro>) then the format is automatically detected.  Possible "
20039 "formats include C<raw> and C<qcow2>."
20040 msgstr ""
20041
20042 #. type: textblock
20043 #: ../fish/guestfish-actions.pod:126
20044 msgid ""
20045 "This rarely-used option lets you emulate the behaviour of the deprecated "
20046 "L</add-drive-with-if> call (q.v.)"
20047 msgstr ""
20048
20049 #. type: =head2
20050 #: ../fish/guestfish-actions.pod:133
20051 msgid "add-drive-ro"
20052 msgstr ""
20053
20054 #. type: =head2
20055 #: ../fish/guestfish-actions.pod:135
20056 msgid "add-ro"
20057 msgstr ""
20058
20059 #. type: verbatim
20060 #: ../fish/guestfish-actions.pod:137
20061 #, no-wrap
20062 msgid ""
20063 " add-drive-ro filename\n"
20064 "\n"
20065 msgstr ""
20066
20067 #. type: textblock
20068 #: ../fish/guestfish-actions.pod:139
20069 msgid ""
20070 "This function is the equivalent of calling L</add-drive-opts> with the "
20071 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
20072 "is added read-only, with the format being detected automatically."
20073 msgstr ""
20074
20075 #. type: =head2
20076 #: ../fish/guestfish-actions.pod:144
20077 msgid "add-drive-ro-with-if"
20078 msgstr ""
20079
20080 #. type: verbatim
20081 #: ../fish/guestfish-actions.pod:146
20082 #, no-wrap
20083 msgid ""
20084 " add-drive-ro-with-if filename iface\n"
20085 "\n"
20086 msgstr ""
20087
20088 #. type: textblock
20089 #: ../fish/guestfish-actions.pod:148
20090 msgid ""
20091 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
20092 "interface emulation to use at run time."
20093 msgstr ""
20094
20095 #. type: =head2
20096 #: ../fish/guestfish-actions.pod:158
20097 msgid "add-drive-with-if"
20098 msgstr ""
20099
20100 #. type: verbatim
20101 #: ../fish/guestfish-actions.pod:160
20102 #, no-wrap
20103 msgid ""
20104 " add-drive-with-if filename iface\n"
20105 "\n"
20106 msgstr ""
20107
20108 #. type: textblock
20109 #: ../fish/guestfish-actions.pod:162
20110 msgid ""
20111 "This is the same as L</add-drive> but it allows you to specify the QEMU "
20112 "interface emulation to use at run time."
20113 msgstr ""
20114
20115 #. type: =head2
20116 #: ../fish/guestfish-actions.pod:172
20117 msgid "aug-clear"
20118 msgstr ""
20119
20120 #. type: verbatim
20121 #: ../fish/guestfish-actions.pod:174
20122 #, no-wrap
20123 msgid ""
20124 " aug-clear augpath\n"
20125 "\n"
20126 msgstr ""
20127
20128 #. type: =head2
20129 #: ../fish/guestfish-actions.pod:179
20130 msgid "aug-close"
20131 msgstr ""
20132
20133 #. type: verbatim
20134 #: ../fish/guestfish-actions.pod:181
20135 #, no-wrap
20136 msgid ""
20137 " aug-close\n"
20138 "\n"
20139 msgstr ""
20140
20141 #. type: textblock
20142 #: ../fish/guestfish-actions.pod:183
20143 msgid ""
20144 "Close the current Augeas handle and free up any resources used by it.  After "
20145 "calling this, you have to call L</aug-init> again before you can use any "
20146 "other Augeas functions."
20147 msgstr ""
20148
20149 #. type: =head2
20150 #: ../fish/guestfish-actions.pod:188
20151 msgid "aug-defnode"
20152 msgstr ""
20153
20154 #. type: verbatim
20155 #: ../fish/guestfish-actions.pod:190
20156 #, no-wrap
20157 msgid ""
20158 " aug-defnode name expr val\n"
20159 "\n"
20160 msgstr ""
20161
20162 #. type: textblock
20163 #: ../fish/guestfish-actions.pod:195
20164 msgid ""
20165 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
20166 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
20167 "containing that single node."
20168 msgstr ""
20169
20170 #. type: =head2
20171 #: ../fish/guestfish-actions.pod:203
20172 msgid "aug-defvar"
20173 msgstr ""
20174
20175 #. type: verbatim
20176 #: ../fish/guestfish-actions.pod:205
20177 #, no-wrap
20178 msgid ""
20179 " aug-defvar name expr\n"
20180 "\n"
20181 msgstr ""
20182
20183 #. type: =head2
20184 #: ../fish/guestfish-actions.pod:214
20185 msgid "aug-get"
20186 msgstr ""
20187
20188 #. type: verbatim
20189 #: ../fish/guestfish-actions.pod:216
20190 #, no-wrap
20191 msgid ""
20192 " aug-get augpath\n"
20193 "\n"
20194 msgstr ""
20195
20196 #. type: =head2
20197 #: ../fish/guestfish-actions.pod:221
20198 msgid "aug-init"
20199 msgstr ""
20200
20201 #. type: verbatim
20202 #: ../fish/guestfish-actions.pod:223
20203 #, no-wrap
20204 msgid ""
20205 " aug-init root flags\n"
20206 "\n"
20207 msgstr ""
20208
20209 #. type: textblock
20210 #: ../fish/guestfish-actions.pod:229
20211 msgid "You must call this before using any other L</aug-*> commands."
20212 msgstr ""
20213
20214 #. type: textblock
20215 #: ../fish/guestfish-actions.pod:264
20216 msgid "Do not load the tree in L</aug-init>."
20217 msgstr ""
20218
20219 #. type: textblock
20220 #: ../fish/guestfish-actions.pod:268
20221 msgid "To close the handle, you can call L</aug-close>."
20222 msgstr ""
20223
20224 #. type: =head2
20225 #: ../fish/guestfish-actions.pod:272
20226 msgid "aug-insert"
20227 msgstr ""
20228
20229 #. type: verbatim
20230 #: ../fish/guestfish-actions.pod:274
20231 #, no-wrap
20232 msgid ""
20233 " aug-insert augpath label true|false\n"
20234 "\n"
20235 msgstr ""
20236
20237 #. type: =head2
20238 #: ../fish/guestfish-actions.pod:284
20239 msgid "aug-load"
20240 msgstr ""
20241
20242 #. type: verbatim
20243 #: ../fish/guestfish-actions.pod:286
20244 #, no-wrap
20245 msgid ""
20246 " aug-load\n"
20247 "\n"
20248 msgstr ""
20249
20250 #. type: =head2
20251 #: ../fish/guestfish-actions.pod:293
20252 msgid "aug-ls"
20253 msgstr ""
20254
20255 #. type: verbatim
20256 #: ../fish/guestfish-actions.pod:295
20257 #, no-wrap
20258 msgid ""
20259 " aug-ls augpath\n"
20260 "\n"
20261 msgstr ""
20262
20263 #. type: textblock
20264 #: ../fish/guestfish-actions.pod:297
20265 msgid ""
20266 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
20267 "resulting nodes into alphabetical order."
20268 msgstr ""
20269
20270 #. type: =head2
20271 #: ../fish/guestfish-actions.pod:300
20272 msgid "aug-match"
20273 msgstr ""
20274
20275 #. type: verbatim
20276 #: ../fish/guestfish-actions.pod:302
20277 #, no-wrap
20278 msgid ""
20279 " aug-match augpath\n"
20280 "\n"
20281 msgstr ""
20282
20283 #. type: =head2
20284 #: ../fish/guestfish-actions.pod:308
20285 msgid "aug-mv"
20286 msgstr ""
20287
20288 #. type: verbatim
20289 #: ../fish/guestfish-actions.pod:310
20290 #, no-wrap
20291 msgid ""
20292 " aug-mv src dest\n"
20293 "\n"
20294 msgstr ""
20295
20296 #. type: =head2
20297 #: ../fish/guestfish-actions.pod:315
20298 msgid "aug-rm"
20299 msgstr ""
20300
20301 #. type: verbatim
20302 #: ../fish/guestfish-actions.pod:317
20303 #, no-wrap
20304 msgid ""
20305 " aug-rm augpath\n"
20306 "\n"
20307 msgstr ""
20308
20309 #. type: =head2
20310 #: ../fish/guestfish-actions.pod:323
20311 msgid "aug-save"
20312 msgstr ""
20313
20314 #. type: verbatim
20315 #: ../fish/guestfish-actions.pod:325
20316 #, no-wrap
20317 msgid ""
20318 " aug-save\n"
20319 "\n"
20320 msgstr ""
20321
20322 #. type: textblock
20323 #: ../fish/guestfish-actions.pod:329
20324 msgid ""
20325 "The flags which were passed to L</aug-init> affect exactly how files are "
20326 "saved."
20327 msgstr ""
20328
20329 #. type: =head2
20330 #: ../fish/guestfish-actions.pod:332
20331 msgid "aug-set"
20332 msgstr ""
20333
20334 #. type: verbatim
20335 #: ../fish/guestfish-actions.pod:334
20336 #, no-wrap
20337 msgid ""
20338 " aug-set augpath val\n"
20339 "\n"
20340 msgstr ""
20341
20342 #. type: textblock
20343 #: ../fish/guestfish-actions.pod:338
20344 msgid ""
20345 "In the Augeas API, it is possible to clear a node by setting the value to "
20346 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
20347 "this call.  Instead you must use the L</aug-clear> call."
20348 msgstr ""
20349
20350 #. type: =head2
20351 #: ../fish/guestfish-actions.pod:343
20352 msgid "available"
20353 msgstr ""
20354
20355 #. type: verbatim
20356 #: ../fish/guestfish-actions.pod:345
20357 #, no-wrap
20358 msgid ""
20359 " available 'groups ...'\n"
20360 "\n"
20361 msgstr ""
20362
20363 #. type: textblock
20364 #: ../fish/guestfish-actions.pod:351
20365 msgid ""
20366 "The libguestfs groups, and the functions that those groups correspond to, "
20367 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
20368 "runtime by calling L</available-all-groups>."
20369 msgstr ""
20370
20371 #. type: textblock
20372 #: ../fish/guestfish-actions.pod:375
20373 msgid "You must call L</launch> before calling this function."
20374 msgstr ""
20375
20376 #. type: textblock
20377 #: ../fish/guestfish-actions.pod:397
20378 msgid ""
20379 "This call was added in version C<1.0.80>.  In previous versions of "
20380 "libguestfs all you could do would be to speculatively execute a command to "
20381 "find out if the daemon implemented it.  See also L</version>."
20382 msgstr ""
20383
20384 #. type: =head2
20385 #: ../fish/guestfish-actions.pod:404
20386 msgid "available-all-groups"
20387 msgstr ""
20388
20389 #. type: verbatim
20390 #: ../fish/guestfish-actions.pod:406
20391 #, no-wrap
20392 msgid ""
20393 " available-all-groups\n"
20394 "\n"
20395 msgstr ""
20396
20397 #. type: textblock
20398 #: ../fish/guestfish-actions.pod:408
20399 msgid ""
20400 "This command returns a list of all optional groups that this daemon knows "
20401 "about.  Note this returns both supported and unsupported groups.  To find "
20402 "out which ones the daemon can actually support you have to call "
20403 "L</available> on each member of the returned list."
20404 msgstr ""
20405
20406 #. type: textblock
20407 #: ../fish/guestfish-actions.pod:414
20408 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
20409 msgstr ""
20410
20411 #. type: =head2
20412 #: ../fish/guestfish-actions.pod:416
20413 msgid "base64-in"
20414 msgstr ""
20415
20416 #. type: verbatim
20417 #: ../fish/guestfish-actions.pod:418
20418 #, no-wrap
20419 msgid ""
20420 " base64-in (base64file|-) filename\n"
20421 "\n"
20422 msgstr ""
20423
20424 #. type: textblock
20425 #: ../fish/guestfish-actions.pod:423 ../fish/guestfish-actions.pod:432 ../fish/guestfish-actions.pod:656 ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:844 ../fish/guestfish-actions.pod:1218 ../fish/guestfish-actions.pod:4209 ../fish/guestfish-actions.pod:4221 ../fish/guestfish-actions.pod:4232 ../fish/guestfish-actions.pod:4243 ../fish/guestfish-actions.pod:4295 ../fish/guestfish-actions.pod:4304 ../fish/guestfish-actions.pod:4358 ../fish/guestfish-actions.pod:4381
20426 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
20427 msgstr ""
20428
20429 #. type: =head2
20430 #: ../fish/guestfish-actions.pod:425
20431 msgid "base64-out"
20432 msgstr ""
20433
20434 #. type: verbatim
20435 #: ../fish/guestfish-actions.pod:427
20436 #, no-wrap
20437 msgid ""
20438 " base64-out filename (base64file|-)\n"
20439 "\n"
20440 msgstr ""
20441
20442 #. type: =head2
20443 #: ../fish/guestfish-actions.pod:434
20444 msgid "blockdev-flushbufs"
20445 msgstr ""
20446
20447 #. type: verbatim
20448 #: ../fish/guestfish-actions.pod:436
20449 #, no-wrap
20450 msgid ""
20451 " blockdev-flushbufs device\n"
20452 "\n"
20453 msgstr ""
20454
20455 #. type: =head2
20456 #: ../fish/guestfish-actions.pod:443
20457 msgid "blockdev-getbsz"
20458 msgstr ""
20459
20460 #. type: verbatim
20461 #: ../fish/guestfish-actions.pod:445
20462 #, no-wrap
20463 msgid ""
20464 " blockdev-getbsz device\n"
20465 "\n"
20466 msgstr ""
20467
20468 #. type: =head2
20469 #: ../fish/guestfish-actions.pod:454
20470 msgid "blockdev-getro"
20471 msgstr ""
20472
20473 #. type: verbatim
20474 #: ../fish/guestfish-actions.pod:456
20475 #, no-wrap
20476 msgid ""
20477 " blockdev-getro device\n"
20478 "\n"
20479 msgstr ""
20480
20481 #. type: =head2
20482 #: ../fish/guestfish-actions.pod:463
20483 msgid "blockdev-getsize64"
20484 msgstr ""
20485
20486 #. type: verbatim
20487 #: ../fish/guestfish-actions.pod:465
20488 #, no-wrap
20489 msgid ""
20490 " blockdev-getsize64 device\n"
20491 "\n"
20492 msgstr ""
20493
20494 #. type: textblock
20495 #: ../fish/guestfish-actions.pod:469
20496 msgid "See also L</blockdev-getsz>."
20497 msgstr ""
20498
20499 #. type: =head2
20500 #: ../fish/guestfish-actions.pod:473
20501 msgid "blockdev-getss"
20502 msgstr ""
20503
20504 #. type: verbatim
20505 #: ../fish/guestfish-actions.pod:475
20506 #, no-wrap
20507 msgid ""
20508 " blockdev-getss device\n"
20509 "\n"
20510 msgstr ""
20511
20512 #. type: textblock
20513 #: ../fish/guestfish-actions.pod:480
20514 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
20515 msgstr ""
20516
20517 #. type: =head2
20518 #: ../fish/guestfish-actions.pod:485
20519 msgid "blockdev-getsz"
20520 msgstr ""
20521
20522 #. type: verbatim
20523 #: ../fish/guestfish-actions.pod:487
20524 #, no-wrap
20525 msgid ""
20526 " blockdev-getsz device\n"
20527 "\n"
20528 msgstr ""
20529
20530 #. type: textblock
20531 #: ../fish/guestfish-actions.pod:492
20532 msgid ""
20533 "See also L</blockdev-getss> for the real sector size of the device, and "
20534 "L</blockdev-getsize64> for the more useful I<size in bytes>."
20535 msgstr ""
20536
20537 #. type: =head2
20538 #: ../fish/guestfish-actions.pod:498
20539 msgid "blockdev-rereadpt"
20540 msgstr ""
20541
20542 #. type: verbatim
20543 #: ../fish/guestfish-actions.pod:500
20544 #, no-wrap
20545 msgid ""
20546 " blockdev-rereadpt device\n"
20547 "\n"
20548 msgstr ""
20549
20550 #. type: =head2
20551 #: ../fish/guestfish-actions.pod:506
20552 msgid "blockdev-setbsz"
20553 msgstr ""
20554
20555 #. type: verbatim
20556 #: ../fish/guestfish-actions.pod:508
20557 #, no-wrap
20558 msgid ""
20559 " blockdev-setbsz device blocksize\n"
20560 "\n"
20561 msgstr ""
20562
20563 #. type: =head2
20564 #: ../fish/guestfish-actions.pod:517
20565 msgid "blockdev-setro"
20566 msgstr ""
20567
20568 #. type: verbatim
20569 #: ../fish/guestfish-actions.pod:519
20570 #, no-wrap
20571 msgid ""
20572 " blockdev-setro device\n"
20573 "\n"
20574 msgstr ""
20575
20576 #. type: =head2
20577 #: ../fish/guestfish-actions.pod:525
20578 msgid "blockdev-setrw"
20579 msgstr ""
20580
20581 #. type: verbatim
20582 #: ../fish/guestfish-actions.pod:527
20583 #, no-wrap
20584 msgid ""
20585 " blockdev-setrw device\n"
20586 "\n"
20587 msgstr ""
20588
20589 #. type: =head2
20590 #: ../fish/guestfish-actions.pod:533
20591 msgid "case-sensitive-path"
20592 msgstr ""
20593
20594 #. type: verbatim
20595 #: ../fish/guestfish-actions.pod:535
20596 #, no-wrap
20597 msgid ""
20598 " case-sensitive-path path\n"
20599 "\n"
20600 msgstr ""
20601
20602 #. type: textblock
20603 #: ../fish/guestfish-actions.pod:559
20604 msgid ""
20605 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
20606 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
20607 "how the directories were originally created under Windows)."
20608 msgstr ""
20609
20610 #. type: textblock
20611 #: ../fish/guestfish-actions.pod:567
20612 msgid "See also L</realpath>."
20613 msgstr ""
20614
20615 #. type: =head2
20616 #: ../fish/guestfish-actions.pod:569
20617 msgid "cat"
20618 msgstr ""
20619
20620 #. type: verbatim
20621 #: ../fish/guestfish-actions.pod:571
20622 #, no-wrap
20623 msgid ""
20624 " cat path\n"
20625 "\n"
20626 msgstr ""
20627
20628 #. type: textblock
20629 #: ../fish/guestfish-actions.pod:575
20630 msgid ""
20631 "Note that this function cannot correctly handle binary files (specifically, "
20632 "files containing C<\\0> character which is treated as end of string).  For "
20633 "those you need to use the L</read-file> or L</download> functions which have "
20634 "a more complex interface."
20635 msgstr ""
20636
20637 #. type: =head2
20638 #: ../fish/guestfish-actions.pod:583
20639 msgid "checksum"
20640 msgstr ""
20641
20642 #. type: verbatim
20643 #: ../fish/guestfish-actions.pod:585
20644 #, no-wrap
20645 msgid ""
20646 " checksum csumtype path\n"
20647 "\n"
20648 msgstr ""
20649
20650 #. type: textblock
20651 #: ../fish/guestfish-actions.pod:628
20652 msgid "To get the checksum for a device, use L</checksum-device>."
20653 msgstr ""
20654
20655 #. type: textblock
20656 #: ../fish/guestfish-actions.pod:630
20657 msgid "To get the checksums for many files, use L</checksums-out>."
20658 msgstr ""
20659
20660 #. type: =head2
20661 #: ../fish/guestfish-actions.pod:632
20662 msgid "checksum-device"
20663 msgstr ""
20664
20665 #. type: verbatim
20666 #: ../fish/guestfish-actions.pod:634
20667 #, no-wrap
20668 msgid ""
20669 " checksum-device csumtype device\n"
20670 "\n"
20671 msgstr ""
20672
20673 #. type: textblock
20674 #: ../fish/guestfish-actions.pod:636
20675 msgid ""
20676 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
20677 "device named C<device>.  For the types of checksums supported see the "
20678 "L</checksum> command."
20679 msgstr ""
20680
20681 #. type: =head2
20682 #: ../fish/guestfish-actions.pod:640
20683 msgid "checksums-out"
20684 msgstr ""
20685
20686 #. type: verbatim
20687 #: ../fish/guestfish-actions.pod:642
20688 #, no-wrap
20689 msgid ""
20690 " checksums-out csumtype directory (sumsfile|-)\n"
20691 "\n"
20692 msgstr ""
20693
20694 #. type: =head2
20695 #: ../fish/guestfish-actions.pod:658
20696 msgid "chmod"
20697 msgstr ""
20698
20699 #. type: verbatim
20700 #: ../fish/guestfish-actions.pod:660
20701 #, no-wrap
20702 msgid ""
20703 " chmod mode path\n"
20704 "\n"
20705 msgstr ""
20706
20707 #. type: =head2
20708 #: ../fish/guestfish-actions.pod:671
20709 msgid "chown"
20710 msgstr ""
20711
20712 #. type: verbatim
20713 #: ../fish/guestfish-actions.pod:673
20714 #, no-wrap
20715 msgid ""
20716 " chown owner group path\n"
20717 "\n"
20718 msgstr ""
20719
20720 #. type: =head2
20721 #: ../fish/guestfish-actions.pod:681
20722 msgid "command"
20723 msgstr ""
20724
20725 #. type: verbatim
20726 #: ../fish/guestfish-actions.pod:683
20727 #, no-wrap
20728 msgid ""
20729 " command 'arguments ...'\n"
20730 "\n"
20731 msgstr ""
20732
20733 #. type: textblock
20734 #: ../fish/guestfish-actions.pod:690
20735 msgid ""
20736 "The single parameter is an argv-style list of arguments.  The first element "
20737 "is the name of the program to run.  Subsequent elements are parameters.  The "
20738 "list must be non-empty (ie. must contain a program name).  Note that the "
20739 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
20740 msgstr ""
20741
20742 #. type: =head2
20743 #: ../fish/guestfish-actions.pod:718
20744 msgid "command-lines"
20745 msgstr ""
20746
20747 #. type: verbatim
20748 #: ../fish/guestfish-actions.pod:720
20749 #, no-wrap
20750 msgid ""
20751 " command-lines 'arguments ...'\n"
20752 "\n"
20753 msgstr ""
20754
20755 #. type: textblock
20756 #: ../fish/guestfish-actions.pod:722
20757 msgid "This is the same as L</command>, but splits the result into a list of lines."
20758 msgstr ""
20759
20760 #. type: textblock
20761 #: ../fish/guestfish-actions.pod:725
20762 msgid "See also: L</sh-lines>"
20763 msgstr ""
20764
20765 #. type: =head2
20766 #: ../fish/guestfish-actions.pod:730
20767 msgid "config"
20768 msgstr ""
20769
20770 #. type: verbatim
20771 #: ../fish/guestfish-actions.pod:732
20772 #, no-wrap
20773 msgid ""
20774 " config qemuparam qemuvalue\n"
20775 "\n"
20776 msgstr ""
20777
20778 #. type: =head2
20779 #: ../fish/guestfish-actions.pod:743
20780 msgid "copy-size"
20781 msgstr ""
20782
20783 #. type: verbatim
20784 #: ../fish/guestfish-actions.pod:745
20785 #, no-wrap
20786 msgid ""
20787 " copy-size src dest size\n"
20788 "\n"
20789 msgstr ""
20790
20791 #. type: =head2
20792 #: ../fish/guestfish-actions.pod:753
20793 msgid "cp"
20794 msgstr ""
20795
20796 #. type: verbatim
20797 #: ../fish/guestfish-actions.pod:755
20798 #, no-wrap
20799 msgid ""
20800 " cp src dest\n"
20801 "\n"
20802 msgstr ""
20803
20804 #. type: =head2
20805 #: ../fish/guestfish-actions.pod:760
20806 msgid "cp-a"
20807 msgstr ""
20808
20809 #. type: verbatim
20810 #: ../fish/guestfish-actions.pod:762
20811 #, no-wrap
20812 msgid ""
20813 " cp-a src dest\n"
20814 "\n"
20815 msgstr ""
20816
20817 #. type: =head2
20818 #: ../fish/guestfish-actions.pod:767
20819 msgid "dd"
20820 msgstr ""
20821
20822 #. type: verbatim
20823 #: ../fish/guestfish-actions.pod:769
20824 #, no-wrap
20825 msgid ""
20826 " dd src dest\n"
20827 "\n"
20828 msgstr ""
20829
20830 #. type: textblock
20831 #: ../fish/guestfish-actions.pod:776
20832 msgid ""
20833 "If the destination is a device, it must be as large or larger than the "
20834 "source file or device, otherwise the copy will fail.  This command cannot do "
20835 "partial copies (see L</copy-size>)."
20836 msgstr ""
20837
20838 #. type: =head2
20839 #: ../fish/guestfish-actions.pod:780
20840 msgid "df"
20841 msgstr ""
20842
20843 #. type: verbatim
20844 #: ../fish/guestfish-actions.pod:782
20845 #, no-wrap
20846 msgid ""
20847 " df\n"
20848 "\n"
20849 msgstr ""
20850
20851 #. type: textblock
20852 #: ../fish/guestfish-actions.pod:786 ../fish/guestfish-actions.pod:797
20853 msgid ""
20854 "This command is mostly useful for interactive sessions.  It is I<not> "
20855 "intended that you try to parse the output string.  Use L</statvfs> from "
20856 "programs."
20857 msgstr ""
20858
20859 #. type: =head2
20860 #: ../fish/guestfish-actions.pod:790
20861 msgid "df-h"
20862 msgstr ""
20863
20864 #. type: verbatim
20865 #: ../fish/guestfish-actions.pod:792
20866 #, no-wrap
20867 msgid ""
20868 " df-h\n"
20869 "\n"
20870 msgstr ""
20871
20872 #. type: =head2
20873 #: ../fish/guestfish-actions.pod:801
20874 msgid "dmesg"
20875 msgstr ""
20876
20877 #. type: verbatim
20878 #: ../fish/guestfish-actions.pod:803
20879 #, no-wrap
20880 msgid ""
20881 " dmesg\n"
20882 "\n"
20883 msgstr ""
20884
20885 #. type: textblock
20886 #: ../fish/guestfish-actions.pod:809
20887 msgid ""
20888 "Another way to get the same information is to enable verbose messages with "
20889 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
20890 "before running the program."
20891 msgstr ""
20892
20893 #. type: =head2
20894 #: ../fish/guestfish-actions.pod:814
20895 msgid "download"
20896 msgstr ""
20897
20898 #. type: verbatim
20899 #: ../fish/guestfish-actions.pod:816
20900 #, no-wrap
20901 msgid ""
20902 " download remotefilename (filename|-)\n"
20903 "\n"
20904 msgstr ""
20905
20906 #. type: textblock
20907 #: ../fish/guestfish-actions.pod:823
20908 msgid "See also L</upload>, L</cat>."
20909 msgstr ""
20910
20911 #. type: =head2
20912 #: ../fish/guestfish-actions.pod:827
20913 msgid "download-offset"
20914 msgstr ""
20915
20916 #. type: verbatim
20917 #: ../fish/guestfish-actions.pod:829
20918 #, no-wrap
20919 msgid ""
20920 " download-offset remotefilename (filename|-) offset size\n"
20921 "\n"
20922 msgstr ""
20923
20924 #. type: textblock
20925 #: ../fish/guestfish-actions.pod:837
20926 msgid ""
20927 "Note that there is no limit on the amount of data that can be downloaded "
20928 "with this call, unlike with L</pread>, and this call always reads the full "
20929 "amount unless an error occurs."
20930 msgstr ""
20931
20932 #. type: textblock
20933 #: ../fish/guestfish-actions.pod:842
20934 msgid "See also L</download>, L</pread>."
20935 msgstr ""
20936
20937 #. type: =head2
20938 #: ../fish/guestfish-actions.pod:846
20939 msgid "drop-caches"
20940 msgstr ""
20941
20942 #. type: verbatim
20943 #: ../fish/guestfish-actions.pod:848
20944 #, no-wrap
20945 msgid ""
20946 " drop-caches whattodrop\n"
20947 "\n"
20948 msgstr ""
20949
20950 #. type: =head2
20951 #: ../fish/guestfish-actions.pod:860
20952 msgid "du"
20953 msgstr ""
20954
20955 #. type: verbatim
20956 #: ../fish/guestfish-actions.pod:862
20957 #, no-wrap
20958 msgid ""
20959 " du path\n"
20960 "\n"
20961 msgstr ""
20962
20963 #. type: =head2
20964 #: ../fish/guestfish-actions.pod:874
20965 msgid "e2fsck-f"
20966 msgstr ""
20967
20968 #. type: verbatim
20969 #: ../fish/guestfish-actions.pod:876
20970 #, no-wrap
20971 msgid ""
20972 " e2fsck-f device\n"
20973 "\n"
20974 msgstr ""
20975
20976 #. type: textblock
20977 #: ../fish/guestfish-actions.pod:882
20978 msgid ""
20979 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
20980 "should use L</fsck>."
20981 msgstr ""
20982
20983 #. type: =head2
20984 #: ../fish/guestfish-actions.pod:885
20985 msgid "echo-daemon"
20986 msgstr ""
20987
20988 #. type: verbatim
20989 #: ../fish/guestfish-actions.pod:887
20990 #, no-wrap
20991 msgid ""
20992 " echo-daemon 'words ...'\n"
20993 "\n"
20994 msgstr ""
20995
20996 #. type: textblock
20997 #: ../fish/guestfish-actions.pod:894
20998 msgid "See also L</ping-daemon>."
20999 msgstr ""
21000
21001 #. type: =head2
21002 #: ../fish/guestfish-actions.pod:896
21003 msgid "egrep"
21004 msgstr ""
21005
21006 #. type: verbatim
21007 #: ../fish/guestfish-actions.pod:898
21008 #, no-wrap
21009 msgid ""
21010 " egrep regex path\n"
21011 "\n"
21012 msgstr ""
21013
21014 #. type: =head2
21015 #: ../fish/guestfish-actions.pod:906
21016 msgid "egrepi"
21017 msgstr ""
21018
21019 #. type: verbatim
21020 #: ../fish/guestfish-actions.pod:908
21021 #, no-wrap
21022 msgid ""
21023 " egrepi regex path\n"
21024 "\n"
21025 msgstr ""
21026
21027 #. type: =head2
21028 #: ../fish/guestfish-actions.pod:916
21029 msgid "equal"
21030 msgstr ""
21031
21032 #. type: verbatim
21033 #: ../fish/guestfish-actions.pod:918
21034 #, no-wrap
21035 msgid ""
21036 " equal file1 file2\n"
21037 "\n"
21038 msgstr ""
21039
21040 #. type: =head2
21041 #: ../fish/guestfish-actions.pod:925
21042 msgid "exists"
21043 msgstr ""
21044
21045 #. type: verbatim
21046 #: ../fish/guestfish-actions.pod:927
21047 #, no-wrap
21048 msgid ""
21049 " exists path\n"
21050 "\n"
21051 msgstr ""
21052
21053 #. type: textblock
21054 #: ../fish/guestfish-actions.pod:932
21055 msgid "See also L</is-file>, L</is-dir>, L</stat>."
21056 msgstr ""
21057
21058 #. type: =head2
21059 #: ../fish/guestfish-actions.pod:934
21060 msgid "fallocate"
21061 msgstr ""
21062
21063 #. type: verbatim
21064 #: ../fish/guestfish-actions.pod:936
21065 #, no-wrap
21066 msgid ""
21067 " fallocate path len\n"
21068 "\n"
21069 msgstr ""
21070
21071 #. type: textblock
21072 #: ../fish/guestfish-actions.pod:946
21073 msgid ""
21074 "This function is deprecated.  In new code, use the L</fallocate64> call "
21075 "instead."
21076 msgstr ""
21077
21078 #. type: =head2
21079 #: ../fish/guestfish-actions.pod:953
21080 msgid "fallocate64"
21081 msgstr ""
21082
21083 #. type: verbatim
21084 #: ../fish/guestfish-actions.pod:955
21085 #, no-wrap
21086 msgid ""
21087 " fallocate64 path len\n"
21088 "\n"
21089 msgstr ""
21090
21091 #. type: textblock
21092 #: ../fish/guestfish-actions.pod:961
21093 msgid ""
21094 "Note that this call allocates disk blocks for the file.  To create a sparse "
21095 "file use L</truncate-size> instead."
21096 msgstr ""
21097
21098 #. type: textblock
21099 #: ../fish/guestfish-actions.pod:964
21100 msgid ""
21101 "The deprecated call L</fallocate> does the same, but owing to an oversight "
21102 "it only allowed 30 bit lengths to be specified, effectively limiting the "
21103 "maximum size of files created through that call to 1GB."
21104 msgstr ""
21105
21106 #. type: =head2
21107 #: ../fish/guestfish-actions.pod:973
21108 msgid "fgrep"
21109 msgstr ""
21110
21111 #. type: verbatim
21112 #: ../fish/guestfish-actions.pod:975
21113 #, no-wrap
21114 msgid ""
21115 " fgrep pattern path\n"
21116 "\n"
21117 msgstr ""
21118
21119 #. type: =head2
21120 #: ../fish/guestfish-actions.pod:983
21121 msgid "fgrepi"
21122 msgstr ""
21123
21124 #. type: verbatim
21125 #: ../fish/guestfish-actions.pod:985
21126 #, no-wrap
21127 msgid ""
21128 " fgrepi pattern path\n"
21129 "\n"
21130 msgstr ""
21131
21132 #. type: =head2
21133 #: ../fish/guestfish-actions.pod:993
21134 msgid "file"
21135 msgstr ""
21136
21137 #. type: verbatim
21138 #: ../fish/guestfish-actions.pod:995
21139 #, no-wrap
21140 msgid ""
21141 " file path\n"
21142 "\n"
21143 msgstr ""
21144
21145 #. type: textblock
21146 #: ../fish/guestfish-actions.pod:1011
21147 msgid ""
21148 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
21149 "(etc)."
21150 msgstr ""
21151
21152 #. type: =head2
21153 #: ../fish/guestfish-actions.pod:1014
21154 msgid "file-architecture"
21155 msgstr ""
21156
21157 #. type: verbatim
21158 #: ../fish/guestfish-actions.pod:1016
21159 #, no-wrap
21160 msgid ""
21161 " file-architecture filename\n"
21162 "\n"
21163 msgstr ""
21164
21165 #. type: =head2
21166 #: ../fish/guestfish-actions.pod:1119
21167 msgid "filesize"
21168 msgstr ""
21169
21170 #. type: verbatim
21171 #: ../fish/guestfish-actions.pod:1121
21172 #, no-wrap
21173 msgid ""
21174 " filesize file\n"
21175 "\n"
21176 msgstr ""
21177
21178 #. type: textblock
21179 #: ../fish/guestfish-actions.pod:1125
21180 msgid ""
21181 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
21182 "L</is-file> etc.  To get the size of block devices, use "
21183 "L</blockdev-getsize64>."
21184 msgstr ""
21185
21186 #. type: =head2
21187 #: ../fish/guestfish-actions.pod:1129
21188 msgid "fill"
21189 msgstr ""
21190
21191 #. type: verbatim
21192 #: ../fish/guestfish-actions.pod:1131
21193 #, no-wrap
21194 msgid ""
21195 " fill c len path\n"
21196 "\n"
21197 msgstr ""
21198
21199 #. type: textblock
21200 #: ../fish/guestfish-actions.pod:1137
21201 msgid ""
21202 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
21203 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
21204 "L</fill-pattern>."
21205 msgstr ""
21206
21207 #. type: =head2
21208 #: ../fish/guestfish-actions.pod:1142
21209 msgid "fill-pattern"
21210 msgstr ""
21211
21212 #. type: verbatim
21213 #: ../fish/guestfish-actions.pod:1144
21214 #, no-wrap
21215 msgid ""
21216 " fill-pattern pattern len path\n"
21217 "\n"
21218 msgstr ""
21219
21220 #. type: textblock
21221 #: ../fish/guestfish-actions.pod:1146
21222 msgid ""
21223 "This function is like L</fill> except that it creates a new file of length "
21224 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
21225 "is truncated if necessary to ensure the length of the file is exactly C<len> "
21226 "bytes."
21227 msgstr ""
21228
21229 #. type: =head2
21230 #: ../fish/guestfish-actions.pod:1151
21231 msgid "find"
21232 msgstr ""
21233
21234 #. type: verbatim
21235 #: ../fish/guestfish-actions.pod:1153
21236 #, no-wrap
21237 msgid ""
21238 " find directory\n"
21239 "\n"
21240 msgstr ""
21241
21242 #. type: textblock
21243 #: ../fish/guestfish-actions.pod:1167
21244 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
21245 msgstr ""
21246
21247 #. type: textblock
21248 #: ../fish/guestfish-actions.pod:1180
21249 msgid "See also L</find0>."
21250 msgstr ""
21251
21252 #. type: =head2
21253 #: ../fish/guestfish-actions.pod:1185
21254 msgid "find0"
21255 msgstr ""
21256
21257 #. type: verbatim
21258 #: ../fish/guestfish-actions.pod:1187
21259 #, no-wrap
21260 msgid ""
21261 " find0 directory (files|-)\n"
21262 "\n"
21263 msgstr ""
21264
21265 #. type: textblock
21266 #: ../fish/guestfish-actions.pod:1193
21267 msgid "This command works the same way as L</find> with the following exceptions:"
21268 msgstr ""
21269
21270 #. type: =head2
21271 #: ../fish/guestfish-actions.pod:1220
21272 msgid "findfs-label"
21273 msgstr ""
21274
21275 #. type: verbatim
21276 #: ../fish/guestfish-actions.pod:1222
21277 #, no-wrap
21278 msgid ""
21279 " findfs-label label\n"
21280 "\n"
21281 msgstr ""
21282
21283 #. type: textblock
21284 #: ../fish/guestfish-actions.pod:1228
21285 msgid "To find the label of a filesystem, use L</vfs-label>."
21286 msgstr ""
21287
21288 #. type: =head2
21289 #: ../fish/guestfish-actions.pod:1230
21290 msgid "findfs-uuid"
21291 msgstr ""
21292
21293 #. type: verbatim
21294 #: ../fish/guestfish-actions.pod:1232
21295 #, no-wrap
21296 msgid ""
21297 " findfs-uuid uuid\n"
21298 "\n"
21299 msgstr ""
21300
21301 #. type: textblock
21302 #: ../fish/guestfish-actions.pod:1238
21303 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
21304 msgstr ""
21305
21306 #. type: =head2
21307 #: ../fish/guestfish-actions.pod:1240
21308 msgid "fsck"
21309 msgstr ""
21310
21311 #. type: verbatim
21312 #: ../fish/guestfish-actions.pod:1242
21313 #, no-wrap
21314 msgid ""
21315 " fsck fstype device\n"
21316 "\n"
21317 msgstr ""
21318
21319 #. type: =head2
21320 #: ../fish/guestfish-actions.pod:1272
21321 msgid "get-append"
21322 msgstr ""
21323
21324 #. type: verbatim
21325 #: ../fish/guestfish-actions.pod:1274
21326 #, no-wrap
21327 msgid ""
21328 " get-append\n"
21329 "\n"
21330 msgstr ""
21331
21332 #. type: =head2
21333 #: ../fish/guestfish-actions.pod:1281
21334 msgid "get-autosync"
21335 msgstr ""
21336
21337 #. type: verbatim
21338 #: ../fish/guestfish-actions.pod:1283
21339 #, no-wrap
21340 msgid ""
21341 " get-autosync\n"
21342 "\n"
21343 msgstr ""
21344
21345 #. type: =head2
21346 #: ../fish/guestfish-actions.pod:1287
21347 msgid "get-direct"
21348 msgstr ""
21349
21350 #. type: verbatim
21351 #: ../fish/guestfish-actions.pod:1289
21352 #, no-wrap
21353 msgid ""
21354 " get-direct\n"
21355 "\n"
21356 msgstr ""
21357
21358 #. type: =head2
21359 #: ../fish/guestfish-actions.pod:1293
21360 msgid "get-e2label"
21361 msgstr ""
21362
21363 #. type: verbatim
21364 #: ../fish/guestfish-actions.pod:1295
21365 #, no-wrap
21366 msgid ""
21367 " get-e2label device\n"
21368 "\n"
21369 msgstr ""
21370
21371 #. type: textblock
21372 #: ../fish/guestfish-actions.pod:1300
21373 msgid ""
21374 "This function is deprecated.  In new code, use the L</vfs_label> call "
21375 "instead."
21376 msgstr ""
21377
21378 #. type: =head2
21379 #: ../fish/guestfish-actions.pod:1307
21380 msgid "get-e2uuid"
21381 msgstr ""
21382
21383 #. type: verbatim
21384 #: ../fish/guestfish-actions.pod:1309
21385 #, no-wrap
21386 msgid ""
21387 " get-e2uuid device\n"
21388 "\n"
21389 msgstr ""
21390
21391 #. type: textblock
21392 #: ../fish/guestfish-actions.pod:1314
21393 msgid ""
21394 "This function is deprecated.  In new code, use the L</vfs_uuid> call "
21395 "instead."
21396 msgstr ""
21397
21398 #. type: =head2
21399 #: ../fish/guestfish-actions.pod:1321
21400 msgid "get-memsize"
21401 msgstr ""
21402
21403 #. type: verbatim
21404 #: ../fish/guestfish-actions.pod:1323
21405 #, no-wrap
21406 msgid ""
21407 " get-memsize\n"
21408 "\n"
21409 msgstr ""
21410
21411 #. type: textblock
21412 #: ../fish/guestfish-actions.pod:1328
21413 msgid ""
21414 "If L</set-memsize> was not called on this handle, and if "
21415 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
21416 "value for memsize."
21417 msgstr ""
21418
21419 #. type: =head2
21420 #: ../fish/guestfish-actions.pod:1335
21421 msgid "get-network"
21422 msgstr ""
21423
21424 #. type: verbatim
21425 #: ../fish/guestfish-actions.pod:1337
21426 #, no-wrap
21427 msgid ""
21428 " get-network\n"
21429 "\n"
21430 msgstr ""
21431
21432 #. type: =head2
21433 #: ../fish/guestfish-actions.pod:1341
21434 msgid "get-path"
21435 msgstr ""
21436
21437 #. type: verbatim
21438 #: ../fish/guestfish-actions.pod:1343
21439 #, no-wrap
21440 msgid ""
21441 " get-path\n"
21442 "\n"
21443 msgstr ""
21444
21445 #. type: =head2
21446 #: ../fish/guestfish-actions.pod:1350
21447 msgid "get-pid"
21448 msgstr ""
21449
21450 #. type: =head2
21451 #: ../fish/guestfish-actions.pod:1352
21452 msgid "pid"
21453 msgstr ""
21454
21455 #. type: verbatim
21456 #: ../fish/guestfish-actions.pod:1354
21457 #, no-wrap
21458 msgid ""
21459 " get-pid\n"
21460 "\n"
21461 msgstr ""
21462
21463 #. type: =head2
21464 #: ../fish/guestfish-actions.pod:1361
21465 msgid "get-qemu"
21466 msgstr ""
21467
21468 #. type: verbatim
21469 #: ../fish/guestfish-actions.pod:1363
21470 #, no-wrap
21471 msgid ""
21472 " get-qemu\n"
21473 "\n"
21474 msgstr ""
21475
21476 #. type: =head2
21477 #: ../fish/guestfish-actions.pod:1370
21478 msgid "get-recovery-proc"
21479 msgstr ""
21480
21481 #. type: verbatim
21482 #: ../fish/guestfish-actions.pod:1372
21483 #, no-wrap
21484 msgid ""
21485 " get-recovery-proc\n"
21486 "\n"
21487 msgstr ""
21488
21489 #. type: =head2
21490 #: ../fish/guestfish-actions.pod:1376
21491 msgid "get-selinux"
21492 msgstr ""
21493
21494 #. type: verbatim
21495 #: ../fish/guestfish-actions.pod:1378
21496 #, no-wrap
21497 msgid ""
21498 " get-selinux\n"
21499 "\n"
21500 msgstr ""
21501
21502 #. type: textblock
21503 #: ../fish/guestfish-actions.pod:1380
21504 msgid ""
21505 "This returns the current setting of the selinux flag which is passed to the "
21506 "appliance at boot time.  See L</set-selinux>."
21507 msgstr ""
21508
21509 #. type: =head2
21510 #: ../fish/guestfish-actions.pod:1386
21511 msgid "get-state"
21512 msgstr ""
21513
21514 #. type: verbatim
21515 #: ../fish/guestfish-actions.pod:1388
21516 #, no-wrap
21517 msgid ""
21518 " get-state\n"
21519 "\n"
21520 msgstr ""
21521
21522 #. type: =head2
21523 #: ../fish/guestfish-actions.pod:1395
21524 msgid "get-trace"
21525 msgstr ""
21526
21527 #. type: verbatim
21528 #: ../fish/guestfish-actions.pod:1397
21529 #, no-wrap
21530 msgid ""
21531 " get-trace\n"
21532 "\n"
21533 msgstr ""
21534
21535 #. type: =head2
21536 #: ../fish/guestfish-actions.pod:1401
21537 msgid "get-umask"
21538 msgstr ""
21539
21540 #. type: verbatim
21541 #: ../fish/guestfish-actions.pod:1403
21542 #, no-wrap
21543 msgid ""
21544 " get-umask\n"
21545 "\n"
21546 msgstr ""
21547
21548 #. type: textblock
21549 #: ../fish/guestfish-actions.pod:1405
21550 msgid ""
21551 "Return the current umask.  By default the umask is C<022> unless it has been "
21552 "set by calling L</umask>."
21553 msgstr ""
21554
21555 #. type: =head2
21556 #: ../fish/guestfish-actions.pod:1408
21557 msgid "get-verbose"
21558 msgstr ""
21559
21560 #. type: verbatim
21561 #: ../fish/guestfish-actions.pod:1410
21562 #, no-wrap
21563 msgid ""
21564 " get-verbose\n"
21565 "\n"
21566 msgstr ""
21567
21568 #. type: =head2
21569 #: ../fish/guestfish-actions.pod:1414
21570 msgid "getcon"
21571 msgstr ""
21572
21573 #. type: verbatim
21574 #: ../fish/guestfish-actions.pod:1416
21575 #, no-wrap
21576 msgid ""
21577 " getcon\n"
21578 "\n"
21579 msgstr ""
21580
21581 #. type: textblock
21582 #: ../fish/guestfish-actions.pod:1420
21583 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
21584 msgstr ""
21585
21586 #. type: =head2
21587 #: ../fish/guestfish-actions.pod:1423
21588 msgid "getxattr"
21589 msgstr ""
21590
21591 #. type: verbatim
21592 #: ../fish/guestfish-actions.pod:1425
21593 #, no-wrap
21594 msgid ""
21595 " getxattr path name\n"
21596 "\n"
21597 msgstr ""
21598
21599 #. type: textblock
21600 #: ../fish/guestfish-actions.pod:1427
21601 msgid ""
21602 "Get a single extended attribute from file C<path> named C<name>.  This call "
21603 "follows symlinks.  If you want to lookup an extended attribute for the "
21604 "symlink itself, use L</lgetxattr>."
21605 msgstr ""
21606
21607 #. type: textblock
21608 #: ../fish/guestfish-actions.pod:1431 ../fish/guestfish-actions.pod:2262
21609 msgid ""
21610 "Normally it is better to get all extended attributes from a file in one go "
21611 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
21612 "buggy and do not provide a way to list out attributes.  For these "
21613 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
21614 "attributes you want in advance and call this function."
21615 msgstr ""
21616
21617 #. type: textblock
21618 #: ../fish/guestfish-actions.pod:1441
21619 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
21620 msgstr ""
21621
21622 #. type: =head2
21623 #: ../fish/guestfish-actions.pod:1443
21624 msgid "getxattrs"
21625 msgstr ""
21626
21627 #. type: verbatim
21628 #: ../fish/guestfish-actions.pod:1445
21629 #, no-wrap
21630 msgid ""
21631 " getxattrs path\n"
21632 "\n"
21633 msgstr ""
21634
21635 #. type: textblock
21636 #: ../fish/guestfish-actions.pod:1453
21637 msgid "See also: L</lgetxattrs>, L<attr(5)>."
21638 msgstr ""
21639
21640 #. type: =head2
21641 #: ../fish/guestfish-actions.pod:1455
21642 msgid "glob-expand"
21643 msgstr ""
21644
21645 #. type: verbatim
21646 #: ../fish/guestfish-actions.pod:1457
21647 #, no-wrap
21648 msgid ""
21649 " glob-expand pattern\n"
21650 "\n"
21651 msgstr ""
21652
21653 #. type: =head2
21654 #: ../fish/guestfish-actions.pod:1470
21655 msgid "grep"
21656 msgstr ""
21657
21658 #. type: verbatim
21659 #: ../fish/guestfish-actions.pod:1472
21660 #, no-wrap
21661 msgid ""
21662 " grep regex path\n"
21663 "\n"
21664 msgstr ""
21665
21666 #. type: =head2
21667 #: ../fish/guestfish-actions.pod:1480
21668 msgid "grepi"
21669 msgstr ""
21670
21671 #. type: verbatim
21672 #: ../fish/guestfish-actions.pod:1482
21673 #, no-wrap
21674 msgid ""
21675 " grepi regex path\n"
21676 "\n"
21677 msgstr ""
21678
21679 #. type: =head2
21680 #: ../fish/guestfish-actions.pod:1490
21681 msgid "grub-install"
21682 msgstr ""
21683
21684 #. type: verbatim
21685 #: ../fish/guestfish-actions.pod:1492
21686 #, no-wrap
21687 msgid ""
21688 " grub-install root device\n"
21689 "\n"
21690 msgstr ""
21691
21692 #. type: =head2
21693 #: ../fish/guestfish-actions.pod:1508
21694 msgid "head"
21695 msgstr ""
21696
21697 #. type: verbatim
21698 #: ../fish/guestfish-actions.pod:1510
21699 #, no-wrap
21700 msgid ""
21701 " head path\n"
21702 "\n"
21703 msgstr ""
21704
21705 #. type: =head2
21706 #: ../fish/guestfish-actions.pod:1518
21707 msgid "head-n"
21708 msgstr ""
21709
21710 #. type: verbatim
21711 #: ../fish/guestfish-actions.pod:1520
21712 #, no-wrap
21713 msgid ""
21714 " head-n nrlines path\n"
21715 "\n"
21716 msgstr ""
21717
21718 #. type: =head2
21719 #: ../fish/guestfish-actions.pod:1533
21720 msgid "hexdump"
21721 msgstr ""
21722
21723 #. type: verbatim
21724 #: ../fish/guestfish-actions.pod:1535
21725 #, no-wrap
21726 msgid ""
21727 " hexdump path\n"
21728 "\n"
21729 msgstr ""
21730
21731 #. type: =head2
21732 #: ../fish/guestfish-actions.pod:1543
21733 msgid "initrd-cat"
21734 msgstr ""
21735
21736 #. type: verbatim
21737 #: ../fish/guestfish-actions.pod:1545
21738 #, no-wrap
21739 msgid ""
21740 " initrd-cat initrdpath filename\n"
21741 "\n"
21742 msgstr ""
21743
21744 #. type: textblock
21745 #: ../fish/guestfish-actions.pod:1557
21746 msgid "See also L</initrd-list>."
21747 msgstr ""
21748
21749 #. type: =head2
21750 #: ../fish/guestfish-actions.pod:1562
21751 msgid "initrd-list"
21752 msgstr ""
21753
21754 #. type: verbatim
21755 #: ../fish/guestfish-actions.pod:1564
21756 #, no-wrap
21757 msgid ""
21758 " initrd-list path\n"
21759 "\n"
21760 msgstr ""
21761
21762 #. type: =head2
21763 #: ../fish/guestfish-actions.pod:1576
21764 msgid "inotify-add-watch"
21765 msgstr ""
21766
21767 #. type: verbatim
21768 #: ../fish/guestfish-actions.pod:1578
21769 #, no-wrap
21770 msgid ""
21771 " inotify-add-watch path mask\n"
21772 "\n"
21773 msgstr ""
21774
21775 #. type: =head2
21776 #: ../fish/guestfish-actions.pod:1590
21777 msgid "inotify-close"
21778 msgstr ""
21779
21780 #. type: verbatim
21781 #: ../fish/guestfish-actions.pod:1592
21782 #, no-wrap
21783 msgid ""
21784 " inotify-close\n"
21785 "\n"
21786 msgstr ""
21787
21788 #. type: =head2
21789 #: ../fish/guestfish-actions.pod:1598
21790 msgid "inotify-files"
21791 msgstr ""
21792
21793 #. type: verbatim
21794 #: ../fish/guestfish-actions.pod:1600
21795 #, no-wrap
21796 msgid ""
21797 " inotify-files\n"
21798 "\n"
21799 msgstr ""
21800
21801 #. type: textblock
21802 #: ../fish/guestfish-actions.pod:1602
21803 msgid ""
21804 "This function is a helpful wrapper around L</inotify-read> which just "
21805 "returns a list of pathnames of objects that were touched.  The returned "
21806 "pathnames are sorted and deduplicated."
21807 msgstr ""
21808
21809 #. type: =head2
21810 #: ../fish/guestfish-actions.pod:1606
21811 msgid "inotify-init"
21812 msgstr ""
21813
21814 #. type: verbatim
21815 #: ../fish/guestfish-actions.pod:1608
21816 #, no-wrap
21817 msgid ""
21818 " inotify-init maxevents\n"
21819 "\n"
21820 msgstr ""
21821
21822 #. type: textblock
21823 #: ../fish/guestfish-actions.pod:1614
21824 msgid ""
21825 "C<maxevents> is the maximum number of events which will be queued up between "
21826 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
21827 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
21828 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
21829 "but records the fact that it threw them away by setting a flag "
21830 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
21831 msgstr ""
21832
21833 #. type: textblock
21834 #: ../fish/guestfish-actions.pod:1624
21835 msgid ""
21836 "Before any events are generated, you have to add some watches to the "
21837 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
21838 "L</inotify-watch-all>."
21839 msgstr ""
21840
21841 #. type: textblock
21842 #: ../fish/guestfish-actions.pod:1630
21843 msgid ""
21844 "Queued up events should be read periodically by calling L</inotify-read> (or "
21845 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
21846 "If you don't read the events out often enough then you risk the internal "
21847 "queue overflowing."
21848 msgstr ""
21849
21850 #. type: textblock
21851 #: ../fish/guestfish-actions.pod:1637
21852 msgid ""
21853 "The handle should be closed after use by calling L</inotify-close>.  This "
21854 "also removes any watches automatically."
21855 msgstr ""
21856
21857 #. type: =head2
21858 #: ../fish/guestfish-actions.pod:1646
21859 msgid "inotify-read"
21860 msgstr ""
21861
21862 #. type: verbatim
21863 #: ../fish/guestfish-actions.pod:1648
21864 #, no-wrap
21865 msgid ""
21866 " inotify-read\n"
21867 "\n"
21868 msgstr ""
21869
21870 #. type: =head2
21871 #: ../fish/guestfish-actions.pod:1661
21872 msgid "inotify-rm-watch"
21873 msgstr ""
21874
21875 #. type: verbatim
21876 #: ../fish/guestfish-actions.pod:1663
21877 #, no-wrap
21878 msgid ""
21879 " inotify-rm-watch wd\n"
21880 "\n"
21881 msgstr ""
21882
21883 #. type: textblock
21884 #: ../fish/guestfish-actions.pod:1665
21885 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
21886 msgstr ""
21887
21888 #. type: =head2
21889 #: ../fish/guestfish-actions.pod:1668
21890 msgid "inspect-get-arch"
21891 msgstr ""
21892
21893 #. type: verbatim
21894 #: ../fish/guestfish-actions.pod:1670
21895 #, no-wrap
21896 msgid ""
21897 " inspect-get-arch root\n"
21898 "\n"
21899 msgstr ""
21900
21901 #. type: textblock
21902 #: ../fish/guestfish-actions.pod:1672 ../fish/guestfish-actions.pod:1688 ../fish/guestfish-actions.pod:1762 ../fish/guestfish-actions.pod:1780 ../fish/guestfish-actions.pod:1795 ../fish/guestfish-actions.pod:1816 ../fish/guestfish-actions.pod:1831 ../fish/guestfish-actions.pod:1858 ../fish/guestfish-actions.pod:1880 ../fish/guestfish-actions.pod:1904 ../fish/guestfish-actions.pod:1934 ../fish/guestfish-actions.pod:1969 ../fish/guestfish-actions.pod:1985
21903 msgid ""
21904 "This function should only be called with a root device string as returned by "
21905 "L</inspect-os>."
21906 msgstr ""
21907
21908 #. type: textblock
21909 #: ../fish/guestfish-actions.pod:1675
21910 msgid ""
21911 "This returns the architecture of the inspected operating system.  The "
21912 "possible return values are listed under L</file-architecture>."
21913 msgstr ""
21914
21915 #. type: =head2
21916 #: ../fish/guestfish-actions.pod:1684
21917 msgid "inspect-get-distro"
21918 msgstr ""
21919
21920 #. type: verbatim
21921 #: ../fish/guestfish-actions.pod:1686
21922 #, no-wrap
21923 msgid ""
21924 " inspect-get-distro root\n"
21925 "\n"
21926 msgstr ""
21927
21928 #. type: =head2
21929 #: ../fish/guestfish-actions.pod:1758
21930 msgid "inspect-get-filesystems"
21931 msgstr ""
21932
21933 #. type: verbatim
21934 #: ../fish/guestfish-actions.pod:1760
21935 #, no-wrap
21936 msgid ""
21937 " inspect-get-filesystems root\n"
21938 "\n"
21939 msgstr ""
21940
21941 #. type: textblock
21942 #: ../fish/guestfish-actions.pod:1773
21943 msgid ""
21944 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21945 "L</inspect-get-mountpoints>."
21946 msgstr ""
21947
21948 #. type: =head2
21949 #: ../fish/guestfish-actions.pod:1776
21950 msgid "inspect-get-hostname"
21951 msgstr ""
21952
21953 #. type: verbatim
21954 #: ../fish/guestfish-actions.pod:1778
21955 #, no-wrap
21956 msgid ""
21957 " inspect-get-hostname root\n"
21958 "\n"
21959 msgstr ""
21960
21961 #. type: =head2
21962 #: ../fish/guestfish-actions.pod:1791
21963 msgid "inspect-get-major-version"
21964 msgstr ""
21965
21966 #. type: verbatim
21967 #: ../fish/guestfish-actions.pod:1793
21968 #, no-wrap
21969 msgid ""
21970 " inspect-get-major-version root\n"
21971 "\n"
21972 msgstr ""
21973
21974 #. type: =head2
21975 #: ../fish/guestfish-actions.pod:1812
21976 msgid "inspect-get-minor-version"
21977 msgstr ""
21978
21979 #. type: verbatim
21980 #: ../fish/guestfish-actions.pod:1814
21981 #, no-wrap
21982 msgid ""
21983 " inspect-get-minor-version root\n"
21984 "\n"
21985 msgstr ""
21986
21987 #. type: textblock
21988 #: ../fish/guestfish-actions.pod:1824
21989 msgid ""
21990 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21991 "L</inspect-get-major-version>."
21992 msgstr ""
21993
21994 #. type: =head2
21995 #: ../fish/guestfish-actions.pod:1827
21996 msgid "inspect-get-mountpoints"
21997 msgstr ""
21998
21999 #. type: verbatim
22000 #: ../fish/guestfish-actions.pod:1829
22001 #, no-wrap
22002 msgid ""
22003 " inspect-get-mountpoints root\n"
22004 "\n"
22005 msgstr ""
22006
22007 #. type: textblock
22008 #: ../fish/guestfish-actions.pod:1851
22009 msgid ""
22010 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
22011 "L</inspect-get-filesystems>."
22012 msgstr ""
22013
22014 #. type: =head2
22015 #: ../fish/guestfish-actions.pod:1854
22016 msgid "inspect-get-package-format"
22017 msgstr ""
22018
22019 #. type: verbatim
22020 #: ../fish/guestfish-actions.pod:1856
22021 #, no-wrap
22022 msgid ""
22023 " inspect-get-package-format root\n"
22024 "\n"
22025 msgstr ""
22026
22027 #. type: textblock
22028 #: ../fish/guestfish-actions.pod:1861
22029 msgid ""
22030 "This function and L</inspect-get-package-management> return the package "
22031 "format and package management tool used by the inspected operating system.  "
22032 "For example for Fedora these functions would return C<rpm> (package format) "
22033 "and C<yum> (package management)."
22034 msgstr ""
22035
22036 #. type: =head2
22037 #: ../fish/guestfish-actions.pod:1876
22038 msgid "inspect-get-package-management"
22039 msgstr ""
22040
22041 #. type: verbatim
22042 #: ../fish/guestfish-actions.pod:1878
22043 #, no-wrap
22044 msgid ""
22045 " inspect-get-package-management root\n"
22046 "\n"
22047 msgstr ""
22048
22049 #. type: textblock
22050 #: ../fish/guestfish-actions.pod:1883
22051 msgid ""
22052 "L</inspect-get-package-format> and this function return the package format "
22053 "and package management tool used by the inspected operating system.  For "
22054 "example for Fedora these functions would return C<rpm> (package format) and "
22055 "C<yum> (package management)."
22056 msgstr ""
22057
22058 #. type: =head2
22059 #: ../fish/guestfish-actions.pod:1900
22060 msgid "inspect-get-product-name"
22061 msgstr ""
22062
22063 #. type: verbatim
22064 #: ../fish/guestfish-actions.pod:1902
22065 #, no-wrap
22066 msgid ""
22067 " inspect-get-product-name root\n"
22068 "\n"
22069 msgstr ""
22070
22071 #. type: =head2
22072 #: ../fish/guestfish-actions.pod:1917
22073 msgid "inspect-get-roots"
22074 msgstr ""
22075
22076 #. type: verbatim
22077 #: ../fish/guestfish-actions.pod:1919
22078 #, no-wrap
22079 msgid ""
22080 " inspect-get-roots\n"
22081 "\n"
22082 msgstr ""
22083
22084 #. type: textblock
22085 #: ../fish/guestfish-actions.pod:1921
22086 msgid ""
22087 "This function is a convenient way to get the list of root devices, as "
22088 "returned from a previous call to L</inspect-os>, but without redoing the "
22089 "whole inspection process."
22090 msgstr ""
22091
22092 #. type: textblock
22093 #: ../fish/guestfish-actions.pod:1925
22094 msgid ""
22095 "This returns an empty list if either no root devices were found or the "
22096 "caller has not called L</inspect-os>."
22097 msgstr ""
22098
22099 #. type: =head2
22100 #: ../fish/guestfish-actions.pod:1930
22101 msgid "inspect-get-type"
22102 msgstr ""
22103
22104 #. type: verbatim
22105 #: ../fish/guestfish-actions.pod:1932
22106 #, no-wrap
22107 msgid ""
22108 " inspect-get-type root\n"
22109 "\n"
22110 msgstr ""
22111
22112 #. type: =head2
22113 #: ../fish/guestfish-actions.pod:1965
22114 msgid "inspect-get-windows-systemroot"
22115 msgstr ""
22116
22117 #. type: verbatim
22118 #: ../fish/guestfish-actions.pod:1967
22119 #, no-wrap
22120 msgid ""
22121 " inspect-get-windows-systemroot root\n"
22122 "\n"
22123 msgstr ""
22124
22125 #. type: =head2
22126 #: ../fish/guestfish-actions.pod:1981
22127 msgid "inspect-list-applications"
22128 msgstr ""
22129
22130 #. type: verbatim
22131 #: ../fish/guestfish-actions.pod:1983
22132 #, no-wrap
22133 msgid ""
22134 " inspect-list-applications root\n"
22135 "\n"
22136 msgstr ""
22137
22138 #. type: textblock
22139 #: ../fish/guestfish-actions.pod:1990
22140 msgid ""
22141 "I<Note:> This call works differently from other parts of the inspection "
22142 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
22143 "then mount up the disks, before calling this.  Listing applications is a "
22144 "significantly more difficult operation which requires access to the full "
22145 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
22146 "are just returning data cached in the libguestfs handle, this call actually "
22147 "reads parts of the mounted filesystems during the call."
22148 msgstr ""
22149
22150 #. type: =head2
22151 #: ../fish/guestfish-actions.pod:2080
22152 msgid "inspect-os"
22153 msgstr ""
22154
22155 #. type: verbatim
22156 #: ../fish/guestfish-actions.pod:2082
22157 #, no-wrap
22158 msgid ""
22159 " inspect-os\n"
22160 "\n"
22161 msgstr ""
22162
22163 #. type: textblock
22164 #: ../fish/guestfish-actions.pod:2097
22165 msgid ""
22166 "You can pass the root string(s) returned to other L</inspect-get-*> "
22167 "functions in order to query further information about each operating system, "
22168 "such as the name and version."
22169 msgstr ""
22170
22171 #. type: textblock
22172 #: ../fish/guestfish-actions.pod:2102
22173 msgid ""
22174 "This function uses other libguestfs features such as L</mount-ro> and "
22175 "L</umount-all> in order to mount and unmount filesystems and look at the "
22176 "contents.  This should be called with no disks currently mounted.  The "
22177 "function may also use Augeas, so any existing Augeas handle will be closed."
22178 msgstr ""
22179
22180 #. type: textblock
22181 #: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:2290 ../fish/guestfish-actions.pod:2336
22182 msgid "See also L</list-filesystems>."
22183 msgstr ""
22184
22185 #. type: =head2
22186 #: ../fish/guestfish-actions.pod:2116
22187 msgid "is-blockdev"
22188 msgstr ""
22189
22190 #. type: verbatim
22191 #: ../fish/guestfish-actions.pod:2118
22192 #, no-wrap
22193 msgid ""
22194 " is-blockdev path\n"
22195 "\n"
22196 msgstr ""
22197
22198 #. type: textblock
22199 #: ../fish/guestfish-actions.pod:2123 ../fish/guestfish-actions.pod:2141 ../fish/guestfish-actions.pod:2160 ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2179 ../fish/guestfish-actions.pod:2213 ../fish/guestfish-actions.pod:2222
22200 msgid "See also L</stat>."
22201 msgstr ""
22202
22203 #. type: =head2
22204 #: ../fish/guestfish-actions.pod:2125
22205 msgid "is-busy"
22206 msgstr ""
22207
22208 #. type: verbatim
22209 #: ../fish/guestfish-actions.pod:2127
22210 #, no-wrap
22211 msgid ""
22212 " is-busy\n"
22213 "\n"
22214 msgstr ""
22215
22216 #. type: =head2
22217 #: ../fish/guestfish-actions.pod:2134
22218 msgid "is-chardev"
22219 msgstr ""
22220
22221 #. type: verbatim
22222 #: ../fish/guestfish-actions.pod:2136
22223 #, no-wrap
22224 msgid ""
22225 " is-chardev path\n"
22226 "\n"
22227 msgstr ""
22228
22229 #. type: =head2
22230 #: ../fish/guestfish-actions.pod:2143
22231 msgid "is-config"
22232 msgstr ""
22233
22234 #. type: verbatim
22235 #: ../fish/guestfish-actions.pod:2145
22236 #, no-wrap
22237 msgid ""
22238 " is-config\n"
22239 "\n"
22240 msgstr ""
22241
22242 #. type: =head2
22243 #: ../fish/guestfish-actions.pod:2152
22244 msgid "is-dir"
22245 msgstr ""
22246
22247 #. type: verbatim
22248 #: ../fish/guestfish-actions.pod:2154
22249 #, no-wrap
22250 msgid ""
22251 " is-dir path\n"
22252 "\n"
22253 msgstr ""
22254
22255 #. type: =head2
22256 #: ../fish/guestfish-actions.pod:2162
22257 msgid "is-fifo"
22258 msgstr ""
22259
22260 #. type: verbatim
22261 #: ../fish/guestfish-actions.pod:2164
22262 #, no-wrap
22263 msgid ""
22264 " is-fifo path\n"
22265 "\n"
22266 msgstr ""
22267
22268 #. type: =head2
22269 #: ../fish/guestfish-actions.pod:2171
22270 msgid "is-file"
22271 msgstr ""
22272
22273 #. type: verbatim
22274 #: ../fish/guestfish-actions.pod:2173
22275 #, no-wrap
22276 msgid ""
22277 " is-file path\n"
22278 "\n"
22279 msgstr ""
22280
22281 #. type: =head2
22282 #: ../fish/guestfish-actions.pod:2181
22283 msgid "is-launching"
22284 msgstr ""
22285
22286 #. type: verbatim
22287 #: ../fish/guestfish-actions.pod:2183
22288 #, no-wrap
22289 msgid ""
22290 " is-launching\n"
22291 "\n"
22292 msgstr ""
22293
22294 #. type: =head2
22295 #: ../fish/guestfish-actions.pod:2190
22296 msgid "is-lv"
22297 msgstr ""
22298
22299 #. type: verbatim
22300 #: ../fish/guestfish-actions.pod:2192
22301 #, no-wrap
22302 msgid ""
22303 " is-lv device\n"
22304 "\n"
22305 msgstr ""
22306
22307 #. type: =head2
22308 #: ../fish/guestfish-actions.pod:2197
22309 msgid "is-ready"
22310 msgstr ""
22311
22312 #. type: verbatim
22313 #: ../fish/guestfish-actions.pod:2199
22314 #, no-wrap
22315 msgid ""
22316 " is-ready\n"
22317 "\n"
22318 msgstr ""
22319
22320 #. type: =head2
22321 #: ../fish/guestfish-actions.pod:2206
22322 msgid "is-socket"
22323 msgstr ""
22324
22325 #. type: verbatim
22326 #: ../fish/guestfish-actions.pod:2208
22327 #, no-wrap
22328 msgid ""
22329 " is-socket path\n"
22330 "\n"
22331 msgstr ""
22332
22333 #. type: =head2
22334 #: ../fish/guestfish-actions.pod:2215
22335 msgid "is-symlink"
22336 msgstr ""
22337
22338 #. type: verbatim
22339 #: ../fish/guestfish-actions.pod:2217
22340 #, no-wrap
22341 msgid ""
22342 " is-symlink path\n"
22343 "\n"
22344 msgstr ""
22345
22346 #. type: =head2
22347 #: ../fish/guestfish-actions.pod:2224
22348 msgid "kill-subprocess"
22349 msgstr ""
22350
22351 #. type: verbatim
22352 #: ../fish/guestfish-actions.pod:2226
22353 #, no-wrap
22354 msgid ""
22355 " kill-subprocess\n"
22356 "\n"
22357 msgstr ""
22358
22359 #. type: =head2
22360 #: ../fish/guestfish-actions.pod:2230
22361 msgid "launch"
22362 msgstr ""
22363
22364 #. type: =head2
22365 #: ../fish/guestfish-actions.pod:2232
22366 msgid "run"
22367 msgstr ""
22368
22369 #. type: verbatim
22370 #: ../fish/guestfish-actions.pod:2234
22371 #, no-wrap
22372 msgid ""
22373 " launch\n"
22374 "\n"
22375 msgstr ""
22376
22377 #. type: =head2
22378 #: ../fish/guestfish-actions.pod:2242
22379 msgid "lchown"
22380 msgstr ""
22381
22382 #. type: verbatim
22383 #: ../fish/guestfish-actions.pod:2244
22384 #, no-wrap
22385 msgid ""
22386 " lchown owner group path\n"
22387 "\n"
22388 msgstr ""
22389
22390 #. type: textblock
22391 #: ../fish/guestfish-actions.pod:2246
22392 msgid ""
22393 "Change the file owner to C<owner> and group to C<group>.  This is like "
22394 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
22395 "the target."
22396 msgstr ""
22397
22398 #. type: =head2
22399 #: ../fish/guestfish-actions.pod:2254
22400 msgid "lgetxattr"
22401 msgstr ""
22402
22403 #. type: verbatim
22404 #: ../fish/guestfish-actions.pod:2256
22405 #, no-wrap
22406 msgid ""
22407 " lgetxattr path name\n"
22408 "\n"
22409 msgstr ""
22410
22411 #. type: textblock
22412 #: ../fish/guestfish-actions.pod:2272
22413 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
22414 msgstr ""
22415
22416 #. type: =head2
22417 #: ../fish/guestfish-actions.pod:2274
22418 msgid "lgetxattrs"
22419 msgstr ""
22420
22421 #. type: verbatim
22422 #: ../fish/guestfish-actions.pod:2276
22423 #, no-wrap
22424 msgid ""
22425 " lgetxattrs path\n"
22426 "\n"
22427 msgstr ""
22428
22429 #. type: textblock
22430 #: ../fish/guestfish-actions.pod:2278
22431 msgid ""
22432 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
22433 "it returns the extended attributes of the link itself."
22434 msgstr ""
22435
22436 #. type: =head2
22437 #: ../fish/guestfish-actions.pod:2282
22438 msgid "list-devices"
22439 msgstr ""
22440
22441 #. type: verbatim
22442 #: ../fish/guestfish-actions.pod:2284
22443 #, no-wrap
22444 msgid ""
22445 " list-devices\n"
22446 "\n"
22447 msgstr ""
22448
22449 #. type: =head2
22450 #: ../fish/guestfish-actions.pod:2292
22451 msgid "list-filesystems"
22452 msgstr ""
22453
22454 #. type: verbatim
22455 #: ../fish/guestfish-actions.pod:2294
22456 #, no-wrap
22457 msgid ""
22458 " list-filesystems\n"
22459 "\n"
22460 msgstr ""
22461
22462 #. type: textblock
22463 #: ../fish/guestfish-actions.pod:2313
22464 msgid ""
22465 "This command runs other libguestfs commands, which might include L</mount> "
22466 "and L</umount>, and therefore you should use this soon after launch and only "
22467 "when nothing is mounted."
22468 msgstr ""
22469
22470 #. type: textblock
22471 #: ../fish/guestfish-actions.pod:2317
22472 msgid ""
22473 "Not all of the filesystems returned will be mountable.  In particular, swap "
22474 "partitions are returned in the list.  Also this command does not check that "
22475 "each filesystem found is valid and mountable, and some filesystems might be "
22476 "mountable but require special options.  Filesystems may not all belong to a "
22477 "single logical operating system (use L</inspect-os> to look for OSes)."
22478 msgstr ""
22479
22480 #. type: =head2
22481 #: ../fish/guestfish-actions.pod:2325
22482 msgid "list-partitions"
22483 msgstr ""
22484
22485 #. type: verbatim
22486 #: ../fish/guestfish-actions.pod:2327
22487 #, no-wrap
22488 msgid ""
22489 " list-partitions\n"
22490 "\n"
22491 msgstr ""
22492
22493 #. type: textblock
22494 #: ../fish/guestfish-actions.pod:2333
22495 msgid ""
22496 "This does not return logical volumes.  For that you will need to call "
22497 "L</lvs>."
22498 msgstr ""
22499
22500 #. type: =head2
22501 #: ../fish/guestfish-actions.pod:2338
22502 msgid "ll"
22503 msgstr ""
22504
22505 #. type: verbatim
22506 #: ../fish/guestfish-actions.pod:2340
22507 #, no-wrap
22508 msgid ""
22509 " ll directory\n"
22510 "\n"
22511 msgstr ""
22512
22513 #. type: =head2
22514 #: ../fish/guestfish-actions.pod:2348
22515 msgid "ln"
22516 msgstr ""
22517
22518 #. type: verbatim
22519 #: ../fish/guestfish-actions.pod:2350
22520 #, no-wrap
22521 msgid ""
22522 " ln target linkname\n"
22523 "\n"
22524 msgstr ""
22525
22526 #. type: =head2
22527 #: ../fish/guestfish-actions.pod:2354
22528 msgid "ln-f"
22529 msgstr ""
22530
22531 #. type: verbatim
22532 #: ../fish/guestfish-actions.pod:2356
22533 #, no-wrap
22534 msgid ""
22535 " ln-f target linkname\n"
22536 "\n"
22537 msgstr ""
22538
22539 #. type: =head2
22540 #: ../fish/guestfish-actions.pod:2361
22541 msgid "ln-s"
22542 msgstr ""
22543
22544 #. type: verbatim
22545 #: ../fish/guestfish-actions.pod:2363
22546 #, no-wrap
22547 msgid ""
22548 " ln-s target linkname\n"
22549 "\n"
22550 msgstr ""
22551
22552 #. type: =head2
22553 #: ../fish/guestfish-actions.pod:2367
22554 msgid "ln-sf"
22555 msgstr ""
22556
22557 #. type: verbatim
22558 #: ../fish/guestfish-actions.pod:2369
22559 #, no-wrap
22560 msgid ""
22561 " ln-sf target linkname\n"
22562 "\n"
22563 msgstr ""
22564
22565 #. type: =head2
22566 #: ../fish/guestfish-actions.pod:2374
22567 msgid "lremovexattr"
22568 msgstr ""
22569
22570 #. type: verbatim
22571 #: ../fish/guestfish-actions.pod:2376
22572 #, no-wrap
22573 msgid ""
22574 " lremovexattr xattr path\n"
22575 "\n"
22576 msgstr ""
22577
22578 #. type: textblock
22579 #: ../fish/guestfish-actions.pod:2378
22580 msgid ""
22581 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
22582 "it removes an extended attribute of the link itself."
22583 msgstr ""
22584
22585 #. type: =head2
22586 #: ../fish/guestfish-actions.pod:2382
22587 msgid "ls"
22588 msgstr ""
22589
22590 #. type: verbatim
22591 #: ../fish/guestfish-actions.pod:2384
22592 #, no-wrap
22593 msgid ""
22594 " ls directory\n"
22595 "\n"
22596 msgstr ""
22597
22598 #. type: textblock
22599 #: ../fish/guestfish-actions.pod:2390
22600 msgid ""
22601 "This command is mostly useful for interactive sessions.  Programs should "
22602 "probably use L</readdir> instead."
22603 msgstr ""
22604
22605 #. type: =head2
22606 #: ../fish/guestfish-actions.pod:2393
22607 msgid "lsetxattr"
22608 msgstr ""
22609
22610 #. type: verbatim
22611 #: ../fish/guestfish-actions.pod:2395
22612 #, no-wrap
22613 msgid ""
22614 " lsetxattr xattr val vallen path\n"
22615 "\n"
22616 msgstr ""
22617
22618 #. type: textblock
22619 #: ../fish/guestfish-actions.pod:2397
22620 msgid ""
22621 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
22622 "sets an extended attribute of the link itself."
22623 msgstr ""
22624
22625 #. type: =head2
22626 #: ../fish/guestfish-actions.pod:2401
22627 msgid "lstat"
22628 msgstr ""
22629
22630 #. type: verbatim
22631 #: ../fish/guestfish-actions.pod:2403
22632 #, no-wrap
22633 msgid ""
22634 " lstat path\n"
22635 "\n"
22636 msgstr ""
22637
22638 #. type: textblock
22639 #: ../fish/guestfish-actions.pod:2407
22640 msgid ""
22641 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
22642 "the link is stat-ed, not the file it refers to."
22643 msgstr ""
22644
22645 #. type: =head2
22646 #: ../fish/guestfish-actions.pod:2413
22647 msgid "lstatlist"
22648 msgstr ""
22649
22650 #. type: verbatim
22651 #: ../fish/guestfish-actions.pod:2415
22652 #, no-wrap
22653 msgid ""
22654 " lstatlist path 'names ...'\n"
22655 "\n"
22656 msgstr ""
22657
22658 #. type: textblock
22659 #: ../fish/guestfish-actions.pod:2417
22660 msgid ""
22661 "This call allows you to perform the L</lstat> operation on multiple files, "
22662 "where all files are in the directory C<path>.  C<names> is the list of files "
22663 "from this directory."
22664 msgstr ""
22665
22666 #. type: textblock
22667 #: ../fish/guestfish-actions.pod:2426
22668 msgid ""
22669 "This call is intended for programs that want to efficiently list a directory "
22670 "contents without making many round-trips.  See also L</lxattrlist> for a "
22671 "similarly efficient call for getting extended attributes.  Very long "
22672 "directory listings might cause the protocol message size to be exceeded, "
22673 "causing this call to fail.  The caller must split up such requests into "
22674 "smaller groups of names."
22675 msgstr ""
22676
22677 #. type: =head2
22678 #: ../fish/guestfish-actions.pod:2434
22679 msgid "luks-add-key"
22680 msgstr ""
22681
22682 #. type: verbatim
22683 #: ../fish/guestfish-actions.pod:2436
22684 #, no-wrap
22685 msgid ""
22686 " luks-add-key device keyslot\n"
22687 "\n"
22688 msgstr ""
22689
22690 #. type: textblock
22691 #: ../fish/guestfish-actions.pod:2443
22692 msgid ""
22693 "Note that if C<keyslot> already contains a key, then this command will "
22694 "fail.  You have to use L</luks-kill-slot> first to remove that key."
22695 msgstr ""
22696
22697 #. type: textblock
22698 #: ../fish/guestfish-actions.pod:2447 ../fish/guestfish-actions.pod:2469 ../fish/guestfish-actions.pod:2482 ../fish/guestfish-actions.pod:2496 ../fish/guestfish-actions.pod:2519 ../fish/guestfish-actions.pod:2529
22699 msgid ""
22700 "This command has one or more key or passphrase parameters.  Guestfish will "
22701 "prompt for these separately."
22702 msgstr ""
22703
22704 #. type: =head2
22705 #: ../fish/guestfish-actions.pod:2450
22706 msgid "luks-close"
22707 msgstr ""
22708
22709 #. type: verbatim
22710 #: ../fish/guestfish-actions.pod:2452
22711 #, no-wrap
22712 msgid ""
22713 " luks-close device\n"
22714 "\n"
22715 msgstr ""
22716
22717 #. type: textblock
22718 #: ../fish/guestfish-actions.pod:2454
22719 msgid ""
22720 "This closes a LUKS device that was created earlier by L</luks-open> or "
22721 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
22722 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
22723 "underlying block device."
22724 msgstr ""
22725
22726 #. type: =head2
22727 #: ../fish/guestfish-actions.pod:2460
22728 msgid "luks-format"
22729 msgstr ""
22730
22731 #. type: verbatim
22732 #: ../fish/guestfish-actions.pod:2462
22733 #, no-wrap
22734 msgid ""
22735 " luks-format device keyslot\n"
22736 "\n"
22737 msgstr ""
22738
22739 #. type: =head2
22740 #: ../fish/guestfish-actions.pod:2475
22741 msgid "luks-format-cipher"
22742 msgstr ""
22743
22744 #. type: verbatim
22745 #: ../fish/guestfish-actions.pod:2477
22746 #, no-wrap
22747 msgid ""
22748 " luks-format-cipher device keyslot cipher\n"
22749 "\n"
22750 msgstr ""
22751
22752 #. type: textblock
22753 #: ../fish/guestfish-actions.pod:2479
22754 msgid ""
22755 "This command is the same as L</luks-format> but it also allows you to set "
22756 "the C<cipher> used."
22757 msgstr ""
22758
22759 #. type: =head2
22760 #: ../fish/guestfish-actions.pod:2488
22761 msgid "luks-kill-slot"
22762 msgstr ""
22763
22764 #. type: verbatim
22765 #: ../fish/guestfish-actions.pod:2490
22766 #, no-wrap
22767 msgid ""
22768 " luks-kill-slot device keyslot\n"
22769 "\n"
22770 msgstr ""
22771
22772 #. type: =head2
22773 #: ../fish/guestfish-actions.pod:2499
22774 msgid "luks-open"
22775 msgstr ""
22776
22777 #. type: verbatim
22778 #: ../fish/guestfish-actions.pod:2501
22779 #, no-wrap
22780 msgid ""
22781 " luks-open device mapname\n"
22782 "\n"
22783 msgstr ""
22784
22785 #. type: textblock
22786 #: ../fish/guestfish-actions.pod:2515
22787 msgid ""
22788 "If this block device contains LVM volume groups, then calling L</vgscan> "
22789 "followed by L</vg-activate-all> will make them visible."
22790 msgstr ""
22791
22792 #. type: =head2
22793 #: ../fish/guestfish-actions.pod:2522
22794 msgid "luks-open-ro"
22795 msgstr ""
22796
22797 #. type: verbatim
22798 #: ../fish/guestfish-actions.pod:2524
22799 #, no-wrap
22800 msgid ""
22801 " luks-open-ro device mapname\n"
22802 "\n"
22803 msgstr ""
22804
22805 #. type: textblock
22806 #: ../fish/guestfish-actions.pod:2526
22807 msgid ""
22808 "This is the same as L</luks-open> except that a read-only mapping is "
22809 "created."
22810 msgstr ""
22811
22812 #. type: =head2
22813 #: ../fish/guestfish-actions.pod:2532
22814 msgid "lvcreate"
22815 msgstr ""
22816
22817 #. type: verbatim
22818 #: ../fish/guestfish-actions.pod:2534
22819 #, no-wrap
22820 msgid ""
22821 " lvcreate logvol volgroup mbytes\n"
22822 "\n"
22823 msgstr ""
22824
22825 #. type: =head2
22826 #: ../fish/guestfish-actions.pod:2539
22827 msgid "lvm-canonical-lv-name"
22828 msgstr ""
22829
22830 #. type: verbatim
22831 #: ../fish/guestfish-actions.pod:2541
22832 #, no-wrap
22833 msgid ""
22834 " lvm-canonical-lv-name lvname\n"
22835 "\n"
22836 msgstr ""
22837
22838 #. type: textblock
22839 #: ../fish/guestfish-actions.pod:2550
22840 msgid "See also L</is-lv>."
22841 msgstr ""
22842
22843 #. type: =head2
22844 #: ../fish/guestfish-actions.pod:2552
22845 msgid "lvm-clear-filter"
22846 msgstr ""
22847
22848 #. type: verbatim
22849 #: ../fish/guestfish-actions.pod:2554
22850 #, no-wrap
22851 msgid ""
22852 " lvm-clear-filter\n"
22853 "\n"
22854 msgstr ""
22855
22856 #. type: textblock
22857 #: ../fish/guestfish-actions.pod:2556
22858 msgid ""
22859 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
22860 "block device."
22861 msgstr ""
22862
22863 #. type: =head2
22864 #: ../fish/guestfish-actions.pod:2562
22865 msgid "lvm-remove-all"
22866 msgstr ""
22867
22868 #. type: verbatim
22869 #: ../fish/guestfish-actions.pod:2564
22870 #, no-wrap
22871 msgid ""
22872 " lvm-remove-all\n"
22873 "\n"
22874 msgstr ""
22875
22876 #. type: =head2
22877 #: ../fish/guestfish-actions.pod:2572
22878 msgid "lvm-set-filter"
22879 msgstr ""
22880
22881 #. type: verbatim
22882 #: ../fish/guestfish-actions.pod:2574
22883 #, no-wrap
22884 msgid ""
22885 " lvm-set-filter 'devices ...'\n"
22886 "\n"
22887 msgstr ""
22888
22889 #. type: =head2
22890 #: ../fish/guestfish-actions.pod:2599
22891 msgid "lvremove"
22892 msgstr ""
22893
22894 #. type: verbatim
22895 #: ../fish/guestfish-actions.pod:2601
22896 #, no-wrap
22897 msgid ""
22898 " lvremove device\n"
22899 "\n"
22900 msgstr ""
22901
22902 #. type: =head2
22903 #: ../fish/guestfish-actions.pod:2609
22904 msgid "lvrename"
22905 msgstr ""
22906
22907 #. type: verbatim
22908 #: ../fish/guestfish-actions.pod:2611
22909 #, no-wrap
22910 msgid ""
22911 " lvrename logvol newlogvol\n"
22912 "\n"
22913 msgstr ""
22914
22915 #. type: =head2
22916 #: ../fish/guestfish-actions.pod:2615
22917 msgid "lvresize"
22918 msgstr ""
22919
22920 #. type: verbatim
22921 #: ../fish/guestfish-actions.pod:2617
22922 #, no-wrap
22923 msgid ""
22924 " lvresize device mbytes\n"
22925 "\n"
22926 msgstr ""
22927
22928 #. type: =head2
22929 #: ../fish/guestfish-actions.pod:2623
22930 msgid "lvresize-free"
22931 msgstr ""
22932
22933 #. type: verbatim
22934 #: ../fish/guestfish-actions.pod:2625
22935 #, no-wrap
22936 msgid ""
22937 " lvresize-free lv percent\n"
22938 "\n"
22939 msgstr ""
22940
22941 #. type: =head2
22942 #: ../fish/guestfish-actions.pod:2633
22943 msgid "lvs"
22944 msgstr ""
22945
22946 #. type: verbatim
22947 #: ../fish/guestfish-actions.pod:2635
22948 #, no-wrap
22949 msgid ""
22950 " lvs\n"
22951 "\n"
22952 msgstr ""
22953
22954 #. type: textblock
22955 #: ../fish/guestfish-actions.pod:2643
22956 msgid "See also L</lvs-full>, L</list-filesystems>."
22957 msgstr ""
22958
22959 #. type: =head2
22960 #: ../fish/guestfish-actions.pod:2645
22961 msgid "lvs-full"
22962 msgstr ""
22963
22964 #. type: verbatim
22965 #: ../fish/guestfish-actions.pod:2647
22966 #, no-wrap
22967 msgid ""
22968 " lvs-full\n"
22969 "\n"
22970 msgstr ""
22971
22972 #. type: =head2
22973 #: ../fish/guestfish-actions.pod:2652
22974 msgid "lvuuid"
22975 msgstr ""
22976
22977 #. type: verbatim
22978 #: ../fish/guestfish-actions.pod:2654
22979 #, no-wrap
22980 msgid ""
22981 " lvuuid device\n"
22982 "\n"
22983 msgstr ""
22984
22985 #. type: =head2
22986 #: ../fish/guestfish-actions.pod:2658
22987 msgid "lxattrlist"
22988 msgstr ""
22989
22990 #. type: verbatim
22991 #: ../fish/guestfish-actions.pod:2660
22992 #, no-wrap
22993 msgid ""
22994 " lxattrlist path 'names ...'\n"
22995 "\n"
22996 msgstr ""
22997
22998 #. type: textblock
22999 #: ../fish/guestfish-actions.pod:2676
23000 msgid ""
23001 "This call is intended for programs that want to efficiently list a directory "
23002 "contents without making many round-trips.  See also L</lstatlist> for a "
23003 "similarly efficient call for getting standard stats.  Very long directory "
23004 "listings might cause the protocol message size to be exceeded, causing this "
23005 "call to fail.  The caller must split up such requests into smaller groups of "
23006 "names."
23007 msgstr ""
23008
23009 #. type: =head2
23010 #: ../fish/guestfish-actions.pod:2684
23011 msgid "mkdir"
23012 msgstr ""
23013
23014 #. type: verbatim
23015 #: ../fish/guestfish-actions.pod:2686
23016 #, no-wrap
23017 msgid ""
23018 " mkdir path\n"
23019 "\n"
23020 msgstr ""
23021
23022 #. type: =head2
23023 #: ../fish/guestfish-actions.pod:2690
23024 msgid "mkdir-mode"
23025 msgstr ""
23026
23027 #. type: verbatim
23028 #: ../fish/guestfish-actions.pod:2692
23029 #, no-wrap
23030 msgid ""
23031 " mkdir-mode path mode\n"
23032 "\n"
23033 msgstr ""
23034
23035 #. type: textblock
23036 #: ../fish/guestfish-actions.pod:2701
23037 msgid "See also L</mkdir>, L</umask>"
23038 msgstr ""
23039
23040 #. type: =head2
23041 #: ../fish/guestfish-actions.pod:2703
23042 msgid "mkdir-p"
23043 msgstr ""
23044
23045 #. type: verbatim
23046 #: ../fish/guestfish-actions.pod:2705
23047 #, no-wrap
23048 msgid ""
23049 " mkdir-p path\n"
23050 "\n"
23051 msgstr ""
23052
23053 #. type: =head2
23054 #: ../fish/guestfish-actions.pod:2710
23055 msgid "mkdtemp"
23056 msgstr ""
23057
23058 #. type: verbatim
23059 #: ../fish/guestfish-actions.pod:2712
23060 #, no-wrap
23061 msgid ""
23062 " mkdtemp template\n"
23063 "\n"
23064 msgstr ""
23065
23066 #. type: =head2
23067 #: ../fish/guestfish-actions.pod:2733
23068 msgid "mke2fs-J"
23069 msgstr ""
23070
23071 #. type: verbatim
23072 #: ../fish/guestfish-actions.pod:2735
23073 #, no-wrap
23074 msgid ""
23075 " mke2fs-J fstype blocksize device journal\n"
23076 "\n"
23077 msgstr ""
23078
23079 #. type: textblock
23080 #: ../fish/guestfish-actions.pod:2743
23081 msgid "See also L</mke2journal>."
23082 msgstr ""
23083
23084 #. type: =head2
23085 #: ../fish/guestfish-actions.pod:2745
23086 msgid "mke2fs-JL"
23087 msgstr ""
23088
23089 #. type: verbatim
23090 #: ../fish/guestfish-actions.pod:2747
23091 #, no-wrap
23092 msgid ""
23093 " mke2fs-JL fstype blocksize device label\n"
23094 "\n"
23095 msgstr ""
23096
23097 #. type: textblock
23098 #: ../fish/guestfish-actions.pod:2752
23099 msgid "See also L</mke2journal-L>."
23100 msgstr ""
23101
23102 #. type: =head2
23103 #: ../fish/guestfish-actions.pod:2754
23104 msgid "mke2fs-JU"
23105 msgstr ""
23106
23107 #. type: verbatim
23108 #: ../fish/guestfish-actions.pod:2756
23109 #, no-wrap
23110 msgid ""
23111 " mke2fs-JU fstype blocksize device uuid\n"
23112 "\n"
23113 msgstr ""
23114
23115 #. type: textblock
23116 #: ../fish/guestfish-actions.pod:2761
23117 msgid "See also L</mke2journal-U>."
23118 msgstr ""
23119
23120 #. type: =head2
23121 #: ../fish/guestfish-actions.pod:2763
23122 msgid "mke2journal"
23123 msgstr ""
23124
23125 #. type: verbatim
23126 #: ../fish/guestfish-actions.pod:2765
23127 #, no-wrap
23128 msgid ""
23129 " mke2journal blocksize device\n"
23130 "\n"
23131 msgstr ""
23132
23133 #. type: =head2
23134 #: ../fish/guestfish-actions.pod:2772
23135 msgid "mke2journal-L"
23136 msgstr ""
23137
23138 #. type: verbatim
23139 #: ../fish/guestfish-actions.pod:2774
23140 #, no-wrap
23141 msgid ""
23142 " mke2journal-L blocksize label device\n"
23143 "\n"
23144 msgstr ""
23145
23146 #. type: =head2
23147 #: ../fish/guestfish-actions.pod:2778
23148 msgid "mke2journal-U"
23149 msgstr ""
23150
23151 #. type: verbatim
23152 #: ../fish/guestfish-actions.pod:2780
23153 #, no-wrap
23154 msgid ""
23155 " mke2journal-U blocksize uuid device\n"
23156 "\n"
23157 msgstr ""
23158
23159 #. type: =head2
23160 #: ../fish/guestfish-actions.pod:2784
23161 msgid "mkfifo"
23162 msgstr ""
23163
23164 #. type: verbatim
23165 #: ../fish/guestfish-actions.pod:2786
23166 #, no-wrap
23167 msgid ""
23168 " mkfifo mode path\n"
23169 "\n"
23170 msgstr ""
23171
23172 #. type: textblock
23173 #: ../fish/guestfish-actions.pod:2788
23174 msgid ""
23175 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
23176 "is just a convenient wrapper around L</mknod>."
23177 msgstr ""
23178
23179 #. type: =head2
23180 #: ../fish/guestfish-actions.pod:2794
23181 msgid "mkfs"
23182 msgstr ""
23183
23184 #. type: verbatim
23185 #: ../fish/guestfish-actions.pod:2796
23186 #, no-wrap
23187 msgid ""
23188 " mkfs fstype device\n"
23189 "\n"
23190 msgstr ""
23191
23192 #. type: =head2
23193 #: ../fish/guestfish-actions.pod:2802
23194 msgid "mkfs-b"
23195 msgstr ""
23196
23197 #. type: verbatim
23198 #: ../fish/guestfish-actions.pod:2804
23199 #, no-wrap
23200 msgid ""
23201 " mkfs-b fstype blocksize device\n"
23202 "\n"
23203 msgstr ""
23204
23205 #. type: textblock
23206 #: ../fish/guestfish-actions.pod:2806
23207 msgid ""
23208 "This call is similar to L</mkfs>, but it allows you to control the block "
23209 "size of the resulting filesystem.  Supported block sizes depend on the "
23210 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
23211 msgstr ""
23212
23213 #. type: textblock
23214 #: ../fish/guestfish-actions.pod:2814
23215 msgid ""
23216 "This function is deprecated.  In new code, use the L</mkfs_opts> call "
23217 "instead."
23218 msgstr ""
23219
23220 #. type: =head2
23221 #: ../fish/guestfish-actions.pod:2821
23222 msgid "mkfs-opts"
23223 msgstr ""
23224
23225 #. type: verbatim
23226 #: ../fish/guestfish-actions.pod:2823
23227 #, no-wrap
23228 msgid ""
23229 " mkfs-opts fstype device [blocksize:..]\n"
23230 "\n"
23231 msgstr ""
23232
23233 #. type: =head2
23234 #: ../fish/guestfish-actions.pod:2847
23235 msgid "mkmountpoint"
23236 msgstr ""
23237
23238 #. type: verbatim
23239 #: ../fish/guestfish-actions.pod:2849
23240 #, no-wrap
23241 msgid ""
23242 " mkmountpoint exemptpath\n"
23243 "\n"
23244 msgstr ""
23245
23246 #. type: textblock
23247 #: ../fish/guestfish-actions.pod:2851
23248 msgid ""
23249 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
23250 "to create extra mountpoints before mounting the first filesystem."
23251 msgstr ""
23252
23253 #. type: textblock
23254 #: ../fish/guestfish-actions.pod:2875
23255 msgid ""
23256 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
23257 "unexpected errors if you try to mix these calls.  It is safest to manually "
23258 "unmount filesystems and remove mountpoints after use."
23259 msgstr ""
23260
23261 #. type: textblock
23262 #: ../fish/guestfish-actions.pod:2879
23263 msgid ""
23264 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
23265 "for this to work for manual mountpoints, you must ensure that the innermost "
23266 "mountpoints have the longest pathnames, as in the example code above."
23267 msgstr ""
23268
23269 #. type: textblock
23270 #: ../fish/guestfish-actions.pod:2886
23271 msgid ""
23272 "Autosync [see L</set-autosync>, this is set by default on handles] means "
23273 "that L</umount-all> is called when the handle is closed which can also "
23274 "trigger these issues."
23275 msgstr ""
23276
23277 #. type: =head2
23278 #: ../fish/guestfish-actions.pod:2890
23279 msgid "mknod"
23280 msgstr ""
23281
23282 #. type: verbatim
23283 #: ../fish/guestfish-actions.pod:2892
23284 #, no-wrap
23285 msgid ""
23286 " mknod mode devmajor devminor path\n"
23287 "\n"
23288 msgstr ""
23289
23290 #. type: textblock
23291 #: ../fish/guestfish-actions.pod:2902
23292 msgid ""
23293 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
23294 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
23295 "regular file).  These constants are available in the standard Linux header "
23296 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
23297 "wrappers around this command which bitwise OR in the appropriate constant "
23298 "for you."
23299 msgstr ""
23300
23301 #. type: =head2
23302 #: ../fish/guestfish-actions.pod:2912
23303 msgid "mknod-b"
23304 msgstr ""
23305
23306 #. type: verbatim
23307 #: ../fish/guestfish-actions.pod:2914
23308 #, no-wrap
23309 msgid ""
23310 " mknod-b mode devmajor devminor path\n"
23311 "\n"
23312 msgstr ""
23313
23314 #. type: textblock
23315 #: ../fish/guestfish-actions.pod:2916
23316 msgid ""
23317 "This call creates a block device node called C<path> with mode C<mode> and "
23318 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23319 "wrapper around L</mknod>."
23320 msgstr ""
23321
23322 #. type: =head2
23323 #: ../fish/guestfish-actions.pod:2922
23324 msgid "mknod-c"
23325 msgstr ""
23326
23327 #. type: verbatim
23328 #: ../fish/guestfish-actions.pod:2924
23329 #, no-wrap
23330 msgid ""
23331 " mknod-c mode devmajor devminor path\n"
23332 "\n"
23333 msgstr ""
23334
23335 #. type: textblock
23336 #: ../fish/guestfish-actions.pod:2926
23337 msgid ""
23338 "This call creates a char device node called C<path> with mode C<mode> and "
23339 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23340 "wrapper around L</mknod>."
23341 msgstr ""
23342
23343 #. type: =head2
23344 #: ../fish/guestfish-actions.pod:2932
23345 msgid "mkswap"
23346 msgstr ""
23347
23348 #. type: verbatim
23349 #: ../fish/guestfish-actions.pod:2934
23350 #, no-wrap
23351 msgid ""
23352 " mkswap device\n"
23353 "\n"
23354 msgstr ""
23355
23356 #. type: =head2
23357 #: ../fish/guestfish-actions.pod:2938
23358 msgid "mkswap-L"
23359 msgstr ""
23360
23361 #. type: verbatim
23362 #: ../fish/guestfish-actions.pod:2940
23363 #, no-wrap
23364 msgid ""
23365 " mkswap-L label device\n"
23366 "\n"
23367 msgstr ""
23368
23369 #. type: =head2
23370 #: ../fish/guestfish-actions.pod:2948
23371 msgid "mkswap-U"
23372 msgstr ""
23373
23374 #. type: verbatim
23375 #: ../fish/guestfish-actions.pod:2950
23376 #, no-wrap
23377 msgid ""
23378 " mkswap-U uuid device\n"
23379 "\n"
23380 msgstr ""
23381
23382 #. type: =head2
23383 #: ../fish/guestfish-actions.pod:2954
23384 msgid "mkswap-file"
23385 msgstr ""
23386
23387 #. type: verbatim
23388 #: ../fish/guestfish-actions.pod:2956
23389 #, no-wrap
23390 msgid ""
23391 " mkswap-file path\n"
23392 "\n"
23393 msgstr ""
23394
23395 #. type: textblock
23396 #: ../fish/guestfish-actions.pod:2960
23397 msgid ""
23398 "This command just writes a swap file signature to an existing file.  To "
23399 "create the file itself, use something like L</fallocate>."
23400 msgstr ""
23401
23402 #. type: =head2
23403 #: ../fish/guestfish-actions.pod:2963
23404 msgid "modprobe"
23405 msgstr ""
23406
23407 #. type: verbatim
23408 #: ../fish/guestfish-actions.pod:2965
23409 #, no-wrap
23410 msgid ""
23411 " modprobe modulename\n"
23412 "\n"
23413 msgstr ""
23414
23415 #. type: =head2
23416 #: ../fish/guestfish-actions.pod:2972
23417 msgid "mount"
23418 msgstr ""
23419
23420 #. type: verbatim
23421 #: ../fish/guestfish-actions.pod:2974
23422 #, no-wrap
23423 msgid ""
23424 " mount device mountpoint\n"
23425 "\n"
23426 msgstr ""
23427
23428 #. type: textblock
23429 #: ../fish/guestfish-actions.pod:2990
23430 msgid ""
23431 "B<Important note:> When you use this call, the filesystem options C<sync> "
23432 "and C<noatime> are set implicitly.  This was originally done because we "
23433 "thought it would improve reliability, but it turns out that I<-o sync> has a "
23434 "very large negative performance impact and negligible effect on "
23435 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
23436 "code that needs performance, and instead use L</mount-options> (use an empty "
23437 "string for the first parameter if you don't want any options)."
23438 msgstr ""
23439
23440 #. type: =head2
23441 #: ../fish/guestfish-actions.pod:3000
23442 msgid "mount-loop"
23443 msgstr ""
23444
23445 #. type: verbatim
23446 #: ../fish/guestfish-actions.pod:3002
23447 #, no-wrap
23448 msgid ""
23449 " mount-loop file mountpoint\n"
23450 "\n"
23451 msgstr ""
23452
23453 #. type: =head2
23454 #: ../fish/guestfish-actions.pod:3008
23455 msgid "mount-options"
23456 msgstr ""
23457
23458 #. type: verbatim
23459 #: ../fish/guestfish-actions.pod:3010
23460 #, no-wrap
23461 msgid ""
23462 " mount-options options device mountpoint\n"
23463 "\n"
23464 msgstr ""
23465
23466 #. type: textblock
23467 #: ../fish/guestfish-actions.pod:3012
23468 msgid ""
23469 "This is the same as the L</mount> command, but it allows you to set the "
23470 "mount options as for the L<mount(8)> I<-o> flag."
23471 msgstr ""
23472
23473 #. type: =head2
23474 #: ../fish/guestfish-actions.pod:3020
23475 msgid "mount-ro"
23476 msgstr ""
23477
23478 #. type: verbatim
23479 #: ../fish/guestfish-actions.pod:3022
23480 #, no-wrap
23481 msgid ""
23482 " mount-ro device mountpoint\n"
23483 "\n"
23484 msgstr ""
23485
23486 #. type: textblock
23487 #: ../fish/guestfish-actions.pod:3024
23488 msgid ""
23489 "This is the same as the L</mount> command, but it mounts the filesystem with "
23490 "the read-only (I<-o ro>) flag."
23491 msgstr ""
23492
23493 #. type: =head2
23494 #: ../fish/guestfish-actions.pod:3027
23495 msgid "mount-vfs"
23496 msgstr ""
23497
23498 #. type: verbatim
23499 #: ../fish/guestfish-actions.pod:3029
23500 #, no-wrap
23501 msgid ""
23502 " mount-vfs options vfstype device mountpoint\n"
23503 "\n"
23504 msgstr ""
23505
23506 #. type: textblock
23507 #: ../fish/guestfish-actions.pod:3031
23508 msgid ""
23509 "This is the same as the L</mount> command, but it allows you to set both the "
23510 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
23511 msgstr ""
23512
23513 #. type: =head2
23514 #: ../fish/guestfish-actions.pod:3035
23515 msgid "mountpoints"
23516 msgstr ""
23517
23518 #. type: verbatim
23519 #: ../fish/guestfish-actions.pod:3037
23520 #, no-wrap
23521 msgid ""
23522 " mountpoints\n"
23523 "\n"
23524 msgstr ""
23525
23526 #. type: textblock
23527 #: ../fish/guestfish-actions.pod:3039
23528 msgid ""
23529 "This call is similar to L</mounts>.  That call returns a list of devices.  "
23530 "This one returns a hash table (map) of device name to directory where the "
23531 "device is mounted."
23532 msgstr ""
23533
23534 #. type: =head2
23535 #: ../fish/guestfish-actions.pod:3043
23536 msgid "mounts"
23537 msgstr ""
23538
23539 #. type: verbatim
23540 #: ../fish/guestfish-actions.pod:3045
23541 #, no-wrap
23542 msgid ""
23543 " mounts\n"
23544 "\n"
23545 msgstr ""
23546
23547 #. type: textblock
23548 #: ../fish/guestfish-actions.pod:3052
23549 msgid "See also: L</mountpoints>"
23550 msgstr ""
23551
23552 #. type: =head2
23553 #: ../fish/guestfish-actions.pod:3054
23554 msgid "mv"
23555 msgstr ""
23556
23557 #. type: verbatim
23558 #: ../fish/guestfish-actions.pod:3056
23559 #, no-wrap
23560 msgid ""
23561 " mv src dest\n"
23562 "\n"
23563 msgstr ""
23564
23565 #. type: =head2
23566 #: ../fish/guestfish-actions.pod:3061
23567 msgid "ntfs-3g-probe"
23568 msgstr ""
23569
23570 #. type: verbatim
23571 #: ../fish/guestfish-actions.pod:3063
23572 #, no-wrap
23573 msgid ""
23574 " ntfs-3g-probe true|false device\n"
23575 "\n"
23576 msgstr ""
23577
23578 #. type: =head2
23579 #: ../fish/guestfish-actions.pod:3077
23580 msgid "ntfsresize"
23581 msgstr ""
23582
23583 #. type: verbatim
23584 #: ../fish/guestfish-actions.pod:3079
23585 #, no-wrap
23586 msgid ""
23587 " ntfsresize device\n"
23588 "\n"
23589 msgstr ""
23590
23591 #. type: =head2
23592 #: ../fish/guestfish-actions.pod:3094
23593 msgid "ntfsresize-size"
23594 msgstr ""
23595
23596 #. type: verbatim
23597 #: ../fish/guestfish-actions.pod:3096
23598 #, no-wrap
23599 msgid ""
23600 " ntfsresize-size device size\n"
23601 "\n"
23602 msgstr ""
23603
23604 #. type: textblock
23605 #: ../fish/guestfish-actions.pod:3098
23606 msgid ""
23607 "This command is the same as L</ntfsresize> except that it allows you to "
23608 "specify the new size (in bytes) explicitly."
23609 msgstr ""
23610
23611 #. type: =head2
23612 #: ../fish/guestfish-actions.pod:3101
23613 msgid "part-add"
23614 msgstr ""
23615
23616 #. type: verbatim
23617 #: ../fish/guestfish-actions.pod:3103
23618 #, no-wrap
23619 msgid ""
23620 " part-add device prlogex startsect endsect\n"
23621 "\n"
23622 msgstr ""
23623
23624 #. type: textblock
23625 #: ../fish/guestfish-actions.pod:3105
23626 msgid ""
23627 "This command adds a partition to C<device>.  If there is no partition table "
23628 "on the device, call L</part-init> first."
23629 msgstr ""
23630
23631 #. type: textblock
23632 #: ../fish/guestfish-actions.pod:3117
23633 msgid ""
23634 "Creating a partition which covers the whole disk is not so easy.  Use "
23635 "L</part-disk> to do that."
23636 msgstr ""
23637
23638 #. type: =head2
23639 #: ../fish/guestfish-actions.pod:3120
23640 msgid "part-del"
23641 msgstr ""
23642
23643 #. type: verbatim
23644 #: ../fish/guestfish-actions.pod:3122
23645 #, no-wrap
23646 msgid ""
23647 " part-del device partnum\n"
23648 "\n"
23649 msgstr ""
23650
23651 #. type: =head2
23652 #: ../fish/guestfish-actions.pod:3130
23653 msgid "part-disk"
23654 msgstr ""
23655
23656 #. type: verbatim
23657 #: ../fish/guestfish-actions.pod:3132
23658 #, no-wrap
23659 msgid ""
23660 " part-disk device parttype\n"
23661 "\n"
23662 msgstr ""
23663
23664 #. type: textblock
23665 #: ../fish/guestfish-actions.pod:3134
23666 msgid ""
23667 "This command is simply a combination of L</part-init> followed by "
23668 "L</part-add> to create a single primary partition covering the whole disk."
23669 msgstr ""
23670
23671 #. type: textblock
23672 #: ../fish/guestfish-actions.pod:3138
23673 msgid ""
23674 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
23675 "possible values are described in L</part-init>."
23676 msgstr ""
23677
23678 #. type: =head2
23679 #: ../fish/guestfish-actions.pod:3144
23680 msgid "part-get-bootable"
23681 msgstr ""
23682
23683 #. type: verbatim
23684 #: ../fish/guestfish-actions.pod:3146
23685 #, no-wrap
23686 msgid ""
23687 " part-get-bootable device partnum\n"
23688 "\n"
23689 msgstr ""
23690
23691 #. type: textblock
23692 #: ../fish/guestfish-actions.pod:3151
23693 msgid "See also L</part-set-bootable>."
23694 msgstr ""
23695
23696 #. type: =head2
23697 #: ../fish/guestfish-actions.pod:3153
23698 msgid "part-get-mbr-id"
23699 msgstr ""
23700
23701 #. type: verbatim
23702 #: ../fish/guestfish-actions.pod:3155
23703 #, no-wrap
23704 msgid ""
23705 " part-get-mbr-id device partnum\n"
23706 "\n"
23707 msgstr ""
23708
23709 #. type: textblock
23710 #: ../fish/guestfish-actions.pod:3160 ../fish/guestfish-actions.pod:3298
23711 msgid ""
23712 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
23713 "undefined results for other partition table types (see "
23714 "L</part-get-parttype>)."
23715 msgstr ""
23716
23717 #. type: =head2
23718 #: ../fish/guestfish-actions.pod:3164
23719 msgid "part-get-parttype"
23720 msgstr ""
23721
23722 #. type: verbatim
23723 #: ../fish/guestfish-actions.pod:3166
23724 #, no-wrap
23725 msgid ""
23726 " part-get-parttype device\n"
23727 "\n"
23728 msgstr ""
23729
23730 #. type: textblock
23731 #: ../fish/guestfish-actions.pod:3171
23732 msgid ""
23733 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
23734 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
23735 "possible, although unusual.  See L</part-init> for a full list."
23736 msgstr ""
23737
23738 #. type: =head2
23739 #: ../fish/guestfish-actions.pod:3176
23740 msgid "part-init"
23741 msgstr ""
23742
23743 #. type: verbatim
23744 #: ../fish/guestfish-actions.pod:3178
23745 #, no-wrap
23746 msgid ""
23747 " part-init device parttype\n"
23748 "\n"
23749 msgstr ""
23750
23751 #. type: textblock
23752 #: ../fish/guestfish-actions.pod:3184
23753 msgid ""
23754 "Initially there are no partitions.  Following this, you should call "
23755 "L</part-add> for each partition required."
23756 msgstr ""
23757
23758 #. type: =head2
23759 #: ../fish/guestfish-actions.pod:3247
23760 msgid "part-list"
23761 msgstr ""
23762
23763 #. type: verbatim
23764 #: ../fish/guestfish-actions.pod:3249
23765 #, no-wrap
23766 msgid ""
23767 " part-list device\n"
23768 "\n"
23769 msgstr ""
23770
23771 #. type: textblock
23772 #: ../fish/guestfish-actions.pod:3264
23773 msgid ""
23774 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
23775 "the device's sector size, see L</blockdev-getss>."
23776 msgstr ""
23777
23778 #. type: =head2
23779 #: ../fish/guestfish-actions.pod:3277
23780 msgid "part-set-bootable"
23781 msgstr ""
23782
23783 #. type: verbatim
23784 #: ../fish/guestfish-actions.pod:3279
23785 #, no-wrap
23786 msgid ""
23787 " part-set-bootable device partnum true|false\n"
23788 "\n"
23789 msgstr ""
23790
23791 #. type: =head2
23792 #: ../fish/guestfish-actions.pod:3288
23793 msgid "part-set-mbr-id"
23794 msgstr ""
23795
23796 #. type: verbatim
23797 #: ../fish/guestfish-actions.pod:3290
23798 #, no-wrap
23799 msgid ""
23800 " part-set-mbr-id device partnum idbyte\n"
23801 "\n"
23802 msgstr ""
23803
23804 #. type: =head2
23805 #: ../fish/guestfish-actions.pod:3302
23806 msgid "part-set-name"
23807 msgstr ""
23808
23809 #. type: verbatim
23810 #: ../fish/guestfish-actions.pod:3304
23811 #, no-wrap
23812 msgid ""
23813 " part-set-name device partnum name\n"
23814 "\n"
23815 msgstr ""
23816
23817 #. type: =head2
23818 #: ../fish/guestfish-actions.pod:3312
23819 msgid "part-to-dev"
23820 msgstr ""
23821
23822 #. type: verbatim
23823 #: ../fish/guestfish-actions.pod:3314
23824 #, no-wrap
23825 msgid ""
23826 " part-to-dev partition\n"
23827 "\n"
23828 msgstr ""
23829
23830 #. type: textblock
23831 #: ../fish/guestfish-actions.pod:3320
23832 msgid ""
23833 "The named partition must exist, for example as a string returned from "
23834 "L</list-partitions>."
23835 msgstr ""
23836
23837 #. type: =head2
23838 #: ../fish/guestfish-actions.pod:3323
23839 msgid "ping-daemon"
23840 msgstr ""
23841
23842 #. type: verbatim
23843 #: ../fish/guestfish-actions.pod:3325
23844 #, no-wrap
23845 msgid ""
23846 " ping-daemon\n"
23847 "\n"
23848 msgstr ""
23849
23850 #. type: =head2
23851 #: ../fish/guestfish-actions.pod:3332
23852 msgid "pread"
23853 msgstr ""
23854
23855 #. type: verbatim
23856 #: ../fish/guestfish-actions.pod:3334
23857 #, no-wrap
23858 msgid ""
23859 " pread path count offset\n"
23860 "\n"
23861 msgstr ""
23862
23863 #. type: textblock
23864 #: ../fish/guestfish-actions.pod:3342
23865 msgid "See also L</pwrite>, L</pread-device>."
23866 msgstr ""
23867
23868 #. type: =head2
23869 #: ../fish/guestfish-actions.pod:3347
23870 msgid "pread-device"
23871 msgstr ""
23872
23873 #. type: verbatim
23874 #: ../fish/guestfish-actions.pod:3349
23875 #, no-wrap
23876 msgid ""
23877 " pread-device device count offset\n"
23878 "\n"
23879 msgstr ""
23880
23881 #. type: textblock
23882 #: ../fish/guestfish-actions.pod:3357
23883 msgid "See also L</pread>."
23884 msgstr ""
23885
23886 #. type: =head2
23887 #: ../fish/guestfish-actions.pod:3362
23888 msgid "pvcreate"
23889 msgstr ""
23890
23891 #. type: verbatim
23892 #: ../fish/guestfish-actions.pod:3364
23893 #, no-wrap
23894 msgid ""
23895 " pvcreate device\n"
23896 "\n"
23897 msgstr ""
23898
23899 #. type: =head2
23900 #: ../fish/guestfish-actions.pod:3370
23901 msgid "pvremove"
23902 msgstr ""
23903
23904 #. type: verbatim
23905 #: ../fish/guestfish-actions.pod:3372
23906 #, no-wrap
23907 msgid ""
23908 " pvremove device\n"
23909 "\n"
23910 msgstr ""
23911
23912 #. type: =head2
23913 #: ../fish/guestfish-actions.pod:3381
23914 msgid "pvresize"
23915 msgstr ""
23916
23917 #. type: verbatim
23918 #: ../fish/guestfish-actions.pod:3383
23919 #, no-wrap
23920 msgid ""
23921 " pvresize device\n"
23922 "\n"
23923 msgstr ""
23924
23925 #. type: =head2
23926 #: ../fish/guestfish-actions.pod:3388
23927 msgid "pvresize-size"
23928 msgstr ""
23929
23930 #. type: verbatim
23931 #: ../fish/guestfish-actions.pod:3390
23932 #, no-wrap
23933 msgid ""
23934 " pvresize-size device size\n"
23935 "\n"
23936 msgstr ""
23937
23938 #. type: textblock
23939 #: ../fish/guestfish-actions.pod:3392
23940 msgid ""
23941 "This command is the same as L</pvresize> except that it allows you to "
23942 "specify the new size (in bytes) explicitly."
23943 msgstr ""
23944
23945 #. type: =head2
23946 #: ../fish/guestfish-actions.pod:3395
23947 msgid "pvs"
23948 msgstr ""
23949
23950 #. type: verbatim
23951 #: ../fish/guestfish-actions.pod:3397
23952 #, no-wrap
23953 msgid ""
23954 " pvs\n"
23955 "\n"
23956 msgstr ""
23957
23958 #. type: textblock
23959 #: ../fish/guestfish-actions.pod:3405
23960 msgid "See also L</pvs-full>."
23961 msgstr ""
23962
23963 #. type: =head2
23964 #: ../fish/guestfish-actions.pod:3407
23965 msgid "pvs-full"
23966 msgstr ""
23967
23968 #. type: verbatim
23969 #: ../fish/guestfish-actions.pod:3409
23970 #, no-wrap
23971 msgid ""
23972 " pvs-full\n"
23973 "\n"
23974 msgstr ""
23975
23976 #. type: =head2
23977 #: ../fish/guestfish-actions.pod:3414
23978 msgid "pvuuid"
23979 msgstr ""
23980
23981 #. type: verbatim
23982 #: ../fish/guestfish-actions.pod:3416
23983 #, no-wrap
23984 msgid ""
23985 " pvuuid device\n"
23986 "\n"
23987 msgstr ""
23988
23989 #. type: =head2
23990 #: ../fish/guestfish-actions.pod:3420
23991 msgid "pwrite"
23992 msgstr ""
23993
23994 #. type: verbatim
23995 #: ../fish/guestfish-actions.pod:3422
23996 #, no-wrap
23997 msgid ""
23998 " pwrite path content offset\n"
23999 "\n"
24000 msgstr ""
24001
24002 #. type: textblock
24003 #: ../fish/guestfish-actions.pod:3433
24004 msgid "See also L</pread>, L</pwrite-device>."
24005 msgstr ""
24006
24007 #. type: =head2
24008 #: ../fish/guestfish-actions.pod:3438
24009 msgid "pwrite-device"
24010 msgstr ""
24011
24012 #. type: verbatim
24013 #: ../fish/guestfish-actions.pod:3440
24014 #, no-wrap
24015 msgid ""
24016 " pwrite-device device content offset\n"
24017 "\n"
24018 msgstr ""
24019
24020 #. type: textblock
24021 #: ../fish/guestfish-actions.pod:3450
24022 msgid "See also L</pwrite>."
24023 msgstr ""
24024
24025 #. type: =head2
24026 #: ../fish/guestfish-actions.pod:3455
24027 msgid "read-file"
24028 msgstr ""
24029
24030 #. type: verbatim
24031 #: ../fish/guestfish-actions.pod:3457
24032 #, no-wrap
24033 msgid ""
24034 " read-file path\n"
24035 "\n"
24036 msgstr ""
24037
24038 #. type: textblock
24039 #: ../fish/guestfish-actions.pod:3462
24040 msgid ""
24041 "Unlike L</cat>, this function can correctly handle files that contain "
24042 "embedded ASCII NUL characters.  However unlike L</download>, this function "
24043 "is limited in the total size of file that can be handled."
24044 msgstr ""
24045
24046 #. type: =head2
24047 #: ../fish/guestfish-actions.pod:3470
24048 msgid "read-lines"
24049 msgstr ""
24050
24051 #. type: verbatim
24052 #: ../fish/guestfish-actions.pod:3472
24053 #, no-wrap
24054 msgid ""
24055 " read-lines path\n"
24056 "\n"
24057 msgstr ""
24058
24059 #. type: textblock
24060 #: ../fish/guestfish-actions.pod:3479
24061 msgid ""
24062 "Note that this function cannot correctly handle binary files (specifically, "
24063 "files containing C<\\0> character which is treated as end of line).  For "
24064 "those you need to use the L</read-file> function which has a more complex "
24065 "interface."
24066 msgstr ""
24067
24068 #. type: =head2
24069 #: ../fish/guestfish-actions.pod:3484
24070 msgid "readdir"
24071 msgstr ""
24072
24073 #. type: verbatim
24074 #: ../fish/guestfish-actions.pod:3486
24075 #, no-wrap
24076 msgid ""
24077 " readdir dir\n"
24078 "\n"
24079 msgstr ""
24080
24081 #. type: textblock
24082 #: ../fish/guestfish-actions.pod:3538
24083 msgid ""
24084 "This function is primarily intended for use by programs.  To get a simple "
24085 "list of names, use L</ls>.  To get a printable directory for human "
24086 "consumption, use L</ll>."
24087 msgstr ""
24088
24089 #. type: =head2
24090 #: ../fish/guestfish-actions.pod:3542
24091 msgid "readlink"
24092 msgstr ""
24093
24094 #. type: verbatim
24095 #: ../fish/guestfish-actions.pod:3544
24096 #, no-wrap
24097 msgid ""
24098 " readlink path\n"
24099 "\n"
24100 msgstr ""
24101
24102 #. type: =head2
24103 #: ../fish/guestfish-actions.pod:3548
24104 msgid "readlinklist"
24105 msgstr ""
24106
24107 #. type: verbatim
24108 #: ../fish/guestfish-actions.pod:3550
24109 #, no-wrap
24110 msgid ""
24111 " readlinklist path 'names ...'\n"
24112 "\n"
24113 msgstr ""
24114
24115 #. type: =head2
24116 #: ../fish/guestfish-actions.pod:3574
24117 msgid "realpath"
24118 msgstr ""
24119
24120 #. type: verbatim
24121 #: ../fish/guestfish-actions.pod:3576
24122 #, no-wrap
24123 msgid ""
24124 " realpath path\n"
24125 "\n"
24126 msgstr ""
24127
24128 #. type: =head2
24129 #: ../fish/guestfish-actions.pod:3581
24130 msgid "removexattr"
24131 msgstr ""
24132
24133 #. type: verbatim
24134 #: ../fish/guestfish-actions.pod:3583
24135 #, no-wrap
24136 msgid ""
24137 " removexattr xattr path\n"
24138 "\n"
24139 msgstr ""
24140
24141 #. type: textblock
24142 #: ../fish/guestfish-actions.pod:3588
24143 msgid "See also: L</lremovexattr>, L<attr(5)>."
24144 msgstr ""
24145
24146 #. type: =head2
24147 #: ../fish/guestfish-actions.pod:3590
24148 msgid "resize2fs"
24149 msgstr ""
24150
24151 #. type: verbatim
24152 #: ../fish/guestfish-actions.pod:3592
24153 #, no-wrap
24154 msgid ""
24155 " resize2fs device\n"
24156 "\n"
24157 msgstr ""
24158
24159 #. type: textblock
24160 #: ../fish/guestfish-actions.pod:3597
24161 msgid ""
24162 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
24163 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
24164 "gives an error about this and sometimes not.  In any case, it is always safe "
24165 "to call L</e2fsck-f> before calling this function."
24166 msgstr ""
24167
24168 #. type: =head2
24169 #: ../fish/guestfish-actions.pod:3603
24170 msgid "resize2fs-size"
24171 msgstr ""
24172
24173 #. type: verbatim
24174 #: ../fish/guestfish-actions.pod:3605
24175 #, no-wrap
24176 msgid ""
24177 " resize2fs-size device size\n"
24178 "\n"
24179 msgstr ""
24180
24181 #. type: textblock
24182 #: ../fish/guestfish-actions.pod:3607
24183 msgid ""
24184 "This command is the same as L</resize2fs> except that it allows you to "
24185 "specify the new size (in bytes) explicitly."
24186 msgstr ""
24187
24188 #. type: =head2
24189 #: ../fish/guestfish-actions.pod:3610
24190 msgid "rm"
24191 msgstr ""
24192
24193 #. type: verbatim
24194 #: ../fish/guestfish-actions.pod:3612
24195 #, no-wrap
24196 msgid ""
24197 " rm path\n"
24198 "\n"
24199 msgstr ""
24200
24201 #. type: =head2
24202 #: ../fish/guestfish-actions.pod:3616
24203 msgid "rm-rf"
24204 msgstr ""
24205
24206 #. type: verbatim
24207 #: ../fish/guestfish-actions.pod:3618
24208 #, no-wrap
24209 msgid ""
24210 " rm-rf path\n"
24211 "\n"
24212 msgstr ""
24213
24214 #. type: =head2
24215 #: ../fish/guestfish-actions.pod:3624
24216 msgid "rmdir"
24217 msgstr ""
24218
24219 #. type: verbatim
24220 #: ../fish/guestfish-actions.pod:3626
24221 #, no-wrap
24222 msgid ""
24223 " rmdir path\n"
24224 "\n"
24225 msgstr ""
24226
24227 #. type: =head2
24228 #: ../fish/guestfish-actions.pod:3630
24229 msgid "rmmountpoint"
24230 msgstr ""
24231
24232 #. type: verbatim
24233 #: ../fish/guestfish-actions.pod:3632
24234 #, no-wrap
24235 msgid ""
24236 " rmmountpoint exemptpath\n"
24237 "\n"
24238 msgstr ""
24239
24240 #. type: textblock
24241 #: ../fish/guestfish-actions.pod:3634
24242 msgid ""
24243 "This calls removes a mountpoint that was previously created with "
24244 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
24245 msgstr ""
24246
24247 #. type: =head2
24248 #: ../fish/guestfish-actions.pod:3638
24249 msgid "scrub-device"
24250 msgstr ""
24251
24252 #. type: verbatim
24253 #: ../fish/guestfish-actions.pod:3640
24254 #, no-wrap
24255 msgid ""
24256 " scrub-device device\n"
24257 "\n"
24258 msgstr ""
24259
24260 #. type: =head2
24261 #: ../fish/guestfish-actions.pod:3651
24262 msgid "scrub-file"
24263 msgstr ""
24264
24265 #. type: verbatim
24266 #: ../fish/guestfish-actions.pod:3653
24267 #, no-wrap
24268 msgid ""
24269 " scrub-file file\n"
24270 "\n"
24271 msgstr ""
24272
24273 #. type: =head2
24274 #: ../fish/guestfish-actions.pod:3663
24275 msgid "scrub-freespace"
24276 msgstr ""
24277
24278 #. type: verbatim
24279 #: ../fish/guestfish-actions.pod:3665
24280 #, no-wrap
24281 msgid ""
24282 " scrub-freespace dir\n"
24283 "\n"
24284 msgstr ""
24285
24286 #. type: textblock
24287 #: ../fish/guestfish-actions.pod:3667
24288 msgid ""
24289 "This command creates the directory C<dir> and then fills it with files until "
24290 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
24291 "deletes them.  The intention is to scrub any free space on the partition "
24292 "containing C<dir>."
24293 msgstr ""
24294
24295 #. type: =head2
24296 #: ../fish/guestfish-actions.pod:3676
24297 msgid "set-append"
24298 msgstr ""
24299
24300 #. type: =head2
24301 #: ../fish/guestfish-actions.pod:3678
24302 msgid "append"
24303 msgstr ""
24304
24305 #. type: verbatim
24306 #: ../fish/guestfish-actions.pod:3680
24307 #, no-wrap
24308 msgid ""
24309 " set-append append\n"
24310 "\n"
24311 msgstr ""
24312
24313 #. type: =head2
24314 #: ../fish/guestfish-actions.pod:3691
24315 msgid "set-autosync"
24316 msgstr ""
24317
24318 #. type: =head2
24319 #: ../fish/guestfish-actions.pod:3693
24320 msgid "autosync"
24321 msgstr ""
24322
24323 #. type: verbatim
24324 #: ../fish/guestfish-actions.pod:3695
24325 #, no-wrap
24326 msgid ""
24327 " set-autosync true|false\n"
24328 "\n"
24329 msgstr ""
24330
24331 #. type: textblock
24332 #: ../fish/guestfish-actions.pod:3697
24333 msgid ""
24334 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
24335 "effort attempt to run L</umount-all> followed by L</sync> when the handle is "
24336 "closed (also if the program exits without closing handles)."
24337 msgstr ""
24338
24339 #. type: =head2
24340 #: ../fish/guestfish-actions.pod:3705
24341 msgid "set-direct"
24342 msgstr ""
24343
24344 #. type: =head2
24345 #: ../fish/guestfish-actions.pod:3707
24346 msgid "direct"
24347 msgstr ""
24348
24349 #. type: verbatim
24350 #: ../fish/guestfish-actions.pod:3709
24351 #, no-wrap
24352 msgid ""
24353 " set-direct true|false\n"
24354 "\n"
24355 msgstr ""
24356
24357 #. type: textblock
24358 #: ../fish/guestfish-actions.pod:3715
24359 msgid ""
24360 "One consequence of this is that log messages aren't caught by the library "
24361 "and handled by L</set-log-message-callback>, but go straight to stdout."
24362 msgstr ""
24363
24364 #. type: =head2
24365 #: ../fish/guestfish-actions.pod:3724
24366 msgid "set-e2label"
24367 msgstr ""
24368
24369 #. type: verbatim
24370 #: ../fish/guestfish-actions.pod:3726
24371 #, no-wrap
24372 msgid ""
24373 " set-e2label device label\n"
24374 "\n"
24375 msgstr ""
24376
24377 #. type: textblock
24378 #: ../fish/guestfish-actions.pod:3732
24379 msgid ""
24380 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
24381 "label on a filesystem."
24382 msgstr ""
24383
24384 #. type: =head2
24385 #: ../fish/guestfish-actions.pod:3735
24386 msgid "set-e2uuid"
24387 msgstr ""
24388
24389 #. type: verbatim
24390 #: ../fish/guestfish-actions.pod:3737
24391 #, no-wrap
24392 msgid ""
24393 " set-e2uuid device uuid\n"
24394 "\n"
24395 msgstr ""
24396
24397 #. type: textblock
24398 #: ../fish/guestfish-actions.pod:3744
24399 msgid ""
24400 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
24401 "UUID of a filesystem."
24402 msgstr ""
24403
24404 #. type: =head2
24405 #: ../fish/guestfish-actions.pod:3747
24406 msgid "set-memsize"
24407 msgstr ""
24408
24409 #. type: =head2
24410 #: ../fish/guestfish-actions.pod:3749
24411 msgid "memsize"
24412 msgstr ""
24413
24414 #. type: verbatim
24415 #: ../fish/guestfish-actions.pod:3751
24416 #, no-wrap
24417 msgid ""
24418 " set-memsize memsize\n"
24419 "\n"
24420 msgstr ""
24421
24422 #. type: textblock
24423 #: ../fish/guestfish-actions.pod:3753
24424 msgid ""
24425 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
24426 "This only has any effect if called before L</launch>."
24427 msgstr ""
24428
24429 #. type: =head2
24430 #: ../fish/guestfish-actions.pod:3764
24431 msgid "set-network"
24432 msgstr ""
24433
24434 #. type: =head2
24435 #: ../fish/guestfish-actions.pod:3766
24436 msgid "network"
24437 msgstr ""
24438
24439 #. type: verbatim
24440 #: ../fish/guestfish-actions.pod:3768
24441 #, no-wrap
24442 msgid ""
24443 " set-network true|false\n"
24444 "\n"
24445 msgstr ""
24446
24447 #. type: textblock
24448 #: ../fish/guestfish-actions.pod:3776
24449 msgid "You must call this before calling L</launch>, otherwise it has no effect."
24450 msgstr ""
24451
24452 #. type: =head2
24453 #: ../fish/guestfish-actions.pod:3779
24454 msgid "set-path"
24455 msgstr ""
24456
24457 #. type: =head2
24458 #: ../fish/guestfish-actions.pod:3781
24459 msgid "path"
24460 msgstr ""
24461
24462 #. type: verbatim
24463 #: ../fish/guestfish-actions.pod:3783
24464 #, no-wrap
24465 msgid ""
24466 " set-path searchpath\n"
24467 "\n"
24468 msgstr ""
24469
24470 #. type: =head2
24471 #: ../fish/guestfish-actions.pod:3792
24472 msgid "set-qemu"
24473 msgstr ""
24474
24475 #. type: =head2
24476 #: ../fish/guestfish-actions.pod:3794
24477 msgid "qemu"
24478 msgstr ""
24479
24480 #. type: verbatim
24481 #: ../fish/guestfish-actions.pod:3796
24482 #, no-wrap
24483 msgid ""
24484 " set-qemu qemu\n"
24485 "\n"
24486 msgstr ""
24487
24488 #. type: =head2
24489 #: ../fish/guestfish-actions.pod:3816
24490 msgid "set-recovery-proc"
24491 msgstr ""
24492
24493 #. type: =head2
24494 #: ../fish/guestfish-actions.pod:3818
24495 msgid "recovery-proc"
24496 msgstr ""
24497
24498 #. type: verbatim
24499 #: ../fish/guestfish-actions.pod:3820
24500 #, no-wrap
24501 msgid ""
24502 " set-recovery-proc true|false\n"
24503 "\n"
24504 msgstr ""
24505
24506 #. type: textblock
24507 #: ../fish/guestfish-actions.pod:3822
24508 msgid ""
24509 "If this is called with the parameter C<false> then L</launch> does not "
24510 "create a recovery process.  The purpose of the recovery process is to stop "
24511 "runaway qemu processes in the case where the main program aborts abruptly."
24512 msgstr ""
24513
24514 #. type: textblock
24515 #: ../fish/guestfish-actions.pod:3827
24516 msgid ""
24517 "This only has any effect if called before L</launch>, and the default is "
24518 "true."
24519 msgstr ""
24520
24521 #. type: =head2
24522 #: ../fish/guestfish-actions.pod:3836
24523 msgid "set-selinux"
24524 msgstr ""
24525
24526 #. type: =head2
24527 #: ../fish/guestfish-actions.pod:3838
24528 msgid "selinux"
24529 msgstr ""
24530
24531 #. type: verbatim
24532 #: ../fish/guestfish-actions.pod:3840
24533 #, no-wrap
24534 msgid ""
24535 " set-selinux true|false\n"
24536 "\n"
24537 msgstr ""
24538
24539 #. type: =head2
24540 #: ../fish/guestfish-actions.pod:3851
24541 msgid "set-trace"
24542 msgstr ""
24543
24544 #. type: =head2
24545 #: ../fish/guestfish-actions.pod:3853
24546 msgid "trace"
24547 msgstr ""
24548
24549 #. type: verbatim
24550 #: ../fish/guestfish-actions.pod:3855
24551 #, no-wrap
24552 msgid ""
24553 " set-trace true|false\n"
24554 "\n"
24555 msgstr ""
24556
24557 #. type: =head2
24558 #: ../fish/guestfish-actions.pod:3871
24559 msgid "set-verbose"
24560 msgstr ""
24561
24562 #. type: =head2
24563 #: ../fish/guestfish-actions.pod:3873
24564 msgid "verbose"
24565 msgstr ""
24566
24567 #. type: verbatim
24568 #: ../fish/guestfish-actions.pod:3875
24569 #, no-wrap
24570 msgid ""
24571 " set-verbose true|false\n"
24572 "\n"
24573 msgstr ""
24574
24575 #. type: =head2
24576 #: ../fish/guestfish-actions.pod:3882
24577 msgid "setcon"
24578 msgstr ""
24579
24580 #. type: verbatim
24581 #: ../fish/guestfish-actions.pod:3884
24582 #, no-wrap
24583 msgid ""
24584 " setcon context\n"
24585 "\n"
24586 msgstr ""
24587
24588 #. type: =head2
24589 #: ../fish/guestfish-actions.pod:3891
24590 msgid "setxattr"
24591 msgstr ""
24592
24593 #. type: verbatim
24594 #: ../fish/guestfish-actions.pod:3893
24595 #, no-wrap
24596 msgid ""
24597 " setxattr xattr val vallen path\n"
24598 "\n"
24599 msgstr ""
24600
24601 #. type: textblock
24602 #: ../fish/guestfish-actions.pod:3899
24603 msgid "See also: L</lsetxattr>, L<attr(5)>."
24604 msgstr ""
24605
24606 #. type: =head2
24607 #: ../fish/guestfish-actions.pod:3901
24608 msgid "sfdisk"
24609 msgstr ""
24610
24611 #. type: verbatim
24612 #: ../fish/guestfish-actions.pod:3903
24613 #, no-wrap
24614 msgid ""
24615 " sfdisk device cyls heads sectors 'lines ...'\n"
24616 "\n"
24617 msgstr ""
24618
24619 #. type: textblock
24620 #: ../fish/guestfish-actions.pod:3925
24621 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
24622 msgstr ""
24623
24624 #. type: =head2
24625 #: ../fish/guestfish-actions.pod:3931
24626 msgid "sfdiskM"
24627 msgstr ""
24628
24629 #. type: verbatim
24630 #: ../fish/guestfish-actions.pod:3933
24631 #, no-wrap
24632 msgid ""
24633 " sfdiskM device 'lines ...'\n"
24634 "\n"
24635 msgstr ""
24636
24637 #. type: textblock
24638 #: ../fish/guestfish-actions.pod:3935
24639 msgid ""
24640 "This is a simplified interface to the L</sfdisk> command, where partition "
24641 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
24642 "you don't need to specify the cyls, heads and sectors parameters which were "
24643 "rarely if ever used anyway."
24644 msgstr ""
24645
24646 #. type: textblock
24647 #: ../fish/guestfish-actions.pod:3941
24648 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
24649 msgstr ""
24650
24651 #. type: =head2
24652 #: ../fish/guestfish-actions.pod:3947
24653 msgid "sfdisk-N"
24654 msgstr ""
24655
24656 #. type: verbatim
24657 #: ../fish/guestfish-actions.pod:3949
24658 #, no-wrap
24659 msgid ""
24660 " sfdisk-N device partnum cyls heads sectors line\n"
24661 "\n"
24662 msgstr ""
24663
24664 #. type: textblock
24665 #: ../fish/guestfish-actions.pod:3954
24666 msgid ""
24667 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
24668 "cyls/heads/sectors parameters."
24669 msgstr ""
24670
24671 #. type: textblock
24672 #: ../fish/guestfish-actions.pod:3957
24673 msgid "See also: L</part-add>"
24674 msgstr ""
24675
24676 #. type: =head2
24677 #: ../fish/guestfish-actions.pod:3962
24678 msgid "sfdisk-disk-geometry"
24679 msgstr ""
24680
24681 #. type: verbatim
24682 #: ../fish/guestfish-actions.pod:3964
24683 #, no-wrap
24684 msgid ""
24685 " sfdisk-disk-geometry device\n"
24686 "\n"
24687 msgstr ""
24688
24689 #. type: textblock
24690 #: ../fish/guestfish-actions.pod:3966
24691 msgid ""
24692 "This displays the disk geometry of C<device> read from the partition table.  "
24693 "Especially in the case where the underlying block device has been resized, "
24694 "this can be different from the kernel's idea of the geometry (see "
24695 "L</sfdisk-kernel-geometry>)."
24696 msgstr ""
24697
24698 #. type: =head2
24699 #: ../fish/guestfish-actions.pod:3974
24700 msgid "sfdisk-kernel-geometry"
24701 msgstr ""
24702
24703 #. type: verbatim
24704 #: ../fish/guestfish-actions.pod:3976
24705 #, no-wrap
24706 msgid ""
24707 " sfdisk-kernel-geometry device\n"
24708 "\n"
24709 msgstr ""
24710
24711 #. type: =head2
24712 #: ../fish/guestfish-actions.pod:3983
24713 msgid "sfdisk-l"
24714 msgstr ""
24715
24716 #. type: verbatim
24717 #: ../fish/guestfish-actions.pod:3985
24718 #, no-wrap
24719 msgid ""
24720 " sfdisk-l device\n"
24721 "\n"
24722 msgstr ""
24723
24724 #. type: textblock
24725 #: ../fish/guestfish-actions.pod:3991
24726 msgid "See also: L</part-list>"
24727 msgstr ""
24728
24729 #. type: =head2
24730 #: ../fish/guestfish-actions.pod:3993
24731 msgid "sh"
24732 msgstr ""
24733
24734 #. type: verbatim
24735 #: ../fish/guestfish-actions.pod:3995
24736 #, no-wrap
24737 msgid ""
24738 " sh command\n"
24739 "\n"
24740 msgstr ""
24741
24742 #. type: textblock
24743 #: ../fish/guestfish-actions.pod:4000
24744 msgid "This is like L</command>, but passes the command to:"
24745 msgstr ""
24746
24747 #. type: textblock
24748 #: ../fish/guestfish-actions.pod:4008
24749 msgid "All the provisos about L</command> apply to this call."
24750 msgstr ""
24751
24752 #. type: =head2
24753 #: ../fish/guestfish-actions.pod:4010
24754 msgid "sh-lines"
24755 msgstr ""
24756
24757 #. type: verbatim
24758 #: ../fish/guestfish-actions.pod:4012
24759 #, no-wrap
24760 msgid ""
24761 " sh-lines command\n"
24762 "\n"
24763 msgstr ""
24764
24765 #. type: textblock
24766 #: ../fish/guestfish-actions.pod:4014
24767 msgid "This is the same as L</sh>, but splits the result into a list of lines."
24768 msgstr ""
24769
24770 #. type: textblock
24771 #: ../fish/guestfish-actions.pod:4017
24772 msgid "See also: L</command-lines>"
24773 msgstr ""
24774
24775 #. type: =head2
24776 #: ../fish/guestfish-actions.pod:4019
24777 msgid "sleep"
24778 msgstr ""
24779
24780 #. type: verbatim
24781 #: ../fish/guestfish-actions.pod:4021
24782 #, no-wrap
24783 msgid ""
24784 " sleep secs\n"
24785 "\n"
24786 msgstr ""
24787
24788 #. type: =head2
24789 #: ../fish/guestfish-actions.pod:4025
24790 msgid "stat"
24791 msgstr ""
24792
24793 #. type: verbatim
24794 #: ../fish/guestfish-actions.pod:4027
24795 #, no-wrap
24796 msgid ""
24797 " stat path\n"
24798 "\n"
24799 msgstr ""
24800
24801 #. type: =head2
24802 #: ../fish/guestfish-actions.pod:4033
24803 msgid "statvfs"
24804 msgstr ""
24805
24806 #. type: verbatim
24807 #: ../fish/guestfish-actions.pod:4035
24808 #, no-wrap
24809 msgid ""
24810 " statvfs path\n"
24811 "\n"
24812 msgstr ""
24813
24814 #. type: =head2
24815 #: ../fish/guestfish-actions.pod:4043
24816 msgid "strings"
24817 msgstr ""
24818
24819 #. type: verbatim
24820 #: ../fish/guestfish-actions.pod:4045
24821 #, no-wrap
24822 msgid ""
24823 " strings path\n"
24824 "\n"
24825 msgstr ""
24826
24827 #. type: =head2
24828 #: ../fish/guestfish-actions.pod:4053
24829 msgid "strings-e"
24830 msgstr ""
24831
24832 #. type: verbatim
24833 #: ../fish/guestfish-actions.pod:4055
24834 #, no-wrap
24835 msgid ""
24836 " strings-e encoding path\n"
24837 "\n"
24838 msgstr ""
24839
24840 #. type: textblock
24841 #: ../fish/guestfish-actions.pod:4057
24842 msgid ""
24843 "This is like the L</strings> command, but allows you to specify the encoding "
24844 "of strings that are looked for in the source file C<path>."
24845 msgstr ""
24846
24847 #. type: textblock
24848 #: ../fish/guestfish-actions.pod:4067
24849 msgid ""
24850 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
24851 "ISO-8859-X (this is what L</strings> uses)."
24852 msgstr ""
24853
24854 #. type: =head2
24855 #: ../fish/guestfish-actions.pod:4099
24856 msgid "swapoff-device"
24857 msgstr ""
24858
24859 #. type: verbatim
24860 #: ../fish/guestfish-actions.pod:4101
24861 #, no-wrap
24862 msgid ""
24863 " swapoff-device device\n"
24864 "\n"
24865 msgstr ""
24866
24867 #. type: textblock
24868 #: ../fish/guestfish-actions.pod:4103
24869 msgid ""
24870 "This command disables the libguestfs appliance swap device or partition "
24871 "named C<device>.  See L</swapon-device>."
24872 msgstr ""
24873
24874 #. type: =head2
24875 #: ../fish/guestfish-actions.pod:4107
24876 msgid "swapoff-file"
24877 msgstr ""
24878
24879 #. type: verbatim
24880 #: ../fish/guestfish-actions.pod:4109
24881 #, no-wrap
24882 msgid ""
24883 " swapoff-file file\n"
24884 "\n"
24885 msgstr ""
24886
24887 #. type: =head2
24888 #: ../fish/guestfish-actions.pod:4113
24889 msgid "swapoff-label"
24890 msgstr ""
24891
24892 #. type: verbatim
24893 #: ../fish/guestfish-actions.pod:4115
24894 #, no-wrap
24895 msgid ""
24896 " swapoff-label label\n"
24897 "\n"
24898 msgstr ""
24899
24900 #. type: =head2
24901 #: ../fish/guestfish-actions.pod:4120
24902 msgid "swapoff-uuid"
24903 msgstr ""
24904
24905 #. type: verbatim
24906 #: ../fish/guestfish-actions.pod:4122
24907 #, no-wrap
24908 msgid ""
24909 " swapoff-uuid uuid\n"
24910 "\n"
24911 msgstr ""
24912
24913 #. type: =head2
24914 #: ../fish/guestfish-actions.pod:4127
24915 msgid "swapon-device"
24916 msgstr ""
24917
24918 #. type: verbatim
24919 #: ../fish/guestfish-actions.pod:4129
24920 #, no-wrap
24921 msgid ""
24922 " swapon-device device\n"
24923 "\n"
24924 msgstr ""
24925
24926 #. type: textblock
24927 #: ../fish/guestfish-actions.pod:4131
24928 msgid ""
24929 "This command enables the libguestfs appliance to use the swap device or "
24930 "partition named C<device>.  The increased memory is made available for all "
24931 "commands, for example those run using L</command> or L</sh>."
24932 msgstr ""
24933
24934 #. type: =head2
24935 #: ../fish/guestfish-actions.pod:4143
24936 msgid "swapon-file"
24937 msgstr ""
24938
24939 #. type: verbatim
24940 #: ../fish/guestfish-actions.pod:4145
24941 #, no-wrap
24942 msgid ""
24943 " swapon-file file\n"
24944 "\n"
24945 msgstr ""
24946
24947 #. type: textblock
24948 #: ../fish/guestfish-actions.pod:4147
24949 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
24950 msgstr ""
24951
24952 #. type: =head2
24953 #: ../fish/guestfish-actions.pod:4150
24954 msgid "swapon-label"
24955 msgstr ""
24956
24957 #. type: verbatim
24958 #: ../fish/guestfish-actions.pod:4152
24959 #, no-wrap
24960 msgid ""
24961 " swapon-label label\n"
24962 "\n"
24963 msgstr ""
24964
24965 #. type: textblock
24966 #: ../fish/guestfish-actions.pod:4154
24967 msgid ""
24968 "This command enables swap to a labeled swap partition.  See "
24969 "L</swapon-device> for other notes."
24970 msgstr ""
24971
24972 #. type: =head2
24973 #: ../fish/guestfish-actions.pod:4157
24974 msgid "swapon-uuid"
24975 msgstr ""
24976
24977 #. type: verbatim
24978 #: ../fish/guestfish-actions.pod:4159
24979 #, no-wrap
24980 msgid ""
24981 " swapon-uuid uuid\n"
24982 "\n"
24983 msgstr ""
24984
24985 #. type: textblock
24986 #: ../fish/guestfish-actions.pod:4161
24987 msgid ""
24988 "This command enables swap to a swap partition with the given UUID.  See "
24989 "L</swapon-device> for other notes."
24990 msgstr ""
24991
24992 #. type: =head2
24993 #: ../fish/guestfish-actions.pod:4164
24994 msgid "sync"
24995 msgstr ""
24996
24997 #. type: verbatim
24998 #: ../fish/guestfish-actions.pod:4166
24999 #, no-wrap
25000 msgid ""
25001 " sync\n"
25002 "\n"
25003 msgstr ""
25004
25005 #. type: =head2
25006 #: ../fish/guestfish-actions.pod:4174
25007 msgid "tail"
25008 msgstr ""
25009
25010 #. type: verbatim
25011 #: ../fish/guestfish-actions.pod:4176
25012 #, no-wrap
25013 msgid ""
25014 " tail path\n"
25015 "\n"
25016 msgstr ""
25017
25018 #. type: =head2
25019 #: ../fish/guestfish-actions.pod:4184
25020 msgid "tail-n"
25021 msgstr ""
25022
25023 #. type: verbatim
25024 #: ../fish/guestfish-actions.pod:4186
25025 #, no-wrap
25026 msgid ""
25027 " tail-n nrlines path\n"
25028 "\n"
25029 msgstr ""
25030
25031 #. type: =head2
25032 #: ../fish/guestfish-actions.pod:4199
25033 msgid "tar-in"
25034 msgstr ""
25035
25036 #. type: verbatim
25037 #: ../fish/guestfish-actions.pod:4201
25038 #, no-wrap
25039 msgid ""
25040 " tar-in (tarfile|-) directory\n"
25041 "\n"
25042 msgstr ""
25043
25044 #. type: textblock
25045 #: ../fish/guestfish-actions.pod:4206
25046 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
25047 msgstr ""
25048
25049 #. type: =head2
25050 #: ../fish/guestfish-actions.pod:4211
25051 msgid "tar-out"
25052 msgstr ""
25053
25054 #. type: verbatim
25055 #: ../fish/guestfish-actions.pod:4213
25056 #, no-wrap
25057 msgid ""
25058 " tar-out directory (tarfile|-)\n"
25059 "\n"
25060 msgstr ""
25061
25062 #. type: textblock
25063 #: ../fish/guestfish-actions.pod:4218
25064 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
25065 msgstr ""
25066
25067 #. type: =head2
25068 #: ../fish/guestfish-actions.pod:4223
25069 msgid "tgz-in"
25070 msgstr ""
25071
25072 #. type: verbatim
25073 #: ../fish/guestfish-actions.pod:4225
25074 #, no-wrap
25075 msgid ""
25076 " tgz-in (tarball|-) directory\n"
25077 "\n"
25078 msgstr ""
25079
25080 #. type: textblock
25081 #: ../fish/guestfish-actions.pod:4230
25082 msgid "To upload an uncompressed tarball, use L</tar-in>."
25083 msgstr ""
25084
25085 #. type: =head2
25086 #: ../fish/guestfish-actions.pod:4234
25087 msgid "tgz-out"
25088 msgstr ""
25089
25090 #. type: verbatim
25091 #: ../fish/guestfish-actions.pod:4236
25092 #, no-wrap
25093 msgid ""
25094 " tgz-out directory (tarball|-)\n"
25095 "\n"
25096 msgstr ""
25097
25098 #. type: textblock
25099 #: ../fish/guestfish-actions.pod:4241
25100 msgid "To download an uncompressed tarball, use L</tar-out>."
25101 msgstr ""
25102
25103 #. type: =head2
25104 #: ../fish/guestfish-actions.pod:4245
25105 msgid "touch"
25106 msgstr ""
25107
25108 #. type: verbatim
25109 #: ../fish/guestfish-actions.pod:4247
25110 #, no-wrap
25111 msgid ""
25112 " touch path\n"
25113 "\n"
25114 msgstr ""
25115
25116 #. type: =head2
25117 #: ../fish/guestfish-actions.pod:4256
25118 msgid "truncate"
25119 msgstr ""
25120
25121 #. type: verbatim
25122 #: ../fish/guestfish-actions.pod:4258
25123 #, no-wrap
25124 msgid ""
25125 " truncate path\n"
25126 "\n"
25127 msgstr ""
25128
25129 #. type: =head2
25130 #: ../fish/guestfish-actions.pod:4263
25131 msgid "truncate-size"
25132 msgstr ""
25133
25134 #. type: verbatim
25135 #: ../fish/guestfish-actions.pod:4265
25136 #, no-wrap
25137 msgid ""
25138 " truncate-size path size\n"
25139 "\n"
25140 msgstr ""
25141
25142 #. type: textblock
25143 #: ../fish/guestfish-actions.pod:4270
25144 msgid ""
25145 "If the current file size is less than C<size> then the file is extended to "
25146 "the required size with zero bytes.  This creates a sparse file (ie. disk "
25147 "blocks are not allocated for the file until you write to it).  To create a "
25148 "non-sparse file of zeroes, use L</fallocate64> instead."
25149 msgstr ""
25150
25151 #. type: =head2
25152 #: ../fish/guestfish-actions.pod:4276
25153 msgid "tune2fs-l"
25154 msgstr ""
25155
25156 #. type: verbatim
25157 #: ../fish/guestfish-actions.pod:4278
25158 #, no-wrap
25159 msgid ""
25160 " tune2fs-l device\n"
25161 "\n"
25162 msgstr ""
25163
25164 #. type: =head2
25165 #: ../fish/guestfish-actions.pod:4288
25166 msgid "txz-in"
25167 msgstr ""
25168
25169 #. type: verbatim
25170 #: ../fish/guestfish-actions.pod:4290
25171 #, no-wrap
25172 msgid ""
25173 " txz-in (tarball|-) directory\n"
25174 "\n"
25175 msgstr ""
25176
25177 #. type: =head2
25178 #: ../fish/guestfish-actions.pod:4297
25179 msgid "txz-out"
25180 msgstr ""
25181
25182 #. type: verbatim
25183 #: ../fish/guestfish-actions.pod:4299
25184 #, no-wrap
25185 msgid ""
25186 " txz-out directory (tarball|-)\n"
25187 "\n"
25188 msgstr ""
25189
25190 #. type: =head2
25191 #: ../fish/guestfish-actions.pod:4306
25192 msgid "umask"
25193 msgstr ""
25194
25195 #. type: verbatim
25196 #: ../fish/guestfish-actions.pod:4308
25197 #, no-wrap
25198 msgid ""
25199 " umask mask\n"
25200 "\n"
25201 msgstr ""
25202
25203 #. type: textblock
25204 #: ../fish/guestfish-actions.pod:4322
25205 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
25206 msgstr ""
25207
25208 #. type: =head2
25209 #: ../fish/guestfish-actions.pod:4327
25210 msgid "umount"
25211 msgstr ""
25212
25213 #. type: =head2
25214 #: ../fish/guestfish-actions.pod:4329
25215 msgid "unmount"
25216 msgstr ""
25217
25218 #. type: verbatim
25219 #: ../fish/guestfish-actions.pod:4331
25220 #, no-wrap
25221 msgid ""
25222 " umount pathordevice\n"
25223 "\n"
25224 msgstr ""
25225
25226 #. type: =head2
25227 #: ../fish/guestfish-actions.pod:4337
25228 msgid "umount-all"
25229 msgstr ""
25230
25231 #. type: =head2
25232 #: ../fish/guestfish-actions.pod:4339
25233 msgid "unmount-all"
25234 msgstr ""
25235
25236 #. type: verbatim
25237 #: ../fish/guestfish-actions.pod:4341
25238 #, no-wrap
25239 msgid ""
25240 " umount-all\n"
25241 "\n"
25242 msgstr ""
25243
25244 #. type: =head2
25245 #: ../fish/guestfish-actions.pod:4347
25246 msgid "upload"
25247 msgstr ""
25248
25249 #. type: verbatim
25250 #: ../fish/guestfish-actions.pod:4349
25251 #, no-wrap
25252 msgid ""
25253 " upload (filename|-) remotefilename\n"
25254 "\n"
25255 msgstr ""
25256
25257 #. type: textblock
25258 #: ../fish/guestfish-actions.pod:4356
25259 msgid "See also L</download>."
25260 msgstr ""
25261
25262 #. type: =head2
25263 #: ../fish/guestfish-actions.pod:4360
25264 msgid "upload-offset"
25265 msgstr ""
25266
25267 #. type: verbatim
25268 #: ../fish/guestfish-actions.pod:4362
25269 #, no-wrap
25270 msgid ""
25271 " upload-offset (filename|-) remotefilename offset\n"
25272 "\n"
25273 msgstr ""
25274
25275 #. type: textblock
25276 #: ../fish/guestfish-actions.pod:4374
25277 msgid ""
25278 "Note that there is no limit on the amount of data that can be uploaded with "
25279 "this call, unlike with L</pwrite>, and this call always writes the full "
25280 "amount unless an error occurs."
25281 msgstr ""
25282
25283 #. type: textblock
25284 #: ../fish/guestfish-actions.pod:4379
25285 msgid "See also L</upload>, L</pwrite>."
25286 msgstr ""
25287
25288 #. type: =head2
25289 #: ../fish/guestfish-actions.pod:4383
25290 msgid "utimens"
25291 msgstr ""
25292
25293 #. type: verbatim
25294 #: ../fish/guestfish-actions.pod:4385
25295 #, no-wrap
25296 msgid ""
25297 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
25298 "\n"
25299 msgstr ""
25300
25301 #. type: =head2
25302 #: ../fish/guestfish-actions.pod:4404
25303 msgid "version"
25304 msgstr ""
25305
25306 #. type: verbatim
25307 #: ../fish/guestfish-actions.pod:4406
25308 #, no-wrap
25309 msgid ""
25310 " version\n"
25311 "\n"
25312 msgstr ""
25313
25314 #. type: textblock
25315 #: ../fish/guestfish-actions.pod:4433
25316 msgid ""
25317 "I<Note:> Don't use this call to test for availability of features.  In "
25318 "enterprise distributions we backport features from later versions into "
25319 "earlier versions, making this an unreliable way to test for features.  Use "
25320 "L</available> instead."
25321 msgstr ""
25322
25323 #. type: =head2
25324 #: ../fish/guestfish-actions.pod:4439
25325 msgid "vfs-label"
25326 msgstr ""
25327
25328 #. type: verbatim
25329 #: ../fish/guestfish-actions.pod:4441
25330 #, no-wrap
25331 msgid ""
25332 " vfs-label device\n"
25333 "\n"
25334 msgstr ""
25335
25336 #. type: textblock
25337 #: ../fish/guestfish-actions.pod:4448
25338 msgid "To find a filesystem from the label, use L</findfs-label>."
25339 msgstr ""
25340
25341 #. type: =head2
25342 #: ../fish/guestfish-actions.pod:4450
25343 msgid "vfs-type"
25344 msgstr ""
25345
25346 #. type: verbatim
25347 #: ../fish/guestfish-actions.pod:4452
25348 #, no-wrap
25349 msgid ""
25350 " vfs-type device\n"
25351 "\n"
25352 msgstr ""
25353
25354 #. type: =head2
25355 #: ../fish/guestfish-actions.pod:4462
25356 msgid "vfs-uuid"
25357 msgstr ""
25358
25359 #. type: verbatim
25360 #: ../fish/guestfish-actions.pod:4464
25361 #, no-wrap
25362 msgid ""
25363 " vfs-uuid device\n"
25364 "\n"
25365 msgstr ""
25366
25367 #. type: textblock
25368 #: ../fish/guestfish-actions.pod:4471
25369 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
25370 msgstr ""
25371
25372 #. type: =head2
25373 #: ../fish/guestfish-actions.pod:4473
25374 msgid "vg-activate"
25375 msgstr ""
25376
25377 #. type: verbatim
25378 #: ../fish/guestfish-actions.pod:4475
25379 #, no-wrap
25380 msgid ""
25381 " vg-activate true|false 'volgroups ...'\n"
25382 "\n"
25383 msgstr ""
25384
25385 #. type: =head2
25386 #: ../fish/guestfish-actions.pod:4488
25387 msgid "vg-activate-all"
25388 msgstr ""
25389
25390 #. type: verbatim
25391 #: ../fish/guestfish-actions.pod:4490
25392 #, no-wrap
25393 msgid ""
25394 " vg-activate-all true|false\n"
25395 "\n"
25396 msgstr ""
25397
25398 #. type: =head2
25399 #: ../fish/guestfish-actions.pod:4500
25400 msgid "vgcreate"
25401 msgstr ""
25402
25403 #. type: verbatim
25404 #: ../fish/guestfish-actions.pod:4502
25405 #, no-wrap
25406 msgid ""
25407 " vgcreate volgroup 'physvols ...'\n"
25408 "\n"
25409 msgstr ""
25410
25411 #. type: =head2
25412 #: ../fish/guestfish-actions.pod:4507
25413 msgid "vglvuuids"
25414 msgstr ""
25415
25416 #. type: verbatim
25417 #: ../fish/guestfish-actions.pod:4509
25418 #, no-wrap
25419 msgid ""
25420 " vglvuuids vgname\n"
25421 "\n"
25422 msgstr ""
25423
25424 #. type: textblock
25425 #: ../fish/guestfish-actions.pod:4514
25426 msgid ""
25427 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
25428 "logical volumes and volume groups."
25429 msgstr ""
25430
25431 #. type: textblock
25432 #: ../fish/guestfish-actions.pod:4517
25433 msgid "See also L</vgpvuuids>."
25434 msgstr ""
25435
25436 #. type: =head2
25437 #: ../fish/guestfish-actions.pod:4519
25438 msgid "vgpvuuids"
25439 msgstr ""
25440
25441 #. type: verbatim
25442 #: ../fish/guestfish-actions.pod:4521
25443 #, no-wrap
25444 msgid ""
25445 " vgpvuuids vgname\n"
25446 "\n"
25447 msgstr ""
25448
25449 #. type: textblock
25450 #: ../fish/guestfish-actions.pod:4526
25451 msgid ""
25452 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
25453 "physical volumes and volume groups."
25454 msgstr ""
25455
25456 #. type: textblock
25457 #: ../fish/guestfish-actions.pod:4529
25458 msgid "See also L</vglvuuids>."
25459 msgstr ""
25460
25461 #. type: =head2
25462 #: ../fish/guestfish-actions.pod:4531
25463 msgid "vgremove"
25464 msgstr ""
25465
25466 #. type: verbatim
25467 #: ../fish/guestfish-actions.pod:4533
25468 #, no-wrap
25469 msgid ""
25470 " vgremove vgname\n"
25471 "\n"
25472 msgstr ""
25473
25474 #. type: =head2
25475 #: ../fish/guestfish-actions.pod:4540
25476 msgid "vgrename"
25477 msgstr ""
25478
25479 #. type: verbatim
25480 #: ../fish/guestfish-actions.pod:4542
25481 #, no-wrap
25482 msgid ""
25483 " vgrename volgroup newvolgroup\n"
25484 "\n"
25485 msgstr ""
25486
25487 #. type: =head2
25488 #: ../fish/guestfish-actions.pod:4546
25489 msgid "vgs"
25490 msgstr ""
25491
25492 #. type: verbatim
25493 #: ../fish/guestfish-actions.pod:4548
25494 #, no-wrap
25495 msgid ""
25496 " vgs\n"
25497 "\n"
25498 msgstr ""
25499
25500 #. type: textblock
25501 #: ../fish/guestfish-actions.pod:4556
25502 msgid "See also L</vgs-full>."
25503 msgstr ""
25504
25505 #. type: =head2
25506 #: ../fish/guestfish-actions.pod:4558
25507 msgid "vgs-full"
25508 msgstr ""
25509
25510 #. type: verbatim
25511 #: ../fish/guestfish-actions.pod:4560
25512 #, no-wrap
25513 msgid ""
25514 " vgs-full\n"
25515 "\n"
25516 msgstr ""
25517
25518 #. type: =head2
25519 #: ../fish/guestfish-actions.pod:4565
25520 msgid "vgscan"
25521 msgstr ""
25522
25523 #. type: verbatim
25524 #: ../fish/guestfish-actions.pod:4567
25525 #, no-wrap
25526 msgid ""
25527 " vgscan\n"
25528 "\n"
25529 msgstr ""
25530
25531 #. type: =head2
25532 #: ../fish/guestfish-actions.pod:4572
25533 msgid "vguuid"
25534 msgstr ""
25535
25536 #. type: verbatim
25537 #: ../fish/guestfish-actions.pod:4574
25538 #, no-wrap
25539 msgid ""
25540 " vguuid vgname\n"
25541 "\n"
25542 msgstr ""
25543
25544 #. type: =head2
25545 #: ../fish/guestfish-actions.pod:4578
25546 msgid "wc-c"
25547 msgstr ""
25548
25549 #. type: verbatim
25550 #: ../fish/guestfish-actions.pod:4580
25551 #, no-wrap
25552 msgid ""
25553 " wc-c path\n"
25554 "\n"
25555 msgstr ""
25556
25557 #. type: =head2
25558 #: ../fish/guestfish-actions.pod:4585
25559 msgid "wc-l"
25560 msgstr ""
25561
25562 #. type: verbatim
25563 #: ../fish/guestfish-actions.pod:4587
25564 #, no-wrap
25565 msgid ""
25566 " wc-l path\n"
25567 "\n"
25568 msgstr ""
25569
25570 #. type: =head2
25571 #: ../fish/guestfish-actions.pod:4592
25572 msgid "wc-w"
25573 msgstr ""
25574
25575 #. type: verbatim
25576 #: ../fish/guestfish-actions.pod:4594
25577 #, no-wrap
25578 msgid ""
25579 " wc-w path\n"
25580 "\n"
25581 msgstr ""
25582
25583 #. type: =head2
25584 #: ../fish/guestfish-actions.pod:4599
25585 msgid "write"
25586 msgstr ""
25587
25588 #. type: verbatim
25589 #: ../fish/guestfish-actions.pod:4601
25590 #, no-wrap
25591 msgid ""
25592 " write path content\n"
25593 "\n"
25594 msgstr ""
25595
25596 #. type: =head2
25597 #: ../fish/guestfish-actions.pod:4609
25598 msgid "write-file"
25599 msgstr ""
25600
25601 #. type: verbatim
25602 #: ../fish/guestfish-actions.pod:4611
25603 #, no-wrap
25604 msgid ""
25605 " write-file path content size\n"
25606 "\n"
25607 msgstr ""
25608
25609 #. type: textblock
25610 #: ../fish/guestfish-actions.pod:4627
25611 msgid "This function is deprecated.  In new code, use the L</write> call instead."
25612 msgstr ""
25613
25614 #. type: =head2
25615 #: ../fish/guestfish-actions.pod:4634
25616 msgid "zegrep"
25617 msgstr ""
25618
25619 #. type: verbatim
25620 #: ../fish/guestfish-actions.pod:4636
25621 #, no-wrap
25622 msgid ""
25623 " zegrep regex path\n"
25624 "\n"
25625 msgstr ""
25626
25627 #. type: =head2
25628 #: ../fish/guestfish-actions.pod:4644
25629 msgid "zegrepi"
25630 msgstr ""
25631
25632 #. type: verbatim
25633 #: ../fish/guestfish-actions.pod:4646
25634 #, no-wrap
25635 msgid ""
25636 " zegrepi regex path\n"
25637 "\n"
25638 msgstr ""
25639
25640 #. type: =head2
25641 #: ../fish/guestfish-actions.pod:4654
25642 msgid "zero"
25643 msgstr ""
25644
25645 #. type: verbatim
25646 #: ../fish/guestfish-actions.pod:4656
25647 #, no-wrap
25648 msgid ""
25649 " zero device\n"
25650 "\n"
25651 msgstr ""
25652
25653 #. type: textblock
25654 #: ../fish/guestfish-actions.pod:4664
25655 msgid "See also: L</zero-device>, L</scrub-device>."
25656 msgstr ""
25657
25658 #. type: =head2
25659 #: ../fish/guestfish-actions.pod:4666
25660 msgid "zero-device"
25661 msgstr ""
25662
25663 #. type: verbatim
25664 #: ../fish/guestfish-actions.pod:4668
25665 #, no-wrap
25666 msgid ""
25667 " zero-device device\n"
25668 "\n"
25669 msgstr ""
25670
25671 #. type: textblock
25672 #: ../fish/guestfish-actions.pod:4670
25673 msgid ""
25674 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
25675 "which just zeroes the first few blocks of a device."
25676 msgstr ""
25677
25678 #. type: =head2
25679 #: ../fish/guestfish-actions.pod:4677
25680 msgid "zerofree"
25681 msgstr ""
25682
25683 #. type: verbatim
25684 #: ../fish/guestfish-actions.pod:4679
25685 #, no-wrap
25686 msgid ""
25687 " zerofree device\n"
25688 "\n"
25689 msgstr ""
25690
25691 #. type: =head2
25692 #: ../fish/guestfish-actions.pod:4692
25693 msgid "zfgrep"
25694 msgstr ""
25695
25696 #. type: verbatim
25697 #: ../fish/guestfish-actions.pod:4694
25698 #, no-wrap
25699 msgid ""
25700 " zfgrep pattern path\n"
25701 "\n"
25702 msgstr ""
25703
25704 #. type: =head2
25705 #: ../fish/guestfish-actions.pod:4702
25706 msgid "zfgrepi"
25707 msgstr ""
25708
25709 #. type: verbatim
25710 #: ../fish/guestfish-actions.pod:4704
25711 #, no-wrap
25712 msgid ""
25713 " zfgrepi pattern path\n"
25714 "\n"
25715 msgstr ""
25716
25717 #. type: =head2
25718 #: ../fish/guestfish-actions.pod:4712
25719 msgid "zfile"
25720 msgstr ""
25721
25722 #. type: verbatim
25723 #: ../fish/guestfish-actions.pod:4714
25724 #, no-wrap
25725 msgid ""
25726 " zfile meth path\n"
25727 "\n"
25728 msgstr ""
25729
25730 #. type: textblock
25731 #: ../fish/guestfish-actions.pod:4721
25732 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
25733 msgstr ""
25734
25735 #. type: textblock
25736 #: ../fish/guestfish-actions.pod:4724
25737 msgid "This function is deprecated.  In new code, use the L</file> call instead."
25738 msgstr ""
25739
25740 #. type: =head2
25741 #: ../fish/guestfish-actions.pod:4731
25742 msgid "zgrep"
25743 msgstr ""
25744
25745 #. type: verbatim
25746 #: ../fish/guestfish-actions.pod:4733
25747 #, no-wrap
25748 msgid ""
25749 " zgrep regex path\n"
25750 "\n"
25751 msgstr ""
25752
25753 #. type: =head2
25754 #: ../fish/guestfish-actions.pod:4741
25755 msgid "zgrepi"
25756 msgstr ""
25757
25758 #. type: verbatim
25759 #: ../fish/guestfish-actions.pod:4743
25760 #, no-wrap
25761 msgid ""
25762 " zgrepi regex path\n"
25763 "\n"
25764 msgstr ""
25765
25766 #. type: =head2
25767 #: ../fish/guestfish-commands.pod:1
25768 msgid "alloc"
25769 msgstr ""
25770
25771 #. type: =head2
25772 #: ../fish/guestfish-commands.pod:3
25773 msgid "allocate"
25774 msgstr ""
25775
25776 #. type: verbatim
25777 #: ../fish/guestfish-commands.pod:5
25778 #, no-wrap
25779 msgid ""
25780 " alloc filename size\n"
25781 "\n"
25782 msgstr ""
25783
25784 #. type: textblock
25785 #: ../fish/guestfish-commands.pod:7
25786 msgid ""
25787 "This creates an empty (zeroed) file of the given size, and then adds so it "
25788 "can be further examined."
25789 msgstr ""
25790
25791 #. type: textblock
25792 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
25793 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
25794 msgstr ""
25795
25796 #. type: textblock
25797 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
25798 msgid "Size can be specified using standard suffixes, eg. C<1M>."
25799 msgstr ""
25800
25801 #. type: textblock
25802 #: ../fish/guestfish-commands.pod:14
25803 msgid ""
25804 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
25805 "image, see L</PREPARED DISK IMAGES>."
25806 msgstr ""
25807
25808 #. type: =head2
25809 #: ../fish/guestfish-commands.pod:17
25810 msgid "copy-in"
25811 msgstr ""
25812
25813 #. type: verbatim
25814 #: ../fish/guestfish-commands.pod:19
25815 #, no-wrap
25816 msgid ""
25817 " copy-in local [local ...] /remotedir\n"
25818 "\n"
25819 msgstr ""
25820
25821 #. type: textblock
25822 #: ../fish/guestfish-commands.pod:21
25823 msgid ""
25824 "C<copy-in> copies local files or directories recursively into the disk "
25825 "image, placing them in the directory called C</remotedir> (which must "
25826 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
25827 "other commands as necessary."
25828 msgstr ""
25829
25830 #. type: textblock
25831 #: ../fish/guestfish-commands.pod:26
25832 msgid ""
25833 "Multiple local files and directories can be specified, but the last "
25834 "parameter must always be a remote directory.  Wildcards cannot be used."
25835 msgstr ""
25836
25837 #. type: =head2
25838 #: ../fish/guestfish-commands.pod:30
25839 msgid "copy-out"
25840 msgstr ""
25841
25842 #. type: verbatim
25843 #: ../fish/guestfish-commands.pod:32
25844 #, no-wrap
25845 msgid ""
25846 " copy-out remote [remote ...] localdir\n"
25847 "\n"
25848 msgstr ""
25849
25850 #. type: textblock
25851 #: ../fish/guestfish-commands.pod:34
25852 msgid ""
25853 "C<copy-out> copies remote files or directories recursively out of the disk "
25854 "image, placing them on the host disk in a local directory called C<localdir> "
25855 "(which must exist).  This guestfish meta-command turns into a sequence of "
25856 "L</download>, L</tar-out> and other commands as necessary."
25857 msgstr ""
25858
25859 #. type: textblock
25860 #: ../fish/guestfish-commands.pod:40
25861 msgid ""
25862 "Multiple remote files and directories can be specified, but the last "
25863 "parameter must always be a local directory.  To download to the current "
25864 "directory, use C<.> as in:"
25865 msgstr ""
25866
25867 #. type: verbatim
25868 #: ../fish/guestfish-commands.pod:44
25869 #, no-wrap
25870 msgid ""
25871 " copy-out /home .\n"
25872 "\n"
25873 msgstr ""
25874
25875 #. type: textblock
25876 #: ../fish/guestfish-commands.pod:46
25877 msgid ""
25878 "Wildcards cannot be used in the ordinary command, but you can use them with "
25879 "the help of L</glob> like this:"
25880 msgstr ""
25881
25882 #. type: verbatim
25883 #: ../fish/guestfish-commands.pod:49
25884 #, no-wrap
25885 msgid ""
25886 " glob copy-out /home/* .\n"
25887 "\n"
25888 msgstr ""
25889
25890 #. type: =head2
25891 #: ../fish/guestfish-commands.pod:51
25892 msgid "echo"
25893 msgstr ""
25894
25895 #. type: verbatim
25896 #: ../fish/guestfish-commands.pod:53
25897 #, no-wrap
25898 msgid ""
25899 " echo [params ...]\n"
25900 "\n"
25901 msgstr ""
25902
25903 #. type: textblock
25904 #: ../fish/guestfish-commands.pod:55
25905 msgid "This echos the parameters to the terminal."
25906 msgstr ""
25907
25908 #. type: =head2
25909 #: ../fish/guestfish-commands.pod:57
25910 msgid "edit"
25911 msgstr ""
25912
25913 #. type: =head2
25914 #: ../fish/guestfish-commands.pod:59
25915 msgid "vi"
25916 msgstr ""
25917
25918 #. type: =head2
25919 #: ../fish/guestfish-commands.pod:61
25920 msgid "emacs"
25921 msgstr ""
25922
25923 #. type: verbatim
25924 #: ../fish/guestfish-commands.pod:63
25925 #, no-wrap
25926 msgid ""
25927 " edit filename\n"
25928 "\n"
25929 msgstr ""
25930
25931 #. type: textblock
25932 #: ../fish/guestfish-commands.pod:65
25933 msgid ""
25934 "This is used to edit a file.  It downloads the file, edits it locally using "
25935 "your editor, then uploads the result."
25936 msgstr ""
25937
25938 #. type: textblock
25939 #: ../fish/guestfish-commands.pod:68
25940 msgid ""
25941 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
25942 "or C<emacs> you will get those corresponding editors."
25943 msgstr ""
25944
25945 #. type: =head2
25946 #: ../fish/guestfish-commands.pod:72
25947 msgid "glob"
25948 msgstr ""
25949
25950 #. type: verbatim
25951 #: ../fish/guestfish-commands.pod:74
25952 #, no-wrap
25953 msgid ""
25954 " glob command args...\n"
25955 "\n"
25956 msgstr ""
25957
25958 #. type: textblock
25959 #: ../fish/guestfish-commands.pod:76
25960 msgid ""
25961 "Expand wildcards in any paths in the args list, and run C<command> "
25962 "repeatedly on each matching path."
25963 msgstr ""
25964
25965 #. type: textblock
25966 #: ../fish/guestfish-commands.pod:79
25967 msgid "See L</WILDCARDS AND GLOBBING>."
25968 msgstr ""
25969
25970 #. type: =head2
25971 #: ../fish/guestfish-commands.pod:81
25972 msgid "hexedit"
25973 msgstr ""
25974
25975 #. type: verbatim
25976 #: ../fish/guestfish-commands.pod:83
25977 #, no-wrap
25978 msgid ""
25979 " hexedit <filename|device>\n"
25980 " hexedit <filename|device> <max>\n"
25981 " hexedit <filename|device> <start> <max>\n"
25982 "\n"
25983 msgstr ""
25984
25985 #. type: textblock
25986 #: ../fish/guestfish-commands.pod:87
25987 msgid ""
25988 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
25989 "device."
25990 msgstr ""
25991
25992 #. type: textblock
25993 #: ../fish/guestfish-commands.pod:90
25994 msgid ""
25995 "This command works by downloading potentially the whole file or device, "
25996 "editing it locally, then uploading it.  If the file or device is large, you "
25997 "have to specify which part you wish to edit by using C<max> and/or C<start> "
25998 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
25999 "usual modifiers allowed such as C<1M> (1 megabyte)."
26000 msgstr ""
26001
26002 #. type: textblock
26003 #: ../fish/guestfish-commands.pod:97
26004 msgid "For example to edit the first few sectors of a disk you might do:"
26005 msgstr ""
26006
26007 #. type: verbatim
26008 #: ../fish/guestfish-commands.pod:100
26009 #, no-wrap
26010 msgid ""
26011 " hexedit /dev/sda 1M\n"
26012 "\n"
26013 msgstr ""
26014
26015 #. type: textblock
26016 #: ../fish/guestfish-commands.pod:102
26017 msgid ""
26018 "which would allow you to edit anywhere within the first megabyte of the "
26019 "disk."
26020 msgstr ""
26021
26022 #. type: textblock
26023 #: ../fish/guestfish-commands.pod:105
26024 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
26025 msgstr ""
26026
26027 #. type: verbatim
26028 #: ../fish/guestfish-commands.pod:107
26029 #, no-wrap
26030 msgid ""
26031 " hexedit /dev/sda1 0x400 0x400\n"
26032 "\n"
26033 msgstr ""
26034
26035 #. type: textblock
26036 #: ../fish/guestfish-commands.pod:109
26037 msgid "(assuming the superblock is in the standard location)."
26038 msgstr ""
26039
26040 #. type: textblock
26041 #: ../fish/guestfish-commands.pod:111
26042 msgid ""
26043 "This command requires the external L<hexedit(1)> program.  You can specify "
26044 "another program to use by setting the C<HEXEDITOR> environment variable."
26045 msgstr ""
26046
26047 #. type: textblock
26048 #: ../fish/guestfish-commands.pod:115
26049 msgid "See also L</hexdump>."
26050 msgstr ""
26051
26052 #. type: =head2
26053 #: ../fish/guestfish-commands.pod:117
26054 msgid "lcd"
26055 msgstr ""
26056
26057 #. type: verbatim
26058 #: ../fish/guestfish-commands.pod:119
26059 #, no-wrap
26060 msgid ""
26061 " lcd directory\n"
26062 "\n"
26063 msgstr ""
26064
26065 #. type: textblock
26066 #: ../fish/guestfish-commands.pod:121
26067 msgid "Change the local directory, ie. the current directory of guestfish itself."
26068 msgstr ""
26069
26070 #. type: textblock
26071 #: ../fish/guestfish-commands.pod:124
26072 msgid "Note that C<!cd> won't do what you might expect."
26073 msgstr ""
26074
26075 #. type: =head2
26076 #: ../fish/guestfish-commands.pod:126
26077 msgid "man"
26078 msgstr ""
26079
26080 #. type: =head2
26081 #: ../fish/guestfish-commands.pod:128
26082 msgid "manual"
26083 msgstr ""
26084
26085 #. type: verbatim
26086 #: ../fish/guestfish-commands.pod:130
26087 #, no-wrap
26088 msgid ""
26089 "  man\n"
26090 "\n"
26091 msgstr ""
26092
26093 #. type: textblock
26094 #: ../fish/guestfish-commands.pod:132
26095 msgid "Opens the manual page for guestfish."
26096 msgstr ""
26097
26098 #. type: =head2
26099 #: ../fish/guestfish-commands.pod:134
26100 msgid "more"
26101 msgstr ""
26102
26103 #. type: =head2
26104 #: ../fish/guestfish-commands.pod:136
26105 msgid "less"
26106 msgstr ""
26107
26108 #. type: verbatim
26109 #: ../fish/guestfish-commands.pod:138
26110 #, no-wrap
26111 msgid ""
26112 " more filename\n"
26113 "\n"
26114 msgstr ""
26115
26116 #. type: verbatim
26117 #: ../fish/guestfish-commands.pod:140
26118 #, no-wrap
26119 msgid ""
26120 " less filename\n"
26121 "\n"
26122 msgstr ""
26123
26124 #. type: textblock
26125 #: ../fish/guestfish-commands.pod:142
26126 msgid "This is used to view a file."
26127 msgstr ""
26128
26129 #. type: textblock
26130 #: ../fish/guestfish-commands.pod:144
26131 msgid ""
26132 "The default viewer is C<$PAGER>.  However if you use the alternate command "
26133 "C<less> you will get the C<less> command specifically."
26134 msgstr ""
26135
26136 #. type: =head2
26137 #: ../fish/guestfish-commands.pod:147
26138 msgid "reopen"
26139 msgstr ""
26140
26141 #. type: verbatim
26142 #: ../fish/guestfish-commands.pod:149
26143 #, no-wrap
26144 msgid ""
26145 "  reopen\n"
26146 "\n"
26147 msgstr ""
26148
26149 #. type: textblock
26150 #: ../fish/guestfish-commands.pod:151
26151 msgid ""
26152 "Close and reopen the libguestfs handle.  It is not necessary to use this "
26153 "normally, because the handle is closed properly when guestfish exits.  "
26154 "However this is occasionally useful for testing."
26155 msgstr ""
26156
26157 #. type: =head2
26158 #: ../fish/guestfish-commands.pod:155
26159 msgid "sparse"
26160 msgstr ""
26161
26162 #. type: verbatim
26163 #: ../fish/guestfish-commands.pod:157
26164 #, no-wrap
26165 msgid ""
26166 " sparse filename size\n"
26167 "\n"
26168 msgstr ""
26169
26170 #. type: textblock
26171 #: ../fish/guestfish-commands.pod:159
26172 msgid ""
26173 "This creates an empty sparse file of the given size, and then adds so it can "
26174 "be further examined."
26175 msgstr ""
26176
26177 #. type: textblock
26178 #: ../fish/guestfish-commands.pod:162
26179 msgid ""
26180 "In all respects it works the same as the L</alloc> command, except that the "
26181 "image file is allocated sparsely, which means that disk blocks are not "
26182 "assigned to the file until they are needed.  Sparse disk files only use "
26183 "space when written to, but they are slower and there is a danger you could "
26184 "run out of real disk space during a write operation."
26185 msgstr ""
26186
26187 #. type: =head2
26188 #: ../fish/guestfish-commands.pod:172
26189 msgid "supported"
26190 msgstr ""
26191
26192 #. type: verbatim
26193 #: ../fish/guestfish-commands.pod:174
26194 #, no-wrap
26195 msgid ""
26196 " supported\n"
26197 "\n"
26198 msgstr ""
26199
26200 #. type: textblock
26201 #: ../fish/guestfish-commands.pod:176
26202 msgid ""
26203 "This command returns a list of the optional groups known to the daemon, and "
26204 "indicates which ones are supported by this build of the libguestfs "
26205 "appliance."
26206 msgstr ""
26207
26208 #. type: textblock
26209 #: ../fish/guestfish-commands.pod:180
26210 msgid "See also L<guestfs(3)/AVAILABILITY>."
26211 msgstr ""
26212
26213 #. type: =head2
26214 #: ../fish/guestfish-commands.pod:182
26215 msgid "time"
26216 msgstr ""
26217
26218 #. type: verbatim
26219 #: ../fish/guestfish-commands.pod:184
26220 #, no-wrap
26221 msgid ""
26222 " time command args...\n"
26223 "\n"
26224 msgstr ""
26225
26226 #. type: textblock
26227 #: ../fish/guestfish-commands.pod:186
26228 msgid ""
26229 "Run the command as usual, but print the elapsed time afterwards.  This can "
26230 "be useful for benchmarking operations."
26231 msgstr ""
26232
26233 #. type: textblock
26234 #: ../test-tool/libguestfs-test-tool.pod:5
26235 msgid "libguestfs-test-tool - End user tests for libguestfs"
26236 msgstr ""
26237
26238 #. type: verbatim
26239 #: ../test-tool/libguestfs-test-tool.pod:9
26240 #, no-wrap
26241 msgid ""
26242 " libguestfs-test-tool [--options]\n"
26243 "\n"
26244 msgstr ""
26245
26246 #. type: textblock
26247 #: ../test-tool/libguestfs-test-tool.pod:13
26248 msgid ""
26249 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
26250 "and developers, to allow them to check basic libguestfs functionality is "
26251 "working.  This is needed because libguestfs occasionally breaks for reasons "
26252 "beyond our control: usually because of changes in the underlying qemu or "
26253 "kernel packages, or the host environment."
26254 msgstr ""
26255
26256 #. type: textblock
26257 #: ../test-tool/libguestfs-test-tool.pod:20
26258 msgid "If you suspect a problem in libguestfs, then just run:"
26259 msgstr ""
26260
26261 #. type: verbatim
26262 #: ../test-tool/libguestfs-test-tool.pod:22
26263 #, no-wrap
26264 msgid ""
26265 " libguestfs-test-tool\n"
26266 "\n"
26267 msgstr ""
26268
26269 #. type: textblock
26270 #: ../test-tool/libguestfs-test-tool.pod:24
26271 msgid "It will print lots of diagnostic messages."
26272 msgstr ""
26273
26274 #. type: textblock
26275 #: ../test-tool/libguestfs-test-tool.pod:26
26276 msgid "If it runs to completion successfully, you will see this near the end:"
26277 msgstr ""
26278
26279 #. type: verbatim
26280 #: ../test-tool/libguestfs-test-tool.pod:28
26281 #, no-wrap
26282 msgid ""
26283 " ===== TEST FINISHED OK =====\n"
26284 "\n"
26285 msgstr ""
26286
26287 #. type: textblock
26288 #: ../test-tool/libguestfs-test-tool.pod:30
26289 msgid "and the test tool will exit with code 0."
26290 msgstr ""
26291
26292 #. type: textblock
26293 #: ../test-tool/libguestfs-test-tool.pod:32
26294 msgid ""
26295 "If it fails (and/or exits with non-zero error code), please paste the "
26296 "B<complete, unedited> output of the test tool into a bug report.  More "
26297 "information about reporting bugs can be found on the "
26298 "L<http://libguestfs.org/> website."
26299 msgstr ""
26300
26301 #. type: =item
26302 #: ../test-tool/libguestfs-test-tool.pod:41
26303 msgid "I<--help>"
26304 msgstr ""
26305
26306 #. type: textblock
26307 #: ../test-tool/libguestfs-test-tool.pod:43
26308 msgid "Display short usage information and exit."
26309 msgstr ""
26310
26311 #. type: =item
26312 #: ../test-tool/libguestfs-test-tool.pod:45
26313 msgid "I<--helper /path/to/libguestfs-test-tool-helper>"
26314 msgstr ""
26315
26316 #. type: textblock
26317 #: ../test-tool/libguestfs-test-tool.pod:47
26318 msgid ""
26319 "Pass an alternate name for the helper program.  libguestfs-test-tool will "
26320 "normally look in the C<$libexec> directory that was configured when the tool "
26321 "was built."
26322 msgstr ""
26323
26324 #. type: =item
26325 #: ../test-tool/libguestfs-test-tool.pod:51
26326 msgid "I<--qemu qemu_binary>"
26327 msgstr ""
26328
26329 #. type: textblock
26330 #: ../test-tool/libguestfs-test-tool.pod:53
26331 msgid ""
26332 "If you have downloaded another qemu binary, point this option at the full "
26333 "path of the binary to try it."
26334 msgstr ""
26335
26336 #. type: =item
26337 #: ../test-tool/libguestfs-test-tool.pod:56
26338 msgid "I<--qemudir qemu_source_dir>"
26339 msgstr ""
26340
26341 #. type: textblock
26342 #: ../test-tool/libguestfs-test-tool.pod:58
26343 msgid ""
26344 "If you have compiled qemu from source, point this option at the source "
26345 "directory to try it."
26346 msgstr ""
26347
26348 #. type: =item
26349 #: ../test-tool/libguestfs-test-tool.pod:61
26350 msgid "I<--timeout N>"
26351 msgstr ""
26352
26353 #. type: textblock
26354 #: ../test-tool/libguestfs-test-tool.pod:63
26355 msgid ""
26356 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
26357 "does not usually need to be adjusted unless your machine is very slow."
26358 msgstr ""
26359
26360 #. type: =head1
26361 #: ../test-tool/libguestfs-test-tool.pod:69
26362 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
26363 msgstr ""
26364
26365 #. type: textblock
26366 #: ../test-tool/libguestfs-test-tool.pod:71
26367 msgid ""
26368 "If you have compiled another version of qemu from source and would like to "
26369 "try that, then you can use the I<--qemudir> option to point to the qemu "
26370 "source directory."
26371 msgstr ""
26372
26373 #. type: textblock
26374 #: ../test-tool/libguestfs-test-tool.pod:75
26375 msgid ""
26376 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
26377 "option to point to the binary."
26378 msgstr ""
26379
26380 #. type: textblock
26381 #: ../test-tool/libguestfs-test-tool.pod:78
26382 msgid ""
26383 "When using an alternate qemu with libguestfs, usually you would need to "
26384 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
26385 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
26386 "when you use either of the I<--qemudir> or I<--qemu> options."
26387 msgstr ""
26388
26389 #. type: textblock
26390 #: ../test-tool/libguestfs-test-tool.pod:85
26391 msgid ""
26392 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
26393 "I<1> if there was an error."
26394 msgstr ""
26395
26396 #. type: =item
26397 #: ../test-tool/libguestfs-test-tool.pod:92
26398 msgid "/usr/libexec/libguestfs-test-tool-helper"
26399 msgstr ""
26400
26401 #. type: textblock
26402 #: ../test-tool/libguestfs-test-tool.pod:94
26403 msgid ""
26404 "This helper program is run inside the appliance and provides additional "
26405 "tests."
26406 msgstr ""
26407
26408 #. type: =item
26409 #: ../test-tool/libguestfs-test-tool.pod:97
26410 msgid "/usr/bin/mkisofs"
26411 msgstr ""
26412
26413 #. type: textblock
26414 #: ../test-tool/libguestfs-test-tool.pod:99
26415 msgid ""
26416 "The C<mkisofs> command is required in order to construct a CD-ROM ISO file "
26417 "which is used as part of the tests."
26418 msgstr ""
26419
26420 #. type: textblock
26421 #: ../test-tool/libguestfs-test-tool.pod:106
26422 msgid ""
26423 "For the full list of environment variables which may affect libguestfs, "
26424 "please see the L<guestfs(3)> manual page."
26425 msgstr ""
26426
26427 #. type: textblock
26428 #: ../test-tool/libguestfs-test-tool.pod:111
26429 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
26430 msgstr ""
26431
26432 #. type: textblock
26433 #: ../test-tool/libguestfs-test-tool.pod:121
26434 msgid "Copyright (C) 2009 Red Hat Inc.  L<http://libguestfs.org/>"
26435 msgstr ""
26436
26437 #. type: textblock
26438 #: ../fuse/guestmount.pod:5
26439 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
26440 msgstr ""
26441
26442 #. type: verbatim
26443 #: ../fuse/guestmount.pod:9
26444 #, no-wrap
26445 msgid ""
26446 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
26447 "\n"
26448 msgstr ""
26449
26450 #. type: verbatim
26451 #: ../fuse/guestmount.pod:11
26452 #, no-wrap
26453 msgid ""
26454 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
26455 "\n"
26456 msgstr ""
26457
26458 #. type: verbatim
26459 #: ../fuse/guestmount.pod:13
26460 #, no-wrap
26461 msgid ""
26462 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
26463 "\n"
26464 msgstr ""
26465
26466 #. type: textblock
26467 #: ../fuse/guestmount.pod:17
26468 msgid ""
26469 "You must I<not> use C<guestmount> in read-write mode on live virtual "
26470 "machines.  If you do this, you risk disk corruption in the VM."
26471 msgstr ""
26472
26473 #. type: textblock
26474 #: ../fuse/guestmount.pod:22
26475 msgid ""
26476 "The guestmount program can be used to mount virtual machine filesystems and "
26477 "other disk images on the host.  It uses libguestfs for access to the guest "
26478 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
26479 "a mountable device."
26480 msgstr ""
26481
26482 #. type: textblock
26483 #: ../fuse/guestmount.pod:27
26484 msgid ""
26485 "Along with other options, you have to give at least one device (I<-a> "
26486 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
26487 "option) or use the I<-i> inspection option.  How this works is better "
26488 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
26489 "below."
26490 msgstr ""
26491
26492 #. type: textblock
26493 #: ../fuse/guestmount.pod:33
26494 msgid ""
26495 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
26496 "by you, and the filesystem will not be visible to any other users unless you "
26497 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
26498 "the filesystem, use the C<fusermount -u> command."
26499 msgstr ""
26500
26501 #. type: textblock
26502 #: ../fuse/guestmount.pod:41
26503 msgid ""
26504 "For a typical Windows guest which has its main filesystem on the first "
26505 "partition:"
26506 msgstr ""
26507
26508 #. type: verbatim
26509 #: ../fuse/guestmount.pod:44
26510 #, no-wrap
26511 msgid ""
26512 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
26513 "\n"
26514 msgstr ""
26515
26516 #. type: textblock
26517 #: ../fuse/guestmount.pod:46
26518 msgid ""
26519 "For a typical Linux guest which has a /boot filesystem on the first "
26520 "partition, and the root filesystem on a logical volume:"
26521 msgstr ""
26522
26523 #. type: verbatim
26524 #: ../fuse/guestmount.pod:49
26525 #, no-wrap
26526 msgid ""
26527 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
26528 "\n"
26529 msgstr ""
26530
26531 #. type: textblock
26532 #: ../fuse/guestmount.pod:51
26533 msgid "To get libguestfs to detect guest mountpoints for you:"
26534 msgstr ""
26535
26536 #. type: verbatim
26537 #: ../fuse/guestmount.pod:53
26538 #, no-wrap
26539 msgid ""
26540 " guestmount -a guest.img -i --ro /mnt\n"
26541 "\n"
26542 msgstr ""
26543
26544 #. type: textblock
26545 #: ../fuse/guestmount.pod:55
26546 msgid "For a libvirt guest called \"Guest\" you could do:"
26547 msgstr ""
26548
26549 #. type: verbatim
26550 #: ../fuse/guestmount.pod:57
26551 #, no-wrap
26552 msgid ""
26553 " guestmount -d Guest -i --ro /mnt\n"
26554 "\n"
26555 msgstr ""
26556
26557 #. type: textblock
26558 #: ../fuse/guestmount.pod:59
26559 msgid ""
26560 "If you don't know what filesystems are contained in a guest or disk image, "
26561 "use L<virt-filesystems(1)> first:"
26562 msgstr ""
26563
26564 #. type: verbatim
26565 #: ../fuse/guestmount.pod:62
26566 #, no-wrap
26567 msgid ""
26568 " virt-filesystems MyGuest\n"
26569 "\n"
26570 msgstr ""
26571
26572 #. type: textblock
26573 #: ../fuse/guestmount.pod:64
26574 msgid ""
26575 "If you want to trace the libguestfs calls but without excessive debugging "
26576 "information, we recommend:"
26577 msgstr ""
26578
26579 #. type: verbatim
26580 #: ../fuse/guestmount.pod:67
26581 #, no-wrap
26582 msgid ""
26583 " guestmount [...] --trace /mnt\n"
26584 "\n"
26585 msgstr ""
26586
26587 #. type: textblock
26588 #: ../fuse/guestmount.pod:69
26589 msgid "If you want to debug the program, we recommend:"
26590 msgstr ""
26591
26592 #. type: verbatim
26593 #: ../fuse/guestmount.pod:71
26594 #, no-wrap
26595 msgid ""
26596 " guestmount [...] --trace --verbose /mnt\n"
26597 "\n"
26598 msgstr ""
26599
26600 #. type: =item
26601 #: ../fuse/guestmount.pod:77
26602 msgid "B<-a image> | B<--add image>"
26603 msgstr ""
26604
26605 #. type: textblock
26606 #: ../fuse/guestmount.pod:79
26607 msgid "Add a block device or virtual machine image."
26608 msgstr ""
26609
26610 #. type: =item
26611 #: ../fuse/guestmount.pod:84
26612 msgid "B<-c URI> | B<--connect URI>"
26613 msgstr ""
26614
26615 #. type: =item
26616 #: ../fuse/guestmount.pod:90
26617 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
26618 msgstr ""
26619
26620 #. type: =item
26621 #: ../fuse/guestmount.pod:96
26622 msgid "B<--dir-cache-timeout N>"
26623 msgstr ""
26624
26625 #. type: textblock
26626 #: ../fuse/guestmount.pod:98
26627 msgid ""
26628 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
26629 "seconds.  The readdir cache [actually, there are several semi-independent "
26630 "caches] is populated after a readdir(2) call with the stat and extended "
26631 "attributes of the files in the directory, in anticipation that they will be "
26632 "requested soon after."
26633 msgstr ""
26634
26635 #. type: textblock
26636 #: ../fuse/guestmount.pod:104
26637 msgid ""
26638 "There is also a different attribute cache implemented by FUSE (see the FUSE "
26639 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
26640 "requests, only cache existing ones."
26641 msgstr ""
26642
26643 #. type: =item
26644 #: ../fuse/guestmount.pod:115
26645 msgid "B<--format=raw|qcow2|..> | B<--format>"
26646 msgstr ""
26647
26648 #. type: textblock
26649 #: ../fuse/guestmount.pod:122
26650 msgid ""
26651 "If you have untrusted raw-format guest disk images, you should use this "
26652 "option to specify the disk format.  This avoids a possible security problem "
26653 "with malicious guests (CVE-2010-3851).  See also "
26654 "L<guestfs(3)/guestfs_add_drive_opts>."
26655 msgstr ""
26656
26657 #. type: =item
26658 #: ../fuse/guestmount.pod:127
26659 msgid "B<--fuse-help>"
26660 msgstr ""
26661
26662 #. type: textblock
26663 #: ../fuse/guestmount.pod:129
26664 msgid "Display help on special FUSE options (see I<-o> below)."
26665 msgstr ""
26666
26667 #. type: textblock
26668 #: ../fuse/guestmount.pod:133
26669 msgid "Display brief help and exit."
26670 msgstr ""
26671
26672 #. type: =item
26673 #: ../fuse/guestmount.pod:135
26674 msgid "B<-i> | B<--inspector>"
26675 msgstr ""
26676
26677 #. type: =item
26678 #: ../fuse/guestmount.pod:146
26679 msgid "B<-m dev[:mnt]> | B<--mount dev[:mnt]>"
26680 msgstr ""
26681
26682 #. type: textblock
26683 #: ../fuse/guestmount.pod:148
26684 msgid ""
26685 "Mount the named partition or logical volume on the given mountpoint B<in the "
26686 "guest> (this has nothing to do with mountpoints in the host)."
26687 msgstr ""
26688
26689 #. type: textblock
26690 #: ../fuse/guestmount.pod:151
26691 msgid ""
26692 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
26693 "something on C</>."
26694 msgstr ""
26695
26696 #. type: =item
26697 #: ../fuse/guestmount.pod:154
26698 msgid "B<-n> | B<--no-sync>"
26699 msgstr ""
26700
26701 #. type: textblock
26702 #: ../fuse/guestmount.pod:156
26703 msgid ""
26704 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
26705 "unmounted.  If you specify this option, then we don't attempt to sync the "
26706 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
26707 msgstr ""
26708
26709 #. type: =item
26710 #: ../fuse/guestmount.pod:161
26711 msgid "B<-o option> | B<--option option>"
26712 msgstr ""
26713
26714 #. type: textblock
26715 #: ../fuse/guestmount.pod:163
26716 msgid "Pass extra options to FUSE."
26717 msgstr ""
26718
26719 #. type: textblock
26720 #: ../fuse/guestmount.pod:165
26721 msgid ""
26722 "To get a list of all the extra options supported by FUSE, use the command "
26723 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
26724 "of them are a good idea."
26725 msgstr ""
26726
26727 #. type: verbatim
26728 #: ../fuse/guestmount.pod:169
26729 #, no-wrap
26730 msgid ""
26731 " guestmount --fuse-help\n"
26732 "\n"
26733 msgstr ""
26734
26735 #. type: textblock
26736 #: ../fuse/guestmount.pod:171
26737 msgid "Some potentially useful FUSE options:"
26738 msgstr ""
26739
26740 #. type: =item
26741 #: ../fuse/guestmount.pod:175
26742 msgid "B<-o allow_other>"
26743 msgstr ""
26744
26745 #. type: textblock
26746 #: ../fuse/guestmount.pod:177
26747 msgid "Allow other users to see the filesystem."
26748 msgstr ""
26749
26750 #. type: =item
26751 #: ../fuse/guestmount.pod:179
26752 msgid "B<-o attr_timeout=N>"
26753 msgstr ""
26754
26755 #. type: textblock
26756 #: ../fuse/guestmount.pod:181
26757 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
26758 msgstr ""
26759
26760 #. type: =item
26761 #: ../fuse/guestmount.pod:183
26762 msgid "B<-o kernel_cache>"
26763 msgstr ""
26764
26765 #. type: textblock
26766 #: ../fuse/guestmount.pod:185
26767 msgid ""
26768 "Allow the kernel to cache files (reduces the number of reads that have to go "
26769 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
26770 "afford the extra memory usage."
26771 msgstr ""
26772
26773 #. type: =item
26774 #: ../fuse/guestmount.pod:189
26775 msgid "B<-o uid=N> B<-o gid=N>"
26776 msgstr ""
26777
26778 #. type: textblock
26779 #: ../fuse/guestmount.pod:191
26780 msgid ""
26781 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
26782 "the chosen values."
26783 msgstr ""
26784
26785 #. type: =item
26786 #: ../fuse/guestmount.pod:196
26787 msgid "B<-r> | B<--ro>"
26788 msgstr ""
26789
26790 #. type: textblock
26791 #: ../fuse/guestmount.pod:198
26792 msgid ""
26793 "Add devices and mount everything read-only.  Also disallow writes and make "
26794 "the disk appear read-only to FUSE."
26795 msgstr ""
26796
26797 #. type: textblock
26798 #: ../fuse/guestmount.pod:201
26799 msgid ""
26800 "This is highly recommended if you are not going to edit the guest disk.  If "
26801 "the guest is running and this option is I<not> supplied, then there is a "
26802 "strong risk of disk corruption in the guest.  We try to prevent this from "
26803 "happening, but it is not always possible."
26804 msgstr ""
26805
26806 #. type: textblock
26807 #: ../fuse/guestmount.pod:206
26808 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
26809 msgstr ""
26810
26811 #. type: textblock
26812 #: ../fuse/guestmount.pod:210
26813 msgid "Enable SELinux support for the guest."
26814 msgstr ""
26815
26816 #. type: =item
26817 #: ../fuse/guestmount.pod:212
26818 msgid "B<-v> | B<--verbose>"
26819 msgstr ""
26820
26821 #. type: textblock
26822 #: ../fuse/guestmount.pod:214
26823 msgid "Enable verbose messages from underlying libguestfs."
26824 msgstr ""
26825
26826 #. type: =item
26827 #: ../fuse/guestmount.pod:216
26828 msgid "B<-V> | B<--version>"
26829 msgstr ""
26830
26831 #. type: textblock
26832 #: ../fuse/guestmount.pod:218
26833 msgid "Display the program version and exit."
26834 msgstr ""
26835
26836 #. type: =item
26837 #: ../fuse/guestmount.pod:220
26838 msgid "B<-w> | B<--rw>"
26839 msgstr ""
26840
26841 #. type: textblock
26842 #: ../fuse/guestmount.pod:222
26843 msgid ""
26844 "This option does nothing at the moment.  See L<guestfish(1)/OPENING DISKS "
26845 "FOR READ AND WRITE>."
26846 msgstr ""
26847
26848 #. type: =item
26849 #: ../fuse/guestmount.pod:225
26850 msgid "B<-x> | B<--trace>"
26851 msgstr ""
26852
26853 #. type: textblock
26854 #: ../fuse/guestmount.pod:227
26855 msgid "Trace libguestfs calls and entry into each FUSE function."
26856 msgstr ""
26857
26858 #. type: textblock
26859 #: ../fuse/guestmount.pod:229
26860 msgid "This also stops the daemon from forking into the background."
26861 msgstr ""
26862
26863 #. type: textblock
26864 #: ../fuse/guestmount.pod:235
26865 msgid ""
26866 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
26867 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
26868 "L<http://fuse.sf.net/>."
26869 msgstr ""
26870
26871 #. type: textblock
26872 #: ../tools/virt-edit.pl:34
26873 msgid "virt-edit - Edit a file in a virtual machine"
26874 msgstr ""
26875
26876 #. type: verbatim
26877 #: ../tools/virt-edit.pl:38
26878 #, no-wrap
26879 msgid ""
26880 " virt-edit [--options] domname file\n"
26881 "\n"
26882 msgstr ""
26883
26884 #. type: verbatim
26885 #: ../tools/virt-edit.pl:40
26886 #, no-wrap
26887 msgid ""
26888 " virt-edit [--options] disk.img [disk.img ...] file\n"
26889 "\n"
26890 msgstr ""
26891
26892 #. type: verbatim
26893 #: ../tools/virt-edit.pl:42
26894 #, no-wrap
26895 msgid ""
26896 " virt-edit [domname|disk.img] file -e 'expr'\n"
26897 "\n"
26898 msgstr ""
26899
26900 #. type: textblock
26901 #: ../tools/virt-edit.pl:46
26902 msgid ""
26903 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
26904 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
26905 "doing this, but doesn't catch all cases."
26906 msgstr ""
26907
26908 #. type: textblock
26909 #: ../tools/virt-edit.pl:52
26910 msgid ""
26911 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
26912 "the named virtual machine (or disk image)."
26913 msgstr ""
26914
26915 #. type: textblock
26916 #: ../tools/virt-edit.pl:55
26917 msgid "If you want to just view a file, use L<virt-cat(1)>."
26918 msgstr ""
26919
26920 #. type: textblock
26921 #: ../tools/virt-edit.pl:57
26922 msgid ""
26923 "For more complex cases you should look at the L<guestfish(1)> tool (see "
26924 "L</USING GUESTFISH> below)."
26925 msgstr ""
26926
26927 #. type: textblock
26928 #: ../tools/virt-edit.pl:60
26929 msgid ""
26930 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
26931 "files.  L<guestfish(1)> can do that and much more."
26932 msgstr ""
26933
26934 #. type: textblock
26935 #: ../tools/virt-edit.pl:65
26936 msgid "Edit the named files interactively:"
26937 msgstr ""
26938
26939 #. type: verbatim
26940 #: ../tools/virt-edit.pl:67
26941 #, no-wrap
26942 msgid ""
26943 " virt-edit mydomain /boot/grub/grub.conf\n"
26944 "\n"
26945 msgstr ""
26946
26947 #. type: verbatim
26948 #: ../tools/virt-edit.pl:69
26949 #, no-wrap
26950 msgid ""
26951 " virt-edit mydomain /etc/passwd\n"
26952 "\n"
26953 msgstr ""
26954
26955 #. type: textblock
26956 #: ../tools/virt-edit.pl:71
26957 msgid ""
26958 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
26959 "below).  To change the init default level to 5:"
26960 msgstr ""
26961
26962 #. type: verbatim
26963 #: ../tools/virt-edit.pl:75
26964 #, no-wrap
26965 msgid ""
26966 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
26967 "\n"
26968 msgstr ""
26969
26970 #. type: textblock
26971 #: ../tools/virt-edit.pl:87 ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:108 ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
26972 msgid "Display brief help."
26973 msgstr ""
26974
26975 #. type: textblock
26976 #: ../tools/virt-edit.pl:95 ../tools/virt-win-reg.pl:114 ../tools/virt-resize.pl:272 ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:116 ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
26977 msgid "Display version number and exit."
26978 msgstr ""
26979
26980 #. type: =item
26981 #: ../tools/virt-edit.pl:101
26982 msgid "B<--backup extension> | B<-b extension>"
26983 msgstr ""
26984
26985 #. type: textblock
26986 #: ../tools/virt-edit.pl:103
26987 msgid ""
26988 "Create a backup of the original file I<in the guest disk image>.  The backup "
26989 "has the original filename with C<extension> added."
26990 msgstr ""
26991
26992 #. type: textblock
26993 #: ../tools/virt-edit.pl:106
26994 msgid ""
26995 "Usually the first character of C<extension> would be a dot C<.> so you would "
26996 "write:"
26997 msgstr ""
26998
26999 #. type: verbatim
27000 #: ../tools/virt-edit.pl:109
27001 #, no-wrap
27002 msgid ""
27003 " virt-edit -b .orig [etc]\n"
27004 "\n"
27005 msgstr ""
27006
27007 #. type: textblock
27008 #: ../tools/virt-edit.pl:111
27009 msgid "By default, no backup file is made."
27010 msgstr ""
27011
27012 #. type: =item
27013 #: ../tools/virt-edit.pl:117 ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:122 ../tools/virt-list-partitions.pl:78
27014 msgid "B<--connect URI> | B<-c URI>"
27015 msgstr ""
27016
27017 #. type: textblock
27018 #: ../tools/virt-edit.pl:119 ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:124 ../tools/virt-list-partitions.pl:80
27019 msgid ""
27020 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
27021 "to the default libvirt hypervisor."
27022 msgstr ""
27023
27024 #. type: textblock
27025 #: ../tools/virt-edit.pl:122 ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:83
27026 msgid ""
27027 "If you specify guest block devices directly, then libvirt is not used at "
27028 "all."
27029 msgstr ""
27030
27031 #. type: =item
27032 #: ../tools/virt-edit.pl:129 ../tools/virt-win-reg.pl:140 ../tools/virt-resize.pl:520 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:134 ../tools/virt-list-partitions.pl:90
27033 msgid "B<--format> raw"
27034 msgstr ""
27035
27036 #. type: textblock
27037 #: ../tools/virt-edit.pl:131 ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:136 ../tools/virt-list-partitions.pl:92
27038 msgid ""
27039 "Specify the format of disk images given on the command line.  If this is "
27040 "omitted then the format is autodetected from the content of the disk image."
27041 msgstr ""
27042
27043 #. type: textblock
27044 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:140 ../tools/virt-list-partitions.pl:96
27045 msgid ""
27046 "If disk images are requested from libvirt, then this program asks libvirt "
27047 "for this information.  In this case, the value of the format parameter is "
27048 "ignored."
27049 msgstr ""
27050
27051 #. type: textblock
27052 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:150 ../tools/virt-resize.pl:525 ../tools/virt-resize.pl:540 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:144 ../tools/virt-list-partitions.pl:100
27053 msgid ""
27054 "If working with untrusted raw-format guest disk images, you should ensure "
27055 "the format is always specified."
27056 msgstr ""
27057
27058 #. type: =item
27059 #: ../tools/virt-edit.pl:146
27060 msgid "B<--expr EXPR> | B<-e EXPR>"
27061 msgstr ""
27062
27063 #. type: textblock
27064 #: ../tools/virt-edit.pl:148
27065 msgid ""
27066 "Instead of launching the external editor, non-interactively apply the Perl "
27067 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
27068 "EDITING> below."
27069 msgstr ""
27070
27071 #. type: textblock
27072 #: ../tools/virt-edit.pl:152
27073 msgid ""
27074 "Be careful to properly quote the expression to prevent it from being altered "
27075 "by the shell."
27076 msgstr ""
27077
27078 #. type: =head1
27079 #: ../tools/virt-edit.pl:272
27080 msgid "NON-INTERACTIVE EDITING"
27081 msgstr ""
27082
27083 #. type: textblock
27084 #: ../tools/virt-edit.pl:274
27085 msgid ""
27086 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
27087 "administrator can interactively edit the file."
27088 msgstr ""
27089
27090 #. type: textblock
27091 #: ../tools/virt-edit.pl:277
27092 msgid ""
27093 "There are two ways also to use C<virt-edit> from scripts in order to make "
27094 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
27095 "like this, it's less error-prone to write scripts directly using the "
27096 "libguestfs API and Augeas for configuration file editing.)"
27097 msgstr ""
27098
27099 #. type: textblock
27100 #: ../tools/virt-edit.pl:283
27101 msgid ""
27102 "The first method is to temporarily set C<$EDITOR> to any script or program "
27103 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
27104 "update C<tmpfile> in place however it likes."
27105 msgstr ""
27106
27107 #. type: textblock
27108 #: ../tools/virt-edit.pl:287
27109 msgid ""
27110 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
27111 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
27112 "instances of C<foo> with C<bar> in a file:"
27113 msgstr ""
27114
27115 #. type: verbatim
27116 #: ../tools/virt-edit.pl:291
27117 #, no-wrap
27118 msgid ""
27119 " virt-edit domname filename -e 's/foo/bar/'\n"
27120 "\n"
27121 msgstr ""
27122
27123 #. type: textblock
27124 #: ../tools/virt-edit.pl:293
27125 msgid ""
27126 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
27127 "For example to delete root's password you could do:"
27128 msgstr ""
27129
27130 #. type: verbatim
27131 #: ../tools/virt-edit.pl:296
27132 #, no-wrap
27133 msgid ""
27134 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
27135 "\n"
27136 msgstr ""
27137
27138 #. type: textblock
27139 #: ../tools/virt-edit.pl:298
27140 msgid ""
27141 "What really happens is that the snippet is evaluated as a Perl expression "
27142 "for each line of the file.  The line, including the final C<\\n>, is passed "
27143 "in C<$_> and the expression should update C<$_> or leave it unchanged."
27144 msgstr ""
27145
27146 #. type: textblock
27147 #: ../tools/virt-edit.pl:303
27148 msgid ""
27149 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
27150 "C<apache> user account from the password file you can do:"
27151 msgstr ""
27152
27153 #. type: verbatim
27154 #: ../tools/virt-edit.pl:306
27155 #, no-wrap
27156 msgid ""
27157 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
27158 "\n"
27159 msgstr ""
27160
27161 #. type: textblock
27162 #: ../tools/virt-edit.pl:308
27163 msgid ""
27164 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
27165 "the end of the file is rather difficult this way since there is no concept "
27166 "of \"last line of the file\" - your expression just doesn't get called "
27167 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
27168 "want to do this."
27169 msgstr ""
27170
27171 #. type: textblock
27172 #: ../tools/virt-edit.pl:314
27173 msgid ""
27174 "The variable C<$lineno> contains the current line number.  As is "
27175 "traditional, the first line in the file is number C<1>."
27176 msgstr ""
27177
27178 #. type: textblock
27179 #: ../tools/virt-edit.pl:317
27180 msgid ""
27181 "The return value from the expression is ignored, but the expression may call "
27182 "C<die> in order to abort the whole program, leaving the original file "
27183 "untouched."
27184 msgstr ""
27185
27186 #. type: textblock
27187 #: ../tools/virt-edit.pl:321
27188 msgid ""
27189 "Remember when matching the end of a line that C<$_> may contain the final "
27190 "C<\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
27191 "newline then neither of these.  Thus to match or substitute some text at the "
27192 "end of a line, use this regular expression:"
27193 msgstr ""
27194
27195 #. type: verbatim
27196 #: ../tools/virt-edit.pl:326
27197 #, no-wrap
27198 msgid ""
27199 " /some text(\\r?\\n)?$/\n"
27200 "\n"
27201 msgstr ""
27202
27203 #. type: textblock
27204 #: ../tools/virt-edit.pl:328
27205 msgid ""
27206 "Alternately, use the perl C<chomp> function, being careful not to chomp "
27207 "C<$_> itself (since that would remove all newlines from the file):"
27208 msgstr ""
27209
27210 #. type: verbatim
27211 #: ../tools/virt-edit.pl:332
27212 #, no-wrap
27213 msgid ""
27214 " my $m = $_; chomp $m; $m =~ /some text$/\n"
27215 "\n"
27216 msgstr ""
27217
27218 #. type: =head1
27219 #: ../tools/virt-edit.pl:334
27220 msgid "USING GUESTFISH"
27221 msgstr ""
27222
27223 #. type: textblock
27224 #: ../tools/virt-edit.pl:336
27225 msgid ""
27226 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
27227 "C<virt-edit> doesn't work."
27228 msgstr ""
27229
27230 #. type: textblock
27231 #: ../tools/virt-edit.pl:339
27232 msgid "Using C<virt-edit> is approximately equivalent to doing:"
27233 msgstr ""
27234
27235 #. type: verbatim
27236 #: ../tools/virt-edit.pl:341
27237 #, no-wrap
27238 msgid ""
27239 " guestfish --rw -i -d domname edit /file\n"
27240 "\n"
27241 msgstr ""
27242
27243 #. type: textblock
27244 #: ../tools/virt-edit.pl:343
27245 msgid ""
27246 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
27247 "path to the file."
27248 msgstr ""
27249
27250 #. type: textblock
27251 #: ../tools/virt-edit.pl:346
27252 msgid ""
27253 "The command above uses libguestfs's guest inspection feature and so does not "
27254 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
27255 "disk images that don't contain guests.  To edit a file on a disk image "
27256 "directly, use:"
27257 msgstr ""
27258
27259 #. type: verbatim
27260 #: ../tools/virt-edit.pl:351
27261 #, no-wrap
27262 msgid ""
27263 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
27264 "\n"
27265 msgstr ""
27266
27267 #. type: textblock
27268 #: ../tools/virt-edit.pl:353
27269 msgid ""
27270 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
27271 "the disk image to edit, and C</file> is the full path to the file."
27272 msgstr ""
27273
27274 #. type: textblock
27275 #: ../tools/virt-edit.pl:357
27276 msgid ""
27277 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
27278 "C<write> or C<upload> instead:"
27279 msgstr ""
27280
27281 #. type: verbatim
27282 #: ../tools/virt-edit.pl:360
27283 #, no-wrap
27284 msgid ""
27285 " guestfish --rw -i -d domname touch /newfile\n"
27286 "\n"
27287 msgstr ""
27288
27289 #. type: verbatim
27290 #: ../tools/virt-edit.pl:362
27291 #, no-wrap
27292 msgid ""
27293 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
27294 "\n"
27295 msgstr ""
27296
27297 #. type: verbatim
27298 #: ../tools/virt-edit.pl:364
27299 #, no-wrap
27300 msgid ""
27301 " guestfish --rw -i -d domname upload localfile /newfile\n"
27302 "\n"
27303 msgstr ""
27304
27305 #. type: textblock
27306 #: ../tools/virt-edit.pl:366
27307 msgid "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
27308 msgstr ""
27309
27310 #. type: verbatim
27311 #: ../tools/virt-edit.pl:369
27312 #, no-wrap
27313 msgid ""
27314 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
27315 "\n"
27316 msgstr ""
27317
27318 #. type: =item
27319 #: ../tools/virt-edit.pl:379
27320 msgid "C<EDITOR>"
27321 msgstr ""
27322
27323 #. type: textblock
27324 #: ../tools/virt-edit.pl:381
27325 msgid ""
27326 "If set, this string is used as the editor.  It may contain arguments, "
27327 "eg. C<\"emacs -nw\">"
27328 msgstr ""
27329
27330 #. type: textblock
27331 #: ../tools/virt-edit.pl:384
27332 msgid "If not set, C<vi> is used."
27333 msgstr ""
27334
27335 #. type: =head1
27336 #: ../tools/virt-edit.pl:388 ../tools/virt-win-reg.pl:559 ../tools/virt-resize.pl:1476 ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:274 ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
27337 msgid "SHELL QUOTING"
27338 msgstr ""
27339
27340 #. type: textblock
27341 #: ../tools/virt-edit.pl:390 ../tools/virt-win-reg.pl:567 ../tools/virt-resize.pl:1478 ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:276 ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
27342 msgid ""
27343 "Libvirt guest names can contain arbitrary characters, some of which have "
27344 "meaning to the shell such as C<#> and space.  You may need to quote or "
27345 "escape these characters on the command line.  See the shell manual page "
27346 "L<sh(1)> for details."
27347 msgstr ""
27348
27349 #. type: textblock
27350 #: ../tools/virt-edit.pl:397
27351 msgid ""
27352 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
27353 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>, "
27354 "L<perl(1)>, L<perlre(1)>."
27355 msgstr ""
27356
27357 #. type: =head1
27358 #: ../tools/virt-edit.pl:407 ../tools/virt-win-reg.pl:598 ../tools/virt-resize.pl:1504 ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:292 ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
27359 msgid "AUTHOR"
27360 msgstr ""
27361
27362 #. type: textblock
27363 #: ../tools/virt-edit.pl:409 ../tools/virt-win-reg.pl:600 ../tools/virt-resize.pl:1506 ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:294 ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
27364 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
27365 msgstr ""
27366
27367 #. type: textblock
27368 #: ../tools/virt-edit.pl:413
27369 msgid "Copyright (C) 2009-2011 Red Hat Inc."
27370 msgstr ""
27371
27372 #. type: textblock
27373 #: ../tools/virt-win-reg.pl:37
27374 msgid ""
27375 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
27376 "guest"
27377 msgstr ""
27378
27379 #. type: verbatim
27380 #: ../tools/virt-win-reg.pl:41
27381 #, no-wrap
27382 msgid ""
27383 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
27384 "\n"
27385 msgstr ""
27386
27387 #. type: verbatim
27388 #: ../tools/virt-win-reg.pl:43
27389 #, no-wrap
27390 msgid ""
27391 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
27392 "\n"
27393 msgstr ""
27394
27395 #. type: verbatim
27396 #: ../tools/virt-win-reg.pl:45
27397 #, no-wrap
27398 msgid ""
27399 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
27400 "\n"
27401 msgstr ""
27402
27403 #. type: verbatim
27404 #: ../tools/virt-win-reg.pl:47
27405 #, no-wrap
27406 msgid ""
27407 " virt-win-reg --merge domname [input.reg ...]\n"
27408 "\n"
27409 msgstr ""
27410
27411 #. type: verbatim
27412 #: ../tools/virt-win-reg.pl:49
27413 #, no-wrap
27414 msgid ""
27415 " virt-win-reg [--options] disk.img ... # instead of domname\n"
27416 "\n"
27417 msgstr ""
27418
27419 #. type: textblock
27420 #: ../tools/virt-win-reg.pl:53
27421 msgid ""
27422 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
27423 "virtual machines.  If you do this, you I<will> get irreversible disk "
27424 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
27425 "but doesn't catch all cases."
27426 msgstr ""
27427
27428 #. type: textblock
27429 #: ../tools/virt-win-reg.pl:58
27430 msgid ""
27431 "Modifying the Windows Registry is an inherently risky operation.  The format "
27432 "is deliberately obscure and undocumented, and Registry changes can leave the "
27433 "system unbootable.  Therefore when using the C<--merge> option, make sure "
27434 "you have a reliable backup first."
27435 msgstr ""
27436
27437 #. type: textblock
27438 #: ../tools/virt-win-reg.pl:65
27439 msgid ""
27440 "This program can export and merge Windows Registry entries from a Windows "
27441 "guest."
27442 msgstr ""
27443
27444 #. type: textblock
27445 #: ../tools/virt-win-reg.pl:68
27446 msgid ""
27447 "The first parameter is the libvirt guest name or the raw disk image of a "
27448 "Windows guest."
27449 msgstr ""
27450
27451 #. type: textblock
27452 #: ../tools/virt-win-reg.pl:71
27453 msgid ""
27454 "If C<--merge> is I<not> specified, then the chosen registry key is "
27455 "displayed/exported (recursively).  For example:"
27456 msgstr ""
27457
27458 #. type: verbatim
27459 #: ../tools/virt-win-reg.pl:74
27460 #, no-wrap
27461 msgid ""
27462 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
27463 "\n"
27464 msgstr ""
27465
27466 #. type: textblock
27467 #: ../tools/virt-win-reg.pl:76
27468 msgid "You can also display single values from within registry keys, for example:"
27469 msgstr ""
27470
27471 #. type: verbatim
27472 #: ../tools/virt-win-reg.pl:79
27473 #, no-wrap
27474 msgid ""
27475 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
27476 " $ virt-win-reg Windows7 $cvkey ProductName\n"
27477 " Windows 7 Enterprise\n"
27478 "\n"
27479 msgstr ""
27480
27481 #. type: textblock
27482 #: ../tools/virt-win-reg.pl:83
27483 msgid ""
27484 "With C<--merge>, you can merge a textual regedit file into the Windows "
27485 "Registry:"
27486 msgstr ""
27487
27488 #. type: verbatim
27489 #: ../tools/virt-win-reg.pl:86
27490 #, no-wrap
27491 msgid ""
27492 " $ virt-win-reg --merge Windows7 changes.reg\n"
27493 "\n"
27494 msgstr ""
27495
27496 #. type: =head2
27497 #: ../tools/virt-win-reg.pl:88
27498 msgid "NOTE"
27499 msgstr ""
27500
27501 #. type: textblock
27502 #: ../tools/virt-win-reg.pl:90
27503 msgid ""
27504 "This program is only meant for simple access to the registry.  If you want "
27505 "to do complicated things with the registry, we suggest you download the "
27506 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
27507 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
27508 "L<hivexregedit(1)>."
27509 msgstr ""
27510
27511 #. type: =item
27512 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
27513 msgid "B<--debug>"
27514 msgstr ""
27515
27516 #. type: textblock
27517 #: ../tools/virt-win-reg.pl:122 ../tools/virt-resize.pl:498
27518 msgid "Enable debugging messages."
27519 msgstr ""
27520
27521 #. type: =item
27522 #: ../tools/virt-win-reg.pl:157
27523 msgid "B<--merge>"
27524 msgstr ""
27525
27526 #. type: textblock
27527 #: ../tools/virt-win-reg.pl:159
27528 msgid ""
27529 "In merge mode, this merges a textual regedit file into the Windows Registry "
27530 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
27531 "displays or exports Registry entries instead."
27532 msgstr ""
27533
27534 #. type: textblock
27535 #: ../tools/virt-win-reg.pl:163
27536 msgid ""
27537 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
27538 "result in disk corruption.  However exporting (without this flag)  is always "
27539 "safe."
27540 msgstr ""
27541
27542 #. type: =item
27543 #: ../tools/virt-win-reg.pl:171
27544 msgid "B<--encoding> UTF-16LE|ASCII"
27545 msgstr ""
27546
27547 #. type: textblock
27548 #: ../tools/virt-win-reg.pl:173
27549 msgid ""
27550 "When merging (only), you may need to specify the encoding for strings to be "
27551 "used in the hive file.  This is explained in detail in "
27552 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
27553 msgstr ""
27554
27555 #. type: textblock
27556 #: ../tools/virt-win-reg.pl:177
27557 msgid ""
27558 "The default is to use UTF-16LE, which should work with recent versions of "
27559 "Windows."
27560 msgstr ""
27561
27562 #. type: =head1
27563 #: ../tools/virt-win-reg.pl:402
27564 msgid "SUPPORTED SYSTEMS"
27565 msgstr ""
27566
27567 #. type: textblock
27568 #: ../tools/virt-win-reg.pl:404
27569 msgid ""
27570 "The program currently supports Windows NT-derived guests starting with "
27571 "Windows XP through to at least Windows 7."
27572 msgstr ""
27573
27574 #. type: textblock
27575 #: ../tools/virt-win-reg.pl:407
27576 msgid ""
27577 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, "
27578 "C<HKEY_LOCAL_MACHINE\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, "
27579 "C<HKEY_LOCAL_MACHINE\\SYSTEM> and C<HKEY_USERS\\.DEFAULT>."
27580 msgstr ""
27581
27582 #. type: textblock
27583 #: ../tools/virt-win-reg.pl:411
27584 msgid ""
27585 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
27586 "C<HKEY_USERS>."
27587 msgstr ""
27588
27589 #. type: textblock
27590 #: ../tools/virt-win-reg.pl:414
27591 msgid ""
27592 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
27593 "time."
27594 msgstr ""
27595
27596 #. type: =head1
27597 #: ../tools/virt-win-reg.pl:417
27598 msgid "ENCODING"
27599 msgstr ""
27600
27601 #. type: textblock
27602 #: ../tools/virt-win-reg.pl:419
27603 msgid ""
27604 "C<virt-win-reg> expects that regedit files have already been reencoded in "
27605 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
27606 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
27607 "with Windows-style line endings, you may need to reencode the whole file "
27608 "before or after processing."
27609 msgstr ""
27610
27611 #. type: textblock
27612 #: ../tools/virt-win-reg.pl:425
27613 msgid ""
27614 "To reencode a file from Windows format to Linux (before processing it with "
27615 "the C<--merge> option), you would do something like this:"
27616 msgstr ""
27617
27618 #. type: verbatim
27619 #: ../tools/virt-win-reg.pl:428
27620 #, no-wrap
27621 msgid ""
27622 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
27623 "\n"
27624 msgstr ""
27625
27626 #. type: textblock
27627 #: ../tools/virt-win-reg.pl:430
27628 msgid ""
27629 "To go in the opposite direction, after exporting and before sending the file "
27630 "to a Windows user, do something like this:"
27631 msgstr ""
27632
27633 #. type: verbatim
27634 #: ../tools/virt-win-reg.pl:433
27635 #, no-wrap
27636 msgid ""
27637 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
27638 "\n"
27639 msgstr ""
27640
27641 #. type: textblock
27642 #: ../tools/virt-win-reg.pl:435
27643 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
27644 msgstr ""
27645
27646 #. type: textblock
27647 #: ../tools/virt-win-reg.pl:437
27648 msgid ""
27649 "If you are unsure about the current encoding, use the L<file(1)> command.  "
27650 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
27651 "Windows-style (CRLF) line endings, like this:"
27652 msgstr ""
27653
27654 #. type: verbatim
27655 #: ../tools/virt-win-reg.pl:441
27656 #, no-wrap
27657 msgid ""
27658 " $ file software.reg\n"
27659 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
27660 " with CRLF line terminators\n"
27661 "\n"
27662 msgstr ""
27663
27664 #. type: textblock
27665 #: ../tools/virt-win-reg.pl:445
27666 msgid "This file would need conversion before you could C<--merge> it."
27667 msgstr ""
27668
27669 #. type: =head1
27670 #: ../tools/virt-win-reg.pl:447
27671 msgid "CurrentControlSet etc."
27672 msgstr ""
27673
27674 #. type: textblock
27675 #: ../tools/virt-win-reg.pl:449
27676 msgid ""
27677 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
27678 "Registry at the level of the hive file, and therefore you cannot modify "
27679 "these."
27680 msgstr ""
27681
27682 #. type: textblock
27683 #: ../tools/virt-win-reg.pl:453
27684 msgid ""
27685 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
27686 "circumstances it might refer to another control set.  The way to find out is "
27687 "to look at the C<HKLM\\SYSTEM\\Select> key:"
27688 msgstr ""
27689
27690 #. type: verbatim
27691 #: ../tools/virt-win-reg.pl:457
27692 #, no-wrap
27693 msgid ""
27694 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
27695 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
27696 " \"Current\"=dword:00000001\n"
27697 " \"Default\"=dword:00000001\n"
27698 " \"Failed\"=dword:00000000\n"
27699 " \"LastKnownGood\"=dword:00000002\n"
27700 "\n"
27701 msgstr ""
27702
27703 #. type: textblock
27704 #: ../tools/virt-win-reg.pl:464
27705 msgid "\"Current\" is the one which Windows will choose when it boots."
27706 msgstr ""
27707
27708 #. type: textblock
27709 #: ../tools/virt-win-reg.pl:466
27710 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
27711 msgstr ""
27712
27713 #. type: =head1
27714 #: ../tools/virt-win-reg.pl:469
27715 msgid "WINDOWS TIPS"
27716 msgstr ""
27717
27718 #. type: textblock
27719 #: ../tools/virt-win-reg.pl:471
27720 msgid ""
27721 "Note that some of these tips modify the guest disk image.  The guest I<must> "
27722 "be shut off, else you will get disk corruption."
27723 msgstr ""
27724
27725 #. type: =head2
27726 #: ../tools/virt-win-reg.pl:474
27727 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
27728 msgstr ""
27729
27730 #. type: textblock
27731 #: ../tools/virt-win-reg.pl:476
27732 msgid ""
27733 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
27734 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
27735 "is uploaded into C<C:\\>:"
27736 msgstr ""
27737
27738 #. type: verbatim
27739 #: ../tools/virt-win-reg.pl:480
27740 #, no-wrap
27741 msgid ""
27742 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
27743 "\n"
27744 msgstr ""
27745
27746 #. type: textblock
27747 #: ../tools/virt-win-reg.pl:482
27748 msgid "Prepare a regedit file containing the registry change:"
27749 msgstr ""
27750
27751 #. type: verbatim
27752 #: ../tools/virt-win-reg.pl:484
27753 #, no-wrap
27754 msgid ""
27755 " cat > test.reg <<'EOF'\n"
27756 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
27757 " \"Test\"=\"c:\\\\test.bat\"\n"
27758 " EOF\n"
27759 "\n"
27760 msgstr ""
27761
27762 #. type: textblock
27763 #: ../tools/virt-win-reg.pl:489
27764 msgid ""
27765 "In this example we use the key C<RunOnce> which means that the script will "
27766 "run precisely once when the first user logs in.  If you want it to run every "
27767 "time a user logs in, replace C<RunOnce> with C<Run>."
27768 msgstr ""
27769
27770 #. type: textblock
27771 #: ../tools/virt-win-reg.pl:493
27772 msgid "Now update the registry:"
27773 msgstr ""
27774
27775 #. type: verbatim
27776 #: ../tools/virt-win-reg.pl:495
27777 #, no-wrap
27778 msgid ""
27779 " virt-win-reg --merge WindowsGuest test.reg\n"
27780 "\n"
27781 msgstr ""
27782
27783 #. type: =head2
27784 #: ../tools/virt-win-reg.pl:497
27785 msgid "INSTALLING A SERVICE"
27786 msgstr ""
27787
27788 #. type: textblock
27789 #: ../tools/virt-win-reg.pl:499
27790 msgid ""
27791 "This section assumes you are familiar with Windows services, and you either "
27792 "have a program which handles the Windows Service Control Protocol directly "
27793 "or you want to run any program using a service wrapper like SrvAny or the "
27794 "free RHSrvAny."
27795 msgstr ""
27796
27797 #. type: textblock
27798 #: ../tools/virt-win-reg.pl:504
27799 msgid ""
27800 "First upload the program and optionally the service wrapper.  In this case "
27801 "the test program is called C<test.exe> and we are using the RHSrvAny "
27802 "wrapper:"
27803 msgstr ""
27804
27805 #. type: verbatim
27806 #: ../tools/virt-win-reg.pl:508
27807 #, no-wrap
27808 msgid ""
27809 " guestfish -i -d WindowsGuest <<EOF\n"
27810 "   upload rhsrvany.exe /rhsrvany.exe\n"
27811 "   upload test.exe /test.exe\n"
27812 " EOF\n"
27813 "\n"
27814 msgstr ""
27815
27816 #. type: textblock
27817 #: ../tools/virt-win-reg.pl:513
27818 msgid ""
27819 "Prepare a regedit file containing the registry changes.  In this example, "
27820 "the first registry change is needed for the service itself or the service "
27821 "wrapper (if used).  The second registry change is only needed because I am "
27822 "using the RHSrvAny service wrapper."
27823 msgstr ""
27824
27825 #. type: verbatim
27826 #: ../tools/virt-win-reg.pl:518
27827 #, no-wrap
27828 msgid ""
27829 " cat > service.reg <<'EOF'\n"
27830 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
27831 " \"Type\"=dword:00000010\n"
27832 " \"Start\"=dword:00000002\n"
27833 " \"ErrorControl\"=dword:00000001\n"
27834 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
27835 " \"DisplayName\"=\"RHSrvAny\"\n"
27836 " \"ObjectName\"=\"NetworkService\"\n"
27837 " \n"
27838 msgstr ""
27839
27840 #. type: verbatim
27841 #: ../tools/virt-win-reg.pl:527
27842 #, no-wrap
27843 msgid ""
27844 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
27845 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
27846 " \"PWD\"=\"c:\\\\Temp\"\n"
27847 " EOF\n"
27848 "\n"
27849 msgstr ""
27850
27851 #. type: textblock
27852 #: ../tools/virt-win-reg.pl:538
27853 msgid ""
27854 "For use of C<ControlSet001> see the section above in this manual page.  You "
27855 "may need to adjust this according to the control set that is in use by the "
27856 "guest."
27857 msgstr ""
27858
27859 #. type: textblock
27860 #: ../tools/virt-win-reg.pl:544
27861 msgid ""
27862 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
27863 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
27864 "privileged account."
27865 msgstr ""
27866
27867 #. type: textblock
27868 #: ../tools/virt-win-reg.pl:550
27869 msgid ""
27870 "For the meaning of the magic numbers, see this Microsoft KB article: "
27871 "L<http://support.microsoft.com/kb/103000>."
27872 msgstr ""
27873
27874 #. type: textblock
27875 #: ../tools/virt-win-reg.pl:555
27876 msgid "Update the registry:"
27877 msgstr ""
27878
27879 #. type: verbatim
27880 #: ../tools/virt-win-reg.pl:557
27881 #, no-wrap
27882 msgid ""
27883 " virt-win-reg --merge WindowsGuest service.reg\n"
27884 "\n"
27885 msgstr ""
27886
27887 #. type: textblock
27888 #: ../tools/virt-win-reg.pl:561
27889 msgid ""
27890 "Be careful when passing parameters containing C<\\> (backslash) in the "
27891 "shell.  Usually you will have to use 'single quotes' or double backslashes "
27892 "(but not both) to protect them from the shell."
27893 msgstr ""
27894
27895 #. type: textblock
27896 #: ../tools/virt-win-reg.pl:565
27897 msgid "Paths and value names are case-insensitive."
27898 msgstr ""
27899
27900 #. type: textblock
27901 #: ../tools/virt-win-reg.pl:574
27902 msgid ""
27903 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
27904 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
27905 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
27906 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
27907 msgstr ""
27908
27909 #. type: textblock
27910 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
27911 msgid ""
27912 "When reporting bugs, please enable debugging and capture the I<complete> "
27913 "output:"
27914 msgstr ""
27915
27916 #. type: verbatim
27917 #: ../tools/virt-win-reg.pl:592
27918 #, no-wrap
27919 msgid ""
27920 " export LIBGUESTFS_DEBUG=1\n"
27921 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
27922 "\n"
27923 msgstr ""
27924
27925 #. type: textblock
27926 #: ../tools/virt-win-reg.pl:595
27927 msgid ""
27928 "Attach /tmp/virt-win-reg.log to a new bug report at "
27929 "L<https://bugzilla.redhat.com/>"
27930 msgstr ""
27931
27932 #. type: textblock
27933 #: ../tools/virt-win-reg.pl:604 ../tools/virt-resize.pl:1510 ../tools/virt-make-fs.pl:570
27934 msgid "Copyright (C) 2010 Red Hat Inc."
27935 msgstr ""
27936
27937 #. type: textblock
27938 #: ../tools/virt-resize.pl:42
27939 msgid "virt-resize - Resize a virtual machine disk"
27940 msgstr ""
27941
27942 #. type: verbatim
27943 #: ../tools/virt-resize.pl:46
27944 #, no-wrap
27945 msgid ""
27946 " virt-resize [--resize /dev/sdaN=[+/-]<size>[%]]\n"
27947 "   [--expand /dev/sdaN] [--shrink /dev/sdaN]\n"
27948 "   [--ignore /dev/sdaN] [--delete /dev/sdaN] [...] indisk outdisk\n"
27949 "\n"
27950 msgstr ""
27951
27952 #. type: textblock
27953 #: ../tools/virt-resize.pl:52
27954 msgid ""
27955 "Virt-resize is a tool which can resize a virtual machine disk, making it "
27956 "larger or smaller overall, and resizing or deleting any partitions contained "
27957 "within."
27958 msgstr ""
27959
27960 #. type: textblock
27961 #: ../tools/virt-resize.pl:56
27962 msgid ""
27963 "Virt-resize B<cannot> resize disk images in-place.  Virt-resize B<should "
27964 "not> be used on live virtual machines - for consistent results, shut the "
27965 "virtual machine down before resizing it."
27966 msgstr ""
27967
27968 #. type: textblock
27969 #: ../tools/virt-resize.pl:60
27970 msgid ""
27971 "If you are not familiar with the associated tools: L<virt-filesystems(1)> "
27972 "and L<virt-df(1)>, we recommend you go and read those manual pages first."
27973 msgstr ""
27974
27975 #. type: textblock
27976 #: ../tools/virt-resize.pl:66
27977 msgid ""
27978 "Copy C<olddisk> to C<newdisk>, extending one of the guest's partitions to "
27979 "fill the extra 5GB of space."
27980 msgstr ""
27981
27982 #. type: verbatim
27983 #: ../tools/virt-resize.pl:69
27984 #, no-wrap
27985 msgid ""
27986 " truncate -r olddisk newdisk; truncate -s +5G newdisk\n"
27987 " virt-filesystems --long -h --all -a olddisk\n"
27988 " # Note \"/dev/sda2\" is a partition inside the \"olddisk\" file.\n"
27989 " virt-resize --expand /dev/sda2 olddisk newdisk\n"
27990 "\n"
27991 msgstr ""
27992
27993 #. type: textblock
27994 #: ../tools/virt-resize.pl:74
27995 msgid ""
27996 "As above, but make the /boot partition 200MB bigger, while giving the "
27997 "remaining space to /dev/sda2:"
27998 msgstr ""
27999
28000 #. type: verbatim
28001 #: ../tools/virt-resize.pl:77
28002 #, no-wrap
28003 msgid ""
28004 " virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 olddisk newdisk\n"
28005 "\n"
28006 msgstr ""
28007
28008 #. type: textblock
28009 #: ../tools/virt-resize.pl:79
28010 msgid "As above, but the output format will be uncompressed qcow2:"
28011 msgstr ""
28012
28013 #. type: verbatim
28014 #: ../tools/virt-resize.pl:81
28015 #, no-wrap
28016 msgid ""
28017 " qemu-img create -f qcow2 newdisk.qcow2 15G\n"
28018 " virt-resize --expand /dev/sda2 olddisk newdisk.qcow2\n"
28019 "\n"
28020 msgstr ""
28021
28022 #. type: =head1
28023 #: ../tools/virt-resize.pl:84
28024 msgid "DETAILED USAGE"
28025 msgstr ""
28026
28027 #. type: =head2
28028 #: ../tools/virt-resize.pl:86
28029 msgid "EXPANDING A VIRTUAL MACHINE DISK"
28030 msgstr ""
28031
28032 #. type: =item
28033 #: ../tools/virt-resize.pl:90
28034 msgid "1. Shut down the virtual machine"
28035 msgstr ""
28036
28037 #. type: =item
28038 #: ../tools/virt-resize.pl:92
28039 msgid "2. Locate input disk image"
28040 msgstr ""
28041
28042 #. type: textblock
28043 #: ../tools/virt-resize.pl:94
28044 msgid ""
28045 "Locate the input disk image (ie. the file or device on the host containing "
28046 "the guest's disk).  If the guest is managed by libvirt, you can use C<virsh "
28047 "dumpxml> like this to find the disk image name:"
28048 msgstr ""
28049
28050 #. type: verbatim
28051 #: ../tools/virt-resize.pl:98
28052 #, no-wrap
28053 msgid ""
28054 " # virsh dumpxml guestname | xpath /domain/devices/disk/source\n"
28055 " Found 1 nodes:\n"
28056 " -- NODE --\n"
28057 " <source dev=\"/dev/vg/lv_guest\" />\n"
28058 "\n"
28059 msgstr ""
28060
28061 #. type: =item
28062 #: ../tools/virt-resize.pl:103
28063 msgid "3. Look at current sizing"
28064 msgstr ""
28065
28066 #. type: textblock
28067 #: ../tools/virt-resize.pl:105
28068 msgid "Use L<virt-filesystems(1)> to display the current partitions and sizes:"
28069 msgstr ""
28070
28071 #. type: verbatim
28072 #: ../tools/virt-resize.pl:108
28073 #, no-wrap
28074 msgid ""
28075 " # virt-filesystems --long --parts --blkdevs -h -a /dev/vg/lv_guest\n"
28076 " Name       Type       Size  Parent\n"
28077 " /dev/sda1  partition  101M  /dev/sda\n"
28078 " /dev/sda2  partition  7.9G  /dev/sda\n"
28079 " /dev/sda   device     8.0G  -\n"
28080 "\n"
28081 msgstr ""
28082
28083 #. type: textblock
28084 #: ../tools/virt-resize.pl:114
28085 msgid ""
28086 "(This example is a virtual machine with an 8 GB disk which we would like to "
28087 "expand up to 10 GB)."
28088 msgstr ""
28089
28090 #. type: =item
28091 #: ../tools/virt-resize.pl:117
28092 msgid "4. Create output disk"
28093 msgstr ""
28094
28095 #. type: textblock
28096 #: ../tools/virt-resize.pl:119
28097 msgid ""
28098 "Virt-resize cannot do in-place disk modifications.  You have to have space "
28099 "to store the resized output disk."
28100 msgstr ""
28101
28102 #. type: textblock
28103 #: ../tools/virt-resize.pl:122
28104 msgid "To store the resized disk image in a file, create a file of a suitable size:"
28105 msgstr ""
28106
28107 #. type: verbatim
28108 #: ../tools/virt-resize.pl:125
28109 #, no-wrap
28110 msgid ""
28111 " # rm -f outdisk\n"
28112 " # truncate -s 10G outdisk\n"
28113 "\n"
28114 msgstr ""
28115
28116 #. type: textblock
28117 #: ../tools/virt-resize.pl:128
28118 msgid "Or use L<lvcreate(1)> to create a logical volume:"
28119 msgstr ""
28120
28121 #. type: verbatim
28122 #: ../tools/virt-resize.pl:130
28123 #, no-wrap
28124 msgid ""
28125 " # lvcreate -L 10G -n lv_name vg_name\n"
28126 "\n"
28127 msgstr ""
28128
28129 #. type: textblock
28130 #: ../tools/virt-resize.pl:132
28131 msgid "Or use L<virsh(1)> vol-create-as to create a libvirt storage volume:"
28132 msgstr ""
28133
28134 #. type: verbatim
28135 #: ../tools/virt-resize.pl:134
28136 #, no-wrap
28137 msgid ""
28138 " # virsh pool-list\n"
28139 " # virsh vol-create-as poolname newvol 10G\n"
28140 "\n"
28141 msgstr ""
28142
28143 #. type: =item
28144 #: ../tools/virt-resize.pl:137
28145 msgid "5. Resize"
28146 msgstr ""
28147
28148 #. type: textblock
28149 #: ../tools/virt-resize.pl:139
28150 msgid ""
28151 "virt-resize takes two mandatory parameters, the input disk (eg. device or "
28152 "file) and the output disk.  The output disk is the one created in the "
28153 "previous step."
28154 msgstr ""
28155
28156 #. type: verbatim
28157 #: ../tools/virt-resize.pl:143
28158 #, no-wrap
28159 msgid ""
28160 " # virt-resize indisk outdisk\n"
28161 "\n"
28162 msgstr ""
28163
28164 #. type: textblock
28165 #: ../tools/virt-resize.pl:145
28166 msgid ""
28167 "This command just copies disk image C<indisk> to disk image C<outdisk> "
28168 "I<without> resizing or changing any existing partitions.  If C<outdisk> is "
28169 "larger, then an extra, empty partition is created at the end of the disk "
28170 "covering the extra space.  If C<outdisk> is smaller, then it will give an "
28171 "error."
28172 msgstr ""
28173
28174 #. type: textblock
28175 #: ../tools/virt-resize.pl:151
28176 msgid ""
28177 "More realistically you'd want to expand existing partitions in the disk "
28178 "image by passing extra options (for the full list see the L</OPTIONS> "
28179 "section below)."
28180 msgstr ""
28181
28182 #. type: textblock
28183 #: ../tools/virt-resize.pl:155
28184 msgid ""
28185 "L</--expand> is the most useful option.  It expands the named partition "
28186 "within the disk to fill any extra space:"
28187 msgstr ""
28188
28189 #. type: verbatim
28190 #: ../tools/virt-resize.pl:158
28191 #, no-wrap
28192 msgid ""
28193 " # virt-resize --expand /dev/sda2 indisk outdisk\n"
28194 "\n"
28195 msgstr ""
28196
28197 #. type: textblock
28198 #: ../tools/virt-resize.pl:160
28199 msgid ""
28200 "(In this case, an extra partition is I<not> created at the end of the disk, "
28201 "because there will be no unused space)."
28202 msgstr ""
28203
28204 #. type: textblock
28205 #: ../tools/virt-resize.pl:163
28206 msgid ""
28207 "L</--resize> is the other commonly used option.  The following would "
28208 "increase the size of /dev/sda1 by 200M, and expand /dev/sda2 to fill the "
28209 "rest of the available space:"
28210 msgstr ""
28211
28212 #. type: verbatim
28213 #: ../tools/virt-resize.pl:167
28214 #, no-wrap
28215 msgid ""
28216 " # virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 \\\n"
28217 "     indisk outdisk\n"
28218 "\n"
28219 msgstr ""
28220
28221 #. type: textblock
28222 #: ../tools/virt-resize.pl:170
28223 msgid ""
28224 "If the expanded partition in the image contains a filesystem or LVM PV, then "
28225 "if virt-resize knows how, it will resize the contents, the equivalent of "
28226 "calling a command such as L<pvresize(8)>, L<resize2fs(8)> or "
28227 "L<ntfsresize(8)>.  However virt-resize does not know how to resize some "
28228 "filesystems, so you would have to online resize them after booting the "
28229 "guest."
28230 msgstr ""
28231
28232 #. type: textblock
28233 #: ../tools/virt-resize.pl:177
28234 msgid "Other options are covered below."
28235 msgstr ""
28236
28237 #. type: =item
28238 #: ../tools/virt-resize.pl:179
28239 msgid "6. Test"
28240 msgstr ""
28241
28242 #. type: textblock
28243 #: ../tools/virt-resize.pl:181
28244 msgid "Thoroughly test the new disk image I<before> discarding the old one."
28245 msgstr ""
28246
28247 #. type: textblock
28248 #: ../tools/virt-resize.pl:183
28249 msgid "If you are using libvirt, edit the XML to point at the new disk:"
28250 msgstr ""
28251
28252 #. type: verbatim
28253 #: ../tools/virt-resize.pl:185
28254 #, no-wrap
28255 msgid ""
28256 " # virsh edit guestname\n"
28257 "\n"
28258 msgstr ""
28259
28260 #. type: textblock
28261 #: ../tools/virt-resize.pl:187
28262 msgid ""
28263 "Change E<lt>source ...E<gt>, see "
28264 "L<http://libvirt.org/formatdomain.html#elementsDisks>"
28265 msgstr ""
28266
28267 #. type: textblock
28268 #: ../tools/virt-resize.pl:190
28269 msgid "Then start up the domain with the new, resized disk:"
28270 msgstr ""
28271
28272 #. type: verbatim
28273 #: ../tools/virt-resize.pl:192
28274 #, no-wrap
28275 msgid ""
28276 " # virsh start guestname\n"
28277 "\n"
28278 msgstr ""
28279
28280 #. type: textblock
28281 #: ../tools/virt-resize.pl:194
28282 msgid ""
28283 "and check that it still works.  See also the L</NOTES> section below for "
28284 "additional information."
28285 msgstr ""
28286
28287 #. type: =item
28288 #: ../tools/virt-resize.pl:197
28289 msgid "7. Resize LVs etc inside the guest"
28290 msgstr ""
28291
28292 #. type: textblock
28293 #: ../tools/virt-resize.pl:199
28294 msgid "(This can also be done offline using L<guestfish(1)>)"
28295 msgstr ""
28296
28297 #. type: textblock
28298 #: ../tools/virt-resize.pl:201
28299 msgid ""
28300 "Once the guest has booted you should see the new space available, at least "
28301 "for filesystems that virt-resize knows how to resize, and for PVs.  The user "
28302 "may need to resize LVs inside PVs, and also resize filesystem types that "
28303 "virt-resize does not know how to expand."
28304 msgstr ""
28305
28306 #. type: =head2
28307 #: ../tools/virt-resize.pl:208
28308 msgid "SHRINKING A VIRTUAL MACHINE DISK"
28309 msgstr ""
28310
28311 #. type: textblock
28312 #: ../tools/virt-resize.pl:210
28313 msgid ""
28314 "Shrinking is somewhat more complex than expanding, and only an overview is "
28315 "given here."
28316 msgstr ""
28317
28318 #. type: textblock
28319 #: ../tools/virt-resize.pl:213
28320 msgid ""
28321 "Firstly virt-resize will not attempt to shrink any partition content (PVs, "
28322 "filesystems).  The user has to shrink content before passing the disk image "
28323 "to virt-resize, and virt-resize will check that the content has been shrunk "
28324 "properly."
28325 msgstr ""
28326
28327 #. type: textblock
28328 #: ../tools/virt-resize.pl:218
28329 msgid "(Shrinking can also be done offline using L<guestfish(1)>)"
28330 msgstr ""
28331
28332 #. type: textblock
28333 #: ../tools/virt-resize.pl:220
28334 msgid ""
28335 "After shrinking PVs and filesystems, shut down the guest, and proceed with "
28336 "steps 3 and 4 above to allocate a new disk image."
28337 msgstr ""
28338
28339 #. type: textblock
28340 #: ../tools/virt-resize.pl:223
28341 msgid "Then run virt-resize with any of the C<--shrink> and/or C<--resize> options."
28342 msgstr ""
28343
28344 #. type: =head2
28345 #: ../tools/virt-resize.pl:226
28346 msgid "IGNORING OR DELETING PARTITIONS"
28347 msgstr ""
28348
28349 #. type: textblock
28350 #: ../tools/virt-resize.pl:228
28351 msgid ""
28352 "virt-resize also gives a convenient way to ignore or delete partitions when "
28353 "copying from the input disk to the output disk.  Ignoring a partition speeds "
28354 "up the copy where you don't care about the existing contents of a "
28355 "partition.  Deleting a partition removes it completely, but note that it "
28356 "also renumbers any partitions after the one which is deleted, which can "
28357 "leave some guests unbootable."
28358 msgstr ""
28359
28360 #. type: =head2
28361 #: ../tools/virt-resize.pl:235
28362 msgid "QCOW2 AND NON-SPARSE RAW FORMATS"
28363 msgstr ""
28364
28365 #. type: textblock
28366 #: ../tools/virt-resize.pl:237
28367 msgid ""
28368 "If the input disk is in qcow2 format, then you may prefer that the output is "
28369 "in qcow2 format as well.  Alternately, virt-resize can convert the format on "
28370 "the fly.  The output format is simply determined by the format of the empty "
28371 "output container that you provide.  Thus to create qcow2 output, use:"
28372 msgstr ""
28373
28374 #. type: verbatim
28375 #: ../tools/virt-resize.pl:243
28376 #, no-wrap
28377 msgid ""
28378 " qemu-img create [-c] -f qcow2 outdisk [size]\n"
28379 "\n"
28380 msgstr ""
28381
28382 #. type: textblock
28383 #: ../tools/virt-resize.pl:245
28384 msgid "instead of the truncate command (use C<-c> for a compressed disk)."
28385 msgstr ""
28386
28387 #. type: textblock
28388 #: ../tools/virt-resize.pl:247
28389 msgid "Similarly, to get non-sparse raw output use:"
28390 msgstr ""
28391
28392 #. type: verbatim
28393 #: ../tools/virt-resize.pl:249
28394 #, no-wrap
28395 msgid ""
28396 " fallocate -l size outdisk\n"
28397 "\n"
28398 msgstr ""
28399
28400 #. type: textblock
28401 #: ../tools/virt-resize.pl:251
28402 msgid ""
28403 "(on older systems that don't have the L<fallocate(1)> command use C<dd "
28404 "if=/dev/zero of=outdisk bs=1M count=..>)"
28405 msgstr ""
28406
28407 #. type: textblock
28408 #: ../tools/virt-resize.pl:264
28409 msgid "Display help."
28410 msgstr ""
28411
28412 #. type: =item
28413 #: ../tools/virt-resize.pl:278
28414 msgid "B<--resize part=size>"
28415 msgstr ""
28416
28417 #. type: textblock
28418 #: ../tools/virt-resize.pl:280
28419 msgid ""
28420 "Resize the named partition (expanding or shrinking it) so that it has the "
28421 "given size."
28422 msgstr ""
28423
28424 #. type: textblock
28425 #: ../tools/virt-resize.pl:283
28426 msgid ""
28427 "C<size> can be expressed as an absolute number followed by b/K/M/G/T/P/E to "
28428 "mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Petabytes or "
28429 "Exabytes; or as a percentage of the current size; or as a relative number or "
28430 "percentage.  For example:"
28431 msgstr ""
28432
28433 #. type: verbatim
28434 #: ../tools/virt-resize.pl:288
28435 #, no-wrap
28436 msgid ""
28437 " --resize /dev/sda2=10G\n"
28438 "\n"
28439 msgstr ""
28440
28441 #. type: verbatim
28442 #: ../tools/virt-resize.pl:290
28443 #, no-wrap
28444 msgid ""
28445 " --resize /dev/sda4=90%\n"
28446 "\n"
28447 msgstr ""
28448
28449 #. type: verbatim
28450 #: ../tools/virt-resize.pl:292
28451 #, no-wrap
28452 msgid ""
28453 " --resize /dev/sda2=+1G\n"
28454 "\n"
28455 msgstr ""
28456
28457 #. type: verbatim
28458 #: ../tools/virt-resize.pl:294
28459 #, no-wrap
28460 msgid ""
28461 " --resize /dev/sda2=-200M\n"
28462 "\n"
28463 msgstr ""
28464
28465 #. type: verbatim
28466 #: ../tools/virt-resize.pl:296
28467 #, no-wrap
28468 msgid ""
28469 " --resize /dev/sda1=+128K\n"
28470 "\n"
28471 msgstr ""
28472
28473 #. type: verbatim
28474 #: ../tools/virt-resize.pl:298
28475 #, no-wrap
28476 msgid ""
28477 " --resize /dev/sda1=+10%\n"
28478 "\n"
28479 msgstr ""
28480
28481 #. type: verbatim
28482 #: ../tools/virt-resize.pl:300
28483 #, no-wrap
28484 msgid ""
28485 " --resize /dev/sda1=-10%\n"
28486 "\n"
28487 msgstr ""
28488
28489 #. type: textblock
28490 #: ../tools/virt-resize.pl:302
28491 msgid ""
28492 "You can increase the size of any partition.  Virt-resize will expand the "
28493 "direct content of the partition if it knows how (see C<--expand> below)."
28494 msgstr ""
28495
28496 #. type: textblock
28497 #: ../tools/virt-resize.pl:306
28498 msgid ""
28499 "You can only I<decrease> the size of partitions that contain filesystems or "
28500 "PVs which have already been shrunk.  Virt-resize will check this has been "
28501 "done before proceeding, or else will print an error (see also "
28502 "C<--resize-force>)."
28503 msgstr ""
28504
28505 #. type: textblock
28506 #: ../tools/virt-resize.pl:311 ../tools/virt-resize.pl:403 ../tools/virt-resize.pl:420
28507 msgid "You can give this option multiple times."
28508 msgstr ""
28509
28510 #. type: =item
28511 #: ../tools/virt-resize.pl:317
28512 msgid "B<--resize-force part=size>"
28513 msgstr ""
28514
28515 #. type: textblock
28516 #: ../tools/virt-resize.pl:319
28517 msgid ""
28518 "This is the same as C<--resize> except that it will let you decrease the "
28519 "size of any partition.  Generally this means you will lose any data which "
28520 "was at the end of the partition you shrink, but you may not care about that "
28521 "(eg. if shrinking an unused partition, or if you can easily recreate it such "
28522 "as a swap partition)."
28523 msgstr ""
28524
28525 #. type: textblock
28526 #: ../tools/virt-resize.pl:325
28527 msgid "See also the C<--ignore> option."
28528 msgstr ""
28529
28530 #. type: =item
28531 #: ../tools/virt-resize.pl:331
28532 msgid "B<--expand part>"
28533 msgstr ""
28534
28535 #. type: textblock
28536 #: ../tools/virt-resize.pl:333
28537 msgid ""
28538 "Expand the named partition so it uses up all extra space (space left over "
28539 "after any other resize changes that you request have been done)."
28540 msgstr ""
28541
28542 #. type: textblock
28543 #: ../tools/virt-resize.pl:336
28544 msgid ""
28545 "If virt-resize knows how, it will expand the direct content of the "
28546 "partition.  For example, if the partition is an LVM PV, it will expand the "
28547 "PV to fit (like calling L<pvresize(8)>).  Virt-resize leaves any other "
28548 "content it doesn't know about alone."
28549 msgstr ""
28550
28551 #. type: textblock
28552 #: ../tools/virt-resize.pl:341
28553 msgid "Currently virt-resize can resize:"
28554 msgstr ""
28555
28556 #. type: textblock
28557 #: ../tools/virt-resize.pl:347
28558 msgid ""
28559 "ext2, ext3 and ext4 filesystems when they are contained directly inside a "
28560 "partition."
28561 msgstr ""
28562
28563 #. type: textblock
28564 #: ../tools/virt-resize.pl:352
28565 msgid ""
28566 "NTFS filesystems contained directly in a partition, if libguestfs was "
28567 "compiled with support for NTFS."
28568 msgstr ""
28569
28570 #. type: textblock
28571 #: ../tools/virt-resize.pl:355
28572 msgid ""
28573 "The filesystem must have been shut down consistently last time it was used.  "
28574 "Additionally, L<ntfsresize(8)> marks the resized filesystem as requiring a "
28575 "consistency check, so at the first boot after resizing Windows will check "
28576 "the disk."
28577 msgstr ""
28578
28579 #. type: textblock
28580 #: ../tools/virt-resize.pl:362
28581 msgid ""
28582 "LVM PVs (physical volumes).  virt-resize does not usually resize anything "
28583 "inside the PV, but see the C<--LV-expand> option.  The user could also "
28584 "resize LVs as desired after boot."
28585 msgstr ""
28586
28587 #. type: textblock
28588 #: ../tools/virt-resize.pl:368 ../tools/virt-resize.pl:390
28589 msgid "Note that you cannot use C<--expand> and C<--shrink> together."
28590 msgstr ""
28591
28592 #. type: =item
28593 #: ../tools/virt-resize.pl:374
28594 msgid "B<--shrink part>"
28595 msgstr ""
28596
28597 #. type: textblock
28598 #: ../tools/virt-resize.pl:376
28599 msgid ""
28600 "Shrink the named partition until the overall disk image fits in the "
28601 "destination.  The named partition B<must> contain a filesystem or PV which "
28602 "has already been shrunk using another tool (eg. L<guestfish(1)> or other "
28603 "online tools).  Virt-resize will check this and give an error if it has not "
28604 "been done."
28605 msgstr ""
28606
28607 #. type: textblock
28608 #: ../tools/virt-resize.pl:382
28609 msgid ""
28610 "The amount by which the overall disk must be shrunk (after carrying out all "
28611 "other operations requested by the user) is called the \"deficit\".  For "
28612 "example, a straight copy (assume no other operations)  from a 5GB disk image "
28613 "to a 4GB disk image results in a 1GB deficit.  In this case, virt-resize "
28614 "would give an error unless the user specified a partition to shrink and that "
28615 "partition had more than a gigabyte of free space."
28616 msgstr ""
28617
28618 #. type: =item
28619 #: ../tools/virt-resize.pl:396
28620 msgid "B<--ignore part>"
28621 msgstr ""
28622
28623 #. type: textblock
28624 #: ../tools/virt-resize.pl:398
28625 msgid ""
28626 "Ignore the named partition.  Effectively this means the partition is "
28627 "allocated on the destination disk, but the content is not copied across from "
28628 "the source disk.  The content of the partition will be blank (all zero "
28629 "bytes)."
28630 msgstr ""
28631
28632 #. type: =item
28633 #: ../tools/virt-resize.pl:409
28634 msgid "B<--delete part>"
28635 msgstr ""
28636
28637 #. type: textblock
28638 #: ../tools/virt-resize.pl:411
28639 msgid ""
28640 "Delete the named partition.  It would be more accurate to describe this as "
28641 "\"don't copy it over\", since virt-resize doesn't do in-place changes and "
28642 "the original disk image is left intact."
28643 msgstr ""
28644
28645 #. type: textblock
28646 #: ../tools/virt-resize.pl:415
28647 msgid ""
28648 "Note that when you delete a partition, then anything contained in the "
28649 "partition is also deleted.  Furthermore, this causes any partitions that "
28650 "come after to be I<renumbered>, which can easily make your guest unbootable."
28651 msgstr ""
28652
28653 #. type: =item
28654 #: ../tools/virt-resize.pl:426
28655 msgid "B<--LV-expand logvol>"
28656 msgstr ""
28657
28658 #. type: textblock
28659 #: ../tools/virt-resize.pl:428
28660 msgid ""
28661 "This takes the logical volume and, as a final step, expands it to fill all "
28662 "the space available in its volume group.  A typical usage, assuming a Linux "
28663 "guest with a single PV C</dev/sda2> and a root device called "
28664 "C</dev/vg_guest/lv_root> would be:"
28665 msgstr ""
28666
28667 #. type: verbatim
28668 #: ../tools/virt-resize.pl:433
28669 #, no-wrap
28670 msgid ""
28671 " virt-resize indisk outdisk \\\n"
28672 "   --expand /dev/sda2 --LV-expand /dev/vg_guest/lv_root\n"
28673 "\n"
28674 msgstr ""
28675
28676 #. type: textblock
28677 #: ../tools/virt-resize.pl:436
28678 msgid ""
28679 "This would first expand the partition (and PV), and then expand the root "
28680 "device to fill the extra space in the PV."
28681 msgstr ""
28682
28683 #. type: textblock
28684 #: ../tools/virt-resize.pl:439
28685 msgid ""
28686 "The contents of the LV are also resized if virt-resize knows how to do "
28687 "that.  You can stop virt-resize from trying to expand the content by using "
28688 "the option C<--no-expand-content>."
28689 msgstr ""
28690
28691 #. type: textblock
28692 #: ../tools/virt-resize.pl:443
28693 msgid "Use L<virt-filesystems(1)> to list the filesystems in the guest."
28694 msgstr ""
28695
28696 #. type: textblock
28697 #: ../tools/virt-resize.pl:446
28698 msgid ""
28699 "You can give this option multiple times, I<but> it doesn't make sense to do "
28700 "this unless the logical volumes you specify are all in different volume "
28701 "groups."
28702 msgstr ""
28703
28704 #. type: =item
28705 #: ../tools/virt-resize.pl:454
28706 msgid "B<--no-copy-boot-loader>"
28707 msgstr ""
28708
28709 #. type: textblock
28710 #: ../tools/virt-resize.pl:456
28711 msgid ""
28712 "By default, virt-resize copies over some sectors at the start of the disk "
28713 "(up to the beginning of the first partition).  Commonly these sectors "
28714 "contain the Master Boot Record (MBR) and the boot loader, and are required "
28715 "in order for the guest to boot correctly."
28716 msgstr ""
28717
28718 #. type: textblock
28719 #: ../tools/virt-resize.pl:461
28720 msgid ""
28721 "If you specify this flag, then this initial copy is not done.  You may need "
28722 "to reinstall the boot loader in this case."
28723 msgstr ""
28724
28725 #. type: =item
28726 #: ../tools/virt-resize.pl:469
28727 msgid "B<--no-extra-partition>"
28728 msgstr ""
28729
28730 #. type: textblock
28731 #: ../tools/virt-resize.pl:471
28732 msgid ""
28733 "By default, virt-resize creates an extra partition if there is any extra, "
28734 "unused space after all resizing has happened.  Use this option to prevent "
28735 "the extra partition from being created.  If you do this then the extra space "
28736 "will be inaccessible until you run fdisk, parted, or some other partitioning "
28737 "tool in the guest."
28738 msgstr ""
28739
28740 #. type: textblock
28741 #: ../tools/virt-resize.pl:477
28742 msgid ""
28743 "Note that if the surplus space is smaller than 10 MB, no extra partition "
28744 "will be created."
28745 msgstr ""
28746
28747 #. type: =item
28748 #: ../tools/virt-resize.pl:484
28749 msgid "B<--no-expand-content>"
28750 msgstr ""
28751
28752 #. type: textblock
28753 #: ../tools/virt-resize.pl:486
28754 msgid ""
28755 "By default, virt-resize will try to expand the direct contents of "
28756 "partitions, if it knows how (see C<--expand> option above)."
28757 msgstr ""
28758
28759 #. type: textblock
28760 #: ../tools/virt-resize.pl:489
28761 msgid ""
28762 "If you give the C<--no-expand-content> option then virt-resize will not "
28763 "attempt this."
28764 msgstr ""
28765
28766 #. type: =item
28767 #: ../tools/virt-resize.pl:496
28768 msgid "B<-d> | B<--debug>"
28769 msgstr ""
28770
28771 #. type: =item
28772 #: ../tools/virt-resize.pl:504
28773 msgid "B<-n> | B<--dryrun>"
28774 msgstr ""
28775
28776 #. type: textblock
28777 #: ../tools/virt-resize.pl:506
28778 msgid "Print a summary of what would be done, but don't do anything."
28779 msgstr ""
28780
28781 #. type: =item
28782 #: ../tools/virt-resize.pl:512
28783 msgid "B<-q> | B<--quiet>"
28784 msgstr ""
28785
28786 #. type: textblock
28787 #: ../tools/virt-resize.pl:514
28788 msgid "Don't print the summary."
28789 msgstr ""
28790
28791 #. type: textblock
28792 #: ../tools/virt-resize.pl:522
28793 msgid ""
28794 "Specify the format of the input disk image.  If this flag is not given then "
28795 "it is auto-detected from the image itself."
28796 msgstr ""
28797
28798 #. type: textblock
28799 #: ../tools/virt-resize.pl:528
28800 msgid ""
28801 "Note that this option I<does not> affect the output format.  See L</QCOW2 "
28802 "AND NON-SPARSE RAW FORMATS>."
28803 msgstr ""
28804
28805 #. type: =item
28806 #: ../tools/virt-resize.pl:535
28807 msgid "B<--output-format> raw"
28808 msgstr ""
28809
28810 #. type: textblock
28811 #: ../tools/virt-resize.pl:537
28812 msgid ""
28813 "Specify the format of the output disk image.  If this flag is not given then "
28814 "it is auto-detected from the image itself."
28815 msgstr ""
28816
28817 #. type: textblock
28818 #: ../tools/virt-resize.pl:543
28819 msgid ""
28820 "Note that you still need to create the output disk with the right format.  "
28821 "See L</QCOW2 AND NON-SPARSE RAW FORMATS>."
28822 msgstr ""
28823
28824 #. type: =head1
28825 #: ../tools/virt-resize.pl:1419
28826 msgid "NOTES"
28827 msgstr ""
28828
28829 #. type: =head2
28830 #: ../tools/virt-resize.pl:1421
28831 msgid "\"Partition 1 does not end on cylinder boundary.\""
28832 msgstr ""
28833
28834 #. type: textblock
28835 #: ../tools/virt-resize.pl:1423
28836 msgid ""
28837 "Virt-resize aligns partitions to multiples of 64 sectors.  Usually this "
28838 "means the partitions will not be aligned to the ancient CHS geometry.  "
28839 "However CHS geometry is meaningless for disks manufactured since the early "
28840 "1990s, and doubly so for virtual hard drives.  Alignment of partitions to "
28841 "cylinders is not required by any modern operating system."
28842 msgstr ""
28843
28844 #. type: =head2
28845 #: ../tools/virt-resize.pl:1430
28846 msgid "RESIZING WINDOWS VIRTUAL MACHINES"
28847 msgstr ""
28848
28849 #. type: textblock
28850 #: ../tools/virt-resize.pl:1432
28851 msgid ""
28852 "In Windows Vista and later versions, Microsoft switched to using a separate "
28853 "boot partition.  In these VMs, typically C</dev/sda1> is the boot partition "
28854 "and C</dev/sda2> is the main (C:) drive.  We have not had any luck resizing "
28855 "the boot partition.  Doing so seems to break the guest completely.  However "
28856 "expanding the second partition (ie. C: drive) should work."
28857 msgstr ""
28858
28859 #. type: textblock
28860 #: ../tools/virt-resize.pl:1439
28861 msgid ""
28862 "Windows may initiate a lengthy \"chkdsk\" on first boot after a resize, if "
28863 "NTFS partitions have been expanded.  This is just a safety check and (unless "
28864 "it find errors) is nothing to worry about."
28865 msgstr ""
28866
28867 #. type: =head2
28868 #: ../tools/virt-resize.pl:1443
28869 msgid "GUEST BOOT STUCK AT \"GRUB\""
28870 msgstr ""
28871
28872 #. type: textblock
28873 #: ../tools/virt-resize.pl:1445
28874 msgid ""
28875 "If a Linux guest does not boot after resizing, and the boot is stuck after "
28876 "printing C<GRUB> on the console, try reinstalling grub.  This sometimes "
28877 "happens on older (RHEL 5-era) guests, for reasons we don't fully understand, "
28878 "although we think is to do with partition alignment."
28879 msgstr ""
28880
28881 #. type: verbatim
28882 #: ../tools/virt-resize.pl:1450
28883 #, no-wrap
28884 msgid ""
28885 " guestfish -i -a newdisk\n"
28886 " ><fs> cat /boot/grub/device.map\n"
28887 " # check the contents of this file are sensible or\n"
28888 " # edit the file if necessary\n"
28889 " ><fs> grub-install / /dev/vda\n"
28890 " ><fs> exit\n"
28891 "\n"
28892 msgstr ""
28893
28894 #. type: textblock
28895 #: ../tools/virt-resize.pl:1457
28896 msgid ""
28897 "For more flexible guest reconfiguration, including if you need to specify "
28898 "other parameters to grub-install, use L<virt-rescue(1)>."
28899 msgstr ""
28900
28901 #. type: =head1
28902 #: ../tools/virt-resize.pl:1460
28903 msgid "ALTERNATIVE TOOLS"
28904 msgstr ""
28905
28906 #. type: textblock
28907 #: ../tools/virt-resize.pl:1462
28908 msgid ""
28909 "There are several proprietary tools for resizing partitions.  We won't "
28910 "mention any here."
28911 msgstr ""
28912
28913 #. type: textblock
28914 #: ../tools/virt-resize.pl:1465
28915 msgid ""
28916 "L<parted(8)> and its graphical shell gparted can do some types of resizing "
28917 "operations on disk images.  They can resize and move partitions, but I don't "
28918 "think they can do anything with the contents, and they certainly don't "
28919 "understand LVM."
28920 msgstr ""
28921
28922 #. type: textblock
28923 #: ../tools/virt-resize.pl:1470
28924 msgid ""
28925 "L<guestfish(1)> can do everything that virt-resize can do and a lot more, "
28926 "but at a much lower level.  You will probably end up hand-calculating sector "
28927 "offsets, which is something that virt-resize was designed to avoid.  If you "
28928 "want to see the guestfish-equivalent commands that virt-resize runs, use the "
28929 "C<--debug> flag."
28930 msgstr ""
28931
28932 #. type: textblock
28933 #: ../tools/virt-resize.pl:1485
28934 msgid ""
28935 "L<virt-filesystems(1)>, L<virt-df(1)>, L<guestfs(3)>, L<guestfish(1)>, "
28936 "L<lvm(8)>, L<pvresize(8)>, L<lvresize(8)>, L<resize2fs(8)>, "
28937 "L<ntfsresize(8)>, L<virsh(1)>, L<parted(8)>, L<truncate(1)>, "
28938 "L<fallocate(1)>, L<grub(8)>, L<grub-install(8)>, L<virt-rescue(1)>, "
28939 "L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
28940 msgstr ""
28941
28942 #. type: textblock
28943 #: ../tools/virt-list-filesystems.pl:32
28944 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
28945 msgstr ""
28946
28947 #. type: verbatim
28948 #: ../tools/virt-list-filesystems.pl:36
28949 #, no-wrap
28950 msgid ""
28951 " virt-list-filesystems [--options] domname\n"
28952 "\n"
28953 msgstr ""
28954
28955 #. type: verbatim
28956 #: ../tools/virt-list-filesystems.pl:38
28957 #, no-wrap
28958 msgid ""
28959 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
28960 "\n"
28961 msgstr ""
28962
28963 #. type: textblock
28964 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
28965 msgid ""
28966 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
28967 "replacement."
28968 msgstr ""
28969
28970 #. type: textblock
28971 #: ../tools/virt-list-filesystems.pl:45
28972 msgid ""
28973 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
28974 "are contained in a virtual machine or disk image."
28975 msgstr ""
28976
28977 #. type: textblock
28978 #: ../tools/virt-list-filesystems.pl:49
28979 msgid ""
28980 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
28981 "functionality.  For more complex cases you should look at the "
28982 "L<guestfish(1)> tool."
28983 msgstr ""
28984
28985 #. type: =item
28986 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
28987 msgid "B<-l> | B<--long>"
28988 msgstr ""
28989
28990 #. type: textblock
28991 #: ../tools/virt-list-filesystems.pl:108
28992 msgid ""
28993 "With this option, C<virt-list-filesystems> displays the type of each "
28994 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
28995 msgstr ""
28996
28997 #. type: =item
28998 #: ../tools/virt-list-filesystems.pl:115
28999 msgid "B<-a> | B<--all>"
29000 msgstr ""
29001
29002 #. type: textblock
29003 #: ../tools/virt-list-filesystems.pl:117
29004 msgid ""
29005 "Normally we only show mountable filesystems.  If this option is given then "
29006 "swap devices are shown too."
29007 msgstr ""
29008
29009 #. type: textblock
29010 #: ../tools/virt-list-filesystems.pl:191
29011 msgid ""
29012 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29013 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29014 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29015 msgstr ""
29016
29017 #. type: textblock
29018 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:298
29019 msgid "Copyright (C) 2009 Red Hat Inc."
29020 msgstr ""
29021
29022 #. type: textblock
29023 #: ../tools/virt-tar.pl:33
29024 msgid "virt-tar - Extract or upload files to a virtual machine"
29025 msgstr ""
29026
29027 #. type: verbatim
29028 #: ../tools/virt-tar.pl:37
29029 #, no-wrap
29030 msgid ""
29031 " virt-tar [--options] -x domname directory tarball\n"
29032 "\n"
29033 msgstr ""
29034
29035 #. type: verbatim
29036 #: ../tools/virt-tar.pl:39
29037 #, no-wrap
29038 msgid ""
29039 " virt-tar [--options] -u domname tarball directory\n"
29040 "\n"
29041 msgstr ""
29042
29043 #. type: verbatim
29044 #: ../tools/virt-tar.pl:41
29045 #, no-wrap
29046 msgid ""
29047 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29048 "\n"
29049 msgstr ""
29050
29051 #. type: verbatim
29052 #: ../tools/virt-tar.pl:43
29053 #, no-wrap
29054 msgid ""
29055 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29056 "\n"
29057 msgstr ""
29058
29059 #. type: textblock
29060 #: ../tools/virt-tar.pl:47
29061 msgid "Download C</home> from the VM into a local tarball:"
29062 msgstr ""
29063
29064 #. type: verbatim
29065 #: ../tools/virt-tar.pl:49
29066 #, no-wrap
29067 msgid ""
29068 " virt-tar -x domname /home home.tar\n"
29069 "\n"
29070 msgstr ""
29071
29072 #. type: verbatim
29073 #: ../tools/virt-tar.pl:51
29074 #, no-wrap
29075 msgid ""
29076 " virt-tar -zx domname /home home.tar.gz\n"
29077 "\n"
29078 msgstr ""
29079
29080 #. type: textblock
29081 #: ../tools/virt-tar.pl:53
29082 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29083 msgstr ""
29084
29085 #. type: verbatim
29086 #: ../tools/virt-tar.pl:55
29087 #, no-wrap
29088 msgid ""
29089 " virt-tar -u domname uploadstuff.tar /tmp\n"
29090 "\n"
29091 msgstr ""
29092
29093 #. type: verbatim
29094 #: ../tools/virt-tar.pl:57
29095 #, no-wrap
29096 msgid ""
29097 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29098 "\n"
29099 msgstr ""
29100
29101 #. type: textblock
29102 #: ../tools/virt-tar.pl:61
29103 msgid ""
29104 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
29105 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29106 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29107 msgstr ""
29108
29109 #. type: textblock
29110 #: ../tools/virt-tar.pl:66
29111 msgid ""
29112 "You can use C<-x> (extract) on live virtual machines, but you might get "
29113 "inconsistent results or errors if there is filesystem activity inside the "
29114 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29115 "work, but the only way to guarantee consistent results is if the virtual "
29116 "machine is shut down."
29117 msgstr ""
29118
29119 #. type: textblock
29120 #: ../tools/virt-tar.pl:74
29121 msgid ""
29122 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29123 "parts of a guest filesystem.  There are many possibilities: making backups, "
29124 "uploading data files, snooping on guest activity, fixing or customizing "
29125 "guests, etc."
29126 msgstr ""
29127
29128 #. type: textblock
29129 #: ../tools/virt-tar.pl:79
29130 msgid ""
29131 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29132 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29133 "should look at the L<guestfish(1)> tool."
29134 msgstr ""
29135
29136 #. type: textblock
29137 #: ../tools/virt-tar.pl:83
29138 msgid ""
29139 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
29140 "its contents (recursively) from the virtual machine into a local tarball.  "
29141 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
29142 "virtual machine.  You cannot use these two options together."
29143 msgstr ""
29144
29145 #. type: textblock
29146 #: ../tools/virt-tar.pl:89
29147 msgid ""
29148 "In addition, you may need to use the C<-z> (gZip) option to enable "
29149 "compression.  When uploading, you have to specify C<-z> if the upload file "
29150 "is compressed because virt-tar won't detect this on its own."
29151 msgstr ""
29152
29153 #. type: textblock
29154 #: ../tools/virt-tar.pl:93
29155 msgid ""
29156 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29157 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29158 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29159 "the L<libguestfs(3)> API)."
29160 msgstr ""
29161
29162 #. type: =item
29163 #: ../tools/virt-tar.pl:151
29164 msgid "B<-x> | B<--extract> | B<--download>"
29165 msgstr ""
29166
29167 #. type: =item
29168 #: ../tools/virt-tar.pl:153
29169 msgid "B<-u> | B<--upload>"
29170 msgstr ""
29171
29172 #. type: textblock
29173 #: ../tools/virt-tar.pl:155
29174 msgid ""
29175 "Use C<-x> to extract (download) a directory from a virtual machine to a "
29176 "local tarball."
29177 msgstr ""
29178
29179 #. type: textblock
29180 #: ../tools/virt-tar.pl:158
29181 msgid ""
29182 "Use C<-u> to upload and unpack from a local tarball into a virtual machine.  "
29183 "Please read the L</WARNING> section above before using this option."
29184 msgstr ""
29185
29186 #. type: textblock
29187 #: ../tools/virt-tar.pl:162
29188 msgid "You must specify exactly one of these options."
29189 msgstr ""
29190
29191 #. type: =item
29192 #: ../tools/virt-tar.pl:168
29193 msgid "B<-z> | B<--gzip>"
29194 msgstr ""
29195
29196 #. type: textblock
29197 #: ../tools/virt-tar.pl:170
29198 msgid "Specify that the input or output tarball is gzip-compressed."
29199 msgstr ""
29200
29201 #. type: textblock
29202 #: ../tools/virt-tar.pl:283
29203 msgid ""
29204 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29205 "L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29206 "L<http://libguestfs.org/>."
29207 msgstr ""
29208
29209 #. type: textblock
29210 #: ../tools/virt-make-fs.pl:37
29211 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29212 msgstr ""
29213
29214 #. type: verbatim
29215 #: ../tools/virt-make-fs.pl:41
29216 #, no-wrap
29217 msgid ""
29218 " virt-make-fs [--options] input.tar output.img\n"
29219 "\n"
29220 msgstr ""
29221
29222 #. type: verbatim
29223 #: ../tools/virt-make-fs.pl:43
29224 #, no-wrap
29225 msgid ""
29226 " virt-make-fs [--options] input.tar.gz output.img\n"
29227 "\n"
29228 msgstr ""
29229
29230 #. type: verbatim
29231 #: ../tools/virt-make-fs.pl:45
29232 #, no-wrap
29233 msgid ""
29234 " virt-make-fs [--options] directory output.img\n"
29235 "\n"
29236 msgstr ""
29237
29238 #. type: textblock
29239 #: ../tools/virt-make-fs.pl:49
29240 msgid ""
29241 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29242 "archive or some files in a directory.  It is similar to tools like "
29243 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29244 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29245 "useful if you want to attach these filesystems to existing virtual machines "
29246 "(eg. to import large amounts of read-only data to a VM)."
29247 msgstr ""
29248
29249 #. type: textblock
29250 #: ../tools/virt-make-fs.pl:57
29251 msgid "Basic usage is:"
29252 msgstr ""
29253
29254 #. type: verbatim
29255 #: ../tools/virt-make-fs.pl:59
29256 #, no-wrap
29257 msgid ""
29258 " virt-make-fs input output\n"
29259 "\n"
29260 msgstr ""
29261
29262 #. type: textblock
29263 #: ../tools/virt-make-fs.pl:61
29264 msgid ""
29265 "where C<input> is either a directory containing files that you want to add, "
29266 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29267 "C<output> is a disk image.  The input type is detected automatically.  The "
29268 "output disk image defaults to a raw ext2 image unless you specify extra "
29269 "flags (see L</OPTIONS> below)."
29270 msgstr ""
29271
29272 #. type: =head2
29273 #: ../tools/virt-make-fs.pl:67
29274 msgid "EXTRA SPACE"
29275 msgstr ""
29276
29277 #. type: textblock
29278 #: ../tools/virt-make-fs.pl:69
29279 msgid ""
29280 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29281 "the files that it contains, but might have extra space.  Depending on how "
29282 "you are going to use the output, you might think this extra space is wasted "
29283 "and want to minimize it, or you might want to leave space so that more files "
29284 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29285 "but you can use the C<--size> flag to leave space in the filesystem if you "
29286 "want it."
29287 msgstr ""
29288
29289 #. type: textblock
29290 #: ../tools/virt-make-fs.pl:77
29291 msgid ""
29292 "An alternative way to leave extra space but not make the output image any "
29293 "bigger is to use an alternative disk image format (instead of the default "
29294 "\"raw\" format).  Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
29295 "image format (check your hypervisor supports this before using it).  This "
29296 "allows you to choose a large C<--size> but the extra space won't actually be "
29297 "allocated in the image until you try to store something in it."
29298 msgstr ""
29299
29300 #. type: textblock
29301 #: ../tools/virt-make-fs.pl:85
29302 msgid ""
29303 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29304 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29305 "to build another image from scratch."
29306 msgstr ""
29307
29308 #. type: =head3
29309 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29310 msgid "EXAMPLE"
29311 msgstr ""
29312
29313 #. type: verbatim
29314 #: ../tools/virt-make-fs.pl:91
29315 #, no-wrap
29316 msgid ""
29317 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29318 "\n"
29319 msgstr ""
29320
29321 #. type: =head2
29322 #: ../tools/virt-make-fs.pl:93
29323 msgid "FILESYSTEM TYPE"
29324 msgstr ""
29325
29326 #. type: textblock
29327 #: ../tools/virt-make-fs.pl:95
29328 msgid ""
29329 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29330 "libguestfs supports can be used (but I<not> read-only formats like "
29331 "ISO9660).  Here are some of the more common choices:"
29332 msgstr ""
29333
29334 #. type: =item
29335 #: ../tools/virt-make-fs.pl:101
29336 msgid "I<ext3>"
29337 msgstr ""
29338
29339 #. type: textblock
29340 #: ../tools/virt-make-fs.pl:103
29341 msgid ""
29342 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29343 "you are not going to use the filesystem in a way that requires the journal, "
29344 "then this is just wasted overhead."
29345 msgstr ""
29346
29347 #. type: =item
29348 #: ../tools/virt-make-fs.pl:107
29349 msgid "I<ntfs> or I<vfat>"
29350 msgstr ""
29351
29352 #. type: textblock
29353 #: ../tools/virt-make-fs.pl:109
29354 msgid "Useful if exporting data to a Windows guest."
29355 msgstr ""
29356
29357 #. type: textblock
29358 #: ../tools/virt-make-fs.pl:111
29359 msgid ""
29360 "I<Note for vfat>: The tar archive or local directory must only contain files "
29361 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29362 "program running within libguestfs is unable to change the ownership of "
29363 "non-root files, since vfat itself does not support this."
29364 msgstr ""
29365
29366 #. type: =item
29367 #: ../tools/virt-make-fs.pl:116
29368 msgid "I<minix>"
29369 msgstr ""
29370
29371 #. type: textblock
29372 #: ../tools/virt-make-fs.pl:118
29373 msgid ""
29374 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29375 "total filesystem size."
29376 msgstr ""
29377
29378 #. type: verbatim
29379 #: ../tools/virt-make-fs.pl:125
29380 #, no-wrap
29381 msgid ""
29382 " virt-make-fs --type=minix input minixfs.img\n"
29383 "\n"
29384 msgstr ""
29385
29386 #. type: =head2
29387 #: ../tools/virt-make-fs.pl:127
29388 msgid "TO PARTITION OR NOT TO PARTITION"
29389 msgstr ""
29390
29391 #. type: textblock
29392 #: ../tools/virt-make-fs.pl:129
29393 msgid "Optionally virt-make-fs can add a partition table to the output disk."
29394 msgstr ""
29395
29396 #. type: textblock
29397 #: ../tools/virt-make-fs.pl:131
29398 msgid ""
29399 "Adding a partition can make the disk image more compatible with certain "
29400 "virtualized operating systems which don't expect to see a filesystem "
29401 "directly located on a block device (Linux doesn't care and will happily "
29402 "handle both types)."
29403 msgstr ""
29404
29405 #. type: textblock
29406 #: ../tools/virt-make-fs.pl:136
29407 msgid ""
29408 "On the other hand, if you have a partition table then the output image is no "
29409 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
29410 "directly on a partitioned disk image.  (However libguestfs tools such as "
29411 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
29412 msgstr ""
29413
29414 #. type: textblock
29415 #: ../tools/virt-make-fs.pl:144
29416 msgid "Add an MBR partition:"
29417 msgstr ""
29418
29419 #. type: verbatim
29420 #: ../tools/virt-make-fs.pl:146
29421 #, no-wrap
29422 msgid ""
29423 " virt-make-fs --partition -- input disk.img\n"
29424 "\n"
29425 msgstr ""
29426
29427 #. type: textblock
29428 #: ../tools/virt-make-fs.pl:148
29429 msgid ""
29430 "If the output disk image could be terabyte-sized or larger, it's better to "
29431 "use an EFI/GPT-compatible partition table:"
29432 msgstr ""
29433
29434 #. type: verbatim
29435 #: ../tools/virt-make-fs.pl:151
29436 #, no-wrap
29437 msgid ""
29438 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
29439 "\n"
29440 msgstr ""
29441
29442 #. type: textblock
29443 #: ../tools/virt-make-fs.pl:179
29444 msgid "Enable debugging information."
29445 msgstr ""
29446
29447 #. type: =item
29448 #: ../tools/virt-make-fs.pl:185
29449 msgid "B<--size=E<lt>NE<gt>>"
29450 msgstr ""
29451
29452 #. type: =item
29453 #: ../tools/virt-make-fs.pl:187
29454 msgid "B<--size=+E<lt>NE<gt>>"
29455 msgstr ""
29456
29457 #. type: =item
29458 #: ../tools/virt-make-fs.pl:189
29459 msgid "B<-s E<lt>NE<gt>>"
29460 msgstr ""
29461
29462 #. type: =item
29463 #: ../tools/virt-make-fs.pl:191
29464 msgid "B<-s +E<lt>NE<gt>>"
29465 msgstr ""
29466
29467 #. type: textblock
29468 #: ../tools/virt-make-fs.pl:193
29469 msgid "Use the C<--size> (or C<-s>) option to choose the size of the output image."
29470 msgstr ""
29471
29472 #. type: textblock
29473 #: ../tools/virt-make-fs.pl:196
29474 msgid ""
29475 "If this option is I<not> given, then the output image will be just large "
29476 "enough to contain all the files, with not much wasted space."
29477 msgstr ""
29478
29479 #. type: textblock
29480 #: ../tools/virt-make-fs.pl:199
29481 msgid ""
29482 "To choose a fixed size output disk, specify an absolute number followed by "
29483 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29484 "Petabytes or Exabytes.  This must be large enough to contain all the input "
29485 "files, else you will get an error."
29486 msgstr ""
29487
29488 #. type: textblock
29489 #: ../tools/virt-make-fs.pl:204
29490 msgid ""
29491 "To leave extra space, specify C<+> (plus sign) and a number followed by "
29492 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29493 "Petabytes or Exabytes.  For example: C<--size=+200M> means enough space for "
29494 "the input files, and (approximately) an extra 200 MB free space."
29495 msgstr ""
29496
29497 #. type: textblock
29498 #: ../tools/virt-make-fs.pl:210
29499 msgid ""
29500 "Note that virt-make-fs estimates free space, and therefore will not produce "
29501 "filesystems containing precisely the free space requested.  (It is much more "
29502 "expensive and time-consuming to produce a filesystem which has precisely the "
29503 "desired free space)."
29504 msgstr ""
29505
29506 #. type: =item
29507 #: ../tools/virt-make-fs.pl:219
29508 msgid "B<--format=E<lt>fmtE<gt>>"
29509 msgstr ""
29510
29511 #. type: =item
29512 #: ../tools/virt-make-fs.pl:221
29513 msgid "B<-F E<lt>fmtE<gt>>"
29514 msgstr ""
29515
29516 #. type: textblock
29517 #: ../tools/virt-make-fs.pl:223
29518 msgid "Choose the output disk image format."
29519 msgstr ""
29520
29521 #. type: textblock
29522 #: ../tools/virt-make-fs.pl:225
29523 msgid "The default is C<raw> (raw disk image)."
29524 msgstr ""
29525
29526 #. type: textblock
29527 #: ../tools/virt-make-fs.pl:227
29528 msgid ""
29529 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
29530 "that would really make sense here is C<qcow2>."
29531 msgstr ""
29532
29533 #. type: =item
29534 #: ../tools/virt-make-fs.pl:234
29535 msgid "B<--type=E<lt>fsE<gt>>"
29536 msgstr ""
29537
29538 #. type: =item
29539 #: ../tools/virt-make-fs.pl:236
29540 msgid "B<-t E<lt>fsE<gt>>"
29541 msgstr ""
29542
29543 #. type: textblock
29544 #: ../tools/virt-make-fs.pl:238
29545 msgid "Choose the output filesystem type."
29546 msgstr ""
29547
29548 #. type: textblock
29549 #: ../tools/virt-make-fs.pl:240
29550 msgid "The default is C<ext2>."
29551 msgstr ""
29552
29553 #. type: textblock
29554 #: ../tools/virt-make-fs.pl:242
29555 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
29556 msgstr ""
29557
29558 #. type: =item
29559 #: ../tools/virt-make-fs.pl:249
29560 msgid "B<--partition>"
29561 msgstr ""
29562
29563 #. type: =item
29564 #: ../tools/virt-make-fs.pl:251
29565 msgid "B<--partition=E<lt>parttypeE<gt>>"
29566 msgstr ""
29567
29568 #. type: textblock
29569 #: ../tools/virt-make-fs.pl:253
29570 msgid ""
29571 "If specified, this flag adds an MBR partition table to the output disk "
29572 "image."
29573 msgstr ""
29574
29575 #. type: textblock
29576 #: ../tools/virt-make-fs.pl:256
29577 msgid ""
29578 "You can change the partition table type, eg. C<--partition=gpt> for large "
29579 "disks."
29580 msgstr ""
29581
29582 #. type: textblock
29583 #: ../tools/virt-make-fs.pl:259
29584 msgid ""
29585 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
29586 "might consider the next parameter to be the partition type.  For example:"
29587 msgstr ""
29588
29589 #. type: verbatim
29590 #: ../tools/virt-make-fs.pl:263
29591 #, no-wrap
29592 msgid ""
29593 " virt-make-fs --partition input.tar ...\n"
29594 "\n"
29595 msgstr ""
29596
29597 #. type: textblock
29598 #: ../tools/virt-make-fs.pl:265
29599 msgid ""
29600 "would cause virt-make-fs to think you wanted to use a partition type of "
29601 "C<input.tar> which is completely wrong.  To avoid this, use C<--> (a double "
29602 "dash) between options and the input file argument:"
29603 msgstr ""
29604
29605 #. type: verbatim
29606 #: ../tools/virt-make-fs.pl:269
29607 #, no-wrap
29608 msgid ""
29609 " virt-make-fs --partition -- input.tar ...\n"
29610 "\n"
29611 msgstr ""
29612
29613 #. type: textblock
29614 #: ../tools/virt-make-fs.pl:541
29615 msgid ""
29616 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<mkisofs(1)>, "
29617 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
29618 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29619 msgstr ""
29620
29621 #. type: verbatim
29622 #: ../tools/virt-make-fs.pl:558
29623 #, no-wrap
29624 msgid ""
29625 " export LIBGUESTFS_DEBUG=1\n"
29626 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
29627 "\n"
29628 msgstr ""
29629
29630 #. type: textblock
29631 #: ../tools/virt-make-fs.pl:561
29632 msgid ""
29633 "Attach /tmp/virt-make-fs.log to a new bug report at "
29634 "L<https://bugzilla.redhat.com/>"
29635 msgstr ""
29636
29637 #. type: textblock
29638 #: ../tools/virt-list-partitions.pl:32
29639 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
29640 msgstr ""
29641
29642 #. type: verbatim
29643 #: ../tools/virt-list-partitions.pl:36
29644 #, no-wrap
29645 msgid ""
29646 " virt-list-partitions [--options] domname\n"
29647 "\n"
29648 msgstr ""
29649
29650 #. type: verbatim
29651 #: ../tools/virt-list-partitions.pl:38
29652 #, no-wrap
29653 msgid ""
29654 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
29655 "\n"
29656 msgstr ""
29657
29658 #. type: textblock
29659 #: ../tools/virt-list-partitions.pl:45
29660 msgid ""
29661 "C<virt-list-partitions> is a command line tool to list the partitions that "
29662 "are contained in a virtual machine or disk image.  It is mainly useful as a "
29663 "first step to using L<virt-resize(1)>."
29664 msgstr ""
29665
29666 #. type: textblock
29667 #: ../tools/virt-list-partitions.pl:50
29668 msgid ""
29669 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
29670 "functionality.  For more complex cases you should look at the "
29671 "L<guestfish(1)> tool."
29672 msgstr ""
29673
29674 #. type: =item
29675 #: ../tools/virt-list-partitions.pl:107
29676 msgid "B<-h> | B<--human-readable>"
29677 msgstr ""
29678
29679 #. type: textblock
29680 #: ../tools/virt-list-partitions.pl:109
29681 msgid "Show sizes in human-readable form (eg. \"1G\")."
29682 msgstr ""
29683
29684 #. type: textblock
29685 #: ../tools/virt-list-partitions.pl:117
29686 msgid ""
29687 "With this option, C<virt-list-partitions> displays the type and size of each "
29688 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
29689 msgstr ""
29690
29691 #. type: =item
29692 #: ../tools/virt-list-partitions.pl:124
29693 msgid "B<-t> | B<--total>"
29694 msgstr ""
29695
29696 #. type: textblock
29697 #: ../tools/virt-list-partitions.pl:126
29698 msgid "Display the total size of each block device (as a separate row or rows)."
29699 msgstr ""
29700
29701 #. type: textblock
29702 #: ../tools/virt-list-partitions.pl:259
29703 msgid ""
29704 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
29705 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
29706 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29707 msgstr ""
29708
29709 #. type: textblock
29710 #: ../tools/virt-list-partitions.pl:275
29711 msgid "Copyright (C) 2009-2010 Red Hat Inc."
29712 msgstr ""