059f5283c7825e3d328bbacfc68c5a462a02a5cc
[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.8\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-06-13 14:36+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:2535 ../src/guestfs.pod:2539 ../src/guestfs.pod:2543 ../src/guestfs.pod:2547 ../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 " int 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<contrib>"
4516 msgstr ""
4517
4518 #. type: textblock
4519 #: ../src/guestfs.pod:2346
4520 msgid "Outside contributions, experimental parts."
4521 msgstr ""
4522
4523 #. type: =item
4524 #: ../src/guestfs.pod:2348
4525 msgid "C<daemon>"
4526 msgstr ""
4527
4528 #. type: textblock
4529 #: ../src/guestfs.pod:2350
4530 msgid ""
4531 "The daemon that runs inside the libguestfs appliance and carries out "
4532 "actions."
4533 msgstr ""
4534
4535 #. type: =item
4536 #: ../src/guestfs.pod:2353
4537 msgid "C<df>"
4538 msgstr ""
4539
4540 #. type: textblock
4541 #: ../src/guestfs.pod:2355
4542 msgid "L<virt-df(1)> command and documentation."
4543 msgstr ""
4544
4545 #. type: =item
4546 #: ../src/guestfs.pod:2357
4547 msgid "C<examples>"
4548 msgstr ""
4549
4550 #. type: textblock
4551 #: ../src/guestfs.pod:2359
4552 msgid "C API example code."
4553 msgstr ""
4554
4555 #. type: =item
4556 #: ../src/guestfs.pod:2361
4557 msgid "C<fish>"
4558 msgstr ""
4559
4560 #. type: textblock
4561 #: ../src/guestfs.pod:2363
4562 msgid "L<guestfish(1)>, the command-line shell."
4563 msgstr ""
4564
4565 #. type: =item
4566 #: ../src/guestfs.pod:2365
4567 msgid "C<fuse>"
4568 msgstr ""
4569
4570 #. type: textblock
4571 #: ../src/guestfs.pod:2367
4572 msgid "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
4573 msgstr ""
4574
4575 #. type: =item
4576 #: ../src/guestfs.pod:2369
4577 msgid "C<generator>"
4578 msgstr ""
4579
4580 #. type: textblock
4581 #: ../src/guestfs.pod:2371
4582 msgid ""
4583 "The crucially important generator, used to automatically generate large "
4584 "amounts of boilerplate C code for things like RPC and bindings."
4585 msgstr ""
4586
4587 #. type: =item
4588 #: ../src/guestfs.pod:2374
4589 msgid "C<images>"
4590 msgstr ""
4591
4592 #. type: textblock
4593 #: ../src/guestfs.pod:2376
4594 msgid "Files used by the test suite."
4595 msgstr ""
4596
4597 #. type: textblock
4598 #: ../src/guestfs.pod:2378
4599 msgid "Some \"phony\" guest images which we test against."
4600 msgstr ""
4601
4602 #. type: =item
4603 #: ../src/guestfs.pod:2380
4604 msgid "C<inspector>"
4605 msgstr ""
4606
4607 #. type: textblock
4608 #: ../src/guestfs.pod:2382
4609 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
4610 msgstr ""
4611
4612 #. type: =item
4613 #: ../src/guestfs.pod:2384
4614 msgid "C<m4>"
4615 msgstr ""
4616
4617 #. type: textblock
4618 #: ../src/guestfs.pod:2386
4619 msgid "M4 macros used by autoconf."
4620 msgstr ""
4621
4622 #. type: =item
4623 #: ../src/guestfs.pod:2388
4624 msgid "C<po>"
4625 msgstr ""
4626
4627 #. type: textblock
4628 #: ../src/guestfs.pod:2390
4629 msgid "Translations of simple gettext strings."
4630 msgstr ""
4631
4632 #. type: =item
4633 #: ../src/guestfs.pod:2392
4634 msgid "C<po-docs>"
4635 msgstr ""
4636
4637 #. type: textblock
4638 #: ../src/guestfs.pod:2394
4639 msgid ""
4640 "The build infrastructure and PO files for translations of manpages and POD "
4641 "files.  Eventually this will be combined with the C<po> directory, but that "
4642 "is rather complicated."
4643 msgstr ""
4644
4645 #. type: =item
4646 #: ../src/guestfs.pod:2398
4647 msgid "C<regressions>"
4648 msgstr ""
4649
4650 #. type: textblock
4651 #: ../src/guestfs.pod:2400
4652 msgid "Regression tests."
4653 msgstr ""
4654
4655 #. type: =item
4656 #: ../src/guestfs.pod:2402
4657 msgid "C<rescue>"
4658 msgstr ""
4659
4660 #. type: textblock
4661 #: ../src/guestfs.pod:2404
4662 msgid "L<virt-rescue(1)> command and documentation."
4663 msgstr ""
4664
4665 #. type: =item
4666 #: ../src/guestfs.pod:2406
4667 msgid "C<src>"
4668 msgstr ""
4669
4670 #. type: textblock
4671 #: ../src/guestfs.pod:2408
4672 msgid "Source code to the C library."
4673 msgstr ""
4674
4675 #. type: =item
4676 #: ../src/guestfs.pod:2410
4677 msgid "C<tools>"
4678 msgstr ""
4679
4680 #. type: textblock
4681 #: ../src/guestfs.pod:2412
4682 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
4683 msgstr ""
4684
4685 #. type: =item
4686 #: ../src/guestfs.pod:2414
4687 msgid "C<test-tool>"
4688 msgstr ""
4689
4690 #. type: textblock
4691 #: ../src/guestfs.pod:2416
4692 msgid ""
4693 "Test tool for end users to test if their qemu/kernel combination will work "
4694 "with libguestfs."
4695 msgstr ""
4696
4697 #. type: =item
4698 #: ../src/guestfs.pod:2419
4699 msgid "C<csharp>"
4700 msgstr ""
4701
4702 #. type: =item
4703 #: ../src/guestfs.pod:2421
4704 msgid "C<haskell>"
4705 msgstr ""
4706
4707 #. type: =item
4708 #: ../src/guestfs.pod:2423
4709 msgid "C<java>"
4710 msgstr ""
4711
4712 #. type: =item
4713 #: ../src/guestfs.pod:2425
4714 msgid "C<ocaml>"
4715 msgstr ""
4716
4717 #. type: =item
4718 #: ../src/guestfs.pod:2427
4719 msgid "C<php>"
4720 msgstr ""
4721
4722 #. type: =item
4723 #: ../src/guestfs.pod:2429
4724 msgid "C<perl>"
4725 msgstr ""
4726
4727 #. type: =item
4728 #: ../src/guestfs.pod:2431
4729 msgid "C<python>"
4730 msgstr ""
4731
4732 #. type: =item
4733 #: ../src/guestfs.pod:2433
4734 msgid "C<ruby>"
4735 msgstr ""
4736
4737 #. type: textblock
4738 #: ../src/guestfs.pod:2435
4739 msgid "Language bindings."
4740 msgstr ""
4741
4742 #. type: =head1
4743 #: ../src/guestfs.pod:2439 ../fish/guestfish.pod:965 ../test-tool/libguestfs-test-tool.pod:104 ../tools/virt-edit.pl:375
4744 msgid "ENVIRONMENT VARIABLES"
4745 msgstr ""
4746
4747 #. type: =item
4748 #: ../src/guestfs.pod:2443 ../fish/guestfish.pod:991
4749 msgid "LIBGUESTFS_APPEND"
4750 msgstr ""
4751
4752 #. type: textblock
4753 #: ../src/guestfs.pod:2445 ../fish/guestfish.pod:993
4754 msgid "Pass additional options to the guest kernel."
4755 msgstr ""
4756
4757 #. type: =item
4758 #: ../src/guestfs.pod:2447 ../fish/guestfish.pod:995
4759 msgid "LIBGUESTFS_DEBUG"
4760 msgstr ""
4761
4762 #. type: textblock
4763 #: ../src/guestfs.pod:2449
4764 msgid ""
4765 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
4766 "effect as calling C<guestfs_set_verbose (g, 1)>."
4767 msgstr ""
4768
4769 #. type: =item
4770 #: ../src/guestfs.pod:2452 ../fish/guestfish.pod:1000
4771 msgid "LIBGUESTFS_MEMSIZE"
4772 msgstr ""
4773
4774 #. type: textblock
4775 #: ../src/guestfs.pod:2454 ../fish/guestfish.pod:1002
4776 msgid "Set the memory allocated to the qemu process, in megabytes.  For example:"
4777 msgstr ""
4778
4779 #. type: verbatim
4780 #: ../src/guestfs.pod:2457 ../fish/guestfish.pod:1005
4781 #, no-wrap
4782 msgid ""
4783 " LIBGUESTFS_MEMSIZE=700\n"
4784 "\n"
4785 msgstr ""
4786
4787 #. type: =item
4788 #: ../src/guestfs.pod:2459 ../fish/guestfish.pod:1007
4789 msgid "LIBGUESTFS_PATH"
4790 msgstr ""
4791
4792 #. type: textblock
4793 #: ../src/guestfs.pod:2461
4794 msgid ""
4795 "Set the path that libguestfs uses to search for a supermin appliance.  See "
4796 "the discussion of paths in section L</PATH> above."
4797 msgstr ""
4798
4799 #. type: =item
4800 #: ../src/guestfs.pod:2464 ../fish/guestfish.pod:1012
4801 msgid "LIBGUESTFS_QEMU"
4802 msgstr ""
4803
4804 #. type: textblock
4805 #: ../src/guestfs.pod:2466 ../fish/guestfish.pod:1014
4806 msgid ""
4807 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
4808 "which was found at compile time by the configure script is used."
4809 msgstr ""
4810
4811 #. type: textblock
4812 #: ../src/guestfs.pod:2470
4813 msgid "See also L</QEMU WRAPPERS> above."
4814 msgstr ""
4815
4816 #. type: =item
4817 #: ../src/guestfs.pod:2472 ../fish/guestfish.pod:1018
4818 msgid "LIBGUESTFS_TRACE"
4819 msgstr ""
4820
4821 #. type: textblock
4822 #: ../src/guestfs.pod:2474
4823 msgid ""
4824 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
4825 "effect as calling C<guestfs_set_trace (g, 1)>."
4826 msgstr ""
4827
4828 #. type: =item
4829 #: ../src/guestfs.pod:2477 ../fish/guestfish.pod:1027
4830 msgid "TMPDIR"
4831 msgstr ""
4832
4833 #. type: textblock
4834 #: ../src/guestfs.pod:2479 ../fish/guestfish.pod:1029
4835 msgid "Location of temporary directory, defaults to C</tmp>."
4836 msgstr ""
4837
4838 #. type: textblock
4839 #: ../src/guestfs.pod:2481 ../fish/guestfish.pod:1031
4840 msgid ""
4841 "If libguestfs was compiled to use the supermin appliance then the real "
4842 "appliance is cached in this directory, shared between all handles belonging "
4843 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
4844 "use in case C</tmp> is not large enough."
4845 msgstr ""
4846
4847 #. type: =head1
4848 #: ../src/guestfs.pod:2489 ../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
4849 msgid "SEE ALSO"
4850 msgstr ""
4851
4852 #. type: textblock
4853 #: ../src/guestfs.pod:2491
4854 msgid ""
4855 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, "
4856 "L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, "
4857 "L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)>, "
4858 "L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
4859 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
4860 "L<virt-rescue(1)>, L<virt-tar(1)>, L<virt-win-reg(1)>, L<qemu(1)>, "
4861 "L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
4862 msgstr ""
4863
4864 #. type: textblock
4865 #: ../src/guestfs.pod:2514
4866 msgid ""
4867 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
4868 "L<lvm(8)>, L<disktype(1)>."
4869 msgstr ""
4870
4871 #. type: =head1
4872 #: ../src/guestfs.pod:2521 ../tools/virt-win-reg.pl:587 ../tools/virt-make-fs.pl:553
4873 msgid "BUGS"
4874 msgstr ""
4875
4876 #. type: textblock
4877 #: ../src/guestfs.pod:2523
4878 msgid "To get a list of bugs against libguestfs use this link:"
4879 msgstr ""
4880
4881 #. type: textblock
4882 #: ../src/guestfs.pod:2525
4883 msgid "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
4884 msgstr ""
4885
4886 #. type: textblock
4887 #: ../src/guestfs.pod:2527
4888 msgid "To report a new bug against libguestfs use this link:"
4889 msgstr ""
4890
4891 #. type: textblock
4892 #: ../src/guestfs.pod:2529
4893 msgid "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
4894 msgstr ""
4895
4896 #. type: textblock
4897 #: ../src/guestfs.pod:2531
4898 msgid "When reporting a bug, please check:"
4899 msgstr ""
4900
4901 #. type: textblock
4902 #: ../src/guestfs.pod:2537
4903 msgid "That the bug hasn't been reported already."
4904 msgstr ""
4905
4906 #. type: textblock
4907 #: ../src/guestfs.pod:2541
4908 msgid "That you are testing a recent version."
4909 msgstr ""
4910
4911 #. type: textblock
4912 #: ../src/guestfs.pod:2545
4913 msgid "Describe the bug accurately, and give a way to reproduce it."
4914 msgstr ""
4915
4916 #. type: textblock
4917 #: ../src/guestfs.pod:2549
4918 msgid ""
4919 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
4920 "bug report."
4921 msgstr ""
4922
4923 #. type: =head1
4924 #: ../src/guestfs.pod:2554 ../fish/guestfish.pod:1108 ../test-tool/libguestfs-test-tool.pod:115 ../fuse/guestmount.pod:244
4925 msgid "AUTHORS"
4926 msgstr ""
4927
4928 #. type: textblock
4929 #: ../src/guestfs.pod:2556 ../fish/guestfish.pod:1110 ../test-tool/libguestfs-test-tool.pod:117 ../fuse/guestmount.pod:246
4930 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
4931 msgstr ""
4932
4933 #. type: =head1
4934 #: ../src/guestfs.pod:2558 ../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
4935 msgid "COPYRIGHT"
4936 msgstr ""
4937
4938 #. type: textblock
4939 #: ../src/guestfs.pod:2560 ../fish/guestfish.pod:1114 ../fuse/guestmount.pod:250
4940 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
4941 msgstr ""
4942
4943 #. type: textblock
4944 #: ../src/guestfs.pod:2563
4945 msgid ""
4946 "This library is free software; you can redistribute it and/or modify it "
4947 "under the terms of the GNU Lesser General Public License as published by the "
4948 "Free Software Foundation; either version 2 of the License, or (at your "
4949 "option) any later version."
4950 msgstr ""
4951
4952 #. type: textblock
4953 #: ../src/guestfs.pod:2568
4954 msgid ""
4955 "This library is distributed in the hope that it will be useful, but WITHOUT "
4956 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
4957 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
4958 "for more details."
4959 msgstr ""
4960
4961 #. type: textblock
4962 #: ../src/guestfs.pod:2573
4963 msgid ""
4964 "You should have received a copy of the GNU Lesser General Public License "
4965 "along with this library; if not, write to the Free Software Foundation, "
4966 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
4967 msgstr ""
4968
4969 #. type: =head2
4970 #: ../src/guestfs-actions.pod:1
4971 msgid "guestfs_add_cdrom"
4972 msgstr ""
4973
4974 #. type: verbatim
4975 #: ../src/guestfs-actions.pod:3
4976 #, no-wrap
4977 msgid ""
4978 " int\n"
4979 " guestfs_add_cdrom (guestfs_h *g,\n"
4980 "                    const char *filename);\n"
4981 "\n"
4982 msgstr ""
4983
4984 #. type: textblock
4985 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
4986 msgid "This function adds a virtual CD-ROM disk image to the guest."
4987 msgstr ""
4988
4989 #. type: textblock
4990 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
4991 msgid "This is equivalent to the qemu parameter C<-cdrom filename>."
4992 msgstr ""
4993
4994 #. type: textblock
4995 #: ../src/guestfs-actions.pod:17
4996 msgid ""
4997 "This call checks for the existence of C<filename>.  This stops you from "
4998 "specifying other types of drive which are supported by qemu such as C<nbd:> "
4999 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5000 "instead."
5001 msgstr ""
5002
5003 #. type: textblock
5004 #: ../src/guestfs-actions.pod:24
5005 msgid ""
5006 "If you just want to add an ISO file (often you use this as an efficient way "
5007 "to transfer large files into the guest), then you should probably use "
5008 "C<guestfs_add_drive_ro> instead."
5009 msgstr ""
5010
5011 #. type: textblock
5012 #: ../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:4630 ../src/guestfs-actions.pod:4644 ../src/guestfs-actions.pod:4672 ../src/guestfs-actions.pod:4689 ../src/guestfs-actions.pod:4707 ../src/guestfs-actions.pod:4841 ../src/guestfs-actions.pod:4898 ../src/guestfs-actions.pod:4920 ../src/guestfs-actions.pod:4938 ../src/guestfs-actions.pod:4970 ../src/guestfs-actions.pod:5036 ../src/guestfs-actions.pod:5053 ../src/guestfs-actions.pod:5066 ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:5369 ../src/guestfs-actions.pod:5388 ../src/guestfs-actions.pod:5402 ../src/guestfs-actions.pod:5414 ../src/guestfs-actions.pod:5428 ../src/guestfs-actions.pod:5440 ../src/guestfs-actions.pod:5454 ../src/guestfs-actions.pod:5470 ../src/guestfs-actions.pod:5491 ../src/guestfs-actions.pod:5510 ../src/guestfs-actions.pod:5529 ../src/guestfs-actions.pod:5547 ../src/guestfs-actions.pod:5570 ../src/guestfs-actions.pod:5588 ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:5628 ../src/guestfs-actions.pod:5647 ../src/guestfs-actions.pod:5664 ../src/guestfs-actions.pod:5692 ../src/guestfs-actions.pod:5716 ../src/guestfs-actions.pod:5735 ../src/guestfs-actions.pod:5759 ../src/guestfs-actions.pod:5774 ../src/guestfs-actions.pod:5789 ../src/guestfs-actions.pod:5808 ../src/guestfs-actions.pod:5845 ../src/guestfs-actions.pod:5868 ../src/guestfs-actions.pod:5894 ../src/guestfs-actions.pod:6002 ../src/guestfs-actions.pod:6123 ../src/guestfs-actions.pod:6135 ../src/guestfs-actions.pod:6148 ../src/guestfs-actions.pod:6161 ../src/guestfs-actions.pod:6183 ../src/guestfs-actions.pod:6196 ../src/guestfs-actions.pod:6209 ../src/guestfs-actions.pod:6222 ../src/guestfs-actions.pod:6237 ../src/guestfs-actions.pod:6296 ../src/guestfs-actions.pod:6313 ../src/guestfs-actions.pod:6329 ../src/guestfs-actions.pod:6345 ../src/guestfs-actions.pod:6362 ../src/guestfs-actions.pod:6375 ../src/guestfs-actions.pod:6395 ../src/guestfs-actions.pod:6431 ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6486 ../src/guestfs-actions.pod:6499 ../src/guestfs-actions.pod:6517 ../src/guestfs-actions.pod:6551 ../src/guestfs-actions.pod:6587 ../src/guestfs-actions.pod:6706 ../src/guestfs-actions.pod:6724 ../src/guestfs-actions.pod:6738 ../src/guestfs-actions.pod:6793 ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:6851 ../src/guestfs-actions.pod:6884 ../src/guestfs-actions.pod:6938 ../src/guestfs-actions.pod:6964 ../src/guestfs-actions.pod:7030 ../src/guestfs-actions.pod:7049 ../src/guestfs-actions.pod:7078
5013 msgid "This function returns 0 on success or -1 on error."
5014 msgstr ""
5015
5016 #. type: textblock
5017 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:240 ../src/guestfs-actions.pod:261 ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:151 ../fish/guestfish-actions.pod:165
5018 msgid ""
5019 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
5020 "instead."
5021 msgstr ""
5022
5023 #. type: textblock
5024 #: ../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:6972 ../src/guestfs-actions.pod:7141 ../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:4621 ../fish/guestfish-actions.pod:4718
5025 msgid ""
5026 "Deprecated functions will not be removed from the API, but the fact that "
5027 "they are deprecated indicates that there are problems with correct use of "
5028 "these functions."
5029 msgstr ""
5030
5031 #. type: textblock
5032 #: ../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:5549 ../src/guestfs-actions.pod:5666 ../src/guestfs-actions.pod:5776 ../src/guestfs-actions.pod:6239 ../src/guestfs-actions.pod:6364 ../src/guestfs-actions.pod:6886
5033 msgid "(Added in 0.3)"
5034 msgstr ""
5035
5036 #. type: =head2
5037 #: ../src/guestfs-actions.pod:41
5038 msgid "guestfs_add_domain"
5039 msgstr ""
5040
5041 #. type: verbatim
5042 #: ../src/guestfs-actions.pod:43
5043 #, no-wrap
5044 msgid ""
5045 " int\n"
5046 " guestfs_add_domain (guestfs_h *g,\n"
5047 "                     const char *dom,\n"
5048 "                     ...);\n"
5049 "\n"
5050 msgstr ""
5051
5052 #. type: textblock
5053 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:137 ../src/guestfs-actions.pod:4202
5054 msgid ""
5055 "You may supply a list of optional arguments to this call.  Use zero or more "
5056 "of the following pairs of parameters, and terminate the list with C<-1> on "
5057 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5058 msgstr ""
5059
5060 #. type: verbatim
5061 #: ../src/guestfs-actions.pod:53
5062 #, no-wrap
5063 msgid ""
5064 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5065 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5066 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5067 "\n"
5068 msgstr ""
5069
5070 #. type: textblock
5071 #: ../src/guestfs-actions.pod:57
5072 msgid ""
5073 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5074 "It works by connecting to libvirt, requesting the domain and domain XML from "
5075 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5076 "one."
5077 msgstr ""
5078
5079 #. type: textblock
5080 #: ../src/guestfs-actions.pod:62 ../fish/guestfish-actions.pod:46
5081 msgid ""
5082 "The number of disks added is returned.  This operation is atomic: if an "
5083 "error is returned, then no disks are added."
5084 msgstr ""
5085
5086 #. type: textblock
5087 #: ../src/guestfs-actions.pod:65 ../fish/guestfish-actions.pod:49
5088 msgid ""
5089 "This function does some minimal checks to make sure the libvirt domain is "
5090 "not running (unless C<readonly> is true).  In a future version we will try "
5091 "to acquire the libvirt lock on each disk."
5092 msgstr ""
5093
5094 #. type: textblock
5095 #: ../src/guestfs-actions.pod:69 ../fish/guestfish-actions.pod:53
5096 msgid ""
5097 "Disks must be accessible locally.  This often means that adding disks from a "
5098 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5099 "unless those disks are accessible via the same device path locally too."
5100 msgstr ""
5101
5102 #. type: textblock
5103 #: ../src/guestfs-actions.pod:74 ../fish/guestfish-actions.pod:58
5104 msgid ""
5105 "The optional C<libvirturi> parameter sets the libvirt URI (see "
5106 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
5107 "default libvirt URI (or one set through an environment variable, see the "
5108 "libvirt documentation for full details)."
5109 msgstr ""
5110
5111 #. type: textblock
5112 #: ../src/guestfs-actions.pod:80
5113 msgid ""
5114 "The other optional parameters are passed directly through to "
5115 "C<guestfs_add_drive_opts>."
5116 msgstr ""
5117
5118 #. type: textblock
5119 #: ../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:4744 ../src/guestfs-actions.pod:5150 ../src/guestfs-actions.pod:5176 ../src/guestfs-actions.pod:6472 ../src/guestfs-actions.pod:6897 ../src/guestfs-actions.pod:6910 ../src/guestfs-actions.pod:6923
5120 msgid "On error this function returns -1."
5121 msgstr ""
5122
5123 #. type: textblock
5124 #: ../src/guestfs-actions.pod:85
5125 msgid "(Added in 1.7.4)"
5126 msgstr ""
5127
5128 #. type: =head2
5129 #: ../src/guestfs-actions.pod:87
5130 msgid "guestfs_add_domain_va"
5131 msgstr ""
5132
5133 #. type: verbatim
5134 #: ../src/guestfs-actions.pod:89
5135 #, no-wrap
5136 msgid ""
5137 " int\n"
5138 " guestfs_add_domain_va (guestfs_h *g,\n"
5139 "                        const char *dom,\n"
5140 "                        va_list args);\n"
5141 "\n"
5142 msgstr ""
5143
5144 #. type: textblock
5145 #: ../src/guestfs-actions.pod:94
5146 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5147 msgstr ""
5148
5149 #. type: textblock
5150 #: ../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
5151 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
5152 msgstr ""
5153
5154 #. type: =head2
5155 #: ../src/guestfs-actions.pod:98
5156 msgid "guestfs_add_domain_argv"
5157 msgstr ""
5158
5159 #. type: verbatim
5160 #: ../src/guestfs-actions.pod:100
5161 #, no-wrap
5162 msgid ""
5163 " int\n"
5164 " guestfs_add_domain_argv (guestfs_h *g,\n"
5165 "                          const char *dom,\n"
5166 "                          const struct guestfs_add_domain_argv *optargs);\n"
5167 "\n"
5168 msgstr ""
5169
5170 #. type: textblock
5171 #: ../src/guestfs-actions.pod:105
5172 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
5173 msgstr ""
5174
5175 #. type: =head2
5176 #: ../src/guestfs-actions.pod:109
5177 msgid "guestfs_add_drive"
5178 msgstr ""
5179
5180 #. type: verbatim
5181 #: ../src/guestfs-actions.pod:111
5182 #, no-wrap
5183 msgid ""
5184 " int\n"
5185 " guestfs_add_drive (guestfs_h *g,\n"
5186 "                    const char *filename);\n"
5187 "\n"
5188 msgstr ""
5189
5190 #. type: textblock
5191 #: ../src/guestfs-actions.pod:115
5192 msgid ""
5193 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
5194 "optional parameters, so the disk is added writable, with the format being "
5195 "detected automatically."
5196 msgstr ""
5197
5198 #. type: textblock
5199 #: ../src/guestfs-actions.pod:119
5200 msgid ""
5201 "Automatic detection of the format opens you up to a potential security hole "
5202 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
5203 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
5204 "you should think about replacing calls to this function with calls to "
5205 "C<guestfs_add_drive_opts>, and specifying the format."
5206 msgstr ""
5207
5208 #. type: =head2
5209 #: ../src/guestfs-actions.pod:130
5210 msgid "guestfs_add_drive_opts"
5211 msgstr ""
5212
5213 #. type: verbatim
5214 #: ../src/guestfs-actions.pod:132
5215 #, no-wrap
5216 msgid ""
5217 " int\n"
5218 " guestfs_add_drive_opts (guestfs_h *g,\n"
5219 "                         const char *filename,\n"
5220 "                         ...);\n"
5221 "\n"
5222 msgstr ""
5223
5224 #. type: verbatim
5225 #: ../src/guestfs-actions.pod:142
5226 #, no-wrap
5227 msgid ""
5228 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
5229 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
5230 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
5231 "\n"
5232 msgstr ""
5233
5234 #. type: textblock
5235 #: ../src/guestfs-actions.pod:146 ../fish/guestfish-actions.pod:90
5236 msgid ""
5237 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
5238 "The first time you call this function, the disk appears as C</dev/sda>, the "
5239 "second time as C</dev/sdb>, and so on."
5240 msgstr ""
5241
5242 #. type: textblock
5243 #: ../src/guestfs-actions.pod:151 ../fish/guestfish-actions.pod:95
5244 msgid ""
5245 "You don't necessarily need to be root when using libguestfs.  However you "
5246 "obviously do need sufficient permissions to access the filename for whatever "
5247 "operations you want to perform (ie. read access if you just want to read the "
5248 "image or write access if you want to modify the image)."
5249 msgstr ""
5250
5251 #. type: textblock
5252 #: ../src/guestfs-actions.pod:157 ../fish/guestfish-actions.pod:101
5253 msgid "This call checks that C<filename> exists."
5254 msgstr ""
5255
5256 #. type: textblock
5257 #: ../src/guestfs-actions.pod:159 ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:103 ../fish/guestfish-actions.pod:2828
5258 msgid "The optional arguments are:"
5259 msgstr ""
5260
5261 #. type: =item
5262 #: ../src/guestfs-actions.pod:163 ../fish/guestfish-actions.pod:107
5263 msgid "C<readonly>"
5264 msgstr ""
5265
5266 #. type: textblock
5267 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:109
5268 msgid ""
5269 "If true then the image is treated as read-only.  Writes are still allowed, "
5270 "but they are stored in a temporary snapshot overlay which is discarded at "
5271 "the end.  The disk that you add is not modified."
5272 msgstr ""
5273
5274 #. type: =item
5275 #: ../src/guestfs-actions.pod:169 ../fish/guestfish-actions.pod:113
5276 msgid "C<format>"
5277 msgstr ""
5278
5279 #. type: textblock
5280 #: ../src/guestfs-actions.pod:171
5281 msgid ""
5282 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
5283 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
5284 "Possible formats include C<raw> and C<qcow2>."
5285 msgstr ""
5286
5287 #. type: textblock
5288 #: ../src/guestfs-actions.pod:175 ../fish/guestfish-actions.pod:119
5289 msgid ""
5290 "Automatic detection of the format opens you up to a potential security hole "
5291 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
5292 "RHBZ#642934.  Specifying the format closes this security hole."
5293 msgstr ""
5294
5295 #. type: =item
5296 #: ../src/guestfs-actions.pod:180 ../fish/guestfish-actions.pod:124
5297 msgid "C<iface>"
5298 msgstr ""
5299
5300 #. type: textblock
5301 #: ../src/guestfs-actions.pod:182
5302 msgid ""
5303 "This rarely-used option lets you emulate the behaviour of the deprecated "
5304 "C<guestfs_add_drive_with_if> call (q.v.)"
5305 msgstr ""
5306
5307 #. type: textblock
5308 #: ../src/guestfs-actions.pod:189
5309 msgid "(Added in 1.5.23)"
5310 msgstr ""
5311
5312 #. type: =head2
5313 #: ../src/guestfs-actions.pod:191
5314 msgid "guestfs_add_drive_opts_va"
5315 msgstr ""
5316
5317 #. type: verbatim
5318 #: ../src/guestfs-actions.pod:193
5319 #, no-wrap
5320 msgid ""
5321 " int\n"
5322 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
5323 "                            const char *filename,\n"
5324 "                            va_list args);\n"
5325 "\n"
5326 msgstr ""
5327
5328 #. type: textblock
5329 #: ../src/guestfs-actions.pod:198
5330 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
5331 msgstr ""
5332
5333 #. type: =head2
5334 #: ../src/guestfs-actions.pod:202
5335 msgid "guestfs_add_drive_opts_argv"
5336 msgstr ""
5337
5338 #. type: verbatim
5339 #: ../src/guestfs-actions.pod:204
5340 #, no-wrap
5341 msgid ""
5342 " int\n"
5343 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
5344 "                              const char *filename,\n"
5345 "                              const struct guestfs_add_drive_opts_argv "
5346 "*optargs);\n"
5347 "\n"
5348 msgstr ""
5349
5350 #. type: textblock
5351 #: ../src/guestfs-actions.pod:209
5352 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
5353 msgstr ""
5354
5355 #. type: =head2
5356 #: ../src/guestfs-actions.pod:213
5357 msgid "guestfs_add_drive_ro"
5358 msgstr ""
5359
5360 #. type: verbatim
5361 #: ../src/guestfs-actions.pod:215
5362 #, no-wrap
5363 msgid ""
5364 " int\n"
5365 " guestfs_add_drive_ro (guestfs_h *g,\n"
5366 "                       const char *filename);\n"
5367 "\n"
5368 msgstr ""
5369
5370 #. type: textblock
5371 #: ../src/guestfs-actions.pod:219
5372 msgid ""
5373 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
5374 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
5375 "disk is added read-only, with the format being detected automatically."
5376 msgstr ""
5377
5378 #. type: textblock
5379 #: ../src/guestfs-actions.pod:226
5380 msgid "(Added in 1.0.38)"
5381 msgstr ""
5382
5383 #. type: =head2
5384 #: ../src/guestfs-actions.pod:228
5385 msgid "guestfs_add_drive_ro_with_if"
5386 msgstr ""
5387
5388 #. type: verbatim
5389 #: ../src/guestfs-actions.pod:230
5390 #, no-wrap
5391 msgid ""
5392 " int\n"
5393 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
5394 "                               const char *filename,\n"
5395 "                               const char *iface);\n"
5396 "\n"
5397 msgstr ""
5398
5399 #. type: textblock
5400 #: ../src/guestfs-actions.pod:235
5401 msgid ""
5402 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
5403 "QEMU interface emulation to use at run time."
5404 msgstr ""
5405
5406 #. type: textblock
5407 #: ../src/guestfs-actions.pod:247 ../src/guestfs-actions.pod:268 ../src/guestfs-actions.pod:2330
5408 msgid "(Added in 1.0.84)"
5409 msgstr ""
5410
5411 #. type: =head2
5412 #: ../src/guestfs-actions.pod:249
5413 msgid "guestfs_add_drive_with_if"
5414 msgstr ""
5415
5416 #. type: verbatim
5417 #: ../src/guestfs-actions.pod:251
5418 #, no-wrap
5419 msgid ""
5420 " int\n"
5421 " guestfs_add_drive_with_if (guestfs_h *g,\n"
5422 "                            const char *filename,\n"
5423 "                            const char *iface);\n"
5424 "\n"
5425 msgstr ""
5426
5427 #. type: textblock
5428 #: ../src/guestfs-actions.pod:256
5429 msgid ""
5430 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
5431 "QEMU interface emulation to use at run time."
5432 msgstr ""
5433
5434 #. type: =head2
5435 #: ../src/guestfs-actions.pod:270
5436 msgid "guestfs_aug_clear"
5437 msgstr ""
5438
5439 #. type: verbatim
5440 #: ../src/guestfs-actions.pod:272
5441 #, no-wrap
5442 msgid ""
5443 " int\n"
5444 " guestfs_aug_clear (guestfs_h *g,\n"
5445 "                    const char *augpath);\n"
5446 "\n"
5447 msgstr ""
5448
5449 #. type: textblock
5450 #: ../src/guestfs-actions.pod:276 ../fish/guestfish-actions.pod:176
5451 msgid ""
5452 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
5453 "L<augtool(1)> C<clear> command."
5454 msgstr ""
5455
5456 #. type: textblock
5457 #: ../src/guestfs-actions.pod:281 ../src/guestfs-actions.pod:2080
5458 msgid "(Added in 1.3.4)"
5459 msgstr ""
5460
5461 #. type: =head2
5462 #: ../src/guestfs-actions.pod:283
5463 msgid "guestfs_aug_close"
5464 msgstr ""
5465
5466 #. type: verbatim
5467 #: ../src/guestfs-actions.pod:285
5468 #, no-wrap
5469 msgid ""
5470 " int\n"
5471 " guestfs_aug_close (guestfs_h *g);\n"
5472 "\n"
5473 msgstr ""
5474
5475 #. type: textblock
5476 #: ../src/guestfs-actions.pod:288
5477 msgid ""
5478 "Close the current Augeas handle and free up any resources used by it.  After "
5479 "calling this, you have to call C<guestfs_aug_init> again before you can use "
5480 "any other Augeas functions."
5481 msgstr ""
5482
5483 #. type: textblock
5484 #: ../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:5227
5485 msgid "(Added in 0.7)"
5486 msgstr ""
5487
5488 #. type: =head2
5489 #: ../src/guestfs-actions.pod:297
5490 msgid "guestfs_aug_defnode"
5491 msgstr ""
5492
5493 #. type: verbatim
5494 #: ../src/guestfs-actions.pod:299
5495 #, no-wrap
5496 msgid ""
5497 " struct guestfs_int_bool *\n"
5498 " guestfs_aug_defnode (guestfs_h *g,\n"
5499 "                      const char *name,\n"
5500 "                      const char *expr,\n"
5501 "                      const char *val);\n"
5502 "\n"
5503 msgstr ""
5504
5505 #. type: textblock
5506 #: ../src/guestfs-actions.pod:305 ../fish/guestfish-actions.pod:192
5507 msgid "Defines a variable C<name> whose value is the result of evaluating C<expr>."
5508 msgstr ""
5509
5510 #. type: textblock
5511 #: ../src/guestfs-actions.pod:308
5512 msgid ""
5513 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
5514 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
5515 "containing that single node."
5516 msgstr ""
5517
5518 #. type: textblock
5519 #: ../src/guestfs-actions.pod:312 ../fish/guestfish-actions.pod:199
5520 msgid ""
5521 "On success this returns a pair containing the number of nodes in the "
5522 "nodeset, and a boolean flag if a node was created."
5523 msgstr ""
5524
5525 #. type: textblock
5526 #: ../src/guestfs-actions.pod:316
5527 msgid ""
5528 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
5529 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
5530 msgstr ""
5531
5532 #. type: =head2
5533 #: ../src/guestfs-actions.pod:322
5534 msgid "guestfs_aug_defvar"
5535 msgstr ""
5536
5537 #. type: verbatim
5538 #: ../src/guestfs-actions.pod:324
5539 #, no-wrap
5540 msgid ""
5541 " int\n"
5542 " guestfs_aug_defvar (guestfs_h *g,\n"
5543 "                     const char *name,\n"
5544 "                     const char *expr);\n"
5545 "\n"
5546 msgstr ""
5547
5548 #. type: textblock
5549 #: ../src/guestfs-actions.pod:329 ../fish/guestfish-actions.pod:207
5550 msgid ""
5551 "Defines an Augeas variable C<name> whose value is the result of evaluating "
5552 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
5553 msgstr ""
5554
5555 #. type: textblock
5556 #: ../src/guestfs-actions.pod:333 ../fish/guestfish-actions.pod:211
5557 msgid ""
5558 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
5559 "evaluates to something which is not a nodeset."
5560 msgstr ""
5561
5562 #. type: =head2
5563 #: ../src/guestfs-actions.pod:340
5564 msgid "guestfs_aug_get"
5565 msgstr ""
5566
5567 #. type: verbatim
5568 #: ../src/guestfs-actions.pod:342
5569 #, no-wrap
5570 msgid ""
5571 " char *\n"
5572 " guestfs_aug_get (guestfs_h *g,\n"
5573 "                  const char *augpath);\n"
5574 "\n"
5575 msgstr ""
5576
5577 #. type: textblock
5578 #: ../src/guestfs-actions.pod:346 ../fish/guestfish-actions.pod:218
5579 msgid ""
5580 "Look up the value associated with C<path>.  If C<path> matches exactly one "
5581 "node, the C<value> is returned."
5582 msgstr ""
5583
5584 #. type: textblock
5585 #: ../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:4762 ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:5125 ../src/guestfs-actions.pod:5303 ../src/guestfs-actions.pod:5352 ../src/guestfs-actions.pod:5915 ../src/guestfs-actions.pod:5931 ../src/guestfs-actions.pod:5948 ../src/guestfs-actions.pod:5972 ../src/guestfs-actions.pod:6646 ../src/guestfs-actions.pod:6665 ../src/guestfs-actions.pod:6683 ../src/guestfs-actions.pod:6863 ../src/guestfs-actions.pod:7135
5586 msgid ""
5587 "This function returns a string, or NULL on error.  I<The caller must free "
5588 "the returned string after use>."
5589 msgstr ""
5590
5591 #. type: =head2
5592 #: ../src/guestfs-actions.pod:354
5593 msgid "guestfs_aug_init"
5594 msgstr ""
5595
5596 #. type: verbatim
5597 #: ../src/guestfs-actions.pod:356
5598 #, no-wrap
5599 msgid ""
5600 " int\n"
5601 " guestfs_aug_init (guestfs_h *g,\n"
5602 "                   const char *root,\n"
5603 "                   int flags);\n"
5604 "\n"
5605 msgstr ""
5606
5607 #. type: textblock
5608 #: ../src/guestfs-actions.pod:361 ../fish/guestfish-actions.pod:225
5609 msgid ""
5610 "Create a new Augeas handle for editing configuration files.  If there was "
5611 "any previous Augeas handle associated with this guestfs session, then it is "
5612 "closed."
5613 msgstr ""
5614
5615 #. type: textblock
5616 #: ../src/guestfs-actions.pod:365
5617 msgid "You must call this before using any other C<guestfs_aug_*> commands."
5618 msgstr ""
5619
5620 #. type: textblock
5621 #: ../src/guestfs-actions.pod:368 ../fish/guestfish-actions.pod:232
5622 msgid "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
5623 msgstr ""
5624
5625 #. type: textblock
5626 #: ../src/guestfs-actions.pod:371 ../fish/guestfish-actions.pod:235
5627 msgid ""
5628 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
5629 "logical I<or> of the following integers:"
5630 msgstr ""
5631
5632 #. type: =item
5633 #: ../src/guestfs-actions.pod:377 ../fish/guestfish-actions.pod:241
5634 msgid "C<AUG_SAVE_BACKUP> = 1"
5635 msgstr ""
5636
5637 #. type: textblock
5638 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:243
5639 msgid "Keep the original file with a C<.augsave> extension."
5640 msgstr ""
5641
5642 #. type: =item
5643 #: ../src/guestfs-actions.pod:381 ../fish/guestfish-actions.pod:245
5644 msgid "C<AUG_SAVE_NEWFILE> = 2"
5645 msgstr ""
5646
5647 #. type: textblock
5648 #: ../src/guestfs-actions.pod:383 ../fish/guestfish-actions.pod:247
5649 msgid ""
5650 "Save changes into a file with extension C<.augnew>, and do not overwrite "
5651 "original.  Overrides C<AUG_SAVE_BACKUP>."
5652 msgstr ""
5653
5654 #. type: =item
5655 #: ../src/guestfs-actions.pod:386 ../fish/guestfish-actions.pod:250
5656 msgid "C<AUG_TYPE_CHECK> = 4"
5657 msgstr ""
5658
5659 #. type: textblock
5660 #: ../src/guestfs-actions.pod:388 ../fish/guestfish-actions.pod:252
5661 msgid "Typecheck lenses (can be expensive)."
5662 msgstr ""
5663
5664 #. type: =item
5665 #: ../src/guestfs-actions.pod:390 ../fish/guestfish-actions.pod:254
5666 msgid "C<AUG_NO_STDINC> = 8"
5667 msgstr ""
5668
5669 #. type: textblock
5670 #: ../src/guestfs-actions.pod:392 ../fish/guestfish-actions.pod:256
5671 msgid "Do not use standard load path for modules."
5672 msgstr ""
5673
5674 #. type: =item
5675 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:258
5676 msgid "C<AUG_SAVE_NOOP> = 16"
5677 msgstr ""
5678
5679 #. type: textblock
5680 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:260
5681 msgid "Make save a no-op, just record what would have been changed."
5682 msgstr ""
5683
5684 #. type: =item
5685 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:262
5686 msgid "C<AUG_NO_LOAD> = 32"
5687 msgstr ""
5688
5689 #. type: textblock
5690 #: ../src/guestfs-actions.pod:400
5691 msgid "Do not load the tree in C<guestfs_aug_init>."
5692 msgstr ""
5693
5694 #. type: textblock
5695 #: ../src/guestfs-actions.pod:404
5696 msgid "To close the handle, you can call C<guestfs_aug_close>."
5697 msgstr ""
5698
5699 #. type: textblock
5700 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:270
5701 msgid "To find out more about Augeas, see L<http://augeas.net/>."
5702 msgstr ""
5703
5704 #. type: =head2
5705 #: ../src/guestfs-actions.pod:412
5706 msgid "guestfs_aug_insert"
5707 msgstr ""
5708
5709 #. type: verbatim
5710 #: ../src/guestfs-actions.pod:414
5711 #, no-wrap
5712 msgid ""
5713 " int\n"
5714 " guestfs_aug_insert (guestfs_h *g,\n"
5715 "                     const char *augpath,\n"
5716 "                     const char *label,\n"
5717 "                     int before);\n"
5718 "\n"
5719 msgstr ""
5720
5721 #. type: textblock
5722 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:276
5723 msgid ""
5724 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
5725 "or after C<path> (depending on the boolean flag C<before>)."
5726 msgstr ""
5727
5728 #. type: textblock
5729 #: ../src/guestfs-actions.pod:424 ../fish/guestfish-actions.pod:280
5730 msgid ""
5731 "C<path> must match exactly one existing node in the tree, and C<label> must "
5732 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
5733 msgstr ""
5734
5735 #. type: =head2
5736 #: ../src/guestfs-actions.pod:432
5737 msgid "guestfs_aug_load"
5738 msgstr ""
5739
5740 #. type: verbatim
5741 #: ../src/guestfs-actions.pod:434
5742 #, no-wrap
5743 msgid ""
5744 " int\n"
5745 " guestfs_aug_load (guestfs_h *g);\n"
5746 "\n"
5747 msgstr ""
5748
5749 #. type: textblock
5750 #: ../src/guestfs-actions.pod:437 ../fish/guestfish-actions.pod:288
5751 msgid "Load files into the tree."
5752 msgstr ""
5753
5754 #. type: textblock
5755 #: ../src/guestfs-actions.pod:439 ../fish/guestfish-actions.pod:290
5756 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
5757 msgstr ""
5758
5759 #. type: =head2
5760 #: ../src/guestfs-actions.pod:446
5761 msgid "guestfs_aug_ls"
5762 msgstr ""
5763
5764 #. type: verbatim
5765 #: ../src/guestfs-actions.pod:448
5766 #, no-wrap
5767 msgid ""
5768 " char **\n"
5769 " guestfs_aug_ls (guestfs_h *g,\n"
5770 "                 const char *augpath);\n"
5771 "\n"
5772 msgstr ""
5773
5774 #. type: textblock
5775 #: ../src/guestfs-actions.pod:452
5776 msgid ""
5777 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
5778 "sorting the resulting nodes into alphabetical order."
5779 msgstr ""
5780
5781 #. type: textblock
5782 #: ../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:5097 ../src/guestfs-actions.pod:5223 ../src/guestfs-actions.pod:5337 ../src/guestfs-actions.pod:5988 ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6250 ../src/guestfs-actions.pod:6274 ../src/guestfs-actions.pod:6756 ../src/guestfs-actions.pod:6776 ../src/guestfs-actions.pod:6823 ../src/guestfs-actions.pod:6988 ../src/guestfs-actions.pod:7007 ../src/guestfs-actions.pod:7092 ../src/guestfs-actions.pod:7111 ../src/guestfs-actions.pod:7157 ../src/guestfs-actions.pod:7176
5783 msgid ""
5784 "This function returns a NULL-terminated array of strings (like "
5785 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
5786 "strings and the array after use>."
5787 msgstr ""
5788
5789 #. type: textblock
5790 #: ../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:5038 ../src/guestfs-actions.pod:5416 ../src/guestfs-actions.pod:5430 ../src/guestfs-actions.pod:5442 ../src/guestfs-actions.pod:5850 ../src/guestfs-actions.pod:6488 ../src/guestfs-actions.pod:6501 ../src/guestfs-actions.pod:6740 ../src/guestfs-actions.pod:6976
5791 msgid "(Added in 0.8)"
5792 msgstr ""
5793
5794 #. type: =head2
5795 #: ../src/guestfs-actions.pod:461
5796 msgid "guestfs_aug_match"
5797 msgstr ""
5798
5799 #. type: verbatim
5800 #: ../src/guestfs-actions.pod:463
5801 #, no-wrap
5802 msgid ""
5803 " char **\n"
5804 " guestfs_aug_match (guestfs_h *g,\n"
5805 "                    const char *augpath);\n"
5806 "\n"
5807 msgstr ""
5808
5809 #. type: textblock
5810 #: ../src/guestfs-actions.pod:467 ../fish/guestfish-actions.pod:304
5811 msgid ""
5812 "Returns a list of paths which match the path expression C<path>.  The "
5813 "returned paths are sufficiently qualified so that they match exactly one "
5814 "node in the current tree."
5815 msgstr ""
5816
5817 #. type: =head2
5818 #: ../src/guestfs-actions.pod:477
5819 msgid "guestfs_aug_mv"
5820 msgstr ""
5821
5822 #. type: verbatim
5823 #: ../src/guestfs-actions.pod:479
5824 #, no-wrap
5825 msgid ""
5826 " int\n"
5827 " guestfs_aug_mv (guestfs_h *g,\n"
5828 "                 const char *src,\n"
5829 "                 const char *dest);\n"
5830 "\n"
5831 msgstr ""
5832
5833 #. type: textblock
5834 #: ../src/guestfs-actions.pod:484 ../fish/guestfish-actions.pod:312
5835 msgid ""
5836 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
5837 "C<dest> is overwritten if it exists."
5838 msgstr ""
5839
5840 #. type: =head2
5841 #: ../src/guestfs-actions.pod:491
5842 msgid "guestfs_aug_rm"
5843 msgstr ""
5844
5845 #. type: verbatim
5846 #: ../src/guestfs-actions.pod:493
5847 #, no-wrap
5848 msgid ""
5849 " int\n"
5850 " guestfs_aug_rm (guestfs_h *g,\n"
5851 "                 const char *augpath);\n"
5852 "\n"
5853 msgstr ""
5854
5855 #. type: textblock
5856 #: ../src/guestfs-actions.pod:497 ../fish/guestfish-actions.pod:319
5857 msgid "Remove C<path> and all of its children."
5858 msgstr ""
5859
5860 #. type: textblock
5861 #: ../src/guestfs-actions.pod:499 ../fish/guestfish-actions.pod:321
5862 msgid "On success this returns the number of entries which were removed."
5863 msgstr ""
5864
5865 #. type: =head2
5866 #: ../src/guestfs-actions.pod:505
5867 msgid "guestfs_aug_save"
5868 msgstr ""
5869
5870 #. type: verbatim
5871 #: ../src/guestfs-actions.pod:507
5872 #, no-wrap
5873 msgid ""
5874 " int\n"
5875 " guestfs_aug_save (guestfs_h *g);\n"
5876 "\n"
5877 msgstr ""
5878
5879 #. type: textblock
5880 #: ../src/guestfs-actions.pod:510 ../fish/guestfish-actions.pod:327
5881 msgid "This writes all pending changes to disk."
5882 msgstr ""
5883
5884 #. type: textblock
5885 #: ../src/guestfs-actions.pod:512
5886 msgid ""
5887 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
5888 "are saved."
5889 msgstr ""
5890
5891 #. type: =head2
5892 #: ../src/guestfs-actions.pod:519
5893 msgid "guestfs_aug_set"
5894 msgstr ""
5895
5896 #. type: verbatim
5897 #: ../src/guestfs-actions.pod:521
5898 #, no-wrap
5899 msgid ""
5900 " int\n"
5901 " guestfs_aug_set (guestfs_h *g,\n"
5902 "                  const char *augpath,\n"
5903 "                  const char *val);\n"
5904 "\n"
5905 msgstr ""
5906
5907 #. type: textblock
5908 #: ../src/guestfs-actions.pod:526 ../fish/guestfish-actions.pod:336
5909 msgid "Set the value associated with C<path> to C<val>."
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs-actions.pod:528
5914 msgid ""
5915 "In the Augeas API, it is possible to clear a node by setting the value to "
5916 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
5917 "this call.  Instead you must use the C<guestfs_aug_clear> call."
5918 msgstr ""
5919
5920 #. type: =head2
5921 #: ../src/guestfs-actions.pod:537
5922 msgid "guestfs_available"
5923 msgstr ""
5924
5925 #. type: verbatim
5926 #: ../src/guestfs-actions.pod:539
5927 #, no-wrap
5928 msgid ""
5929 " int\n"
5930 " guestfs_available (guestfs_h *g,\n"
5931 "                    char *const *groups);\n"
5932 "\n"
5933 msgstr ""
5934
5935 #. type: textblock
5936 #: ../src/guestfs-actions.pod:543 ../fish/guestfish-actions.pod:347
5937 msgid ""
5938 "This command is used to check the availability of some groups of "
5939 "functionality in the appliance, which not all builds of the libguestfs "
5940 "appliance will be able to provide."
5941 msgstr ""
5942
5943 #. type: textblock
5944 #: ../src/guestfs-actions.pod:547
5945 msgid ""
5946 "The libguestfs groups, and the functions that those groups correspond to, "
5947 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
5948 "runtime by calling C<guestfs_available_all_groups>."
5949 msgstr ""
5950
5951 #. type: textblock
5952 #: ../src/guestfs-actions.pod:552 ../fish/guestfish-actions.pod:356
5953 msgid ""
5954 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
5955 "\"augeas\"]> would check for the availability of the Linux inotify functions "
5956 "and Augeas (configuration file editing) functions."
5957 msgstr ""
5958
5959 #. type: textblock
5960 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:361
5961 msgid "The command returns no error if I<all> requested groups are available."
5962 msgstr ""
5963
5964 #. type: textblock
5965 #: ../src/guestfs-actions.pod:559 ../fish/guestfish-actions.pod:363
5966 msgid ""
5967 "It fails with an error if one or more of the requested groups is unavailable "
5968 "in the appliance."
5969 msgstr ""
5970
5971 #. type: textblock
5972 #: ../src/guestfs-actions.pod:562 ../fish/guestfish-actions.pod:366
5973 msgid ""
5974 "If an unknown group name is included in the list of groups then an error is "
5975 "always returned."
5976 msgstr ""
5977
5978 #. type: textblock
5979 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:369
5980 msgid "I<Notes:>"
5981 msgstr ""
5982
5983 #. type: textblock
5984 #: ../src/guestfs-actions.pod:571
5985 msgid "You must call C<guestfs_launch> before calling this function."
5986 msgstr ""
5987
5988 #. type: textblock
5989 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:377
5990 msgid ""
5991 "The reason is because we don't know what groups are supported by the "
5992 "appliance/daemon until it is running and can be queried."
5993 msgstr ""
5994
5995 #. type: textblock
5996 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:383
5997 msgid ""
5998 "If a group of functions is available, this does not necessarily mean that "
5999 "they will work.  You still have to check for errors when calling individual "
6000 "API functions even if they are available."
6001 msgstr ""
6002
6003 #. type: textblock
6004 #: ../src/guestfs-actions.pod:586 ../fish/guestfish-actions.pod:390
6005 msgid ""
6006 "It is usually the job of distro packagers to build complete functionality "
6007 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6008 "with all requirements satisfied, will support everything."
6009 msgstr ""
6010
6011 #. type: textblock
6012 #: ../src/guestfs-actions.pod:593
6013 msgid ""
6014 "This call was added in version C<1.0.80>.  In previous versions of "
6015 "libguestfs all you could do would be to speculatively execute a command to "
6016 "find out if the daemon implemented it.  See also C<guestfs_version>."
6017 msgstr ""
6018
6019 #. type: textblock
6020 #: ../src/guestfs-actions.pod:602 ../src/guestfs-actions.pod:1163
6021 msgid "(Added in 1.0.80)"
6022 msgstr ""
6023
6024 #. type: =head2
6025 #: ../src/guestfs-actions.pod:604
6026 msgid "guestfs_available_all_groups"
6027 msgstr ""
6028
6029 #. type: verbatim
6030 #: ../src/guestfs-actions.pod:606
6031 #, no-wrap
6032 msgid ""
6033 " char **\n"
6034 " guestfs_available_all_groups (guestfs_h *g);\n"
6035 "\n"
6036 msgstr ""
6037
6038 #. type: textblock
6039 #: ../src/guestfs-actions.pod:609
6040 msgid ""
6041 "This command returns a list of all optional groups that this daemon knows "
6042 "about.  Note this returns both supported and unsupported groups.  To find "
6043 "out which ones the daemon can actually support you have to call "
6044 "C<guestfs_available> on each member of the returned list."
6045 msgstr ""
6046
6047 #. type: textblock
6048 #: ../src/guestfs-actions.pod:615
6049 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6050 msgstr ""
6051
6052 #. type: textblock
6053 #: ../src/guestfs-actions.pod:621
6054 msgid "(Added in 1.3.15)"
6055 msgstr ""
6056
6057 #. type: =head2
6058 #: ../src/guestfs-actions.pod:623
6059 msgid "guestfs_base64_in"
6060 msgstr ""
6061
6062 #. type: verbatim
6063 #: ../src/guestfs-actions.pod:625
6064 #, no-wrap
6065 msgid ""
6066 " int\n"
6067 " guestfs_base64_in (guestfs_h *g,\n"
6068 "                    const char *base64file,\n"
6069 "                    const char *filename);\n"
6070 "\n"
6071 msgstr ""
6072
6073 #. type: textblock
6074 #: ../src/guestfs-actions.pod:630 ../fish/guestfish-actions.pod:420
6075 msgid "This command uploads base64-encoded data from C<base64file> to C<filename>."
6076 msgstr ""
6077
6078 #. type: textblock
6079 #: ../src/guestfs-actions.pod:635 ../src/guestfs-actions.pod:649
6080 msgid "(Added in 1.3.5)"
6081 msgstr ""
6082
6083 #. type: =head2
6084 #: ../src/guestfs-actions.pod:637
6085 msgid "guestfs_base64_out"
6086 msgstr ""
6087
6088 #. type: verbatim
6089 #: ../src/guestfs-actions.pod:639
6090 #, no-wrap
6091 msgid ""
6092 " int\n"
6093 " guestfs_base64_out (guestfs_h *g,\n"
6094 "                     const char *filename,\n"
6095 "                     const char *base64file);\n"
6096 "\n"
6097 msgstr ""
6098
6099 #. type: textblock
6100 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:429
6101 msgid ""
6102 "This command downloads the contents of C<filename>, writing it out to local "
6103 "file C<base64file> encoded as base64."
6104 msgstr ""
6105
6106 #. type: =head2
6107 #: ../src/guestfs-actions.pod:651
6108 msgid "guestfs_blockdev_flushbufs"
6109 msgstr ""
6110
6111 #. type: verbatim
6112 #: ../src/guestfs-actions.pod:653
6113 #, no-wrap
6114 msgid ""
6115 " int\n"
6116 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
6117 "                             const char *device);\n"
6118 "\n"
6119 msgstr ""
6120
6121 #. type: textblock
6122 #: ../src/guestfs-actions.pod:657 ../fish/guestfish-actions.pod:438
6123 msgid "This tells the kernel to flush internal buffers associated with C<device>."
6124 msgstr ""
6125
6126 #. type: textblock
6127 #: ../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
6128 msgid "This uses the L<blockdev(8)> command."
6129 msgstr ""
6130
6131 #. type: textblock
6132 #: ../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
6133 msgid "(Added in 0.9.3)"
6134 msgstr ""
6135
6136 #. type: =head2
6137 #: ../src/guestfs-actions.pod:666
6138 msgid "guestfs_blockdev_getbsz"
6139 msgstr ""
6140
6141 #. type: verbatim
6142 #: ../src/guestfs-actions.pod:668
6143 #, no-wrap
6144 msgid ""
6145 " int\n"
6146 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
6147 "                          const char *device);\n"
6148 "\n"
6149 msgstr ""
6150
6151 #. type: textblock
6152 #: ../src/guestfs-actions.pod:672 ../fish/guestfish-actions.pod:447
6153 msgid "This returns the block size of a device."
6154 msgstr ""
6155
6156 #. type: textblock
6157 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:774 ../fish/guestfish-actions.pod:449 ../fish/guestfish-actions.pod:512
6158 msgid ""
6159 "(Note this is different from both I<size in blocks> and I<filesystem block "
6160 "size>)."
6161 msgstr ""
6162
6163 #. type: =head2
6164 #: ../src/guestfs-actions.pod:683
6165 msgid "guestfs_blockdev_getro"
6166 msgstr ""
6167
6168 #. type: verbatim
6169 #: ../src/guestfs-actions.pod:685
6170 #, no-wrap
6171 msgid ""
6172 " int\n"
6173 " guestfs_blockdev_getro (guestfs_h *g,\n"
6174 "                         const char *device);\n"
6175 "\n"
6176 msgstr ""
6177
6178 #. type: textblock
6179 #: ../src/guestfs-actions.pod:689 ../fish/guestfish-actions.pod:458
6180 msgid ""
6181 "Returns a boolean indicating if the block device is read-only (true if "
6182 "read-only, false if not)."
6183 msgstr ""
6184
6185 #. type: textblock
6186 #: ../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:4726
6187 msgid "This function returns a C truth value on success or -1 on error."
6188 msgstr ""
6189
6190 #. type: =head2
6191 #: ../src/guestfs-actions.pod:698
6192 msgid "guestfs_blockdev_getsize64"
6193 msgstr ""
6194
6195 #. type: verbatim
6196 #: ../src/guestfs-actions.pod:700
6197 #, no-wrap
6198 msgid ""
6199 " int64_t\n"
6200 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
6201 "                             const char *device);\n"
6202 "\n"
6203 msgstr ""
6204
6205 #. type: textblock
6206 #: ../src/guestfs-actions.pod:704 ../fish/guestfish-actions.pod:467
6207 msgid "This returns the size of the device in bytes."
6208 msgstr ""
6209
6210 #. type: textblock
6211 #: ../src/guestfs-actions.pod:706
6212 msgid "See also C<guestfs_blockdev_getsz>."
6213 msgstr ""
6214
6215 #. type: =head2
6216 #: ../src/guestfs-actions.pod:714
6217 msgid "guestfs_blockdev_getss"
6218 msgstr ""
6219
6220 #. type: verbatim
6221 #: ../src/guestfs-actions.pod:716
6222 #, no-wrap
6223 msgid ""
6224 " int\n"
6225 " guestfs_blockdev_getss (guestfs_h *g,\n"
6226 "                         const char *device);\n"
6227 "\n"
6228 msgstr ""
6229
6230 #. type: textblock
6231 #: ../src/guestfs-actions.pod:720 ../fish/guestfish-actions.pod:477
6232 msgid ""
6233 "This returns the size of sectors on a block device.  Usually 512, but can be "
6234 "larger for modern devices."
6235 msgstr ""
6236
6237 #. type: textblock
6238 #: ../src/guestfs-actions.pod:723
6239 msgid ""
6240 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
6241 "that)."
6242 msgstr ""
6243
6244 #. type: =head2
6245 #: ../src/guestfs-actions.pod:732
6246 msgid "guestfs_blockdev_getsz"
6247 msgstr ""
6248
6249 #. type: verbatim
6250 #: ../src/guestfs-actions.pod:734
6251 #, no-wrap
6252 msgid ""
6253 " int64_t\n"
6254 " guestfs_blockdev_getsz (guestfs_h *g,\n"
6255 "                         const char *device);\n"
6256 "\n"
6257 msgstr ""
6258
6259 #. type: textblock
6260 #: ../src/guestfs-actions.pod:738 ../fish/guestfish-actions.pod:489
6261 msgid ""
6262 "This returns the size of the device in units of 512-byte sectors (even if "
6263 "the sectorsize isn't 512 bytes ... weird)."
6264 msgstr ""
6265
6266 #. type: textblock
6267 #: ../src/guestfs-actions.pod:741
6268 msgid ""
6269 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
6270 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
6271 msgstr ""
6272
6273 #. type: =head2
6274 #: ../src/guestfs-actions.pod:751
6275 msgid "guestfs_blockdev_rereadpt"
6276 msgstr ""
6277
6278 #. type: verbatim
6279 #: ../src/guestfs-actions.pod:753
6280 #, no-wrap
6281 msgid ""
6282 " int\n"
6283 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
6284 "                            const char *device);\n"
6285 "\n"
6286 msgstr ""
6287
6288 #. type: textblock
6289 #: ../src/guestfs-actions.pod:757 ../fish/guestfish-actions.pod:502
6290 msgid "Reread the partition table on C<device>."
6291 msgstr ""
6292
6293 #. type: =head2
6294 #: ../src/guestfs-actions.pod:765
6295 msgid "guestfs_blockdev_setbsz"
6296 msgstr ""
6297
6298 #. type: verbatim
6299 #: ../src/guestfs-actions.pod:767
6300 #, no-wrap
6301 msgid ""
6302 " int\n"
6303 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
6304 "                          const char *device,\n"
6305 "                          int blocksize);\n"
6306 "\n"
6307 msgstr ""
6308
6309 #. type: textblock
6310 #: ../src/guestfs-actions.pod:772 ../fish/guestfish-actions.pod:510
6311 msgid "This sets the block size of a device."
6312 msgstr ""
6313
6314 #. type: =head2
6315 #: ../src/guestfs-actions.pod:783
6316 msgid "guestfs_blockdev_setro"
6317 msgstr ""
6318
6319 #. type: verbatim
6320 #: ../src/guestfs-actions.pod:785
6321 #, no-wrap
6322 msgid ""
6323 " int\n"
6324 " guestfs_blockdev_setro (guestfs_h *g,\n"
6325 "                         const char *device);\n"
6326 "\n"
6327 msgstr ""
6328
6329 #. type: textblock
6330 #: ../src/guestfs-actions.pod:789 ../fish/guestfish-actions.pod:521
6331 msgid "Sets the block device named C<device> to read-only."
6332 msgstr ""
6333
6334 #. type: =head2
6335 #: ../src/guestfs-actions.pod:797
6336 msgid "guestfs_blockdev_setrw"
6337 msgstr ""
6338
6339 #. type: verbatim
6340 #: ../src/guestfs-actions.pod:799
6341 #, no-wrap
6342 msgid ""
6343 " int\n"
6344 " guestfs_blockdev_setrw (guestfs_h *g,\n"
6345 "                         const char *device);\n"
6346 "\n"
6347 msgstr ""
6348
6349 #. type: textblock
6350 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:529
6351 msgid "Sets the block device named C<device> to read-write."
6352 msgstr ""
6353
6354 #. type: =head2
6355 #: ../src/guestfs-actions.pod:811
6356 msgid "guestfs_case_sensitive_path"
6357 msgstr ""
6358
6359 #. type: verbatim
6360 #: ../src/guestfs-actions.pod:813
6361 #, no-wrap
6362 msgid ""
6363 " char *\n"
6364 " guestfs_case_sensitive_path (guestfs_h *g,\n"
6365 "                              const char *path);\n"
6366 "\n"
6367 msgstr ""
6368
6369 #. type: textblock
6370 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:537
6371 msgid ""
6372 "This can be used to resolve case insensitive paths on a filesystem which is "
6373 "case sensitive.  The use case is to resolve paths which you have read from "
6374 "Windows configuration files or the Windows Registry, to the true path."
6375 msgstr ""
6376
6377 #. type: textblock
6378 #: ../src/guestfs-actions.pod:822 ../fish/guestfish-actions.pod:542
6379 msgid ""
6380 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
6381 "(and probably others), which is that although the underlying filesystem is "
6382 "case-insensitive, the driver exports the filesystem to Linux as "
6383 "case-sensitive."
6384 msgstr ""
6385
6386 #. type: textblock
6387 #: ../src/guestfs-actions.pod:827 ../fish/guestfish-actions.pod:547
6388 msgid ""
6389 "One consequence of this is that special directories such as C<c:\\windows> "
6390 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
6391 "precise details of how they were created.  In Windows itself this would not "
6392 "be a problem."
6393 msgstr ""
6394
6395 #. type: textblock
6396 #: ../src/guestfs-actions.pod:833 ../fish/guestfish-actions.pod:553
6397 msgid ""
6398 "Bug or feature? You decide: "
6399 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
6400 msgstr ""
6401
6402 #. type: textblock
6403 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:556
6404 msgid ""
6405 "This function resolves the true case of each element in the path and returns "
6406 "the case-sensitive path."
6407 msgstr ""
6408
6409 #. type: textblock
6410 #: ../src/guestfs-actions.pod:839
6411 msgid ""
6412 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
6413 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
6414 "how the directories were originally created under Windows)."
6415 msgstr ""
6416
6417 #. type: textblock
6418 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:564
6419 msgid "I<Note>: This function does not handle drive names, backslashes etc."
6420 msgstr ""
6421
6422 #. type: textblock
6423 #: ../src/guestfs-actions.pod:847
6424 msgid "See also C<guestfs_realpath>."
6425 msgstr ""
6426
6427 #. type: textblock
6428 #: ../src/guestfs-actions.pod:852 ../src/guestfs-actions.pod:6668
6429 msgid "(Added in 1.0.75)"
6430 msgstr ""
6431
6432 #. type: =head2
6433 #: ../src/guestfs-actions.pod:854
6434 msgid "guestfs_cat"
6435 msgstr ""
6436
6437 #. type: verbatim
6438 #: ../src/guestfs-actions.pod:856
6439 #, no-wrap
6440 msgid ""
6441 " char *\n"
6442 " guestfs_cat (guestfs_h *g,\n"
6443 "              const char *path);\n"
6444 "\n"
6445 msgstr ""
6446
6447 #. type: textblock
6448 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:5213 ../fish/guestfish-actions.pod:573 ../fish/guestfish-actions.pod:3465
6449 msgid "Return the contents of the file named C<path>."
6450 msgstr ""
6451
6452 #. type: textblock
6453 #: ../src/guestfs-actions.pod:862
6454 msgid ""
6455 "Note that this function cannot correctly handle binary files (specifically, "
6456 "files containing C<\\0> character which is treated as end of string).  For "
6457 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
6458 "functions which have a more complex interface."
6459 msgstr ""
6460
6461 #. type: textblock
6462 #: ../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:4995 ../src/guestfs-actions.pod:5021 ../src/guestfs-actions.pod:5152 ../src/guestfs-actions.pod:5178 ../src/guestfs-actions.pod:5202 ../src/guestfs-actions.pod:6053 ../src/guestfs-actions.pod:6108 ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6278 ../src/guestfs-actions.pod:6940 ../src/guestfs-actions.pod:6966 ../src/guestfs-actions.pod:6992 ../src/guestfs-actions.pod:7011 ../src/guestfs-actions.pod:7096 ../src/guestfs-actions.pod:7115 ../src/guestfs-actions.pod:7161 ../src/guestfs-actions.pod:7180 ../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:3335 ../fish/guestfish-actions.pod:3350 ../fish/guestfish-actions.pod:3426 ../fish/guestfish-actions.pod:3443 ../fish/guestfish-actions.pod:3458 ../fish/guestfish-actions.pod:4041 ../fish/guestfish-actions.pod:4087 ../fish/guestfish-actions.pod:4172 ../fish/guestfish-actions.pod:4187 ../fish/guestfish-actions.pod:4597 ../fish/guestfish-actions.pod:4615 ../fish/guestfish-actions.pod:4632 ../fish/guestfish-actions.pod:4642 ../fish/guestfish-actions.pod:4690 ../fish/guestfish-actions.pod:4700 ../fish/guestfish-actions.pod:4729 ../fish/guestfish-actions.pod:4739
6463 msgid ""
6464 "Because of the message protocol, there is a transfer limit of somewhere "
6465 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
6466 msgstr ""
6467
6468 #. type: textblock
6469 #: ../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:5101 ../src/guestfs-actions.pod:5115 ../src/guestfs-actions.pod:6827 ../src/guestfs-actions.pod:6841
6470 msgid "(Added in 0.4)"
6471 msgstr ""
6472
6473 #. type: =head2
6474 #: ../src/guestfs-actions.pod:875
6475 msgid "guestfs_checksum"
6476 msgstr ""
6477
6478 #. type: verbatim
6479 #: ../src/guestfs-actions.pod:877
6480 #, no-wrap
6481 msgid ""
6482 " char *\n"
6483 " guestfs_checksum (guestfs_h *g,\n"
6484 "                   const char *csumtype,\n"
6485 "                   const char *path);\n"
6486 "\n"
6487 msgstr ""
6488
6489 #. type: textblock
6490 #: ../src/guestfs-actions.pod:882 ../fish/guestfish-actions.pod:587
6491 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
6492 msgstr ""
6493
6494 #. type: textblock
6495 #: ../src/guestfs-actions.pod:885 ../fish/guestfish-actions.pod:590
6496 msgid ""
6497 "The type of checksum to compute is given by the C<csumtype> parameter which "
6498 "must have one of the following values:"
6499 msgstr ""
6500
6501 #. type: =item
6502 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:595
6503 msgid "C<crc>"
6504 msgstr ""
6505
6506 #. type: textblock
6507 #: ../src/guestfs-actions.pod:892 ../fish/guestfish-actions.pod:597
6508 msgid ""
6509 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
6510 "C<cksum> command."
6511 msgstr ""
6512
6513 #. type: =item
6514 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:600
6515 msgid "C<md5>"
6516 msgstr ""
6517
6518 #. type: textblock
6519 #: ../src/guestfs-actions.pod:897 ../fish/guestfish-actions.pod:602
6520 msgid "Compute the MD5 hash (using the C<md5sum> program)."
6521 msgstr ""
6522
6523 #. type: =item
6524 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:604
6525 msgid "C<sha1>"
6526 msgstr ""
6527
6528 #. type: textblock
6529 #: ../src/guestfs-actions.pod:901 ../fish/guestfish-actions.pod:606
6530 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
6531 msgstr ""
6532
6533 #. type: =item
6534 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:608
6535 msgid "C<sha224>"
6536 msgstr ""
6537
6538 #. type: textblock
6539 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:610
6540 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
6541 msgstr ""
6542
6543 #. type: =item
6544 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:612
6545 msgid "C<sha256>"
6546 msgstr ""
6547
6548 #. type: textblock
6549 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:614
6550 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
6551 msgstr ""
6552
6553 #. type: =item
6554 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:616
6555 msgid "C<sha384>"
6556 msgstr ""
6557
6558 #. type: textblock
6559 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:618
6560 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
6561 msgstr ""
6562
6563 #. type: =item
6564 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:620
6565 msgid "C<sha512>"
6566 msgstr ""
6567
6568 #. type: textblock
6569 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:622
6570 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
6571 msgstr ""
6572
6573 #. type: textblock
6574 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:626
6575 msgid "The checksum is returned as a printable string."
6576 msgstr ""
6577
6578 #. type: textblock
6579 #: ../src/guestfs-actions.pod:923
6580 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
6581 msgstr ""
6582
6583 #. type: textblock
6584 #: ../src/guestfs-actions.pod:925
6585 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
6586 msgstr ""
6587
6588 #. type: textblock
6589 #: ../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:6524
6590 msgid "(Added in 1.0.2)"
6591 msgstr ""
6592
6593 #. type: =head2
6594 #: ../src/guestfs-actions.pod:932
6595 msgid "guestfs_checksum_device"
6596 msgstr ""
6597
6598 #. type: verbatim
6599 #: ../src/guestfs-actions.pod:934
6600 #, no-wrap
6601 msgid ""
6602 " char *\n"
6603 " guestfs_checksum_device (guestfs_h *g,\n"
6604 "                          const char *csumtype,\n"
6605 "                          const char *device);\n"
6606 "\n"
6607 msgstr ""
6608
6609 #. type: textblock
6610 #: ../src/guestfs-actions.pod:939
6611 msgid ""
6612 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
6613 "device named C<device>.  For the types of checksums supported see the "
6614 "C<guestfs_checksum> command."
6615 msgstr ""
6616
6617 #. type: textblock
6618 #: ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:4632 ../src/guestfs-actions.pod:4691 ../src/guestfs-actions.pod:4728 ../src/guestfs-actions.pod:4746 ../src/guestfs-actions.pod:4922 ../src/guestfs-actions.pod:6433 ../src/guestfs-actions.pod:6447 ../src/guestfs-actions.pod:6853
6619 msgid "(Added in 1.3.2)"
6620 msgstr ""
6621
6622 #. type: =head2
6623 #: ../src/guestfs-actions.pod:948
6624 msgid "guestfs_checksums_out"
6625 msgstr ""
6626
6627 #. type: verbatim
6628 #: ../src/guestfs-actions.pod:950
6629 #, no-wrap
6630 msgid ""
6631 " int\n"
6632 " guestfs_checksums_out (guestfs_h *g,\n"
6633 "                        const char *csumtype,\n"
6634 "                        const char *directory,\n"
6635 "                        const char *sumsfile);\n"
6636 "\n"
6637 msgstr ""
6638
6639 #. type: textblock
6640 #: ../src/guestfs-actions.pod:956 ../fish/guestfish-actions.pod:644
6641 msgid ""
6642 "This command computes the checksums of all regular files in C<directory> and "
6643 "then emits a list of those checksums to the local output file C<sumsfile>."
6644 msgstr ""
6645
6646 #. type: textblock
6647 #: ../src/guestfs-actions.pod:960 ../fish/guestfish-actions.pod:648
6648 msgid ""
6649 "This can be used for verifying the integrity of a virtual machine.  However "
6650 "to be properly secure you should pay attention to the output of the checksum "
6651 "command (it uses the ones from GNU coreutils).  In particular when the "
6652 "filename is not printable, coreutils uses a special backslash syntax.  For "
6653 "more information, see the GNU coreutils info file."
6654 msgstr ""
6655
6656 #. type: textblock
6657 #: ../src/guestfs-actions.pod:970
6658 msgid "(Added in 1.3.7)"
6659 msgstr ""
6660
6661 #. type: =head2
6662 #: ../src/guestfs-actions.pod:972
6663 msgid "guestfs_chmod"
6664 msgstr ""
6665
6666 #. type: verbatim
6667 #: ../src/guestfs-actions.pod:974
6668 #, no-wrap
6669 msgid ""
6670 " int\n"
6671 " guestfs_chmod (guestfs_h *g,\n"
6672 "                int mode,\n"
6673 "                const char *path);\n"
6674 "\n"
6675 msgstr ""
6676
6677 #. type: textblock
6678 #: ../src/guestfs-actions.pod:979 ../fish/guestfish-actions.pod:662
6679 msgid ""
6680 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
6681 "supported."
6682 msgstr ""
6683
6684 #. type: textblock
6685 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:665
6686 msgid ""
6687 "I<Note>: When using this command from guestfish, C<mode> by default would be "
6688 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
6689 "C<700>."
6690 msgstr ""
6691
6692 #. type: textblock
6693 #: ../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
6694 msgid "The mode actually set is affected by the umask."
6695 msgstr ""
6696
6697 #. type: =head2
6698 #: ../src/guestfs-actions.pod:992
6699 msgid "guestfs_chown"
6700 msgstr ""
6701
6702 #. type: verbatim
6703 #: ../src/guestfs-actions.pod:994
6704 #, no-wrap
6705 msgid ""
6706 " int\n"
6707 " guestfs_chown (guestfs_h *g,\n"
6708 "                int owner,\n"
6709 "                int group,\n"
6710 "                const char *path);\n"
6711 "\n"
6712 msgstr ""
6713
6714 #. type: textblock
6715 #: ../src/guestfs-actions.pod:1000 ../fish/guestfish-actions.pod:675
6716 msgid "Change the file owner to C<owner> and group to C<group>."
6717 msgstr ""
6718
6719 #. type: textblock
6720 #: ../src/guestfs-actions.pod:1002 ../src/guestfs-actions.pod:3254 ../fish/guestfish-actions.pod:677 ../fish/guestfish-actions.pod:2250
6721 msgid ""
6722 "Only numeric uid and gid are supported.  If you want to use names, you will "
6723 "need to locate and parse the password file yourself (Augeas support makes "
6724 "this relatively easy)."
6725 msgstr ""
6726
6727 #. type: =head2
6728 #: ../src/guestfs-actions.pod:1010
6729 msgid "guestfs_command"
6730 msgstr ""
6731
6732 #. type: verbatim
6733 #: ../src/guestfs-actions.pod:1012
6734 #, no-wrap
6735 msgid ""
6736 " char *\n"
6737 " guestfs_command (guestfs_h *g,\n"
6738 "                  char *const *arguments);\n"
6739 "\n"
6740 msgstr ""
6741
6742 #. type: textblock
6743 #: ../src/guestfs-actions.pod:1016 ../fish/guestfish-actions.pod:685
6744 msgid ""
6745 "This call runs a command from the guest filesystem.  The filesystem must be "
6746 "mounted, and must contain a compatible operating system (ie. something "
6747 "Linux, with the same or compatible processor architecture)."
6748 msgstr ""
6749
6750 #. type: textblock
6751 #: ../src/guestfs-actions.pod:1021
6752 msgid ""
6753 "The single parameter is an argv-style list of arguments.  The first element "
6754 "is the name of the program to run.  Subsequent elements are parameters.  The "
6755 "list must be non-empty (ie. must contain a program name).  Note that the "
6756 "command runs directly, and is I<not> invoked via the shell (see "
6757 "C<guestfs_sh>)."
6758 msgstr ""
6759
6760 #. type: textblock
6761 #: ../src/guestfs-actions.pod:1028 ../fish/guestfish-actions.pod:697
6762 msgid "The return value is anything printed to I<stdout> by the command."
6763 msgstr ""
6764
6765 #. type: textblock
6766 #: ../src/guestfs-actions.pod:1031 ../fish/guestfish-actions.pod:700
6767 msgid ""
6768 "If the command returns a non-zero exit status, then this function returns an "
6769 "error message.  The error message string is the content of I<stderr> from "
6770 "the command."
6771 msgstr ""
6772
6773 #. type: textblock
6774 #: ../src/guestfs-actions.pod:1035 ../fish/guestfish-actions.pod:704
6775 msgid ""
6776 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
6777 "C</bin>.  If you require a program from another location, you should provide "
6778 "the full path in the first parameter."
6779 msgstr ""
6780
6781 #. type: textblock
6782 #: ../src/guestfs-actions.pod:1040 ../fish/guestfish-actions.pod:709
6783 msgid ""
6784 "Shared libraries and data files required by the program must be available on "
6785 "filesystems which are mounted in the correct places.  It is the caller's "
6786 "responsibility to ensure all filesystems that are needed are mounted at the "
6787 "right locations."
6788 msgstr ""
6789
6790 #. type: textblock
6791 #: ../src/guestfs-actions.pod:1052 ../src/guestfs-actions.pod:1072 ../src/guestfs-actions.pod:1532
6792 msgid "(Added in 0.9.1)"
6793 msgstr ""
6794
6795 #. type: =head2
6796 #: ../src/guestfs-actions.pod:1054
6797 msgid "guestfs_command_lines"
6798 msgstr ""
6799
6800 #. type: verbatim
6801 #: ../src/guestfs-actions.pod:1056
6802 #, no-wrap
6803 msgid ""
6804 " char **\n"
6805 " guestfs_command_lines (guestfs_h *g,\n"
6806 "                        char *const *arguments);\n"
6807 "\n"
6808 msgstr ""
6809
6810 #. type: textblock
6811 #: ../src/guestfs-actions.pod:1060
6812 msgid ""
6813 "This is the same as C<guestfs_command>, but splits the result into a list of "
6814 "lines."
6815 msgstr ""
6816
6817 #. type: textblock
6818 #: ../src/guestfs-actions.pod:1063
6819 msgid "See also: C<guestfs_sh_lines>"
6820 msgstr ""
6821
6822 #. type: =head2
6823 #: ../src/guestfs-actions.pod:1074
6824 msgid "guestfs_config"
6825 msgstr ""
6826
6827 #. type: verbatim
6828 #: ../src/guestfs-actions.pod:1076
6829 #, no-wrap
6830 msgid ""
6831 " int\n"
6832 " guestfs_config (guestfs_h *g,\n"
6833 "                 const char *qemuparam,\n"
6834 "                 const char *qemuvalue);\n"
6835 "\n"
6836 msgstr ""
6837
6838 #. type: textblock
6839 #: ../src/guestfs-actions.pod:1081 ../fish/guestfish-actions.pod:734
6840 msgid ""
6841 "This can be used to add arbitrary qemu command line parameters of the form "
6842 "C<-param value>.  Actually it's not quite arbitrary - we prevent you from "
6843 "setting some parameters which would interfere with parameters that we use."
6844 msgstr ""
6845
6846 #. type: textblock
6847 #: ../src/guestfs-actions.pod:1086 ../fish/guestfish-actions.pod:739
6848 msgid "The first character of C<param> string must be a C<-> (dash)."
6849 msgstr ""
6850
6851 #. type: textblock
6852 #: ../src/guestfs-actions.pod:1088 ../fish/guestfish-actions.pod:741
6853 msgid "C<value> can be NULL."
6854 msgstr ""
6855
6856 #. type: =head2
6857 #: ../src/guestfs-actions.pod:1094
6858 msgid "guestfs_copy_size"
6859 msgstr ""
6860
6861 #. type: verbatim
6862 #: ../src/guestfs-actions.pod:1096
6863 #, no-wrap
6864 msgid ""
6865 " int\n"
6866 " guestfs_copy_size (guestfs_h *g,\n"
6867 "                    const char *src,\n"
6868 "                    const char *dest,\n"
6869 "                    int64_t size);\n"
6870 "\n"
6871 msgstr ""
6872
6873 #. type: textblock
6874 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:747
6875 msgid ""
6876 "This command copies exactly C<size> bytes from one source device or file "
6877 "C<src> to another destination device or file C<dest>."
6878 msgstr ""
6879
6880 #. type: textblock
6881 #: ../src/guestfs-actions.pod:1105 ../fish/guestfish-actions.pod:750
6882 msgid ""
6883 "Note this will fail if the source is too short or if the destination is not "
6884 "large enough."
6885 msgstr ""
6886
6887 #. type: textblock
6888 #: ../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:6519 ../src/guestfs-actions.pod:6553 ../src/guestfs-actions.pod:7032 ../src/guestfs-actions.pod:7051
6889 msgid ""
6890 "This long-running command can generate progress notification messages so "
6891 "that the caller can display a progress bar or indicator.  To receive these "
6892 "messages, the caller must register a progress callback.  See "
6893 "L<guestfs(3)/guestfs_set_progress_callback>."
6894 msgstr ""
6895
6896 #. type: textblock
6897 #: ../src/guestfs-actions.pod:1115 ../src/guestfs-actions.pod:3922 ../src/guestfs-actions.pod:5128 ../src/guestfs-actions.pod:6760 ../src/guestfs-actions.pod:6780 ../src/guestfs-actions.pod:6866
6898 msgid "(Added in 1.0.87)"
6899 msgstr ""
6900
6901 #. type: =head2
6902 #: ../src/guestfs-actions.pod:1117
6903 msgid "guestfs_cp"
6904 msgstr ""
6905
6906 #. type: verbatim
6907 #: ../src/guestfs-actions.pod:1119
6908 #, no-wrap
6909 msgid ""
6910 " int\n"
6911 " guestfs_cp (guestfs_h *g,\n"
6912 "             const char *src,\n"
6913 "             const char *dest);\n"
6914 "\n"
6915 msgstr ""
6916
6917 #. type: textblock
6918 #: ../src/guestfs-actions.pod:1124 ../fish/guestfish-actions.pod:757
6919 msgid ""
6920 "This copies a file from C<src> to C<dest> where C<dest> is either a "
6921 "destination filename or destination directory."
6922 msgstr ""
6923
6924 #. type: textblock
6925 #: ../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:4972
6926 msgid "(Added in 1.0.18)"
6927 msgstr ""
6928
6929 #. type: =head2
6930 #: ../src/guestfs-actions.pod:1131
6931 msgid "guestfs_cp_a"
6932 msgstr ""
6933
6934 #. type: verbatim
6935 #: ../src/guestfs-actions.pod:1133
6936 #, no-wrap
6937 msgid ""
6938 " int\n"
6939 " guestfs_cp_a (guestfs_h *g,\n"
6940 "               const char *src,\n"
6941 "               const char *dest);\n"
6942 "\n"
6943 msgstr ""
6944
6945 #. type: textblock
6946 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:764
6947 msgid ""
6948 "This copies a file or directory from C<src> to C<dest> recursively using the "
6949 "C<cp -a> command."
6950 msgstr ""
6951
6952 #. type: =head2
6953 #: ../src/guestfs-actions.pod:1145
6954 msgid "guestfs_dd"
6955 msgstr ""
6956
6957 #. type: verbatim
6958 #: ../src/guestfs-actions.pod:1147
6959 #, no-wrap
6960 msgid ""
6961 " int\n"
6962 " guestfs_dd (guestfs_h *g,\n"
6963 "             const char *src,\n"
6964 "             const char *dest);\n"
6965 "\n"
6966 msgstr ""
6967
6968 #. type: textblock
6969 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:771
6970 msgid ""
6971 "This command copies from one source device or file C<src> to another "
6972 "destination device or file C<dest>.  Normally you would use this to copy to "
6973 "or from a device or partition, for example to duplicate a filesystem."
6974 msgstr ""
6975
6976 #. type: textblock
6977 #: ../src/guestfs-actions.pod:1157
6978 msgid ""
6979 "If the destination is a device, it must be as large or larger than the "
6980 "source file or device, otherwise the copy will fail.  This command cannot do "
6981 "partial copies (see C<guestfs_copy_size>)."
6982 msgstr ""
6983
6984 #. type: =head2
6985 #: ../src/guestfs-actions.pod:1165
6986 msgid "guestfs_df"
6987 msgstr ""
6988
6989 #. type: verbatim
6990 #: ../src/guestfs-actions.pod:1167
6991 #, no-wrap
6992 msgid ""
6993 " char *\n"
6994 " guestfs_df (guestfs_h *g);\n"
6995 "\n"
6996 msgstr ""
6997
6998 #. type: textblock
6999 #: ../src/guestfs-actions.pod:1170 ../fish/guestfish-actions.pod:784
7000 msgid "This command runs the C<df> command to report disk space used."
7001 msgstr ""
7002
7003 #. type: textblock
7004 #: ../src/guestfs-actions.pod:1172 ../src/guestfs-actions.pod:1189
7005 msgid ""
7006 "This command is mostly useful for interactive sessions.  It is I<not> "
7007 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7008 "from programs."
7009 msgstr ""
7010
7011 #. type: textblock
7012 #: ../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:6257 ../src/guestfs-actions.pod:6281 ../src/guestfs-actions.pod:6899 ../src/guestfs-actions.pod:6912 ../src/guestfs-actions.pod:6925
7013 msgid "(Added in 1.0.54)"
7014 msgstr ""
7015
7016 #. type: =head2
7017 #: ../src/guestfs-actions.pod:1181
7018 msgid "guestfs_df_h"
7019 msgstr ""
7020
7021 #. type: verbatim
7022 #: ../src/guestfs-actions.pod:1183
7023 #, no-wrap
7024 msgid ""
7025 " char *\n"
7026 " guestfs_df_h (guestfs_h *g);\n"
7027 "\n"
7028 msgstr ""
7029
7030 #. type: textblock
7031 #: ../src/guestfs-actions.pod:1186 ../fish/guestfish-actions.pod:794
7032 msgid ""
7033 "This command runs the C<df -h> command to report disk space used in "
7034 "human-readable format."
7035 msgstr ""
7036
7037 #. type: =head2
7038 #: ../src/guestfs-actions.pod:1198
7039 msgid "guestfs_dmesg"
7040 msgstr ""
7041
7042 #. type: verbatim
7043 #: ../src/guestfs-actions.pod:1200
7044 #, no-wrap
7045 msgid ""
7046 " char *\n"
7047 " guestfs_dmesg (guestfs_h *g);\n"
7048 "\n"
7049 msgstr ""
7050
7051 #. type: textblock
7052 #: ../src/guestfs-actions.pod:1203 ../fish/guestfish-actions.pod:805
7053 msgid ""
7054 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7055 "This is sometimes useful for extended debugging of problems."
7056 msgstr ""
7057
7058 #. type: textblock
7059 #: ../src/guestfs-actions.pod:1207
7060 msgid ""
7061 "Another way to get the same information is to enable verbose messages with "
7062 "C<guestfs_set_verbose> or by setting the environment variable "
7063 "C<LIBGUESTFS_DEBUG=1> before running the program."
7064 msgstr ""
7065
7066 #. type: =head2
7067 #: ../src/guestfs-actions.pod:1217
7068 msgid "guestfs_download"
7069 msgstr ""
7070
7071 #. type: verbatim
7072 #: ../src/guestfs-actions.pod:1219
7073 #, no-wrap
7074 msgid ""
7075 " int\n"
7076 " guestfs_download (guestfs_h *g,\n"
7077 "                   const char *remotefilename,\n"
7078 "                   const char *filename);\n"
7079 "\n"
7080 msgstr ""
7081
7082 #. type: textblock
7083 #: ../src/guestfs-actions.pod:1224 ../src/guestfs-actions.pod:1249 ../fish/guestfish-actions.pod:818 ../fish/guestfish-actions.pod:831
7084 msgid ""
7085 "Download file C<remotefilename> and save it as C<filename> on the local "
7086 "machine."
7087 msgstr ""
7088
7089 #. type: textblock
7090 #: ../src/guestfs-actions.pod:1227 ../src/guestfs-actions.pod:6513 ../fish/guestfish-actions.pod:821 ../fish/guestfish-actions.pod:4345
7091 msgid "C<filename> can also be a named pipe."
7092 msgstr ""
7093
7094 #. type: textblock
7095 #: ../src/guestfs-actions.pod:1229
7096 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
7097 msgstr ""
7098
7099 #. type: =head2
7100 #: ../src/guestfs-actions.pod:1240
7101 msgid "guestfs_download_offset"
7102 msgstr ""
7103
7104 #. type: verbatim
7105 #: ../src/guestfs-actions.pod:1242
7106 #, no-wrap
7107 msgid ""
7108 " int\n"
7109 " guestfs_download_offset (guestfs_h *g,\n"
7110 "                          const char *remotefilename,\n"
7111 "                          const char *filename,\n"
7112 "                          int64_t offset,\n"
7113 "                          int64_t size);\n"
7114 "\n"
7115 msgstr ""
7116
7117 #. type: textblock
7118 #: ../src/guestfs-actions.pod:1252 ../fish/guestfish-actions.pod:834
7119 msgid ""
7120 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
7121 "region must be within the file or device)."
7122 msgstr ""
7123
7124 #. type: textblock
7125 #: ../src/guestfs-actions.pod:1255
7126 msgid ""
7127 "Note that there is no limit on the amount of data that can be downloaded "
7128 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
7129 "full amount unless an error occurs."
7130 msgstr ""
7131
7132 #. type: textblock
7133 #: ../src/guestfs-actions.pod:1260
7134 msgid "See also C<guestfs_download>, C<guestfs_pread>."
7135 msgstr ""
7136
7137 #. type: textblock
7138 #: ../src/guestfs-actions.pod:1269 ../src/guestfs-actions.pod:6558
7139 msgid "(Added in 1.5.17)"
7140 msgstr ""
7141
7142 #. type: =head2
7143 #: ../src/guestfs-actions.pod:1271
7144 msgid "guestfs_drop_caches"
7145 msgstr ""
7146
7147 #. type: verbatim
7148 #: ../src/guestfs-actions.pod:1273
7149 #, no-wrap
7150 msgid ""
7151 " int\n"
7152 " guestfs_drop_caches (guestfs_h *g,\n"
7153 "                      int whattodrop);\n"
7154 "\n"
7155 msgstr ""
7156
7157 #. type: textblock
7158 #: ../src/guestfs-actions.pod:1277 ../fish/guestfish-actions.pod:850
7159 msgid ""
7160 "This instructs the guest kernel to drop its page cache, and/or dentries and "
7161 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
7162 "to drop, see L<http://linux-mm.org/Drop_Caches>"
7163 msgstr ""
7164
7165 #. type: textblock
7166 #: ../src/guestfs-actions.pod:1282 ../fish/guestfish-actions.pod:855
7167 msgid "Setting C<whattodrop> to 3 should drop everything."
7168 msgstr ""
7169
7170 #. type: textblock
7171 #: ../src/guestfs-actions.pod:1284 ../fish/guestfish-actions.pod:857
7172 msgid ""
7173 "This automatically calls L<sync(2)> before the operation, so that the "
7174 "maximum guest memory is freed."
7175 msgstr ""
7176
7177 #. type: =head2
7178 #: ../src/guestfs-actions.pod:1291
7179 msgid "guestfs_du"
7180 msgstr ""
7181
7182 #. type: verbatim
7183 #: ../src/guestfs-actions.pod:1293
7184 #, no-wrap
7185 msgid ""
7186 " int64_t\n"
7187 " guestfs_du (guestfs_h *g,\n"
7188 "             const char *path);\n"
7189 "\n"
7190 msgstr ""
7191
7192 #. type: textblock
7193 #: ../src/guestfs-actions.pod:1297 ../fish/guestfish-actions.pod:864
7194 msgid ""
7195 "This command runs the C<du -s> command to estimate file space usage for "
7196 "C<path>."
7197 msgstr ""
7198
7199 #. type: textblock
7200 #: ../src/guestfs-actions.pod:1300 ../fish/guestfish-actions.pod:867
7201 msgid ""
7202 "C<path> can be a file or a directory.  If C<path> is a directory then the "
7203 "estimate includes the contents of the directory and all subdirectories "
7204 "(recursively)."
7205 msgstr ""
7206
7207 #. type: textblock
7208 #: ../src/guestfs-actions.pod:1304 ../fish/guestfish-actions.pod:871
7209 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
7210 msgstr ""
7211
7212 #. type: =head2
7213 #: ../src/guestfs-actions.pod:1311
7214 msgid "guestfs_e2fsck_f"
7215 msgstr ""
7216
7217 #. type: verbatim
7218 #: ../src/guestfs-actions.pod:1313
7219 #, no-wrap
7220 msgid ""
7221 " int\n"
7222 " guestfs_e2fsck_f (guestfs_h *g,\n"
7223 "                   const char *device);\n"
7224 "\n"
7225 msgstr ""
7226
7227 #. type: textblock
7228 #: ../src/guestfs-actions.pod:1317 ../fish/guestfish-actions.pod:878
7229 msgid ""
7230 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
7231 "on C<device>, noninteractively (C<-p>), even if the filesystem appears to be "
7232 "clean (C<-f>)."
7233 msgstr ""
7234
7235 #. type: textblock
7236 #: ../src/guestfs-actions.pod:1321
7237 msgid ""
7238 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
7239 "Normally you should use C<guestfs_fsck>."
7240 msgstr ""
7241
7242 #. type: textblock
7243 #: ../src/guestfs-actions.pod:1326
7244 msgid "(Added in 1.0.29)"
7245 msgstr ""
7246
7247 #. type: =head2
7248 #: ../src/guestfs-actions.pod:1328
7249 msgid "guestfs_echo_daemon"
7250 msgstr ""
7251
7252 #. type: verbatim
7253 #: ../src/guestfs-actions.pod:1330
7254 #, no-wrap
7255 msgid ""
7256 " char *\n"
7257 " guestfs_echo_daemon (guestfs_h *g,\n"
7258 "                      char *const *words);\n"
7259 "\n"
7260 msgstr ""
7261
7262 #. type: textblock
7263 #: ../src/guestfs-actions.pod:1334 ../fish/guestfish-actions.pod:889
7264 msgid ""
7265 "This command concatenates the list of C<words> passed with single spaces "
7266 "between them and returns the resulting string."
7267 msgstr ""
7268
7269 #. type: textblock
7270 #: ../src/guestfs-actions.pod:1337 ../fish/guestfish-actions.pod:892
7271 msgid "You can use this command to test the connection through to the daemon."
7272 msgstr ""
7273
7274 #. type: textblock
7275 #: ../src/guestfs-actions.pod:1339
7276 msgid "See also C<guestfs_ping_daemon>."
7277 msgstr ""
7278
7279 #. type: textblock
7280 #: ../src/guestfs-actions.pod:1344 ../src/guestfs-actions.pod:2068 ../src/guestfs-actions.pod:5761
7281 msgid "(Added in 1.0.69)"
7282 msgstr ""
7283
7284 #. type: =head2
7285 #: ../src/guestfs-actions.pod:1346
7286 msgid "guestfs_egrep"
7287 msgstr ""
7288
7289 #. type: verbatim
7290 #: ../src/guestfs-actions.pod:1348
7291 #, no-wrap
7292 msgid ""
7293 " char **\n"
7294 " guestfs_egrep (guestfs_h *g,\n"
7295 "                const char *regex,\n"
7296 "                const char *path);\n"
7297 "\n"
7298 msgstr ""
7299
7300 #. type: textblock
7301 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:900
7302 msgid "This calls the external C<egrep> program and returns the matching lines."
7303 msgstr ""
7304
7305 #. type: textblock
7306 #: ../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:5306 ../src/guestfs-actions.pod:5355 ../src/guestfs-actions.pod:6125 ../src/guestfs-actions.pod:6137 ../src/guestfs-actions.pod:6150 ../src/guestfs-actions.pod:6163 ../src/guestfs-actions.pod:6185 ../src/guestfs-actions.pod:6198 ../src/guestfs-actions.pod:6211 ../src/guestfs-actions.pod:6224 ../src/guestfs-actions.pod:6995 ../src/guestfs-actions.pod:7014 ../src/guestfs-actions.pod:7099 ../src/guestfs-actions.pod:7118 ../src/guestfs-actions.pod:7164 ../src/guestfs-actions.pod:7183
7307 msgid "(Added in 1.0.66)"
7308 msgstr ""
7309
7310 #. type: =head2
7311 #: ../src/guestfs-actions.pod:1365
7312 msgid "guestfs_egrepi"
7313 msgstr ""
7314
7315 #. type: verbatim
7316 #: ../src/guestfs-actions.pod:1367
7317 #, no-wrap
7318 msgid ""
7319 " char **\n"
7320 " guestfs_egrepi (guestfs_h *g,\n"
7321 "                 const char *regex,\n"
7322 "                 const char *path);\n"
7323 "\n"
7324 msgstr ""
7325
7326 #. type: textblock
7327 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:910
7328 msgid "This calls the external C<egrep -i> program and returns the matching lines."
7329 msgstr ""
7330
7331 #. type: =head2
7332 #: ../src/guestfs-actions.pod:1384
7333 msgid "guestfs_equal"
7334 msgstr ""
7335
7336 #. type: verbatim
7337 #: ../src/guestfs-actions.pod:1386
7338 #, no-wrap
7339 msgid ""
7340 " int\n"
7341 " guestfs_equal (guestfs_h *g,\n"
7342 "                const char *file1,\n"
7343 "                const char *file2);\n"
7344 "\n"
7345 msgstr ""
7346
7347 #. type: textblock
7348 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:920
7349 msgid ""
7350 "This compares the two files C<file1> and C<file2> and returns true if their "
7351 "content is exactly equal, or false otherwise."
7352 msgstr ""
7353
7354 #. type: textblock
7355 #: ../src/guestfs-actions.pod:1394 ../fish/guestfish-actions.pod:923
7356 msgid "The external L<cmp(1)> program is used for the comparison."
7357 msgstr ""
7358
7359 #. type: =head2
7360 #: ../src/guestfs-actions.pod:1400
7361 msgid "guestfs_exists"
7362 msgstr ""
7363
7364 #. type: verbatim
7365 #: ../src/guestfs-actions.pod:1402
7366 #, no-wrap
7367 msgid ""
7368 " int\n"
7369 " guestfs_exists (guestfs_h *g,\n"
7370 "                 const char *path);\n"
7371 "\n"
7372 msgstr ""
7373
7374 #. type: textblock
7375 #: ../src/guestfs-actions.pod:1406 ../fish/guestfish-actions.pod:929
7376 msgid ""
7377 "This returns C<true> if and only if there is a file, directory (or anything) "
7378 "with the given C<path> name."
7379 msgstr ""
7380
7381 #. type: textblock
7382 #: ../src/guestfs-actions.pod:1409
7383 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
7384 msgstr ""
7385
7386 #. type: =head2
7387 #: ../src/guestfs-actions.pod:1415
7388 msgid "guestfs_fallocate"
7389 msgstr ""
7390
7391 #. type: verbatim
7392 #: ../src/guestfs-actions.pod:1417
7393 #, no-wrap
7394 msgid ""
7395 " int\n"
7396 " guestfs_fallocate (guestfs_h *g,\n"
7397 "                    const char *path,\n"
7398 "                    int len);\n"
7399 "\n"
7400 msgstr ""
7401
7402 #. type: textblock
7403 #: ../src/guestfs-actions.pod:1422 ../src/guestfs-actions.pod:1448 ../fish/guestfish-actions.pod:938 ../fish/guestfish-actions.pod:957
7404 msgid ""
7405 "This command preallocates a file (containing zero bytes) named C<path> of "
7406 "size C<len> bytes.  If the file exists already, it is overwritten."
7407 msgstr ""
7408
7409 #. type: textblock
7410 #: ../src/guestfs-actions.pod:1426 ../fish/guestfish-actions.pod:942
7411 msgid ""
7412 "Do not confuse this with the guestfish-specific C<alloc> command which "
7413 "allocates a file in the host and attaches it as a device."
7414 msgstr ""
7415
7416 #. type: textblock
7417 #: ../src/guestfs-actions.pod:1432 ../fish/guestfish-actions.pod:946
7418 msgid ""
7419 "This function is deprecated.  In new code, use the C<fallocate64> call "
7420 "instead."
7421 msgstr ""
7422
7423 #. type: =head2
7424 #: ../src/guestfs-actions.pod:1441
7425 msgid "guestfs_fallocate64"
7426 msgstr ""
7427
7428 #. type: verbatim
7429 #: ../src/guestfs-actions.pod:1443
7430 #, no-wrap
7431 msgid ""
7432 " int\n"
7433 " guestfs_fallocate64 (guestfs_h *g,\n"
7434 "                      const char *path,\n"
7435 "                      int64_t len);\n"
7436 "\n"
7437 msgstr ""
7438
7439 #. type: textblock
7440 #: ../src/guestfs-actions.pod:1452
7441 msgid ""
7442 "Note that this call allocates disk blocks for the file.  To create a sparse "
7443 "file use C<guestfs_truncate_size> instead."
7444 msgstr ""
7445
7446 #. type: textblock
7447 #: ../src/guestfs-actions.pod:1455
7448 msgid ""
7449 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
7450 "oversight it only allowed 30 bit lengths to be specified, effectively "
7451 "limiting the maximum size of files created through that call to 1GB."
7452 msgstr ""
7453
7454 #. type: textblock
7455 #: ../src/guestfs-actions.pod:1460 ../fish/guestfish-actions.pod:969
7456 msgid ""
7457 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
7458 "commands which create a file in the host and attach it as a device."
7459 msgstr ""
7460
7461 #. type: textblock
7462 #: ../src/guestfs-actions.pod:1466
7463 msgid "(Added in 1.3.17)"
7464 msgstr ""
7465
7466 #. type: =head2
7467 #: ../src/guestfs-actions.pod:1468
7468 msgid "guestfs_fgrep"
7469 msgstr ""
7470
7471 #. type: verbatim
7472 #: ../src/guestfs-actions.pod:1470
7473 #, no-wrap
7474 msgid ""
7475 " char **\n"
7476 " guestfs_fgrep (guestfs_h *g,\n"
7477 "                const char *pattern,\n"
7478 "                const char *path);\n"
7479 "\n"
7480 msgstr ""
7481
7482 #. type: textblock
7483 #: ../src/guestfs-actions.pod:1475 ../fish/guestfish-actions.pod:977
7484 msgid "This calls the external C<fgrep> program and returns the matching lines."
7485 msgstr ""
7486
7487 #. type: =head2
7488 #: ../src/guestfs-actions.pod:1487
7489 msgid "guestfs_fgrepi"
7490 msgstr ""
7491
7492 #. type: verbatim
7493 #: ../src/guestfs-actions.pod:1489
7494 #, no-wrap
7495 msgid ""
7496 " char **\n"
7497 " guestfs_fgrepi (guestfs_h *g,\n"
7498 "                 const char *pattern,\n"
7499 "                 const char *path);\n"
7500 "\n"
7501 msgstr ""
7502
7503 #. type: textblock
7504 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:987
7505 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
7506 msgstr ""
7507
7508 #. type: =head2
7509 #: ../src/guestfs-actions.pod:1506
7510 msgid "guestfs_file"
7511 msgstr ""
7512
7513 #. type: verbatim
7514 #: ../src/guestfs-actions.pod:1508
7515 #, no-wrap
7516 msgid ""
7517 " char *\n"
7518 " guestfs_file (guestfs_h *g,\n"
7519 "               const char *path);\n"
7520 "\n"
7521 msgstr ""
7522
7523 #. type: textblock
7524 #: ../src/guestfs-actions.pod:1512 ../fish/guestfish-actions.pod:997
7525 msgid ""
7526 "This call uses the standard L<file(1)> command to determine the type or "
7527 "contents of the file."
7528 msgstr ""
7529
7530 #. type: textblock
7531 #: ../src/guestfs-actions.pod:1515 ../fish/guestfish-actions.pod:1000
7532 msgid ""
7533 "This call will also transparently look inside various types of compressed "
7534 "file."
7535 msgstr ""
7536
7537 #. type: textblock
7538 #: ../src/guestfs-actions.pod:1518 ../fish/guestfish-actions.pod:1003
7539 msgid ""
7540 "The exact command which runs is C<file -zb path>.  Note in particular that "
7541 "the filename is not prepended to the output (the C<-b> option)."
7542 msgstr ""
7543
7544 #. type: textblock
7545 #: ../src/guestfs-actions.pod:1522 ../fish/guestfish-actions.pod:1007
7546 msgid ""
7547 "The output depends on the output of the underlying L<file(1)> command and it "
7548 "can change in future in ways beyond our control.  In other words, the output "
7549 "is not guaranteed by the ABI."
7550 msgstr ""
7551
7552 #. type: textblock
7553 #: ../src/guestfs-actions.pod:1526
7554 msgid ""
7555 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
7556 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
7557 msgstr ""
7558
7559 #. type: =head2
7560 #: ../src/guestfs-actions.pod:1534
7561 msgid "guestfs_file_architecture"
7562 msgstr ""
7563
7564 #. type: verbatim
7565 #: ../src/guestfs-actions.pod:1536
7566 #, no-wrap
7567 msgid ""
7568 " char *\n"
7569 " guestfs_file_architecture (guestfs_h *g,\n"
7570 "                            const char *filename);\n"
7571 "\n"
7572 msgstr ""
7573
7574 #. type: textblock
7575 #: ../src/guestfs-actions.pod:1540 ../fish/guestfish-actions.pod:1018
7576 msgid ""
7577 "This detects the architecture of the binary C<filename>, and returns it if "
7578 "known."
7579 msgstr ""
7580
7581 #. type: textblock
7582 #: ../src/guestfs-actions.pod:1543 ../fish/guestfish-actions.pod:1021
7583 msgid "Currently defined architectures are:"
7584 msgstr ""
7585
7586 #. type: =item
7587 #: ../src/guestfs-actions.pod:1547 ../fish/guestfish-actions.pod:1025
7588 msgid "\"i386\""
7589 msgstr ""
7590
7591 #. type: textblock
7592 #: ../src/guestfs-actions.pod:1549 ../fish/guestfish-actions.pod:1027
7593 msgid ""
7594 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
7595 "irrespective of the precise processor requirements of the binary."
7596 msgstr ""
7597
7598 #. type: =item
7599 #: ../src/guestfs-actions.pod:1552 ../fish/guestfish-actions.pod:1030
7600 msgid "\"x86_64\""
7601 msgstr ""
7602
7603 #. type: textblock
7604 #: ../src/guestfs-actions.pod:1554 ../fish/guestfish-actions.pod:1032
7605 msgid "64 bit x86-64."
7606 msgstr ""
7607
7608 #. type: =item
7609 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1034
7610 msgid "\"sparc\""
7611 msgstr ""
7612
7613 #. type: textblock
7614 #: ../src/guestfs-actions.pod:1558 ../fish/guestfish-actions.pod:1036
7615 msgid "32 bit SPARC."
7616 msgstr ""
7617
7618 #. type: =item
7619 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1038
7620 msgid "\"sparc64\""
7621 msgstr ""
7622
7623 #. type: textblock
7624 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1040
7625 msgid "64 bit SPARC V9 and above."
7626 msgstr ""
7627
7628 #. type: =item
7629 #: ../src/guestfs-actions.pod:1564 ../fish/guestfish-actions.pod:1042
7630 msgid "\"ia64\""
7631 msgstr ""
7632
7633 #. type: textblock
7634 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1044
7635 msgid "Intel Itanium."
7636 msgstr ""
7637
7638 #. type: =item
7639 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1046
7640 msgid "\"ppc\""
7641 msgstr ""
7642
7643 #. type: textblock
7644 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1048
7645 msgid "32 bit Power PC."
7646 msgstr ""
7647
7648 #. type: =item
7649 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1050
7650 msgid "\"ppc64\""
7651 msgstr ""
7652
7653 #. type: textblock
7654 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1052
7655 msgid "64 bit Power PC."
7656 msgstr ""
7657
7658 #. type: textblock
7659 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1056
7660 msgid "Libguestfs may return other architecture strings in future."
7661 msgstr ""
7662
7663 #. type: textblock
7664 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1058
7665 msgid "The function works on at least the following types of files:"
7666 msgstr ""
7667
7668 #. type: textblock
7669 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1064
7670 msgid "many types of Un*x and Linux binary"
7671 msgstr ""
7672
7673 #. type: textblock
7674 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1068
7675 msgid "many types of Un*x and Linux shared library"
7676 msgstr ""
7677
7678 #. type: textblock
7679 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1072
7680 msgid "Windows Win32 and Win64 binaries"
7681 msgstr ""
7682
7683 #. type: textblock
7684 #: ../src/guestfs-actions.pod:1598 ../fish/guestfish-actions.pod:1076
7685 msgid "Windows Win32 and Win64 DLLs"
7686 msgstr ""
7687
7688 #. type: textblock
7689 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1078
7690 msgid "Win32 binaries and DLLs return C<i386>."
7691 msgstr ""
7692
7693 #. type: textblock
7694 #: ../src/guestfs-actions.pod:1602 ../fish/guestfish-actions.pod:1080
7695 msgid "Win64 binaries and DLLs return C<x86_64>."
7696 msgstr ""
7697
7698 #. type: textblock
7699 #: ../src/guestfs-actions.pod:1606 ../fish/guestfish-actions.pod:1084
7700 msgid "Linux kernel modules"
7701 msgstr ""
7702
7703 #. type: textblock
7704 #: ../src/guestfs-actions.pod:1610 ../fish/guestfish-actions.pod:1088
7705 msgid "Linux new-style initrd images"
7706 msgstr ""
7707
7708 #. type: textblock
7709 #: ../src/guestfs-actions.pod:1614 ../fish/guestfish-actions.pod:1092
7710 msgid "some non-x86 Linux vmlinuz kernels"
7711 msgstr ""
7712
7713 #. type: textblock
7714 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1096
7715 msgid "What it can't do currently:"
7716 msgstr ""
7717
7718 #. type: textblock
7719 #: ../src/guestfs-actions.pod:1624 ../fish/guestfish-actions.pod:1102
7720 msgid "static libraries (libfoo.a)"
7721 msgstr ""
7722
7723 #. type: textblock
7724 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1106
7725 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
7726 msgstr ""
7727
7728 #. type: textblock
7729 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1110
7730 msgid "x86 Linux vmlinuz kernels"
7731 msgstr ""
7732
7733 #. type: textblock
7734 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1112
7735 msgid ""
7736 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
7737 "compressed code, and are horribly hard to unpack.  If you want to find the "
7738 "architecture of a kernel, use the architecture of the associated initrd or "
7739 "kernel module(s) instead."
7740 msgstr ""
7741
7742 #. type: textblock
7743 #: ../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
7744 msgid "(Added in 1.5.3)"
7745 msgstr ""
7746
7747 #. type: =head2
7748 #: ../src/guestfs-actions.pod:1646
7749 msgid "guestfs_filesize"
7750 msgstr ""
7751
7752 #. type: verbatim
7753 #: ../src/guestfs-actions.pod:1648
7754 #, no-wrap
7755 msgid ""
7756 " int64_t\n"
7757 " guestfs_filesize (guestfs_h *g,\n"
7758 "                   const char *file);\n"
7759 "\n"
7760 msgstr ""
7761
7762 #. type: textblock
7763 #: ../src/guestfs-actions.pod:1652 ../fish/guestfish-actions.pod:1123
7764 msgid "This command returns the size of C<file> in bytes."
7765 msgstr ""
7766
7767 #. type: textblock
7768 #: ../src/guestfs-actions.pod:1654
7769 msgid ""
7770 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
7771 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
7772 "devices, use C<guestfs_blockdev_getsize64>."
7773 msgstr ""
7774
7775 #. type: textblock
7776 #: ../src/guestfs-actions.pod:1660
7777 msgid "(Added in 1.0.82)"
7778 msgstr ""
7779
7780 #. type: =head2
7781 #: ../src/guestfs-actions.pod:1662
7782 msgid "guestfs_fill"
7783 msgstr ""
7784
7785 #. type: verbatim
7786 #: ../src/guestfs-actions.pod:1664
7787 #, no-wrap
7788 msgid ""
7789 " int\n"
7790 " guestfs_fill (guestfs_h *g,\n"
7791 "               int c,\n"
7792 "               int len,\n"
7793 "               const char *path);\n"
7794 "\n"
7795 msgstr ""
7796
7797 #. type: textblock
7798 #: ../src/guestfs-actions.pod:1670 ../fish/guestfish-actions.pod:1133
7799 msgid ""
7800 "This command creates a new file called C<path>.  The initial content of the "
7801 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
7802 "C<[0..255]>."
7803 msgstr ""
7804
7805 #. type: textblock
7806 #: ../src/guestfs-actions.pod:1674
7807 msgid ""
7808 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
7809 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
7810 "bytes use C<guestfs_fill_pattern>."
7811 msgstr ""
7812
7813 #. type: textblock
7814 #: ../src/guestfs-actions.pod:1686
7815 msgid "(Added in 1.0.79)"
7816 msgstr ""
7817
7818 #. type: =head2
7819 #: ../src/guestfs-actions.pod:1688
7820 msgid "guestfs_fill_pattern"
7821 msgstr ""
7822
7823 #. type: verbatim
7824 #: ../src/guestfs-actions.pod:1690
7825 #, no-wrap
7826 msgid ""
7827 " int\n"
7828 " guestfs_fill_pattern (guestfs_h *g,\n"
7829 "                       const char *pattern,\n"
7830 "                       int len,\n"
7831 "                       const char *path);\n"
7832 "\n"
7833 msgstr ""
7834
7835 #. type: textblock
7836 #: ../src/guestfs-actions.pod:1696
7837 msgid ""
7838 "This function is like C<guestfs_fill> except that it creates a new file of "
7839 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
7840 "pattern is truncated if necessary to ensure the length of the file is "
7841 "exactly C<len> bytes."
7842 msgstr ""
7843
7844 #. type: textblock
7845 #: ../src/guestfs-actions.pod:1708
7846 msgid "(Added in 1.3.12)"
7847 msgstr ""
7848
7849 #. type: =head2
7850 #: ../src/guestfs-actions.pod:1710
7851 msgid "guestfs_find"
7852 msgstr ""
7853
7854 #. type: verbatim
7855 #: ../src/guestfs-actions.pod:1712
7856 #, no-wrap
7857 msgid ""
7858 " char **\n"
7859 " guestfs_find (guestfs_h *g,\n"
7860 "               const char *directory);\n"
7861 "\n"
7862 msgstr ""
7863
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:1716 ../fish/guestfish-actions.pod:1155
7866 msgid ""
7867 "This command lists out all files and directories, recursively, starting at "
7868 "C<directory>.  It is essentially equivalent to running the shell command "
7869 "C<find directory -print> but some post-processing happens on the output, "
7870 "described below."
7871 msgstr ""
7872
7873 #. type: textblock
7874 #: ../src/guestfs-actions.pod:1721 ../fish/guestfish-actions.pod:1160
7875 msgid ""
7876 "This returns a list of strings I<without any prefix>.  Thus if the directory "
7877 "structure was:"
7878 msgstr ""
7879
7880 #. type: verbatim
7881 #: ../src/guestfs-actions.pod:1724 ../fish/guestfish-actions.pod:1163
7882 #, no-wrap
7883 msgid ""
7884 " /tmp/a\n"
7885 " /tmp/b\n"
7886 " /tmp/c/d\n"
7887 "\n"
7888 msgstr ""
7889
7890 #. type: textblock
7891 #: ../src/guestfs-actions.pod:1728
7892 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
7893 msgstr ""
7894
7895 #. type: verbatim
7896 #: ../src/guestfs-actions.pod:1731 ../fish/guestfish-actions.pod:1170
7897 #, no-wrap
7898 msgid ""
7899 " a\n"
7900 " b\n"
7901 " c\n"
7902 " c/d\n"
7903 "\n"
7904 msgstr ""
7905
7906 #. type: textblock
7907 #: ../src/guestfs-actions.pod:1736 ../fish/guestfish-actions.pod:1175
7908 msgid "If C<directory> is not a directory, then this command returns an error."
7909 msgstr ""
7910
7911 #. type: textblock
7912 #: ../src/guestfs-actions.pod:1739 ../fish/guestfish-actions.pod:1178
7913 msgid "The returned list is sorted."
7914 msgstr ""
7915
7916 #. type: textblock
7917 #: ../src/guestfs-actions.pod:1741
7918 msgid "See also C<guestfs_find0>."
7919 msgstr ""
7920
7921 #. type: textblock
7922 #: ../src/guestfs-actions.pod:1750 ../src/guestfs-actions.pod:3859 ../src/guestfs-actions.pod:5390
7923 msgid "(Added in 1.0.27)"
7924 msgstr ""
7925
7926 #. type: =head2
7927 #: ../src/guestfs-actions.pod:1752
7928 msgid "guestfs_find0"
7929 msgstr ""
7930
7931 #. type: verbatim
7932 #: ../src/guestfs-actions.pod:1754
7933 #, no-wrap
7934 msgid ""
7935 " int\n"
7936 " guestfs_find0 (guestfs_h *g,\n"
7937 "                const char *directory,\n"
7938 "                const char *files);\n"
7939 "\n"
7940 msgstr ""
7941
7942 #. type: textblock
7943 #: ../src/guestfs-actions.pod:1759 ../fish/guestfish-actions.pod:1189
7944 msgid ""
7945 "This command lists out all files and directories, recursively, starting at "
7946 "C<directory>, placing the resulting list in the external file called "
7947 "C<files>."
7948 msgstr ""
7949
7950 #. type: textblock
7951 #: ../src/guestfs-actions.pod:1763
7952 msgid ""
7953 "This command works the same way as C<guestfs_find> with the following "
7954 "exceptions:"
7955 msgstr ""
7956
7957 #. type: textblock
7958 #: ../src/guestfs-actions.pod:1770 ../fish/guestfish-actions.pod:1200
7959 msgid "The resulting list is written to an external file."
7960 msgstr ""
7961
7962 #. type: textblock
7963 #: ../src/guestfs-actions.pod:1774 ../fish/guestfish-actions.pod:1204
7964 msgid ""
7965 "Items (filenames) in the result are separated by C<\\0> characters.  See "
7966 "L<find(1)> option I<-print0>."
7967 msgstr ""
7968
7969 #. type: textblock
7970 #: ../src/guestfs-actions.pod:1779 ../fish/guestfish-actions.pod:1209
7971 msgid "This command is not limited in the number of names that it can return."
7972 msgstr ""
7973
7974 #. type: textblock
7975 #: ../src/guestfs-actions.pod:1784 ../fish/guestfish-actions.pod:1214
7976 msgid "The result list is not sorted."
7977 msgstr ""
7978
7979 #. type: textblock
7980 #: ../src/guestfs-actions.pod:1790
7981 msgid "(Added in 1.0.74)"
7982 msgstr ""
7983
7984 #. type: =head2
7985 #: ../src/guestfs-actions.pod:1792
7986 msgid "guestfs_findfs_label"
7987 msgstr ""
7988
7989 #. type: verbatim
7990 #: ../src/guestfs-actions.pod:1794
7991 #, no-wrap
7992 msgid ""
7993 " char *\n"
7994 " guestfs_findfs_label (guestfs_h *g,\n"
7995 "                       const char *label);\n"
7996 "\n"
7997 msgstr ""
7998
7999 #. type: textblock
8000 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1224
8001 msgid ""
8002 "This command searches the filesystems and returns the one which has the "
8003 "given label.  An error is returned if no such filesystem can be found."
8004 msgstr ""
8005
8006 #. type: textblock
8007 #: ../src/guestfs-actions.pod:1802
8008 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8009 msgstr ""
8010
8011 #. type: =head2
8012 #: ../src/guestfs-actions.pod:1809
8013 msgid "guestfs_findfs_uuid"
8014 msgstr ""
8015
8016 #. type: verbatim
8017 #: ../src/guestfs-actions.pod:1811
8018 #, no-wrap
8019 msgid ""
8020 " char *\n"
8021 " guestfs_findfs_uuid (guestfs_h *g,\n"
8022 "                      const char *uuid);\n"
8023 "\n"
8024 msgstr ""
8025
8026 #. type: textblock
8027 #: ../src/guestfs-actions.pod:1815 ../fish/guestfish-actions.pod:1234
8028 msgid ""
8029 "This command searches the filesystems and returns the one which has the "
8030 "given UUID.  An error is returned if no such filesystem can be found."
8031 msgstr ""
8032
8033 #. type: textblock
8034 #: ../src/guestfs-actions.pod:1819
8035 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8036 msgstr ""
8037
8038 #. type: =head2
8039 #: ../src/guestfs-actions.pod:1826
8040 msgid "guestfs_fsck"
8041 msgstr ""
8042
8043 #. type: verbatim
8044 #: ../src/guestfs-actions.pod:1828
8045 #, no-wrap
8046 msgid ""
8047 " int\n"
8048 " guestfs_fsck (guestfs_h *g,\n"
8049 "               const char *fstype,\n"
8050 "               const char *device);\n"
8051 "\n"
8052 msgstr ""
8053
8054 #. type: textblock
8055 #: ../src/guestfs-actions.pod:1833 ../fish/guestfish-actions.pod:1244
8056 msgid ""
8057 "This runs the filesystem checker (fsck) on C<device> which should have "
8058 "filesystem type C<fstype>."
8059 msgstr ""
8060
8061 #. type: textblock
8062 #: ../src/guestfs-actions.pod:1836 ../fish/guestfish-actions.pod:1247
8063 msgid ""
8064 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8065 "codes from C<fsck>."
8066 msgstr ""
8067
8068 #. type: textblock
8069 #: ../src/guestfs-actions.pod:1845 ../fish/guestfish-actions.pod:1256
8070 msgid "Multiple status codes can be summed together."
8071 msgstr ""
8072
8073 #. type: textblock
8074 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1260
8075 msgid ""
8076 "A non-zero return code can mean \"success\", for example if errors have been "
8077 "corrected on the filesystem."
8078 msgstr ""
8079
8080 #. type: textblock
8081 #: ../src/guestfs-actions.pod:1854 ../fish/guestfish-actions.pod:1265
8082 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8083 msgstr ""
8084
8085 #. type: textblock
8086 #: ../src/guestfs-actions.pod:1859 ../fish/guestfish-actions.pod:1270
8087 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8088 msgstr ""
8089
8090 #. type: textblock
8091 #: ../src/guestfs-actions.pod:1863 ../src/guestfs-actions.pod:7037
8092 msgid "(Added in 1.0.16)"
8093 msgstr ""
8094
8095 #. type: =head2
8096 #: ../src/guestfs-actions.pod:1865
8097 msgid "guestfs_get_append"
8098 msgstr ""
8099
8100 #. type: verbatim
8101 #: ../src/guestfs-actions.pod:1867
8102 #, no-wrap
8103 msgid ""
8104 " const char *\n"
8105 " guestfs_get_append (guestfs_h *g);\n"
8106 "\n"
8107 msgstr ""
8108
8109 #. type: textblock
8110 #: ../src/guestfs-actions.pod:1870 ../fish/guestfish-actions.pod:1276
8111 msgid ""
8112 "Return the additional kernel options which are added to the guest kernel "
8113 "command line."
8114 msgstr ""
8115
8116 #. type: textblock
8117 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1279
8118 msgid "If C<NULL> then no options are added."
8119 msgstr ""
8120
8121 #. type: textblock
8122 #: ../src/guestfs-actions.pod:1875
8123 msgid ""
8124 "This function returns a string which may be NULL.  There is no way to return "
8125 "an error from this function.  The string is owned by the guest handle and "
8126 "must I<not> be freed."
8127 msgstr ""
8128
8129 #. type: textblock
8130 #: ../src/guestfs-actions.pod:1879 ../src/guestfs-actions.pod:5068 ../src/guestfs-actions.pod:5531 ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:5918 ../src/guestfs-actions.pod:5934 ../src/guestfs-actions.pod:5951 ../src/guestfs-actions.pod:6708 ../src/guestfs-actions.pod:6726 ../src/guestfs-actions.pod:7080
8131 msgid "(Added in 1.0.26)"
8132 msgstr ""
8133
8134 #. type: =head2
8135 #: ../src/guestfs-actions.pod:1881
8136 msgid "guestfs_get_autosync"
8137 msgstr ""
8138
8139 #. type: verbatim
8140 #: ../src/guestfs-actions.pod:1883
8141 #, no-wrap
8142 msgid ""
8143 " int\n"
8144 " guestfs_get_autosync (guestfs_h *g);\n"
8145 "\n"
8146 msgstr ""
8147
8148 #. type: textblock
8149 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1285
8150 msgid "Get the autosync flag."
8151 msgstr ""
8152
8153 #. type: =head2
8154 #: ../src/guestfs-actions.pod:1892
8155 msgid "guestfs_get_direct"
8156 msgstr ""
8157
8158 #. type: verbatim
8159 #: ../src/guestfs-actions.pod:1894
8160 #, no-wrap
8161 msgid ""
8162 " int\n"
8163 " guestfs_get_direct (guestfs_h *g);\n"
8164 "\n"
8165 msgstr ""
8166
8167 #. type: textblock
8168 #: ../src/guestfs-actions.pod:1897 ../fish/guestfish-actions.pod:1291
8169 msgid "Return the direct appliance mode flag."
8170 msgstr ""
8171
8172 #. type: textblock
8173 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:5572
8174 msgid "(Added in 1.0.72)"
8175 msgstr ""
8176
8177 #. type: =head2
8178 #: ../src/guestfs-actions.pod:1903
8179 msgid "guestfs_get_e2label"
8180 msgstr ""
8181
8182 #. type: verbatim
8183 #: ../src/guestfs-actions.pod:1905
8184 #, no-wrap
8185 msgid ""
8186 " char *\n"
8187 " guestfs_get_e2label (guestfs_h *g,\n"
8188 "                      const char *device);\n"
8189 "\n"
8190 msgstr ""
8191
8192 #. type: textblock
8193 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1297
8194 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
8195 msgstr ""
8196
8197 #. type: textblock
8198 #: ../src/guestfs-actions.pod:1915 ../fish/guestfish-actions.pod:1300
8199 msgid ""
8200 "This function is deprecated.  In new code, use the C<vfs_label> call "
8201 "instead."
8202 msgstr ""
8203
8204 #. type: textblock
8205 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1943 ../src/guestfs-actions.pod:5590 ../src/guestfs-actions.pod:5609
8206 msgid "(Added in 1.0.15)"
8207 msgstr ""
8208
8209 #. type: =head2
8210 #: ../src/guestfs-actions.pod:1924
8211 msgid "guestfs_get_e2uuid"
8212 msgstr ""
8213
8214 #. type: verbatim
8215 #: ../src/guestfs-actions.pod:1926
8216 #, no-wrap
8217 msgid ""
8218 " char *\n"
8219 " guestfs_get_e2uuid (guestfs_h *g,\n"
8220 "                     const char *device);\n"
8221 "\n"
8222 msgstr ""
8223
8224 #. type: textblock
8225 #: ../src/guestfs-actions.pod:1930 ../fish/guestfish-actions.pod:1311
8226 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
8227 msgstr ""
8228
8229 #. type: textblock
8230 #: ../src/guestfs-actions.pod:1936 ../fish/guestfish-actions.pod:1314
8231 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
8232 msgstr ""
8233
8234 #. type: =head2
8235 #: ../src/guestfs-actions.pod:1945
8236 msgid "guestfs_get_memsize"
8237 msgstr ""
8238
8239 #. type: verbatim
8240 #: ../src/guestfs-actions.pod:1947
8241 #, no-wrap
8242 msgid ""
8243 " int\n"
8244 " guestfs_get_memsize (guestfs_h *g);\n"
8245 "\n"
8246 msgstr ""
8247
8248 #. type: textblock
8249 #: ../src/guestfs-actions.pod:1950 ../fish/guestfish-actions.pod:1325
8250 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
8251 msgstr ""
8252
8253 #. type: textblock
8254 #: ../src/guestfs-actions.pod:1953
8255 msgid ""
8256 "If C<guestfs_set_memsize> was not called on this handle, and if "
8257 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
8258 "value for memsize."
8259 msgstr ""
8260
8261 #. type: textblock
8262 #: ../src/guestfs-actions.pod:1957 ../src/guestfs-actions.pod:2038 ../src/guestfs-actions.pod:5625 ../src/guestfs-actions.pod:5732 ../fish/guestfish-actions.pod:1332 ../fish/guestfish-actions.pod:1383 ../fish/guestfish-actions.pod:3752 ../fish/guestfish-actions.pod:3839
8263 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
8264 msgstr ""
8265
8266 #. type: textblock
8267 #: ../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:5293 ../src/guestfs-actions.pod:5630 ../src/guestfs-actions.pod:5873 ../src/guestfs-actions.pod:6474
8268 msgid "(Added in 1.0.55)"
8269 msgstr ""
8270
8271 #. type: =head2
8272 #: ../src/guestfs-actions.pod:1964
8273 msgid "guestfs_get_network"
8274 msgstr ""
8275
8276 #. type: verbatim
8277 #: ../src/guestfs-actions.pod:1966
8278 #, no-wrap
8279 msgid ""
8280 " int\n"
8281 " guestfs_get_network (guestfs_h *g);\n"
8282 "\n"
8283 msgstr ""
8284
8285 #. type: textblock
8286 #: ../src/guestfs-actions.pod:1969 ../fish/guestfish-actions.pod:1339
8287 msgid "This returns the enable network flag."
8288 msgstr ""
8289
8290 #. type: textblock
8291 #: ../src/guestfs-actions.pod:1973 ../src/guestfs-actions.pod:5649
8292 msgid "(Added in 1.5.4)"
8293 msgstr ""
8294
8295 #. type: =head2
8296 #: ../src/guestfs-actions.pod:1975
8297 msgid "guestfs_get_path"
8298 msgstr ""
8299
8300 #. type: verbatim
8301 #: ../src/guestfs-actions.pod:1977
8302 #, no-wrap
8303 msgid ""
8304 " const char *\n"
8305 " guestfs_get_path (guestfs_h *g);\n"
8306 "\n"
8307 msgstr ""
8308
8309 #. type: textblock
8310 #: ../src/guestfs-actions.pod:1980 ../fish/guestfish-actions.pod:1345
8311 msgid "Return the current search path."
8312 msgstr ""
8313
8314 #. type: textblock
8315 #: ../src/guestfs-actions.pod:1982 ../fish/guestfish-actions.pod:1347
8316 msgid ""
8317 "This is always non-NULL.  If it wasn't set already, then this will return "
8318 "the default path."
8319 msgstr ""
8320
8321 #. type: textblock
8322 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:2014
8323 msgid ""
8324 "This function returns a string, or NULL on error.  The string is owned by "
8325 "the guest handle and must I<not> be freed."
8326 msgstr ""
8327
8328 #. type: =head2
8329 #: ../src/guestfs-actions.pod:1990
8330 msgid "guestfs_get_pid"
8331 msgstr ""
8332
8333 #. type: verbatim
8334 #: ../src/guestfs-actions.pod:1992
8335 #, no-wrap
8336 msgid ""
8337 " int\n"
8338 " guestfs_get_pid (guestfs_h *g);\n"
8339 "\n"
8340 msgstr ""
8341
8342 #. type: textblock
8343 #: ../src/guestfs-actions.pod:1995 ../fish/guestfish-actions.pod:1356
8344 msgid ""
8345 "Return the process ID of the qemu subprocess.  If there is no qemu "
8346 "subprocess, then this will return an error."
8347 msgstr ""
8348
8349 #. type: textblock
8350 #: ../src/guestfs-actions.pod:1998 ../fish/guestfish-actions.pod:1359
8351 msgid "This is an internal call used for debugging and testing."
8352 msgstr ""
8353
8354 #. type: textblock
8355 #: ../src/guestfs-actions.pod:2002
8356 msgid "(Added in 1.0.56)"
8357 msgstr ""
8358
8359 #. type: =head2
8360 #: ../src/guestfs-actions.pod:2004
8361 msgid "guestfs_get_qemu"
8362 msgstr ""
8363
8364 #. type: verbatim
8365 #: ../src/guestfs-actions.pod:2006
8366 #, no-wrap
8367 msgid ""
8368 " const char *\n"
8369 " guestfs_get_qemu (guestfs_h *g);\n"
8370 "\n"
8371 msgstr ""
8372
8373 #. type: textblock
8374 #: ../src/guestfs-actions.pod:2009 ../fish/guestfish-actions.pod:1365
8375 msgid "Return the current qemu binary."
8376 msgstr ""
8377
8378 #. type: textblock
8379 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1367
8380 msgid ""
8381 "This is always non-NULL.  If it wasn't set already, then this will return "
8382 "the default qemu binary name."
8383 msgstr ""
8384
8385 #. type: textblock
8386 #: ../src/guestfs-actions.pod:2017 ../src/guestfs-actions.pod:5694
8387 msgid "(Added in 1.0.6)"
8388 msgstr ""
8389
8390 #. type: =head2
8391 #: ../src/guestfs-actions.pod:2019
8392 msgid "guestfs_get_recovery_proc"
8393 msgstr ""
8394
8395 #. type: verbatim
8396 #: ../src/guestfs-actions.pod:2021
8397 #, no-wrap
8398 msgid ""
8399 " int\n"
8400 " guestfs_get_recovery_proc (guestfs_h *g);\n"
8401 "\n"
8402 msgstr ""
8403
8404 #. type: textblock
8405 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1374
8406 msgid "Return the recovery process enabled flag."
8407 msgstr ""
8408
8409 #. type: textblock
8410 #: ../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:4998 ../src/guestfs-actions.pod:5341 ../src/guestfs-actions.pod:5718 ../src/guestfs-actions.pod:6377 ../src/guestfs-actions.pod:6397 ../src/guestfs-actions.pod:6589
8411 msgid "(Added in 1.0.77)"
8412 msgstr ""
8413
8414 #. type: =head2
8415 #: ../src/guestfs-actions.pod:2030
8416 msgid "guestfs_get_selinux"
8417 msgstr ""
8418
8419 #. type: verbatim
8420 #: ../src/guestfs-actions.pod:2032
8421 #, no-wrap
8422 msgid ""
8423 " int\n"
8424 " guestfs_get_selinux (guestfs_h *g);\n"
8425 "\n"
8426 msgstr ""
8427
8428 #. type: textblock
8429 #: ../src/guestfs-actions.pod:2035
8430 msgid ""
8431 "This returns the current setting of the selinux flag which is passed to the "
8432 "appliance at boot time.  See C<guestfs_set_selinux>."
8433 msgstr ""
8434
8435 #. type: textblock
8436 #: ../src/guestfs-actions.pod:2043 ../src/guestfs-actions.pod:2106 ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5791
8437 msgid "(Added in 1.0.67)"
8438 msgstr ""
8439
8440 #. type: =head2
8441 #: ../src/guestfs-actions.pod:2045
8442 msgid "guestfs_get_state"
8443 msgstr ""
8444
8445 #. type: verbatim
8446 #: ../src/guestfs-actions.pod:2047
8447 #, no-wrap
8448 msgid ""
8449 " int\n"
8450 " guestfs_get_state (guestfs_h *g);\n"
8451 "\n"
8452 msgstr ""
8453
8454 #. type: textblock
8455 #: ../src/guestfs-actions.pod:2050 ../fish/guestfish-actions.pod:1390
8456 msgid ""
8457 "This returns the current state as an opaque integer.  This is only useful "
8458 "for printing debug and internal error messages."
8459 msgstr ""
8460
8461 #. type: textblock
8462 #: ../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
8463 msgid "For more information on states, see L<guestfs(3)>."
8464 msgstr ""
8465
8466 #. type: =head2
8467 #: ../src/guestfs-actions.pod:2059
8468 msgid "guestfs_get_trace"
8469 msgstr ""
8470
8471 #. type: verbatim
8472 #: ../src/guestfs-actions.pod:2061
8473 #, no-wrap
8474 msgid ""
8475 " int\n"
8476 " guestfs_get_trace (guestfs_h *g);\n"
8477 "\n"
8478 msgstr ""
8479
8480 #. type: textblock
8481 #: ../src/guestfs-actions.pod:2064 ../fish/guestfish-actions.pod:1399
8482 msgid "Return the command trace flag."
8483 msgstr ""
8484
8485 #. type: =head2
8486 #: ../src/guestfs-actions.pod:2070
8487 msgid "guestfs_get_umask"
8488 msgstr ""
8489
8490 #. type: verbatim
8491 #: ../src/guestfs-actions.pod:2072
8492 #, no-wrap
8493 msgid ""
8494 " int\n"
8495 " guestfs_get_umask (guestfs_h *g);\n"
8496 "\n"
8497 msgstr ""
8498
8499 #. type: textblock
8500 #: ../src/guestfs-actions.pod:2075
8501 msgid ""
8502 "Return the current umask.  By default the umask is C<022> unless it has been "
8503 "set by calling C<guestfs_umask>."
8504 msgstr ""
8505
8506 #. type: =head2
8507 #: ../src/guestfs-actions.pod:2082
8508 msgid "guestfs_get_verbose"
8509 msgstr ""
8510
8511 #. type: verbatim
8512 #: ../src/guestfs-actions.pod:2084
8513 #, no-wrap
8514 msgid ""
8515 " int\n"
8516 " guestfs_get_verbose (guestfs_h *g);\n"
8517 "\n"
8518 msgstr ""
8519
8520 #. type: textblock
8521 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
8522 msgid "This returns the verbose messages flag."
8523 msgstr ""
8524
8525 #. type: =head2
8526 #: ../src/guestfs-actions.pod:2093
8527 msgid "guestfs_getcon"
8528 msgstr ""
8529
8530 #. type: verbatim
8531 #: ../src/guestfs-actions.pod:2095
8532 #, no-wrap
8533 msgid ""
8534 " char *\n"
8535 " guestfs_getcon (guestfs_h *g);\n"
8536 "\n"
8537 msgstr ""
8538
8539 #. type: textblock
8540 #: ../src/guestfs-actions.pod:2098 ../fish/guestfish-actions.pod:1418
8541 msgid "This gets the SELinux security context of the daemon."
8542 msgstr ""
8543
8544 #. type: textblock
8545 #: ../src/guestfs-actions.pod:2100
8546 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
8547 msgstr ""
8548
8549 #. type: =head2
8550 #: ../src/guestfs-actions.pod:2108
8551 msgid "guestfs_getxattr"
8552 msgstr ""
8553
8554 #. type: verbatim
8555 #: ../src/guestfs-actions.pod:2110
8556 #, no-wrap
8557 msgid ""
8558 " char *\n"
8559 " guestfs_getxattr (guestfs_h *g,\n"
8560 "                   const char *path,\n"
8561 "                   const char *name,\n"
8562 "                   size_t *size_r);\n"
8563 "\n"
8564 msgstr ""
8565
8566 #. type: textblock
8567 #: ../src/guestfs-actions.pod:2116
8568 msgid ""
8569 "Get a single extended attribute from file C<path> named C<name>.  This call "
8570 "follows symlinks.  If you want to lookup an extended attribute for the "
8571 "symlink itself, use C<guestfs_lgetxattr>."
8572 msgstr ""
8573
8574 #. type: textblock
8575 #: ../src/guestfs-actions.pod:2120 ../src/guestfs-actions.pod:3274
8576 msgid ""
8577 "Normally it is better to get all extended attributes from a file in one go "
8578 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
8579 "implementations are buggy and do not provide a way to list out attributes.  "
8580 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
8581 "extended attributes you want in advance and call this function."
8582 msgstr ""
8583
8584 #. type: textblock
8585 #: ../src/guestfs-actions.pod:2127 ../src/guestfs-actions.pod:3281 ../fish/guestfish-actions.pod:1438 ../fish/guestfish-actions.pod:2269
8586 msgid ""
8587 "Extended attribute values are blobs of binary data.  If there is no extended "
8588 "attribute named C<name>, this returns an error."
8589 msgstr ""
8590
8591 #. type: textblock
8592 #: ../src/guestfs-actions.pod:2130
8593 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
8594 msgstr ""
8595
8596 #. type: textblock
8597 #: ../src/guestfs-actions.pod:2132 ../src/guestfs-actions.pod:2323 ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:4991 ../src/guestfs-actions.pod:5017 ../src/guestfs-actions.pod:5198
8598 msgid ""
8599 "This function returns a buffer, or NULL on error.  The size of the returned "
8600 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
8601 "after use>."
8602 msgstr ""
8603
8604 #. type: textblock
8605 #: ../src/guestfs-actions.pod:2136 ../src/guestfs-actions.pod:3290
8606 msgid "(Added in 1.7.24)"
8607 msgstr ""
8608
8609 #. type: =head2
8610 #: ../src/guestfs-actions.pod:2138
8611 msgid "guestfs_getxattrs"
8612 msgstr ""
8613
8614 #. type: verbatim
8615 #: ../src/guestfs-actions.pod:2140
8616 #, no-wrap
8617 msgid ""
8618 " struct guestfs_xattr_list *\n"
8619 " guestfs_getxattrs (guestfs_h *g,\n"
8620 "                    const char *path);\n"
8621 "\n"
8622 msgstr ""
8623
8624 #. type: textblock
8625 #: ../src/guestfs-actions.pod:2144 ../fish/guestfish-actions.pod:1447
8626 msgid "This call lists the extended attributes of the file or directory C<path>."
8627 msgstr ""
8628
8629 #. type: textblock
8630 #: ../src/guestfs-actions.pod:2147 ../fish/guestfish-actions.pod:1450
8631 msgid ""
8632 "At the system call level, this is a combination of the L<listxattr(2)> and "
8633 "L<getxattr(2)> calls."
8634 msgstr ""
8635
8636 #. type: textblock
8637 #: ../src/guestfs-actions.pod:2150
8638 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
8639 msgstr ""
8640
8641 #. type: textblock
8642 #: ../src/guestfs-actions.pod:2152 ../src/guestfs-actions.pod:3302 ../src/guestfs-actions.pod:3953
8643 msgid ""
8644 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
8645 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
8646 msgstr ""
8647
8648 #. type: textblock
8649 #: ../src/guestfs-actions.pod:2156 ../src/guestfs-actions.pod:3306 ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3507 ../src/guestfs-actions.pod:5371 ../src/guestfs-actions.pod:5810 ../src/guestfs-actions.pod:7145
8650 msgid "(Added in 1.0.59)"
8651 msgstr ""
8652
8653 #. type: =head2
8654 #: ../src/guestfs-actions.pod:2158
8655 msgid "guestfs_glob_expand"
8656 msgstr ""
8657
8658 #. type: verbatim
8659 #: ../src/guestfs-actions.pod:2160
8660 #, no-wrap
8661 msgid ""
8662 " char **\n"
8663 " guestfs_glob_expand (guestfs_h *g,\n"
8664 "                      const char *pattern);\n"
8665 "\n"
8666 msgstr ""
8667
8668 #. type: textblock
8669 #: ../src/guestfs-actions.pod:2164 ../fish/guestfish-actions.pod:1459
8670 msgid ""
8671 "This command searches for all the pathnames matching C<pattern> according to "
8672 "the wildcard expansion rules used by the shell."
8673 msgstr ""
8674
8675 #. type: textblock
8676 #: ../src/guestfs-actions.pod:2168 ../fish/guestfish-actions.pod:1463
8677 msgid "If no paths match, then this returns an empty list (note: not an error)."
8678 msgstr ""
8679
8680 #. type: textblock
8681 #: ../src/guestfs-actions.pod:2171 ../fish/guestfish-actions.pod:1466
8682 msgid ""
8683 "It is just a wrapper around the C L<glob(3)> function with flags "
8684 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
8685 msgstr ""
8686
8687 #. type: textblock
8688 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:5992
8689 msgid "(Added in 1.0.50)"
8690 msgstr ""
8691
8692 #. type: =head2
8693 #: ../src/guestfs-actions.pod:2181
8694 msgid "guestfs_grep"
8695 msgstr ""
8696
8697 #. type: verbatim
8698 #: ../src/guestfs-actions.pod:2183
8699 #, no-wrap
8700 msgid ""
8701 " char **\n"
8702 " guestfs_grep (guestfs_h *g,\n"
8703 "               const char *regex,\n"
8704 "               const char *path);\n"
8705 "\n"
8706 msgstr ""
8707
8708 #. type: textblock
8709 #: ../src/guestfs-actions.pod:2188 ../fish/guestfish-actions.pod:1474
8710 msgid "This calls the external C<grep> program and returns the matching lines."
8711 msgstr ""
8712
8713 #. type: =head2
8714 #: ../src/guestfs-actions.pod:2200
8715 msgid "guestfs_grepi"
8716 msgstr ""
8717
8718 #. type: verbatim
8719 #: ../src/guestfs-actions.pod:2202
8720 #, no-wrap
8721 msgid ""
8722 " char **\n"
8723 " guestfs_grepi (guestfs_h *g,\n"
8724 "                const char *regex,\n"
8725 "                const char *path);\n"
8726 "\n"
8727 msgstr ""
8728
8729 #. type: textblock
8730 #: ../src/guestfs-actions.pod:2207 ../fish/guestfish-actions.pod:1484
8731 msgid "This calls the external C<grep -i> program and returns the matching lines."
8732 msgstr ""
8733
8734 #. type: =head2
8735 #: ../src/guestfs-actions.pod:2219
8736 msgid "guestfs_grub_install"
8737 msgstr ""
8738
8739 #. type: verbatim
8740 #: ../src/guestfs-actions.pod:2221
8741 #, no-wrap
8742 msgid ""
8743 " int\n"
8744 " guestfs_grub_install (guestfs_h *g,\n"
8745 "                       const char *root,\n"
8746 "                       const char *device);\n"
8747 "\n"
8748 msgstr ""
8749
8750 #. type: textblock
8751 #: ../src/guestfs-actions.pod:2226 ../fish/guestfish-actions.pod:1494
8752 msgid ""
8753 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
8754 "the root directory being C<root>."
8755 msgstr ""
8756
8757 #. type: textblock
8758 #: ../src/guestfs-actions.pod:2229 ../fish/guestfish-actions.pod:1497
8759 msgid ""
8760 "Note: If grub-install reports the error \"No suitable drive was found in the "
8761 "generated device map.\" it may be that you need to create a "
8762 "C</boot/grub/device.map> file first that contains the mapping between grub "
8763 "device names and Linux device names.  It is usually sufficient to create a "
8764 "file containing:"
8765 msgstr ""
8766
8767 #. type: verbatim
8768 #: ../src/guestfs-actions.pod:2236 ../fish/guestfish-actions.pod:1504
8769 #, no-wrap
8770 msgid ""
8771 " (hd0) /dev/vda\n"
8772 "\n"
8773 msgstr ""
8774
8775 #. type: textblock
8776 #: ../src/guestfs-actions.pod:2238 ../fish/guestfish-actions.pod:1506
8777 msgid "replacing C</dev/vda> with the name of the installation device."
8778 msgstr ""
8779
8780 #. type: textblock
8781 #: ../src/guestfs-actions.pod:2242
8782 msgid "(Added in 1.0.17)"
8783 msgstr ""
8784
8785 #. type: =head2
8786 #: ../src/guestfs-actions.pod:2244
8787 msgid "guestfs_head"
8788 msgstr ""
8789
8790 #. type: verbatim
8791 #: ../src/guestfs-actions.pod:2246
8792 #, no-wrap
8793 msgid ""
8794 " char **\n"
8795 " guestfs_head (guestfs_h *g,\n"
8796 "               const char *path);\n"
8797 "\n"
8798 msgstr ""
8799
8800 #. type: textblock
8801 #: ../src/guestfs-actions.pod:2250 ../fish/guestfish-actions.pod:1512
8802 msgid ""
8803 "This command returns up to the first 10 lines of a file as a list of "
8804 "strings."
8805 msgstr ""
8806
8807 #. type: =head2
8808 #: ../src/guestfs-actions.pod:2262
8809 msgid "guestfs_head_n"
8810 msgstr ""
8811
8812 #. type: verbatim
8813 #: ../src/guestfs-actions.pod:2264
8814 #, no-wrap
8815 msgid ""
8816 " char **\n"
8817 " guestfs_head_n (guestfs_h *g,\n"
8818 "                 int nrlines,\n"
8819 "                 const char *path);\n"
8820 "\n"
8821 msgstr ""
8822
8823 #. type: textblock
8824 #: ../src/guestfs-actions.pod:2269 ../fish/guestfish-actions.pod:1522
8825 msgid ""
8826 "If the parameter C<nrlines> is a positive number, this returns the first "
8827 "C<nrlines> lines of the file C<path>."
8828 msgstr ""
8829
8830 #. type: textblock
8831 #: ../src/guestfs-actions.pod:2272 ../fish/guestfish-actions.pod:1525
8832 msgid ""
8833 "If the parameter C<nrlines> is a negative number, this returns lines from "
8834 "the file C<path>, excluding the last C<nrlines> lines."
8835 msgstr ""
8836
8837 #. type: textblock
8838 #: ../src/guestfs-actions.pod:2275 ../src/guestfs-actions.pod:6272 ../fish/guestfish-actions.pod:1528 ../fish/guestfish-actions.pod:4185
8839 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
8840 msgstr ""
8841
8842 #. type: =head2
8843 #: ../src/guestfs-actions.pod:2286
8844 msgid "guestfs_hexdump"
8845 msgstr ""
8846
8847 #. type: verbatim
8848 #: ../src/guestfs-actions.pod:2288
8849 #, no-wrap
8850 msgid ""
8851 " char *\n"
8852 " guestfs_hexdump (guestfs_h *g,\n"
8853 "                  const char *path);\n"
8854 "\n"
8855 msgstr ""
8856
8857 #. type: textblock
8858 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1537
8859 msgid ""
8860 "This runs C<hexdump -C> on the given C<path>.  The result is the "
8861 "human-readable, canonical hex dump of the file."
8862 msgstr ""
8863
8864 #. type: textblock
8865 #: ../src/guestfs-actions.pod:2301 ../src/guestfs-actions.pod:6056 ../src/guestfs-actions.pod:6111
8866 msgid "(Added in 1.0.22)"
8867 msgstr ""
8868
8869 #. type: =head2
8870 #: ../src/guestfs-actions.pod:2303
8871 msgid "guestfs_initrd_cat"
8872 msgstr ""
8873
8874 #. type: verbatim
8875 #: ../src/guestfs-actions.pod:2305
8876 #, no-wrap
8877 msgid ""
8878 " char *\n"
8879 " guestfs_initrd_cat (guestfs_h *g,\n"
8880 "                     const char *initrdpath,\n"
8881 "                     const char *filename,\n"
8882 "                     size_t *size_r);\n"
8883 "\n"
8884 msgstr ""
8885
8886 #. type: textblock
8887 #: ../src/guestfs-actions.pod:2311 ../fish/guestfish-actions.pod:1547
8888 msgid ""
8889 "This command unpacks the file C<filename> from the initrd file called "
8890 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
8891 "character."
8892 msgstr ""
8893
8894 #. type: textblock
8895 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1551
8896 msgid ""
8897 "For example, in guestfish you could use the following command to examine the "
8898 "boot script (usually called C</init>)  contained in a Linux initrd or "
8899 "initramfs image:"
8900 msgstr ""
8901
8902 #. type: verbatim
8903 #: ../src/guestfs-actions.pod:2319 ../fish/guestfish-actions.pod:1555
8904 #, no-wrap
8905 msgid ""
8906 " initrd-cat /boot/initrd-<version>.img init\n"
8907 "\n"
8908 msgstr ""
8909
8910 #. type: textblock
8911 #: ../src/guestfs-actions.pod:2321
8912 msgid "See also C<guestfs_initrd_list>."
8913 msgstr ""
8914
8915 #. type: =head2
8916 #: ../src/guestfs-actions.pod:2332
8917 msgid "guestfs_initrd_list"
8918 msgstr ""
8919
8920 #. type: verbatim
8921 #: ../src/guestfs-actions.pod:2334
8922 #, no-wrap
8923 msgid ""
8924 " char **\n"
8925 " guestfs_initrd_list (guestfs_h *g,\n"
8926 "                      const char *path);\n"
8927 "\n"
8928 msgstr ""
8929
8930 #. type: textblock
8931 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1566
8932 msgid "This command lists out files contained in an initrd."
8933 msgstr ""
8934
8935 #. type: textblock
8936 #: ../src/guestfs-actions.pod:2340 ../fish/guestfish-actions.pod:1568
8937 msgid ""
8938 "The files are listed without any initial C</> character.  The files are "
8939 "listed in the order they appear (not necessarily alphabetical).  Directory "
8940 "names are listed as separate items."
8941 msgstr ""
8942
8943 #. type: textblock
8944 #: ../src/guestfs-actions.pod:2344 ../fish/guestfish-actions.pod:1572
8945 msgid ""
8946 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
8947 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
8948 "files)."
8949 msgstr ""
8950
8951 #. type: =head2
8952 #: ../src/guestfs-actions.pod:2354
8953 msgid "guestfs_inotify_add_watch"
8954 msgstr ""
8955
8956 #. type: verbatim
8957 #: ../src/guestfs-actions.pod:2356
8958 #, no-wrap
8959 msgid ""
8960 " int64_t\n"
8961 " guestfs_inotify_add_watch (guestfs_h *g,\n"
8962 "                            const char *path,\n"
8963 "                            int mask);\n"
8964 "\n"
8965 msgstr ""
8966
8967 #. type: textblock
8968 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1580
8969 msgid "Watch C<path> for the events listed in C<mask>."
8970 msgstr ""
8971
8972 #. type: textblock
8973 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1582
8974 msgid ""
8975 "Note that if C<path> is a directory then events within that directory are "
8976 "watched, but this does I<not> happen recursively (in subdirectories)."
8977 msgstr ""
8978
8979 #. type: textblock
8980 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1586
8981 msgid ""
8982 "Note for non-C or non-Linux callers: the inotify events are defined by the "
8983 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
8984 msgstr ""
8985
8986 #. type: =head2
8987 #: ../src/guestfs-actions.pod:2375
8988 msgid "guestfs_inotify_close"
8989 msgstr ""
8990
8991 #. type: verbatim
8992 #: ../src/guestfs-actions.pod:2377
8993 #, no-wrap
8994 msgid ""
8995 " int\n"
8996 " guestfs_inotify_close (guestfs_h *g);\n"
8997 "\n"
8998 msgstr ""
8999
9000 #. type: textblock
9001 #: ../src/guestfs-actions.pod:2380 ../fish/guestfish-actions.pod:1594
9002 msgid ""
9003 "This closes the inotify handle which was previously opened by inotify_init.  "
9004 "It removes all watches, throws away any pending events, and deallocates all "
9005 "resources."
9006 msgstr ""
9007
9008 #. type: =head2
9009 #: ../src/guestfs-actions.pod:2388
9010 msgid "guestfs_inotify_files"
9011 msgstr ""
9012
9013 #. type: verbatim
9014 #: ../src/guestfs-actions.pod:2390
9015 #, no-wrap
9016 msgid ""
9017 " char **\n"
9018 " guestfs_inotify_files (guestfs_h *g);\n"
9019 "\n"
9020 msgstr ""
9021
9022 #. type: textblock
9023 #: ../src/guestfs-actions.pod:2393
9024 msgid ""
9025 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9026 "returns a list of pathnames of objects that were touched.  The returned "
9027 "pathnames are sorted and deduplicated."
9028 msgstr ""
9029
9030 #. type: =head2
9031 #: ../src/guestfs-actions.pod:2403
9032 msgid "guestfs_inotify_init"
9033 msgstr ""
9034
9035 #. type: verbatim
9036 #: ../src/guestfs-actions.pod:2405
9037 #, no-wrap
9038 msgid ""
9039 " int\n"
9040 " guestfs_inotify_init (guestfs_h *g,\n"
9041 "                       int maxevents);\n"
9042 "\n"
9043 msgstr ""
9044
9045 #. type: textblock
9046 #: ../src/guestfs-actions.pod:2409 ../fish/guestfish-actions.pod:1610
9047 msgid ""
9048 "This command creates a new inotify handle.  The inotify subsystem can be "
9049 "used to notify events which happen to objects in the guest filesystem."
9050 msgstr ""
9051
9052 #. type: textblock
9053 #: ../src/guestfs-actions.pod:2413
9054 msgid ""
9055 "C<maxevents> is the maximum number of events which will be queued up between "
9056 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9057 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9058 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9059 "throws away events, but records the fact that it threw them away by setting "
9060 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9061 "C<guestfs_inotify_read>)."
9062 msgstr ""
9063
9064 #. type: textblock
9065 #: ../src/guestfs-actions.pod:2423
9066 msgid ""
9067 "Before any events are generated, you have to add some watches to the "
9068 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9069 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9070 msgstr ""
9071
9072 #. type: textblock
9073 #: ../src/guestfs-actions.pod:2429
9074 msgid ""
9075 "Queued up events should be read periodically by calling "
9076 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9077 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9078 "often enough then you risk the internal queue overflowing."
9079 msgstr ""
9080
9081 #. type: textblock
9082 #: ../src/guestfs-actions.pod:2436
9083 msgid ""
9084 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9085 "This also removes any watches automatically."
9086 msgstr ""
9087
9088 #. type: textblock
9089 #: ../src/guestfs-actions.pod:2440 ../fish/guestfish-actions.pod:1641
9090 msgid ""
9091 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9092 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9093 "that there is one global inotify handle per libguestfs instance."
9094 msgstr ""
9095
9096 #. type: =head2
9097 #: ../src/guestfs-actions.pod:2449
9098 msgid "guestfs_inotify_read"
9099 msgstr ""
9100
9101 #. type: verbatim
9102 #: ../src/guestfs-actions.pod:2451
9103 #, no-wrap
9104 msgid ""
9105 " struct guestfs_inotify_event_list *\n"
9106 " guestfs_inotify_read (guestfs_h *g);\n"
9107 "\n"
9108 msgstr ""
9109
9110 #. type: textblock
9111 #: ../src/guestfs-actions.pod:2454 ../fish/guestfish-actions.pod:1650
9112 msgid ""
9113 "Return the complete queue of events that have happened since the previous "
9114 "read call."
9115 msgstr ""
9116
9117 #. type: textblock
9118 #: ../src/guestfs-actions.pod:2457 ../fish/guestfish-actions.pod:1653
9119 msgid "If no events have happened, this returns an empty list."
9120 msgstr ""
9121
9122 #. type: textblock
9123 #: ../src/guestfs-actions.pod:2459 ../fish/guestfish-actions.pod:1655
9124 msgid ""
9125 "I<Note>: In order to make sure that all events have been read, you must call "
9126 "this function repeatedly until it returns an empty list.  The reason is that "
9127 "the call will read events up to the maximum appliance-to-host message size "
9128 "and leave remaining events in the queue."
9129 msgstr ""
9130
9131 #. type: textblock
9132 #: ../src/guestfs-actions.pod:2465
9133 msgid ""
9134 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9135 "there was an error.  I<The caller must call "
9136 "C<guestfs_free_inotify_event_list> after use>."
9137 msgstr ""
9138
9139 #. type: =head2
9140 #: ../src/guestfs-actions.pod:2471
9141 msgid "guestfs_inotify_rm_watch"
9142 msgstr ""
9143
9144 #. type: verbatim
9145 #: ../src/guestfs-actions.pod:2473
9146 #, no-wrap
9147 msgid ""
9148 " int\n"
9149 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9150 "                           int wd);\n"
9151 "\n"
9152 msgstr ""
9153
9154 #. type: textblock
9155 #: ../src/guestfs-actions.pod:2477
9156 msgid ""
9157 "Remove a previously defined inotify watch.  See "
9158 "C<guestfs_inotify_add_watch>."
9159 msgstr ""
9160
9161 #. type: =head2
9162 #: ../src/guestfs-actions.pod:2484
9163 msgid "guestfs_inspect_get_arch"
9164 msgstr ""
9165
9166 #. type: verbatim
9167 #: ../src/guestfs-actions.pod:2486
9168 #, no-wrap
9169 msgid ""
9170 " char *\n"
9171 " guestfs_inspect_get_arch (guestfs_h *g,\n"
9172 "                           const char *root);\n"
9173 "\n"
9174 msgstr ""
9175
9176 #. type: textblock
9177 #: ../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
9178 msgid ""
9179 "This function should only be called with a root device string as returned by "
9180 "C<guestfs_inspect_os>."
9181 msgstr ""
9182
9183 #. type: textblock
9184 #: ../src/guestfs-actions.pod:2493
9185 msgid ""
9186 "This returns the architecture of the inspected operating system.  The "
9187 "possible return values are listed under C<guestfs_file_architecture>."
9188 msgstr ""
9189
9190 #. type: textblock
9191 #: ../src/guestfs-actions.pod:2497 ../fish/guestfish-actions.pod:1679
9192 msgid ""
9193 "If the architecture could not be determined, then the string C<unknown> is "
9194 "returned."
9195 msgstr ""
9196
9197 #. type: textblock
9198 #: ../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
9199 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
9200 msgstr ""
9201
9202 #. type: =head2
9203 #: ../src/guestfs-actions.pod:2507
9204 msgid "guestfs_inspect_get_distro"
9205 msgstr ""
9206
9207 #. type: verbatim
9208 #: ../src/guestfs-actions.pod:2509
9209 #, no-wrap
9210 msgid ""
9211 " char *\n"
9212 " guestfs_inspect_get_distro (guestfs_h *g,\n"
9213 "                             const char *root);\n"
9214 "\n"
9215 msgstr ""
9216
9217 #. type: textblock
9218 #: ../src/guestfs-actions.pod:2516 ../fish/guestfish-actions.pod:1691
9219 msgid "This returns the distro (distribution) of the inspected operating system."
9220 msgstr ""
9221
9222 #. type: textblock
9223 #: ../src/guestfs-actions.pod:2519 ../fish/guestfish-actions.pod:1694
9224 msgid "Currently defined distros are:"
9225 msgstr ""
9226
9227 #. type: =item
9228 #: ../src/guestfs-actions.pod:2523 ../fish/guestfish-actions.pod:1698
9229 msgid "\"archlinux\""
9230 msgstr ""
9231
9232 #. type: textblock
9233 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1700
9234 msgid "Arch Linux."
9235 msgstr ""
9236
9237 #. type: =item
9238 #: ../src/guestfs-actions.pod:2527 ../fish/guestfish-actions.pod:1702
9239 msgid "\"debian\""
9240 msgstr ""
9241
9242 #. type: textblock
9243 #: ../src/guestfs-actions.pod:2529 ../fish/guestfish-actions.pod:1704
9244 msgid "Debian."
9245 msgstr ""
9246
9247 #. type: =item
9248 #: ../src/guestfs-actions.pod:2531 ../fish/guestfish-actions.pod:1706
9249 msgid "\"fedora\""
9250 msgstr ""
9251
9252 #. type: textblock
9253 #: ../src/guestfs-actions.pod:2533 ../fish/guestfish-actions.pod:1708
9254 msgid "Fedora."
9255 msgstr ""
9256
9257 #. type: =item
9258 #: ../src/guestfs-actions.pod:2535 ../fish/guestfish-actions.pod:1710
9259 msgid "\"gentoo\""
9260 msgstr ""
9261
9262 #. type: textblock
9263 #: ../src/guestfs-actions.pod:2537 ../fish/guestfish-actions.pod:1712
9264 msgid "Gentoo."
9265 msgstr ""
9266
9267 #. type: =item
9268 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1714
9269 msgid "\"linuxmint\""
9270 msgstr ""
9271
9272 #. type: textblock
9273 #: ../src/guestfs-actions.pod:2541 ../fish/guestfish-actions.pod:1716
9274 msgid "Linux Mint."
9275 msgstr ""
9276
9277 #. type: =item
9278 #: ../src/guestfs-actions.pod:2543 ../fish/guestfish-actions.pod:1718
9279 msgid "\"mandriva\""
9280 msgstr ""
9281
9282 #. type: textblock
9283 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1720
9284 msgid "Mandriva."
9285 msgstr ""
9286
9287 #. type: =item
9288 #: ../src/guestfs-actions.pod:2547 ../fish/guestfish-actions.pod:1722
9289 msgid "\"meego\""
9290 msgstr ""
9291
9292 #. type: textblock
9293 #: ../src/guestfs-actions.pod:2549 ../fish/guestfish-actions.pod:1724
9294 msgid "MeeGo."
9295 msgstr ""
9296
9297 #. type: =item
9298 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1726
9299 msgid "\"pardus\""
9300 msgstr ""
9301
9302 #. type: textblock
9303 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1728
9304 msgid "Pardus."
9305 msgstr ""
9306
9307 #. type: =item
9308 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1730
9309 msgid "\"redhat-based\""
9310 msgstr ""
9311
9312 #. type: textblock
9313 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1732
9314 msgid "Some Red Hat-derived distro."
9315 msgstr ""
9316
9317 #. type: =item
9318 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1734
9319 msgid "\"rhel\""
9320 msgstr ""
9321
9322 #. type: textblock
9323 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1736
9324 msgid "Red Hat Enterprise Linux and some derivatives."
9325 msgstr ""
9326
9327 #. type: =item
9328 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1738
9329 msgid "\"ubuntu\""
9330 msgstr ""
9331
9332 #. type: textblock
9333 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1740
9334 msgid "Ubuntu."
9335 msgstr ""
9336
9337 #. type: =item
9338 #: ../src/guestfs-actions.pod:2567 ../src/guestfs-actions.pod:2851 ../fish/guestfish-actions.pod:1742 ../fish/guestfish-actions.pod:1954
9339 msgid "\"unknown\""
9340 msgstr ""
9341
9342 #. type: textblock
9343 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1744
9344 msgid "The distro could not be determined."
9345 msgstr ""
9346
9347 #. type: =item
9348 #: ../src/guestfs-actions.pod:2571 ../src/guestfs-actions.pod:2843 ../fish/guestfish-actions.pod:1746 ../fish/guestfish-actions.pod:1946
9349 msgid "\"windows\""
9350 msgstr ""
9351
9352 #. type: textblock
9353 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1748
9354 msgid ""
9355 "Windows does not have distributions.  This string is returned if the OS type "
9356 "is Windows."
9357 msgstr ""
9358
9359 #. type: textblock
9360 #: ../src/guestfs-actions.pod:2578 ../src/guestfs-actions.pod:2857 ../fish/guestfish-actions.pod:1753 ../fish/guestfish-actions.pod:1960
9361 msgid ""
9362 "Future versions of libguestfs may return other strings here.  The caller "
9363 "should be prepared to handle any string."
9364 msgstr ""
9365
9366 #. type: =head2
9367 #: ../src/guestfs-actions.pod:2588
9368 msgid "guestfs_inspect_get_filesystems"
9369 msgstr ""
9370
9371 #. type: verbatim
9372 #: ../src/guestfs-actions.pod:2590
9373 #, no-wrap
9374 msgid ""
9375 " char **\n"
9376 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
9377 "                                  const char *root);\n"
9378 "\n"
9379 msgstr ""
9380
9381 #. type: textblock
9382 #: ../src/guestfs-actions.pod:2597 ../fish/guestfish-actions.pod:1765
9383 msgid ""
9384 "This returns a list of all the filesystems that we think are associated with "
9385 "this operating system.  This includes the root filesystem, other ordinary "
9386 "filesystems, and non-mounted devices like swap partitions."
9387 msgstr ""
9388
9389 #. type: textblock
9390 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1770
9391 msgid ""
9392 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
9393 "to be shared between operating systems."
9394 msgstr ""
9395
9396 #. type: textblock
9397 #: ../src/guestfs-actions.pod:2605
9398 msgid ""
9399 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9400 "C<guestfs_inspect_get_mountpoints>."
9401 msgstr ""
9402
9403 #. type: =head2
9404 #: ../src/guestfs-actions.pod:2614
9405 msgid "guestfs_inspect_get_hostname"
9406 msgstr ""
9407
9408 #. type: verbatim
9409 #: ../src/guestfs-actions.pod:2616
9410 #, no-wrap
9411 msgid ""
9412 " char *\n"
9413 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
9414 "                               const char *root);\n"
9415 "\n"
9416 msgstr ""
9417
9418 #. type: textblock
9419 #: ../src/guestfs-actions.pod:2623 ../fish/guestfish-actions.pod:1783
9420 msgid ""
9421 "This function returns the hostname of the operating system as found by "
9422 "inspection of the guest's configuration files."
9423 msgstr ""
9424
9425 #. type: textblock
9426 #: ../src/guestfs-actions.pod:2626 ../fish/guestfish-actions.pod:1786
9427 msgid ""
9428 "If the hostname could not be determined, then the string C<unknown> is "
9429 "returned."
9430 msgstr ""
9431
9432 #. type: textblock
9433 #: ../src/guestfs-actions.pod:2634
9434 msgid "(Added in 1.7.9)"
9435 msgstr ""
9436
9437 #. type: =head2
9438 #: ../src/guestfs-actions.pod:2636
9439 msgid "guestfs_inspect_get_major_version"
9440 msgstr ""
9441
9442 #. type: verbatim
9443 #: ../src/guestfs-actions.pod:2638
9444 #, no-wrap
9445 msgid ""
9446 " int\n"
9447 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
9448 "                                    const char *root);\n"
9449 "\n"
9450 msgstr ""
9451
9452 #. type: textblock
9453 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1798
9454 msgid "This returns the major version number of the inspected operating system."
9455 msgstr ""
9456
9457 #. type: textblock
9458 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1801
9459 msgid ""
9460 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
9461 "popular public names used by the operating system.  Notably the operating "
9462 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
9463 "1).  You can find out the real versions corresponding to releases of Windows "
9464 "by consulting Wikipedia or MSDN."
9465 msgstr ""
9466
9467 #. type: textblock
9468 #: ../src/guestfs-actions.pod:2655 ../src/guestfs-actions.pod:2675 ../fish/guestfish-actions.pod:1808 ../fish/guestfish-actions.pod:1822
9469 msgid "If the version could not be determined, then C<0> is returned."
9470 msgstr ""
9471
9472 #. type: =head2
9473 #: ../src/guestfs-actions.pod:2663
9474 msgid "guestfs_inspect_get_minor_version"
9475 msgstr ""
9476
9477 #. type: verbatim
9478 #: ../src/guestfs-actions.pod:2665
9479 #, no-wrap
9480 msgid ""
9481 " int\n"
9482 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
9483 "                                    const char *root);\n"
9484 "\n"
9485 msgstr ""
9486
9487 #. type: textblock
9488 #: ../src/guestfs-actions.pod:2672 ../fish/guestfish-actions.pod:1819
9489 msgid "This returns the minor version number of the inspected operating system."
9490 msgstr ""
9491
9492 #. type: textblock
9493 #: ../src/guestfs-actions.pod:2677
9494 msgid ""
9495 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9496 "C<guestfs_inspect_get_major_version>."
9497 msgstr ""
9498
9499 #. type: =head2
9500 #: ../src/guestfs-actions.pod:2684
9501 msgid "guestfs_inspect_get_mountpoints"
9502 msgstr ""
9503
9504 #. type: verbatim
9505 #: ../src/guestfs-actions.pod:2686
9506 #, no-wrap
9507 msgid ""
9508 " char **\n"
9509 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
9510 "                                  const char *root);\n"
9511 "\n"
9512 msgstr ""
9513
9514 #. type: textblock
9515 #: ../src/guestfs-actions.pod:2693 ../fish/guestfish-actions.pod:1834
9516 msgid ""
9517 "This returns a hash of where we think the filesystems associated with this "
9518 "operating system should be mounted.  Callers should note that this is at "
9519 "best an educated guess made by reading configuration files such as "
9520 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
9521 "are non-existent or not mountable and callers should be prepared to handle "
9522 "or ignore failures if they try to mount them."
9523 msgstr ""
9524
9525 #. type: textblock
9526 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1843
9527 msgid ""
9528 "Each element in the returned hashtable has a key which is the path of the "
9529 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
9530 "mounted there (eg. C</dev/sda1>)."
9531 msgstr ""
9532
9533 #. type: textblock
9534 #: ../src/guestfs-actions.pod:2707 ../fish/guestfish-actions.pod:1848
9535 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
9536 msgstr ""
9537
9538 #. type: textblock
9539 #: ../src/guestfs-actions.pod:2710
9540 msgid ""
9541 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9542 "C<guestfs_inspect_get_filesystems>."
9543 msgstr ""
9544
9545 #. type: textblock
9546 #: ../src/guestfs-actions.pod:2713 ../src/guestfs-actions.pod:3359 ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:6413
9547 msgid ""
9548 "This function returns a NULL-terminated array of strings, or NULL if there "
9549 "was an error.  The array of strings will always have length C<2n+1>, where "
9550 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
9551 "caller must free the strings and the array after use>."
9552 msgstr ""
9553
9554 #. type: =head2
9555 #: ../src/guestfs-actions.pod:2721
9556 msgid "guestfs_inspect_get_package_format"
9557 msgstr ""
9558
9559 #. type: verbatim
9560 #: ../src/guestfs-actions.pod:2723
9561 #, no-wrap
9562 msgid ""
9563 " char *\n"
9564 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
9565 "                                     const char *root);\n"
9566 "\n"
9567 msgstr ""
9568
9569 #. type: textblock
9570 #: ../src/guestfs-actions.pod:2730
9571 msgid ""
9572 "This function and C<guestfs_inspect_get_package_management> return the "
9573 "package format and package management tool used by the inspected operating "
9574 "system.  For example for Fedora these functions would return C<rpm> (package "
9575 "format) and C<yum> (package management)."
9576 msgstr ""
9577
9578 #. type: textblock
9579 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1867
9580 msgid ""
9581 "This returns the string C<unknown> if we could not determine the package "
9582 "format I<or> if the operating system does not have a real packaging system "
9583 "(eg. Windows)."
9584 msgstr ""
9585
9586 #. type: textblock
9587 #: ../src/guestfs-actions.pod:2740 ../fish/guestfish-actions.pod:1871
9588 msgid ""
9589 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
9590 "Future versions of libguestfs may return other strings."
9591 msgstr ""
9592
9593 #. type: textblock
9594 #: ../src/guestfs-actions.pod:2748 ../src/guestfs-actions.pod:2779
9595 msgid "(Added in 1.7.5)"
9596 msgstr ""
9597
9598 #. type: =head2
9599 #: ../src/guestfs-actions.pod:2750
9600 msgid "guestfs_inspect_get_package_management"
9601 msgstr ""
9602
9603 #. type: verbatim
9604 #: ../src/guestfs-actions.pod:2752
9605 #, no-wrap
9606 msgid ""
9607 " char *\n"
9608 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
9609 "                                         const char *root);\n"
9610 "\n"
9611 msgstr ""
9612
9613 #. type: textblock
9614 #: ../src/guestfs-actions.pod:2759
9615 msgid ""
9616 "C<guestfs_inspect_get_package_format> and this function return the package "
9617 "format and package management tool used by the inspected operating system.  "
9618 "For example for Fedora these functions would return C<rpm> (package format) "
9619 "and C<yum> (package management)."
9620 msgstr ""
9621
9622 #. type: textblock
9623 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1889
9624 msgid ""
9625 "This returns the string C<unknown> if we could not determine the package "
9626 "management tool I<or> if the operating system does not have a real packaging "
9627 "system (eg. Windows)."
9628 msgstr ""
9629
9630 #. type: textblock
9631 #: ../src/guestfs-actions.pod:2769 ../fish/guestfish-actions.pod:1893
9632 msgid ""
9633 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
9634 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
9635 "libguestfs may return other strings."
9636 msgstr ""
9637
9638 #. type: =head2
9639 #: ../src/guestfs-actions.pod:2781
9640 msgid "guestfs_inspect_get_product_name"
9641 msgstr ""
9642
9643 #. type: verbatim
9644 #: ../src/guestfs-actions.pod:2783
9645 #, no-wrap
9646 msgid ""
9647 " char *\n"
9648 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
9649 "                                   const char *root);\n"
9650 "\n"
9651 msgstr ""
9652
9653 #. type: textblock
9654 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1907
9655 msgid ""
9656 "This returns the product name of the inspected operating system.  The "
9657 "product name is generally some freeform string which can be displayed to the "
9658 "user, but should not be parsed by programs."
9659 msgstr ""
9660
9661 #. type: textblock
9662 #: ../src/guestfs-actions.pod:2795 ../fish/guestfish-actions.pod:1912
9663 msgid ""
9664 "If the product name could not be determined, then the string C<unknown> is "
9665 "returned."
9666 msgstr ""
9667
9668 #. type: =head2
9669 #: ../src/guestfs-actions.pod:2805
9670 msgid "guestfs_inspect_get_roots"
9671 msgstr ""
9672
9673 #. type: verbatim
9674 #: ../src/guestfs-actions.pod:2807
9675 #, no-wrap
9676 msgid ""
9677 " char **\n"
9678 " guestfs_inspect_get_roots (guestfs_h *g);\n"
9679 "\n"
9680 msgstr ""
9681
9682 #. type: textblock
9683 #: ../src/guestfs-actions.pod:2810
9684 msgid ""
9685 "This function is a convenient way to get the list of root devices, as "
9686 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
9687 "the whole inspection process."
9688 msgstr ""
9689
9690 #. type: textblock
9691 #: ../src/guestfs-actions.pod:2814
9692 msgid ""
9693 "This returns an empty list if either no root devices were found or the "
9694 "caller has not called C<guestfs_inspect_os>."
9695 msgstr ""
9696
9697 #. type: textblock
9698 #: ../src/guestfs-actions.pod:2823
9699 msgid "(Added in 1.7.3)"
9700 msgstr ""
9701
9702 #. type: =head2
9703 #: ../src/guestfs-actions.pod:2825
9704 msgid "guestfs_inspect_get_type"
9705 msgstr ""
9706
9707 #. type: verbatim
9708 #: ../src/guestfs-actions.pod:2827
9709 #, no-wrap
9710 msgid ""
9711 " char *\n"
9712 " guestfs_inspect_get_type (guestfs_h *g,\n"
9713 "                           const char *root);\n"
9714 "\n"
9715 msgstr ""
9716
9717 #. type: textblock
9718 #: ../src/guestfs-actions.pod:2834 ../fish/guestfish-actions.pod:1937
9719 msgid ""
9720 "This returns the type of the inspected operating system.  Currently defined "
9721 "types are:"
9722 msgstr ""
9723
9724 #. type: =item
9725 #: ../src/guestfs-actions.pod:2839 ../fish/guestfish-actions.pod:1942
9726 msgid "\"linux\""
9727 msgstr ""
9728
9729 #. type: textblock
9730 #: ../src/guestfs-actions.pod:2841 ../fish/guestfish-actions.pod:1944
9731 msgid "Any Linux-based operating system."
9732 msgstr ""
9733
9734 #. type: textblock
9735 #: ../src/guestfs-actions.pod:2845 ../fish/guestfish-actions.pod:1948
9736 msgid "Any Microsoft Windows operating system."
9737 msgstr ""
9738
9739 #. type: =item
9740 #: ../src/guestfs-actions.pod:2847 ../fish/guestfish-actions.pod:1950
9741 msgid "\"freebsd\""
9742 msgstr ""
9743
9744 #. type: textblock
9745 #: ../src/guestfs-actions.pod:2849 ../fish/guestfish-actions.pod:1952
9746 msgid "FreeBSD."
9747 msgstr ""
9748
9749 #. type: textblock
9750 #: ../src/guestfs-actions.pod:2853 ../fish/guestfish-actions.pod:1956
9751 msgid "The operating system type could not be determined."
9752 msgstr ""
9753
9754 #. type: =head2
9755 #: ../src/guestfs-actions.pod:2867
9756 msgid "guestfs_inspect_get_windows_systemroot"
9757 msgstr ""
9758
9759 #. type: verbatim
9760 #: ../src/guestfs-actions.pod:2869
9761 #, no-wrap
9762 msgid ""
9763 " char *\n"
9764 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
9765 "                                         const char *root);\n"
9766 "\n"
9767 msgstr ""
9768
9769 #. type: textblock
9770 #: ../src/guestfs-actions.pod:2876 ../fish/guestfish-actions.pod:1972
9771 msgid ""
9772 "This returns the Windows systemroot of the inspected guest.  The systemroot "
9773 "is a directory path such as C</WINDOWS>."
9774 msgstr ""
9775
9776 #. type: textblock
9777 #: ../src/guestfs-actions.pod:2879 ../fish/guestfish-actions.pod:1975
9778 msgid ""
9779 "This call assumes that the guest is Windows and that the systemroot could be "
9780 "determined by inspection.  If this is not the case then an error is "
9781 "returned."
9782 msgstr ""
9783
9784 #. type: textblock
9785 #: ../src/guestfs-actions.pod:2888
9786 msgid "(Added in 1.5.25)"
9787 msgstr ""
9788
9789 #. type: =head2
9790 #: ../src/guestfs-actions.pod:2890
9791 msgid "guestfs_inspect_list_applications"
9792 msgstr ""
9793
9794 #. type: verbatim
9795 #: ../src/guestfs-actions.pod:2892
9796 #, no-wrap
9797 msgid ""
9798 " struct guestfs_application_list *\n"
9799 " guestfs_inspect_list_applications (guestfs_h *g,\n"
9800 "                                    const char *root);\n"
9801 "\n"
9802 msgstr ""
9803
9804 #. type: textblock
9805 #: ../src/guestfs-actions.pod:2899 ../fish/guestfish-actions.pod:1988
9806 msgid "Return the list of applications installed in the operating system."
9807 msgstr ""
9808
9809 #. type: textblock
9810 #: ../src/guestfs-actions.pod:2901
9811 msgid ""
9812 "I<Note:> This call works differently from other parts of the inspection "
9813 "API.  You have to call C<guestfs_inspect_os>, then "
9814 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
9815 "this.  Listing applications is a significantly more difficult operation "
9816 "which requires access to the full filesystem.  Also note that unlike the "
9817 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
9818 "the libguestfs handle, this call actually reads parts of the mounted "
9819 "filesystems during the call."
9820 msgstr ""
9821
9822 #. type: textblock
9823 #: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:2000
9824 msgid ""
9825 "This returns an empty list if the inspection code was not able to determine "
9826 "the list of applications."
9827 msgstr ""
9828
9829 #. type: textblock
9830 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2003
9831 msgid "The application structure contains the following fields:"
9832 msgstr ""
9833
9834 #. type: =item
9835 #: ../src/guestfs-actions.pod:2918 ../fish/guestfish-actions.pod:2007
9836 msgid "C<app_name>"
9837 msgstr ""
9838
9839 #. type: textblock
9840 #: ../src/guestfs-actions.pod:2920 ../fish/guestfish-actions.pod:2009
9841 msgid ""
9842 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
9843 "guests, this is the package name."
9844 msgstr ""
9845
9846 #. type: =item
9847 #: ../src/guestfs-actions.pod:2923 ../fish/guestfish-actions.pod:2012
9848 msgid "C<app_display_name>"
9849 msgstr ""
9850
9851 #. type: textblock
9852 #: ../src/guestfs-actions.pod:2925 ../fish/guestfish-actions.pod:2014
9853 msgid ""
9854 "The display name of the application, sometimes localized to the install "
9855 "language of the guest operating system."
9856 msgstr ""
9857
9858 #. type: textblock
9859 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:2017
9860 msgid ""
9861 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
9862 "to display something can use C<app_name> instead."
9863 msgstr ""
9864
9865 #. type: =item
9866 #: ../src/guestfs-actions.pod:2931 ../fish/guestfish-actions.pod:2020
9867 msgid "C<app_epoch>"
9868 msgstr ""
9869
9870 #. type: textblock
9871 #: ../src/guestfs-actions.pod:2933 ../fish/guestfish-actions.pod:2022
9872 msgid ""
9873 "For package managers which use epochs, this contains the epoch of the "
9874 "package (an integer).  If unavailable, this is returned as C<0>."
9875 msgstr ""
9876
9877 #. type: =item
9878 #: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2025
9879 msgid "C<app_version>"
9880 msgstr ""
9881
9882 #. type: textblock
9883 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2027
9884 msgid ""
9885 "The version string of the application or package.  If unavailable this is "
9886 "returned as an empty string C<\"\">."
9887 msgstr ""
9888
9889 #. type: =item
9890 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2030
9891 msgid "C<app_release>"
9892 msgstr ""
9893
9894 #. type: textblock
9895 #: ../src/guestfs-actions.pod:2943 ../fish/guestfish-actions.pod:2032
9896 msgid ""
9897 "The release string of the application or package, for package managers that "
9898 "use this.  If unavailable this is returned as an empty string C<\"\">."
9899 msgstr ""
9900
9901 #. type: =item
9902 #: ../src/guestfs-actions.pod:2947 ../fish/guestfish-actions.pod:2036
9903 msgid "C<app_install_path>"
9904 msgstr ""
9905
9906 #. type: textblock
9907 #: ../src/guestfs-actions.pod:2949 ../fish/guestfish-actions.pod:2038
9908 msgid ""
9909 "The installation path of the application (on operating systems such as "
9910 "Windows which use installation paths).  This path is in the format used by "
9911 "the guest operating system, it is not a libguestfs path."
9912 msgstr ""
9913
9914 #. type: textblock
9915 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2043
9916 msgid "If unavailable this is returned as an empty string C<\"\">."
9917 msgstr ""
9918
9919 #. type: =item
9920 #: ../src/guestfs-actions.pod:2956 ../fish/guestfish-actions.pod:2045
9921 msgid "C<app_trans_path>"
9922 msgstr ""
9923
9924 #. type: textblock
9925 #: ../src/guestfs-actions.pod:2958 ../fish/guestfish-actions.pod:2047
9926 msgid ""
9927 "The install path translated into a libguestfs path.  If unavailable this is "
9928 "returned as an empty string C<\"\">."
9929 msgstr ""
9930
9931 #. type: =item
9932 #: ../src/guestfs-actions.pod:2961 ../fish/guestfish-actions.pod:2050
9933 msgid "C<app_publisher>"
9934 msgstr ""
9935
9936 #. type: textblock
9937 #: ../src/guestfs-actions.pod:2963 ../fish/guestfish-actions.pod:2052
9938 msgid ""
9939 "The name of the publisher of the application, for package managers that use "
9940 "this.  If unavailable this is returned as an empty string C<\"\">."
9941 msgstr ""
9942
9943 #. type: =item
9944 #: ../src/guestfs-actions.pod:2967 ../fish/guestfish-actions.pod:2056
9945 msgid "C<app_url>"
9946 msgstr ""
9947
9948 #. type: textblock
9949 #: ../src/guestfs-actions.pod:2969 ../fish/guestfish-actions.pod:2058
9950 msgid ""
9951 "The URL (eg. upstream URL) of the application.  If unavailable this is "
9952 "returned as an empty string C<\"\">."
9953 msgstr ""
9954
9955 #. type: =item
9956 #: ../src/guestfs-actions.pod:2972 ../fish/guestfish-actions.pod:2061
9957 msgid "C<app_source_package>"
9958 msgstr ""
9959
9960 #. type: textblock
9961 #: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2063
9962 msgid ""
9963 "For packaging systems which support this, the name of the source package.  "
9964 "If unavailable this is returned as an empty string C<\"\">."
9965 msgstr ""
9966
9967 #. type: =item
9968 #: ../src/guestfs-actions.pod:2977 ../fish/guestfish-actions.pod:2066
9969 msgid "C<app_summary>"
9970 msgstr ""
9971
9972 #. type: textblock
9973 #: ../src/guestfs-actions.pod:2979 ../fish/guestfish-actions.pod:2068
9974 msgid ""
9975 "A short (usually one line) description of the application or package.  If "
9976 "unavailable this is returned as an empty string C<\"\">."
9977 msgstr ""
9978
9979 #. type: =item
9980 #: ../src/guestfs-actions.pod:2982 ../fish/guestfish-actions.pod:2071
9981 msgid "C<app_description>"
9982 msgstr ""
9983
9984 #. type: textblock
9985 #: ../src/guestfs-actions.pod:2984 ../fish/guestfish-actions.pod:2073
9986 msgid ""
9987 "A longer description of the application or package.  If unavailable this is "
9988 "returned as an empty string C<\"\">."
9989 msgstr ""
9990
9991 #. type: textblock
9992 #: ../src/guestfs-actions.pod:2991
9993 msgid ""
9994 "This function returns a C<struct guestfs_application_list *>, or NULL if "
9995 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
9996 "after use>."
9997 msgstr ""
9998
9999 #. type: textblock
10000 #: ../src/guestfs-actions.pod:2995
10001 msgid "(Added in 1.7.8)"
10002 msgstr ""
10003
10004 #. type: =head2
10005 #: ../src/guestfs-actions.pod:2997
10006 msgid "guestfs_inspect_os"
10007 msgstr ""
10008
10009 #. type: verbatim
10010 #: ../src/guestfs-actions.pod:2999
10011 #, no-wrap
10012 msgid ""
10013 " char **\n"
10014 " guestfs_inspect_os (guestfs_h *g);\n"
10015 "\n"
10016 msgstr ""
10017
10018 #. type: textblock
10019 #: ../src/guestfs-actions.pod:3002 ../fish/guestfish-actions.pod:2084
10020 msgid ""
10021 "This function uses other libguestfs functions and certain heuristics to "
10022 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
10023 "for operating systems."
10024 msgstr ""
10025
10026 #. type: textblock
10027 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2088
10028 msgid "The list returned is empty if no operating systems were found."
10029 msgstr ""
10030
10031 #. type: textblock
10032 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2090
10033 msgid ""
10034 "If one operating system was found, then this returns a list with a single "
10035 "element, which is the name of the root filesystem of this operating system.  "
10036 "It is also possible for this function to return a list containing more than "
10037 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
10038 "element being the root filesystem of one of the operating systems."
10039 msgstr ""
10040
10041 #. type: textblock
10042 #: ../src/guestfs-actions.pod:3015
10043 msgid ""
10044 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
10045 "functions in order to query further information about each operating system, "
10046 "such as the name and version."
10047 msgstr ""
10048
10049 #. type: textblock
10050 #: ../src/guestfs-actions.pod:3020
10051 msgid ""
10052 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
10053 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
10054 "the contents.  This should be called with no disks currently mounted.  The "
10055 "function may also use Augeas, so any existing Augeas handle will be closed."
10056 msgstr ""
10057
10058 #. type: textblock
10059 #: ../src/guestfs-actions.pod:3026 ../fish/guestfish-actions.pod:2108
10060 msgid ""
10061 "This function cannot decrypt encrypted disks.  The caller must do that first "
10062 "(supplying the necessary keys) if the disk is encrypted."
10063 msgstr ""
10064
10065 #. type: textblock
10066 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3317 ../src/guestfs-actions.pod:3379
10067 msgid "See also C<guestfs_list_filesystems>."
10068 msgstr ""
10069
10070 #. type: =head2
10071 #: ../src/guestfs-actions.pod:3040
10072 msgid "guestfs_is_blockdev"
10073 msgstr ""
10074
10075 #. type: verbatim
10076 #: ../src/guestfs-actions.pod:3042
10077 #, no-wrap
10078 msgid ""
10079 " int\n"
10080 " guestfs_is_blockdev (guestfs_h *g,\n"
10081 "                      const char *path);\n"
10082 "\n"
10083 msgstr ""
10084
10085 #. type: textblock
10086 #: ../src/guestfs-actions.pod:3046 ../fish/guestfish-actions.pod:2120
10087 msgid ""
10088 "This returns C<true> if and only if there is a block device with the given "
10089 "C<path> name."
10090 msgstr ""
10091
10092 #. type: textblock
10093 #: ../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
10094 msgid "See also C<guestfs_stat>."
10095 msgstr ""
10096
10097 #. type: textblock
10098 #: ../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
10099 msgid "(Added in 1.5.10)"
10100 msgstr ""
10101
10102 #. type: =head2
10103 #: ../src/guestfs-actions.pod:3055
10104 msgid "guestfs_is_busy"
10105 msgstr ""
10106
10107 #. type: verbatim
10108 #: ../src/guestfs-actions.pod:3057
10109 #, no-wrap
10110 msgid ""
10111 " int\n"
10112 " guestfs_is_busy (guestfs_h *g);\n"
10113 "\n"
10114 msgstr ""
10115
10116 #. type: textblock
10117 #: ../src/guestfs-actions.pod:3060 ../fish/guestfish-actions.pod:2129
10118 msgid ""
10119 "This returns true iff this handle is busy processing a command (in the "
10120 "C<BUSY> state)."
10121 msgstr ""
10122
10123 #. type: =head2
10124 #: ../src/guestfs-actions.pod:3069
10125 msgid "guestfs_is_chardev"
10126 msgstr ""
10127
10128 #. type: verbatim
10129 #: ../src/guestfs-actions.pod:3071
10130 #, no-wrap
10131 msgid ""
10132 " int\n"
10133 " guestfs_is_chardev (guestfs_h *g,\n"
10134 "                     const char *path);\n"
10135 "\n"
10136 msgstr ""
10137
10138 #. type: textblock
10139 #: ../src/guestfs-actions.pod:3075 ../fish/guestfish-actions.pod:2138
10140 msgid ""
10141 "This returns C<true> if and only if there is a character device with the "
10142 "given C<path> name."
10143 msgstr ""
10144
10145 #. type: =head2
10146 #: ../src/guestfs-actions.pod:3084
10147 msgid "guestfs_is_config"
10148 msgstr ""
10149
10150 #. type: verbatim
10151 #: ../src/guestfs-actions.pod:3086
10152 #, no-wrap
10153 msgid ""
10154 " int\n"
10155 " guestfs_is_config (guestfs_h *g);\n"
10156 "\n"
10157 msgstr ""
10158
10159 #. type: textblock
10160 #: ../src/guestfs-actions.pod:3089 ../fish/guestfish-actions.pod:2147
10161 msgid ""
10162 "This returns true iff this handle is being configured (in the C<CONFIG> "
10163 "state)."
10164 msgstr ""
10165
10166 #. type: =head2
10167 #: ../src/guestfs-actions.pod:3098
10168 msgid "guestfs_is_dir"
10169 msgstr ""
10170
10171 #. type: verbatim
10172 #: ../src/guestfs-actions.pod:3100
10173 #, no-wrap
10174 msgid ""
10175 " int\n"
10176 " guestfs_is_dir (guestfs_h *g,\n"
10177 "                 const char *path);\n"
10178 "\n"
10179 msgstr ""
10180
10181 #. type: textblock
10182 #: ../src/guestfs-actions.pod:3104 ../fish/guestfish-actions.pod:2156
10183 msgid ""
10184 "This returns C<true> if and only if there is a directory with the given "
10185 "C<path> name.  Note that it returns false for other objects like files."
10186 msgstr ""
10187
10188 #. type: =head2
10189 #: ../src/guestfs-actions.pod:3114
10190 msgid "guestfs_is_fifo"
10191 msgstr ""
10192
10193 #. type: verbatim
10194 #: ../src/guestfs-actions.pod:3116
10195 #, no-wrap
10196 msgid ""
10197 " int\n"
10198 " guestfs_is_fifo (guestfs_h *g,\n"
10199 "                  const char *path);\n"
10200 "\n"
10201 msgstr ""
10202
10203 #. type: textblock
10204 #: ../src/guestfs-actions.pod:3120 ../fish/guestfish-actions.pod:2166
10205 msgid ""
10206 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
10207 "given C<path> name."
10208 msgstr ""
10209
10210 #. type: =head2
10211 #: ../src/guestfs-actions.pod:3129
10212 msgid "guestfs_is_file"
10213 msgstr ""
10214
10215 #. type: verbatim
10216 #: ../src/guestfs-actions.pod:3131
10217 #, no-wrap
10218 msgid ""
10219 " int\n"
10220 " guestfs_is_file (guestfs_h *g,\n"
10221 "                  const char *path);\n"
10222 "\n"
10223 msgstr ""
10224
10225 #. type: textblock
10226 #: ../src/guestfs-actions.pod:3135 ../fish/guestfish-actions.pod:2175
10227 msgid ""
10228 "This returns C<true> if and only if there is a regular file with the given "
10229 "C<path> name.  Note that it returns false for other objects like "
10230 "directories."
10231 msgstr ""
10232
10233 #. type: =head2
10234 #: ../src/guestfs-actions.pod:3145
10235 msgid "guestfs_is_launching"
10236 msgstr ""
10237
10238 #. type: verbatim
10239 #: ../src/guestfs-actions.pod:3147
10240 #, no-wrap
10241 msgid ""
10242 " int\n"
10243 " guestfs_is_launching (guestfs_h *g);\n"
10244 "\n"
10245 msgstr ""
10246
10247 #. type: textblock
10248 #: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2185
10249 msgid ""
10250 "This returns true iff this handle is launching the subprocess (in the "
10251 "C<LAUNCHING> state)."
10252 msgstr ""
10253
10254 #. type: =head2
10255 #: ../src/guestfs-actions.pod:3159
10256 msgid "guestfs_is_lv"
10257 msgstr ""
10258
10259 #. type: verbatim
10260 #: ../src/guestfs-actions.pod:3161
10261 #, no-wrap
10262 msgid ""
10263 " int\n"
10264 " guestfs_is_lv (guestfs_h *g,\n"
10265 "                const char *device);\n"
10266 "\n"
10267 msgstr ""
10268
10269 #. type: textblock
10270 #: ../src/guestfs-actions.pod:3165 ../fish/guestfish-actions.pod:2194
10271 msgid ""
10272 "This command tests whether C<device> is a logical volume, and returns true "
10273 "iff this is the case."
10274 msgstr ""
10275
10276 #. type: =head2
10277 #: ../src/guestfs-actions.pod:3172
10278 msgid "guestfs_is_ready"
10279 msgstr ""
10280
10281 #. type: verbatim
10282 #: ../src/guestfs-actions.pod:3174
10283 #, no-wrap
10284 msgid ""
10285 " int\n"
10286 " guestfs_is_ready (guestfs_h *g);\n"
10287 "\n"
10288 msgstr ""
10289
10290 #. type: textblock
10291 #: ../src/guestfs-actions.pod:3177 ../fish/guestfish-actions.pod:2201
10292 msgid ""
10293 "This returns true iff this handle is ready to accept commands (in the "
10294 "C<READY> state)."
10295 msgstr ""
10296
10297 #. type: =head2
10298 #: ../src/guestfs-actions.pod:3186
10299 msgid "guestfs_is_socket"
10300 msgstr ""
10301
10302 #. type: verbatim
10303 #: ../src/guestfs-actions.pod:3188
10304 #, no-wrap
10305 msgid ""
10306 " int\n"
10307 " guestfs_is_socket (guestfs_h *g,\n"
10308 "                    const char *path);\n"
10309 "\n"
10310 msgstr ""
10311
10312 #. type: textblock
10313 #: ../src/guestfs-actions.pod:3192 ../fish/guestfish-actions.pod:2210
10314 msgid ""
10315 "This returns C<true> if and only if there is a Unix domain socket with the "
10316 "given C<path> name."
10317 msgstr ""
10318
10319 #. type: =head2
10320 #: ../src/guestfs-actions.pod:3201
10321 msgid "guestfs_is_symlink"
10322 msgstr ""
10323
10324 #. type: verbatim
10325 #: ../src/guestfs-actions.pod:3203
10326 #, no-wrap
10327 msgid ""
10328 " int\n"
10329 " guestfs_is_symlink (guestfs_h *g,\n"
10330 "                     const char *path);\n"
10331 "\n"
10332 msgstr ""
10333
10334 #. type: textblock
10335 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2219
10336 msgid ""
10337 "This returns C<true> if and only if there is a symbolic link with the given "
10338 "C<path> name."
10339 msgstr ""
10340
10341 #. type: =head2
10342 #: ../src/guestfs-actions.pod:3216
10343 msgid "guestfs_kill_subprocess"
10344 msgstr ""
10345
10346 #. type: verbatim
10347 #: ../src/guestfs-actions.pod:3218
10348 #, no-wrap
10349 msgid ""
10350 " int\n"
10351 " guestfs_kill_subprocess (guestfs_h *g);\n"
10352 "\n"
10353 msgstr ""
10354
10355 #. type: textblock
10356 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2228
10357 msgid "This kills the qemu subprocess.  You should never need to call this."
10358 msgstr ""
10359
10360 #. type: =head2
10361 #: ../src/guestfs-actions.pod:3227
10362 msgid "guestfs_launch"
10363 msgstr ""
10364
10365 #. type: verbatim
10366 #: ../src/guestfs-actions.pod:3229
10367 #, no-wrap
10368 msgid ""
10369 " int\n"
10370 " guestfs_launch (guestfs_h *g);\n"
10371 "\n"
10372 msgstr ""
10373
10374 #. type: textblock
10375 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2236
10376 msgid ""
10377 "Internally libguestfs is implemented by running a virtual machine using "
10378 "L<qemu(1)>."
10379 msgstr ""
10380
10381 #. type: textblock
10382 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2239
10383 msgid ""
10384 "You should call this after configuring the handle (eg. adding drives) but "
10385 "before performing any actions."
10386 msgstr ""
10387
10388 #. type: =head2
10389 #: ../src/guestfs-actions.pod:3242
10390 msgid "guestfs_lchown"
10391 msgstr ""
10392
10393 #. type: verbatim
10394 #: ../src/guestfs-actions.pod:3244
10395 #, no-wrap
10396 msgid ""
10397 " int\n"
10398 " guestfs_lchown (guestfs_h *g,\n"
10399 "                 int owner,\n"
10400 "                 int group,\n"
10401 "                 const char *path);\n"
10402 "\n"
10403 msgstr ""
10404
10405 #. type: textblock
10406 #: ../src/guestfs-actions.pod:3250
10407 msgid ""
10408 "Change the file owner to C<owner> and group to C<group>.  This is like "
10409 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
10410 "changed, not the target."
10411 msgstr ""
10412
10413 #. type: =head2
10414 #: ../src/guestfs-actions.pod:3262
10415 msgid "guestfs_lgetxattr"
10416 msgstr ""
10417
10418 #. type: verbatim
10419 #: ../src/guestfs-actions.pod:3264
10420 #, no-wrap
10421 msgid ""
10422 " char *\n"
10423 " guestfs_lgetxattr (guestfs_h *g,\n"
10424 "                    const char *path,\n"
10425 "                    const char *name,\n"
10426 "                    size_t *size_r);\n"
10427 "\n"
10428 msgstr ""
10429
10430 #. type: textblock
10431 #: ../src/guestfs-actions.pod:3270 ../fish/guestfish-actions.pod:2258
10432 msgid ""
10433 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
10434 "is a symlink, then this call returns an extended attribute from the symlink."
10435 msgstr ""
10436
10437 #. type: textblock
10438 #: ../src/guestfs-actions.pod:3284
10439 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
10440 msgstr ""
10441
10442 #. type: =head2
10443 #: ../src/guestfs-actions.pod:3292
10444 msgid "guestfs_lgetxattrs"
10445 msgstr ""
10446
10447 #. type: verbatim
10448 #: ../src/guestfs-actions.pod:3294
10449 #, no-wrap
10450 msgid ""
10451 " struct guestfs_xattr_list *\n"
10452 " guestfs_lgetxattrs (guestfs_h *g,\n"
10453 "                     const char *path);\n"
10454 "\n"
10455 msgstr ""
10456
10457 #. type: textblock
10458 #: ../src/guestfs-actions.pod:3298
10459 msgid ""
10460 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
10461 "then it returns the extended attributes of the link itself."
10462 msgstr ""
10463
10464 #. type: =head2
10465 #: ../src/guestfs-actions.pod:3308
10466 msgid "guestfs_list_devices"
10467 msgstr ""
10468
10469 #. type: verbatim
10470 #: ../src/guestfs-actions.pod:3310
10471 #, no-wrap
10472 msgid ""
10473 " char **\n"
10474 " guestfs_list_devices (guestfs_h *g);\n"
10475 "\n"
10476 msgstr ""
10477
10478 #. type: textblock
10479 #: ../src/guestfs-actions.pod:3313 ../fish/guestfish-actions.pod:2286
10480 msgid "List all the block devices."
10481 msgstr ""
10482
10483 #. type: textblock
10484 #: ../src/guestfs-actions.pod:3315 ../fish/guestfish-actions.pod:2288
10485 msgid "The full block device names are returned, eg. C</dev/sda>."
10486 msgstr ""
10487
10488 #. type: =head2
10489 #: ../src/guestfs-actions.pod:3325
10490 msgid "guestfs_list_filesystems"
10491 msgstr ""
10492
10493 #. type: verbatim
10494 #: ../src/guestfs-actions.pod:3327
10495 #, no-wrap
10496 msgid ""
10497 " char **\n"
10498 " guestfs_list_filesystems (guestfs_h *g);\n"
10499 "\n"
10500 msgstr ""
10501
10502 #. type: textblock
10503 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2296
10504 msgid ""
10505 "This inspection command looks for filesystems on partitions, block devices "
10506 "and logical volumes, returning a list of devices containing filesystems and "
10507 "their type."
10508 msgstr ""
10509
10510 #. type: textblock
10511 #: ../src/guestfs-actions.pod:3334 ../fish/guestfish-actions.pod:2300
10512 msgid ""
10513 "The return value is a hash, where the keys are the devices containing "
10514 "filesystems, and the values are the filesystem types.  For example:"
10515 msgstr ""
10516
10517 #. type: verbatim
10518 #: ../src/guestfs-actions.pod:3338 ../fish/guestfish-actions.pod:2304
10519 #, no-wrap
10520 msgid ""
10521 " \"/dev/sda1\" => \"ntfs\"\n"
10522 " \"/dev/sda2\" => \"ext2\"\n"
10523 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
10524 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
10525 "\n"
10526 msgstr ""
10527
10528 #. type: textblock
10529 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2309
10530 msgid ""
10531 "The value can have the special value \"unknown\", meaning the content of the "
10532 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
10533 msgstr ""
10534
10535 #. type: textblock
10536 #: ../src/guestfs-actions.pod:3347
10537 msgid ""
10538 "This command runs other libguestfs commands, which might include "
10539 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
10540 "soon after launch and only when nothing is mounted."
10541 msgstr ""
10542
10543 #. type: textblock
10544 #: ../src/guestfs-actions.pod:3351
10545 msgid ""
10546 "Not all of the filesystems returned will be mountable.  In particular, swap "
10547 "partitions are returned in the list.  Also this command does not check that "
10548 "each filesystem found is valid and mountable, and some filesystems might be "
10549 "mountable but require special options.  Filesystems may not all belong to a "
10550 "single logical operating system (use C<guestfs_inspect_os> to look for "
10551 "OSes)."
10552 msgstr ""
10553
10554 #. type: textblock
10555 #: ../src/guestfs-actions.pod:3365 ../src/guestfs-actions.pod:4958
10556 msgid "(Added in 1.5.15)"
10557 msgstr ""
10558
10559 #. type: =head2
10560 #: ../src/guestfs-actions.pod:3367
10561 msgid "guestfs_list_partitions"
10562 msgstr ""
10563
10564 #. type: verbatim
10565 #: ../src/guestfs-actions.pod:3369
10566 #, no-wrap
10567 msgid ""
10568 " char **\n"
10569 " guestfs_list_partitions (guestfs_h *g);\n"
10570 "\n"
10571 msgstr ""
10572
10573 #. type: textblock
10574 #: ../src/guestfs-actions.pod:3372 ../fish/guestfish-actions.pod:2329
10575 msgid "List all the partitions detected on all block devices."
10576 msgstr ""
10577
10578 #. type: textblock
10579 #: ../src/guestfs-actions.pod:3374 ../fish/guestfish-actions.pod:2331
10580 msgid "The full partition device names are returned, eg. C</dev/sda1>"
10581 msgstr ""
10582
10583 #. type: textblock
10584 #: ../src/guestfs-actions.pod:3376
10585 msgid ""
10586 "This does not return logical volumes.  For that you will need to call "
10587 "C<guestfs_lvs>."
10588 msgstr ""
10589
10590 #. type: =head2
10591 #: ../src/guestfs-actions.pod:3387
10592 msgid "guestfs_ll"
10593 msgstr ""
10594
10595 #. type: verbatim
10596 #: ../src/guestfs-actions.pod:3389
10597 #, no-wrap
10598 msgid ""
10599 " char *\n"
10600 " guestfs_ll (guestfs_h *g,\n"
10601 "             const char *directory);\n"
10602 "\n"
10603 msgstr ""
10604
10605 #. type: textblock
10606 #: ../src/guestfs-actions.pod:3393 ../fish/guestfish-actions.pod:2342
10607 msgid ""
10608 "List the files in C<directory> (relative to the root directory, there is no "
10609 "cwd) in the format of 'ls -la'."
10610 msgstr ""
10611
10612 #. type: textblock
10613 #: ../src/guestfs-actions.pod:3396 ../fish/guestfish-actions.pod:2345
10614 msgid ""
10615 "This command is mostly useful for interactive sessions.  It is I<not> "
10616 "intended that you try to parse the output string."
10617 msgstr ""
10618
10619 #. type: =head2
10620 #: ../src/guestfs-actions.pod:3404
10621 msgid "guestfs_ln"
10622 msgstr ""
10623
10624 #. type: verbatim
10625 #: ../src/guestfs-actions.pod:3406
10626 #, no-wrap
10627 msgid ""
10628 " int\n"
10629 " guestfs_ln (guestfs_h *g,\n"
10630 "             const char *target,\n"
10631 "             const char *linkname);\n"
10632 "\n"
10633 msgstr ""
10634
10635 #. type: textblock
10636 #: ../src/guestfs-actions.pod:3411 ../fish/guestfish-actions.pod:2352
10637 msgid "This command creates a hard link using the C<ln> command."
10638 msgstr ""
10639
10640 #. type: =head2
10641 #: ../src/guestfs-actions.pod:3417
10642 msgid "guestfs_ln_f"
10643 msgstr ""
10644
10645 #. type: verbatim
10646 #: ../src/guestfs-actions.pod:3419
10647 #, no-wrap
10648 msgid ""
10649 " int\n"
10650 " guestfs_ln_f (guestfs_h *g,\n"
10651 "               const char *target,\n"
10652 "               const char *linkname);\n"
10653 "\n"
10654 msgstr ""
10655
10656 #. type: textblock
10657 #: ../src/guestfs-actions.pod:3424 ../fish/guestfish-actions.pod:2358
10658 msgid ""
10659 "This command creates a hard link using the C<ln -f> command.  The C<-f> "
10660 "option removes the link (C<linkname>) if it exists already."
10661 msgstr ""
10662
10663 #. type: =head2
10664 #: ../src/guestfs-actions.pod:3431
10665 msgid "guestfs_ln_s"
10666 msgstr ""
10667
10668 #. type: verbatim
10669 #: ../src/guestfs-actions.pod:3433
10670 #, no-wrap
10671 msgid ""
10672 " int\n"
10673 " guestfs_ln_s (guestfs_h *g,\n"
10674 "               const char *target,\n"
10675 "               const char *linkname);\n"
10676 "\n"
10677 msgstr ""
10678
10679 #. type: textblock
10680 #: ../src/guestfs-actions.pod:3438 ../fish/guestfish-actions.pod:2365
10681 msgid "This command creates a symbolic link using the C<ln -s> command."
10682 msgstr ""
10683
10684 #. type: =head2
10685 #: ../src/guestfs-actions.pod:3444
10686 msgid "guestfs_ln_sf"
10687 msgstr ""
10688
10689 #. type: verbatim
10690 #: ../src/guestfs-actions.pod:3446
10691 #, no-wrap
10692 msgid ""
10693 " int\n"
10694 " guestfs_ln_sf (guestfs_h *g,\n"
10695 "                const char *target,\n"
10696 "                const char *linkname);\n"
10697 "\n"
10698 msgstr ""
10699
10700 #. type: textblock
10701 #: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2371
10702 msgid ""
10703 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
10704 "option removes the link (C<linkname>) if it exists already."
10705 msgstr ""
10706
10707 #. type: =head2
10708 #: ../src/guestfs-actions.pod:3458
10709 msgid "guestfs_lremovexattr"
10710 msgstr ""
10711
10712 #. type: verbatim
10713 #: ../src/guestfs-actions.pod:3460
10714 #, no-wrap
10715 msgid ""
10716 " int\n"
10717 " guestfs_lremovexattr (guestfs_h *g,\n"
10718 "                       const char *xattr,\n"
10719 "                       const char *path);\n"
10720 "\n"
10721 msgstr ""
10722
10723 #. type: textblock
10724 #: ../src/guestfs-actions.pod:3465
10725 msgid ""
10726 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
10727 "link, then it removes an extended attribute of the link itself."
10728 msgstr ""
10729
10730 #. type: =head2
10731 #: ../src/guestfs-actions.pod:3473
10732 msgid "guestfs_ls"
10733 msgstr ""
10734
10735 #. type: verbatim
10736 #: ../src/guestfs-actions.pod:3475
10737 #, no-wrap
10738 msgid ""
10739 " char **\n"
10740 " guestfs_ls (guestfs_h *g,\n"
10741 "             const char *directory);\n"
10742 "\n"
10743 msgstr ""
10744
10745 #. type: textblock
10746 #: ../src/guestfs-actions.pod:3479 ../fish/guestfish-actions.pod:2386
10747 msgid ""
10748 "List the files in C<directory> (relative to the root directory, there is no "
10749 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
10750 "shown."
10751 msgstr ""
10752
10753 #. type: textblock
10754 #: ../src/guestfs-actions.pod:3483
10755 msgid ""
10756 "This command is mostly useful for interactive sessions.  Programs should "
10757 "probably use C<guestfs_readdir> instead."
10758 msgstr ""
10759
10760 #. type: =head2
10761 #: ../src/guestfs-actions.pod:3492
10762 msgid "guestfs_lsetxattr"
10763 msgstr ""
10764
10765 #. type: verbatim
10766 #: ../src/guestfs-actions.pod:3494
10767 #, no-wrap
10768 msgid ""
10769 " int\n"
10770 " guestfs_lsetxattr (guestfs_h *g,\n"
10771 "                    const char *xattr,\n"
10772 "                    const char *val,\n"
10773 "                    int vallen,\n"
10774 "                    const char *path);\n"
10775 "\n"
10776 msgstr ""
10777
10778 #. type: textblock
10779 #: ../src/guestfs-actions.pod:3501
10780 msgid ""
10781 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
10782 "then it sets an extended attribute of the link itself."
10783 msgstr ""
10784
10785 #. type: =head2
10786 #: ../src/guestfs-actions.pod:3509
10787 msgid "guestfs_lstat"
10788 msgstr ""
10789
10790 #. type: verbatim
10791 #: ../src/guestfs-actions.pod:3511
10792 #, no-wrap
10793 msgid ""
10794 " struct guestfs_stat *\n"
10795 " guestfs_lstat (guestfs_h *g,\n"
10796 "                const char *path);\n"
10797 "\n"
10798 msgstr ""
10799
10800 #. type: textblock
10801 #: ../src/guestfs-actions.pod:3515 ../src/guestfs-actions.pod:6012 ../fish/guestfish-actions.pod:2405 ../fish/guestfish-actions.pod:4020
10802 msgid "Returns file information for the given C<path>."
10803 msgstr ""
10804
10805 #. type: textblock
10806 #: ../src/guestfs-actions.pod:3517
10807 msgid ""
10808 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
10809 "link, then the link is stat-ed, not the file it refers to."
10810 msgstr ""
10811
10812 #. type: textblock
10813 #: ../src/guestfs-actions.pod:3521 ../fish/guestfish-actions.pod:2411
10814 msgid "This is the same as the C<lstat(2)> system call."
10815 msgstr ""
10816
10817 #. type: textblock
10818 #: ../src/guestfs-actions.pod:3523 ../src/guestfs-actions.pod:6016
10819 msgid ""
10820 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
10821 "error.  I<The caller must call C<guestfs_free_stat> after use>."
10822 msgstr ""
10823
10824 #. type: textblock
10825 #: ../src/guestfs-actions.pod:3527 ../src/guestfs-actions.pod:6020 ../src/guestfs-actions.pod:6038 ../src/guestfs-actions.pod:6419
10826 msgid "(Added in 0.9.2)"
10827 msgstr ""
10828
10829 #. type: =head2
10830 #: ../src/guestfs-actions.pod:3529
10831 msgid "guestfs_lstatlist"
10832 msgstr ""
10833
10834 #. type: verbatim
10835 #: ../src/guestfs-actions.pod:3531
10836 #, no-wrap
10837 msgid ""
10838 " struct guestfs_stat_list *\n"
10839 " guestfs_lstatlist (guestfs_h *g,\n"
10840 "                    const char *path,\n"
10841 "                    char *const *names);\n"
10842 "\n"
10843 msgstr ""
10844
10845 #. type: textblock
10846 #: ../src/guestfs-actions.pod:3536
10847 msgid ""
10848 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
10849 "files, where all files are in the directory C<path>.  C<names> is the list "
10850 "of files from this directory."
10851 msgstr ""
10852
10853 #. type: textblock
10854 #: ../src/guestfs-actions.pod:3540 ../fish/guestfish-actions.pod:2421
10855 msgid ""
10856 "On return you get a list of stat structs, with a one-to-one correspondence "
10857 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
10858 "then the C<ino> field of that structure is set to C<-1>."
10859 msgstr ""
10860
10861 #. type: textblock
10862 #: ../src/guestfs-actions.pod:3545
10863 msgid ""
10864 "This call is intended for programs that want to efficiently list a directory "
10865 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
10866 "for a similarly efficient call for getting extended attributes.  Very long "
10867 "directory listings might cause the protocol message size to be exceeded, "
10868 "causing this call to fail.  The caller must split up such requests into "
10869 "smaller groups of names."
10870 msgstr ""
10871
10872 #. type: textblock
10873 #: ../src/guestfs-actions.pod:3553
10874 msgid ""
10875 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
10876 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
10877 msgstr ""
10878
10879 #. type: =head2
10880 #: ../src/guestfs-actions.pod:3559
10881 msgid "guestfs_luks_add_key"
10882 msgstr ""
10883
10884 #. type: verbatim
10885 #: ../src/guestfs-actions.pod:3561
10886 #, no-wrap
10887 msgid ""
10888 " int\n"
10889 " guestfs_luks_add_key (guestfs_h *g,\n"
10890 "                       const char *device,\n"
10891 "                       const char *key,\n"
10892 "                       const char *newkey,\n"
10893 "                       int keyslot);\n"
10894 "\n"
10895 msgstr ""
10896
10897 #. type: textblock
10898 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2438
10899 msgid ""
10900 "This command adds a new key on LUKS device C<device>.  C<key> is any "
10901 "existing key, and is used to access the device.  C<newkey> is the new key to "
10902 "add.  C<keyslot> is the key slot that will be replaced."
10903 msgstr ""
10904
10905 #. type: textblock
10906 #: ../src/guestfs-actions.pod:3573
10907 msgid ""
10908 "Note that if C<keyslot> already contains a key, then this command will "
10909 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
10910 msgstr ""
10911
10912 #. type: textblock
10913 #: ../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
10914 msgid ""
10915 "This function takes a key or passphrase parameter which could contain "
10916 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
10917 "information."
10918 msgstr ""
10919
10920 #. type: textblock
10921 #: ../src/guestfs-actions.pod:3583 ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3666
10922 msgid "(Added in 1.5.2)"
10923 msgstr ""
10924
10925 #. type: =head2
10926 #: ../src/guestfs-actions.pod:3585
10927 msgid "guestfs_luks_close"
10928 msgstr ""
10929
10930 #. type: verbatim
10931 #: ../src/guestfs-actions.pod:3587
10932 #, no-wrap
10933 msgid ""
10934 " int\n"
10935 " guestfs_luks_close (guestfs_h *g,\n"
10936 "                     const char *device);\n"
10937 "\n"
10938 msgstr ""
10939
10940 #. type: textblock
10941 #: ../src/guestfs-actions.pod:3591
10942 msgid ""
10943 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
10944 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
10945 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
10946 "underlying block device."
10947 msgstr ""
10948
10949 #. type: textblock
10950 #: ../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
10951 msgid "(Added in 1.5.1)"
10952 msgstr ""
10953
10954 #. type: =head2
10955 #: ../src/guestfs-actions.pod:3601
10956 msgid "guestfs_luks_format"
10957 msgstr ""
10958
10959 #. type: verbatim
10960 #: ../src/guestfs-actions.pod:3603
10961 #, no-wrap
10962 msgid ""
10963 " int\n"
10964 " guestfs_luks_format (guestfs_h *g,\n"
10965 "                      const char *device,\n"
10966 "                      const char *key,\n"
10967 "                      int keyslot);\n"
10968 "\n"
10969 msgstr ""
10970
10971 #. type: textblock
10972 #: ../src/guestfs-actions.pod:3609 ../fish/guestfish-actions.pod:2464
10973 msgid ""
10974 "This command erases existing data on C<device> and formats the device as a "
10975 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
10976 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
10977 msgstr ""
10978
10979 #. type: textblock
10980 #: ../src/guestfs-actions.pod:3616 ../src/guestfs-actions.pod:3639 ../src/guestfs-actions.pod:3779 ../src/guestfs-actions.pod:4709 ../src/guestfs-actions.pod:5472 ../src/guestfs-actions.pod:5847 ../src/guestfs-actions.pod:5870 ../src/guestfs-actions.pod:5896 ../src/guestfs-actions.pod:7056 ../fish/guestfish-actions.pod:2472 ../fish/guestfish-actions.pod:2485 ../fish/guestfish-actions.pod:2569 ../fish/guestfish-actions.pod:3132 ../fish/guestfish-actions.pod:3639 ../fish/guestfish-actions.pod:3919 ../fish/guestfish-actions.pod:3935 ../fish/guestfish-actions.pod:3950 ../fish/guestfish-actions.pod:4665
10981 msgid ""
10982 "B<This command is dangerous.  Without careful use you can easily destroy all "
10983 "your data>."
10984 msgstr ""
10985
10986 #. type: =head2
10987 #: ../src/guestfs-actions.pod:3625
10988 msgid "guestfs_luks_format_cipher"
10989 msgstr ""
10990
10991 #. type: verbatim
10992 #: ../src/guestfs-actions.pod:3627
10993 #, no-wrap
10994 msgid ""
10995 " int\n"
10996 " guestfs_luks_format_cipher (guestfs_h *g,\n"
10997 "                             const char *device,\n"
10998 "                             const char *key,\n"
10999 "                             int keyslot,\n"
11000 "                             const char *cipher);\n"
11001 "\n"
11002 msgstr ""
11003
11004 #. type: textblock
11005 #: ../src/guestfs-actions.pod:3634
11006 msgid ""
11007 "This command is the same as C<guestfs_luks_format> but it also allows you to "
11008 "set the C<cipher> used."
11009 msgstr ""
11010
11011 #. type: =head2
11012 #: ../src/guestfs-actions.pod:3648
11013 msgid "guestfs_luks_kill_slot"
11014 msgstr ""
11015
11016 #. type: verbatim
11017 #: ../src/guestfs-actions.pod:3650
11018 #, no-wrap
11019 msgid ""
11020 " int\n"
11021 " guestfs_luks_kill_slot (guestfs_h *g,\n"
11022 "                         const char *device,\n"
11023 "                         const char *key,\n"
11024 "                         int keyslot);\n"
11025 "\n"
11026 msgstr ""
11027
11028 #. type: textblock
11029 #: ../src/guestfs-actions.pod:3656 ../fish/guestfish-actions.pod:2492
11030 msgid ""
11031 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
11032 "device C<device>.  C<key> must be one of the I<other> keys."
11033 msgstr ""
11034
11035 #. type: =head2
11036 #: ../src/guestfs-actions.pod:3668
11037 msgid "guestfs_luks_open"
11038 msgstr ""
11039
11040 #. type: verbatim
11041 #: ../src/guestfs-actions.pod:3670
11042 #, no-wrap
11043 msgid ""
11044 " int\n"
11045 " guestfs_luks_open (guestfs_h *g,\n"
11046 "                    const char *device,\n"
11047 "                    const char *key,\n"
11048 "                    const char *mapname);\n"
11049 "\n"
11050 msgstr ""
11051
11052 #. type: textblock
11053 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2503
11054 msgid ""
11055 "This command opens a block device which has been encrypted according to the "
11056 "Linux Unified Key Setup (LUKS) standard."
11057 msgstr ""
11058
11059 #. type: textblock
11060 #: ../src/guestfs-actions.pod:3679 ../fish/guestfish-actions.pod:2506
11061 msgid "C<device> is the encrypted block device or partition."
11062 msgstr ""
11063
11064 #. type: textblock
11065 #: ../src/guestfs-actions.pod:3681 ../fish/guestfish-actions.pod:2508
11066 msgid ""
11067 "The caller must supply one of the keys associated with the LUKS block "
11068 "device, in the C<key> parameter."
11069 msgstr ""
11070
11071 #. type: textblock
11072 #: ../src/guestfs-actions.pod:3684 ../fish/guestfish-actions.pod:2511
11073 msgid ""
11074 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
11075 "writes to this block device are decrypted from and encrypted to the "
11076 "underlying C<device> respectively."
11077 msgstr ""
11078
11079 #. type: textblock
11080 #: ../src/guestfs-actions.pod:3688
11081 msgid ""
11082 "If this block device contains LVM volume groups, then calling "
11083 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
11084 "visible."
11085 msgstr ""
11086
11087 #. type: =head2
11088 #: ../src/guestfs-actions.pod:3700
11089 msgid "guestfs_luks_open_ro"
11090 msgstr ""
11091
11092 #. type: verbatim
11093 #: ../src/guestfs-actions.pod:3702
11094 #, no-wrap
11095 msgid ""
11096 " int\n"
11097 " guestfs_luks_open_ro (guestfs_h *g,\n"
11098 "                       const char *device,\n"
11099 "                       const char *key,\n"
11100 "                       const char *mapname);\n"
11101 "\n"
11102 msgstr ""
11103
11104 #. type: textblock
11105 #: ../src/guestfs-actions.pod:3708
11106 msgid ""
11107 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
11108 "created."
11109 msgstr ""
11110
11111 #. type: =head2
11112 #: ../src/guestfs-actions.pod:3719
11113 msgid "guestfs_lvcreate"
11114 msgstr ""
11115
11116 #. type: verbatim
11117 #: ../src/guestfs-actions.pod:3721
11118 #, no-wrap
11119 msgid ""
11120 " int\n"
11121 " guestfs_lvcreate (guestfs_h *g,\n"
11122 "                   const char *logvol,\n"
11123 "                   const char *volgroup,\n"
11124 "                   int mbytes);\n"
11125 "\n"
11126 msgstr ""
11127
11128 #. type: textblock
11129 #: ../src/guestfs-actions.pod:3727 ../fish/guestfish-actions.pod:2536
11130 msgid ""
11131 "This creates an LVM logical volume called C<logvol> on the volume group "
11132 "C<volgroup>, with C<size> megabytes."
11133 msgstr ""
11134
11135 #. type: =head2
11136 #: ../src/guestfs-actions.pod:3734
11137 msgid "guestfs_lvm_canonical_lv_name"
11138 msgstr ""
11139
11140 #. type: verbatim
11141 #: ../src/guestfs-actions.pod:3736
11142 #, no-wrap
11143 msgid ""
11144 " char *\n"
11145 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
11146 "                                const char *lvname);\n"
11147 "\n"
11148 msgstr ""
11149
11150 #. type: textblock
11151 #: ../src/guestfs-actions.pod:3740 ../fish/guestfish-actions.pod:2543
11152 msgid ""
11153 "This converts alternative naming schemes for LVs that you might find to the "
11154 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
11155 "C</dev/VG/LV>."
11156 msgstr ""
11157
11158 #. type: textblock
11159 #: ../src/guestfs-actions.pod:3744 ../fish/guestfish-actions.pod:2547
11160 msgid ""
11161 "This command returns an error if the C<lvname> parameter does not refer to a "
11162 "logical volume."
11163 msgstr ""
11164
11165 #. type: textblock
11166 #: ../src/guestfs-actions.pod:3747
11167 msgid "See also C<guestfs_is_lv>."
11168 msgstr ""
11169
11170 #. type: textblock
11171 #: ../src/guestfs-actions.pod:3752
11172 msgid "(Added in 1.5.24)"
11173 msgstr ""
11174
11175 #. type: =head2
11176 #: ../src/guestfs-actions.pod:3754
11177 msgid "guestfs_lvm_clear_filter"
11178 msgstr ""
11179
11180 #. type: verbatim
11181 #: ../src/guestfs-actions.pod:3756
11182 #, no-wrap
11183 msgid ""
11184 " int\n"
11185 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
11186 "\n"
11187 msgstr ""
11188
11189 #. type: textblock
11190 #: ../src/guestfs-actions.pod:3759
11191 msgid ""
11192 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
11193 "see every block device."
11194 msgstr ""
11195
11196 #. type: textblock
11197 #: ../src/guestfs-actions.pod:3762 ../src/guestfs-actions.pod:3804 ../fish/guestfish-actions.pod:2559 ../fish/guestfish-actions.pod:2590
11198 msgid "This command also clears the LVM cache and performs a volume group scan."
11199 msgstr ""
11200
11201 #. type: =head2
11202 #: ../src/guestfs-actions.pod:3769
11203 msgid "guestfs_lvm_remove_all"
11204 msgstr ""
11205
11206 #. type: verbatim
11207 #: ../src/guestfs-actions.pod:3771
11208 #, no-wrap
11209 msgid ""
11210 " int\n"
11211 " guestfs_lvm_remove_all (guestfs_h *g);\n"
11212 "\n"
11213 msgstr ""
11214
11215 #. type: textblock
11216 #: ../src/guestfs-actions.pod:3774 ../fish/guestfish-actions.pod:2566
11217 msgid ""
11218 "This command removes all LVM logical volumes, volume groups and physical "
11219 "volumes."
11220 msgstr ""
11221
11222 #. type: =head2
11223 #: ../src/guestfs-actions.pod:3784
11224 msgid "guestfs_lvm_set_filter"
11225 msgstr ""
11226
11227 #. type: verbatim
11228 #: ../src/guestfs-actions.pod:3786
11229 #, no-wrap
11230 msgid ""
11231 " int\n"
11232 " guestfs_lvm_set_filter (guestfs_h *g,\n"
11233 "                         char *const *devices);\n"
11234 "\n"
11235 msgstr ""
11236
11237 #. type: textblock
11238 #: ../src/guestfs-actions.pod:3790 ../fish/guestfish-actions.pod:2576
11239 msgid ""
11240 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
11241 "block devices in the list C<devices>, and will ignore all other attached "
11242 "block devices."
11243 msgstr ""
11244
11245 #. type: textblock
11246 #: ../src/guestfs-actions.pod:3794 ../fish/guestfish-actions.pod:2580
11247 msgid ""
11248 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
11249 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
11250 "there are two types of duplication possible: either cloned PVs/VGs which "
11251 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
11252 "same name.  In normal operation you cannot create this situation, but you "
11253 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
11254 "inside the LVM metadata."
11255 msgstr ""
11256
11257 #. type: textblock
11258 #: ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2593
11259 msgid "You can filter whole block devices or individual partitions."
11260 msgstr ""
11261
11262 #. type: textblock
11263 #: ../src/guestfs-actions.pod:3809 ../fish/guestfish-actions.pod:2595
11264 msgid ""
11265 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
11266 "filesystem), even if you are not filtering out that VG."
11267 msgstr ""
11268
11269 #. type: =head2
11270 #: ../src/guestfs-actions.pod:3817
11271 msgid "guestfs_lvremove"
11272 msgstr ""
11273
11274 #. type: verbatim
11275 #: ../src/guestfs-actions.pod:3819
11276 #, no-wrap
11277 msgid ""
11278 " int\n"
11279 " guestfs_lvremove (guestfs_h *g,\n"
11280 "                   const char *device);\n"
11281 "\n"
11282 msgstr ""
11283
11284 #. type: textblock
11285 #: ../src/guestfs-actions.pod:3823 ../fish/guestfish-actions.pod:2603
11286 msgid ""
11287 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
11288 "LV, such as C</dev/VG/LV>."
11289 msgstr ""
11290
11291 #. type: textblock
11292 #: ../src/guestfs-actions.pod:3826 ../fish/guestfish-actions.pod:2606
11293 msgid ""
11294 "You can also remove all LVs in a volume group by specifying the VG name, "
11295 "C</dev/VG>."
11296 msgstr ""
11297
11298 #. type: textblock
11299 #: ../src/guestfs-actions.pod:3831 ../src/guestfs-actions.pod:5055 ../src/guestfs-actions.pod:6795
11300 msgid "(Added in 1.0.13)"
11301 msgstr ""
11302
11303 #. type: =head2
11304 #: ../src/guestfs-actions.pod:3833
11305 msgid "guestfs_lvrename"
11306 msgstr ""
11307
11308 #. type: verbatim
11309 #: ../src/guestfs-actions.pod:3835
11310 #, no-wrap
11311 msgid ""
11312 " int\n"
11313 " guestfs_lvrename (guestfs_h *g,\n"
11314 "                   const char *logvol,\n"
11315 "                   const char *newlogvol);\n"
11316 "\n"
11317 msgstr ""
11318
11319 #. type: textblock
11320 #: ../src/guestfs-actions.pod:3840 ../fish/guestfish-actions.pod:2613
11321 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
11322 msgstr ""
11323
11324 #. type: textblock
11325 #: ../src/guestfs-actions.pod:3844 ../src/guestfs-actions.pod:6808
11326 msgid "(Added in 1.0.83)"
11327 msgstr ""
11328
11329 #. type: =head2
11330 #: ../src/guestfs-actions.pod:3846
11331 msgid "guestfs_lvresize"
11332 msgstr ""
11333
11334 #. type: verbatim
11335 #: ../src/guestfs-actions.pod:3848
11336 #, no-wrap
11337 msgid ""
11338 " int\n"
11339 " guestfs_lvresize (guestfs_h *g,\n"
11340 "                   const char *device,\n"
11341 "                   int mbytes);\n"
11342 "\n"
11343 msgstr ""
11344
11345 #. type: textblock
11346 #: ../src/guestfs-actions.pod:3853 ../fish/guestfish-actions.pod:2619
11347 msgid ""
11348 "This resizes (expands or shrinks) an existing LVM logical volume to "
11349 "C<mbytes>.  When reducing, data in the reduced part is lost."
11350 msgstr ""
11351
11352 #. type: =head2
11353 #: ../src/guestfs-actions.pod:3861
11354 msgid "guestfs_lvresize_free"
11355 msgstr ""
11356
11357 #. type: verbatim
11358 #: ../src/guestfs-actions.pod:3863
11359 #, no-wrap
11360 msgid ""
11361 " int\n"
11362 " guestfs_lvresize_free (guestfs_h *g,\n"
11363 "                        const char *lv,\n"
11364 "                        int percent);\n"
11365 "\n"
11366 msgstr ""
11367
11368 #. type: textblock
11369 #: ../src/guestfs-actions.pod:3868 ../fish/guestfish-actions.pod:2627
11370 msgid ""
11371 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
11372 "remaining free space in the volume group.  Commonly you would call this with "
11373 "pc = 100 which expands the logical volume as much as possible, using all "
11374 "remaining free space in the volume group."
11375 msgstr ""
11376
11377 #. type: textblock
11378 #: ../src/guestfs-actions.pod:3876
11379 msgid "(Added in 1.3.3)"
11380 msgstr ""
11381
11382 #. type: =head2
11383 #: ../src/guestfs-actions.pod:3878
11384 msgid "guestfs_lvs"
11385 msgstr ""
11386
11387 #. type: verbatim
11388 #: ../src/guestfs-actions.pod:3880
11389 #, no-wrap
11390 msgid ""
11391 " char **\n"
11392 " guestfs_lvs (guestfs_h *g);\n"
11393 "\n"
11394 msgstr ""
11395
11396 #. type: textblock
11397 #: ../src/guestfs-actions.pod:3883 ../fish/guestfish-actions.pod:2637
11398 msgid ""
11399 "List all the logical volumes detected.  This is the equivalent of the "
11400 "L<lvs(8)> command."
11401 msgstr ""
11402
11403 #. type: textblock
11404 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2640
11405 msgid ""
11406 "This returns a list of the logical volume device names "
11407 "(eg. C</dev/VolGroup00/LogVol00>)."
11408 msgstr ""
11409
11410 #. type: textblock
11411 #: ../src/guestfs-actions.pod:3889
11412 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
11413 msgstr ""
11414
11415 #. type: =head2
11416 #: ../src/guestfs-actions.pod:3897
11417 msgid "guestfs_lvs_full"
11418 msgstr ""
11419
11420 #. type: verbatim
11421 #: ../src/guestfs-actions.pod:3899
11422 #, no-wrap
11423 msgid ""
11424 " struct guestfs_lvm_lv_list *\n"
11425 " guestfs_lvs_full (guestfs_h *g);\n"
11426 "\n"
11427 msgstr ""
11428
11429 #. type: textblock
11430 #: ../src/guestfs-actions.pod:3902 ../fish/guestfish-actions.pod:2649
11431 msgid ""
11432 "List all the logical volumes detected.  This is the equivalent of the "
11433 "L<lvs(8)> command.  The \"full\" version includes all fields."
11434 msgstr ""
11435
11436 #. type: textblock
11437 #: ../src/guestfs-actions.pod:3905
11438 msgid ""
11439 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
11440 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
11441 "use>."
11442 msgstr ""
11443
11444 #. type: =head2
11445 #: ../src/guestfs-actions.pod:3911
11446 msgid "guestfs_lvuuid"
11447 msgstr ""
11448
11449 #. type: verbatim
11450 #: ../src/guestfs-actions.pod:3913
11451 #, no-wrap
11452 msgid ""
11453 " char *\n"
11454 " guestfs_lvuuid (guestfs_h *g,\n"
11455 "                 const char *device);\n"
11456 "\n"
11457 msgstr ""
11458
11459 #. type: textblock
11460 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2656
11461 msgid "This command returns the UUID of the LVM LV C<device>."
11462 msgstr ""
11463
11464 #. type: =head2
11465 #: ../src/guestfs-actions.pod:3924
11466 msgid "guestfs_lxattrlist"
11467 msgstr ""
11468
11469 #. type: verbatim
11470 #: ../src/guestfs-actions.pod:3926
11471 #, no-wrap
11472 msgid ""
11473 " struct guestfs_xattr_list *\n"
11474 " guestfs_lxattrlist (guestfs_h *g,\n"
11475 "                     const char *path,\n"
11476 "                     char *const *names);\n"
11477 "\n"
11478 msgstr ""
11479
11480 #. type: textblock
11481 #: ../src/guestfs-actions.pod:3931 ../fish/guestfish-actions.pod:2662
11482 msgid ""
11483 "This call allows you to get the extended attributes of multiple files, where "
11484 "all files are in the directory C<path>.  C<names> is the list of files from "
11485 "this directory."
11486 msgstr ""
11487
11488 #. type: textblock
11489 #: ../src/guestfs-actions.pod:3935 ../fish/guestfish-actions.pod:2666
11490 msgid ""
11491 "On return you get a flat list of xattr structs which must be interpreted "
11492 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
11493 "C<attrval> in this struct is zero-length to indicate there was an error "
11494 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
11495 "number (the number of following attributes for this file, which could be "
11496 "C<\"0\">).  Then after the first xattr struct are the zero or more "
11497 "attributes for the first named file.  This repeats for the second and "
11498 "subsequent files."
11499 msgstr ""
11500
11501 #. type: textblock
11502 #: ../src/guestfs-actions.pod:3945
11503 msgid ""
11504 "This call is intended for programs that want to efficiently list a directory "
11505 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
11506 "a similarly efficient call for getting standard stats.  Very long directory "
11507 "listings might cause the protocol message size to be exceeded, causing this "
11508 "call to fail.  The caller must split up such requests into smaller groups of "
11509 "names."
11510 msgstr ""
11511
11512 #. type: =head2
11513 #: ../src/guestfs-actions.pod:3959
11514 msgid "guestfs_mkdir"
11515 msgstr ""
11516
11517 #. type: verbatim
11518 #: ../src/guestfs-actions.pod:3961
11519 #, no-wrap
11520 msgid ""
11521 " int\n"
11522 " guestfs_mkdir (guestfs_h *g,\n"
11523 "                const char *path);\n"
11524 "\n"
11525 msgstr ""
11526
11527 #. type: textblock
11528 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2688
11529 msgid "Create a directory named C<path>."
11530 msgstr ""
11531
11532 #. type: =head2
11533 #: ../src/guestfs-actions.pod:3971
11534 msgid "guestfs_mkdir_mode"
11535 msgstr ""
11536
11537 #. type: verbatim
11538 #: ../src/guestfs-actions.pod:3973
11539 #, no-wrap
11540 msgid ""
11541 " int\n"
11542 " guestfs_mkdir_mode (guestfs_h *g,\n"
11543 "                     const char *path,\n"
11544 "                     int mode);\n"
11545 "\n"
11546 msgstr ""
11547
11548 #. type: textblock
11549 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2694
11550 msgid ""
11551 "This command creates a directory, setting the initial permissions of the "
11552 "directory to C<mode>."
11553 msgstr ""
11554
11555 #. type: textblock
11556 #: ../src/guestfs-actions.pod:3981 ../fish/guestfish-actions.pod:2697
11557 msgid ""
11558 "For common Linux filesystems, the actual mode which is set will be C<mode & "
11559 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
11560 "other ways."
11561 msgstr ""
11562
11563 #. type: textblock
11564 #: ../src/guestfs-actions.pod:3985
11565 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
11566 msgstr ""
11567
11568 #. type: =head2
11569 #: ../src/guestfs-actions.pod:3991
11570 msgid "guestfs_mkdir_p"
11571 msgstr ""
11572
11573 #. type: verbatim
11574 #: ../src/guestfs-actions.pod:3993
11575 #, no-wrap
11576 msgid ""
11577 " int\n"
11578 " guestfs_mkdir_p (guestfs_h *g,\n"
11579 "                  const char *path);\n"
11580 "\n"
11581 msgstr ""
11582
11583 #. type: textblock
11584 #: ../src/guestfs-actions.pod:3997 ../fish/guestfish-actions.pod:2707
11585 msgid ""
11586 "Create a directory named C<path>, creating any parent directories as "
11587 "necessary.  This is like the C<mkdir -p> shell command."
11588 msgstr ""
11589
11590 #. type: =head2
11591 #: ../src/guestfs-actions.pod:4004
11592 msgid "guestfs_mkdtemp"
11593 msgstr ""
11594
11595 #. type: verbatim
11596 #: ../src/guestfs-actions.pod:4006
11597 #, no-wrap
11598 msgid ""
11599 " char *\n"
11600 " guestfs_mkdtemp (guestfs_h *g,\n"
11601 "                  const char *template);\n"
11602 "\n"
11603 msgstr ""
11604
11605 #. type: textblock
11606 #: ../src/guestfs-actions.pod:4010 ../fish/guestfish-actions.pod:2714
11607 msgid ""
11608 "This command creates a temporary directory.  The C<template> parameter "
11609 "should be a full pathname for the temporary directory name with the final "
11610 "six characters being \"XXXXXX\"."
11611 msgstr ""
11612
11613 #. type: textblock
11614 #: ../src/guestfs-actions.pod:4015 ../fish/guestfish-actions.pod:2719
11615 msgid ""
11616 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
11617 "being suitable for Windows filesystems."
11618 msgstr ""
11619
11620 #. type: textblock
11621 #: ../src/guestfs-actions.pod:4018 ../fish/guestfish-actions.pod:2722
11622 msgid "The name of the temporary directory that was created is returned."
11623 msgstr ""
11624
11625 #. type: textblock
11626 #: ../src/guestfs-actions.pod:4021 ../fish/guestfish-actions.pod:2725
11627 msgid "The temporary directory is created with mode 0700 and is owned by root."
11628 msgstr ""
11629
11630 #. type: textblock
11631 #: ../src/guestfs-actions.pod:4024 ../fish/guestfish-actions.pod:2728
11632 msgid ""
11633 "The caller is responsible for deleting the temporary directory and its "
11634 "contents after use."
11635 msgstr ""
11636
11637 #. type: textblock
11638 #: ../src/guestfs-actions.pod:4027 ../fish/guestfish-actions.pod:2731
11639 msgid "See also: L<mkdtemp(3)>"
11640 msgstr ""
11641
11642 #. type: =head2
11643 #: ../src/guestfs-actions.pod:4034
11644 msgid "guestfs_mke2fs_J"
11645 msgstr ""
11646
11647 #. type: verbatim
11648 #: ../src/guestfs-actions.pod:4036
11649 #, no-wrap
11650 msgid ""
11651 " int\n"
11652 " guestfs_mke2fs_J (guestfs_h *g,\n"
11653 "                   const char *fstype,\n"
11654 "                   int blocksize,\n"
11655 "                   const char *device,\n"
11656 "                   const char *journal);\n"
11657 "\n"
11658 msgstr ""
11659
11660 #. type: textblock
11661 #: ../src/guestfs-actions.pod:4043 ../fish/guestfish-actions.pod:2737
11662 msgid ""
11663 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11664 "C<journal>.  It is equivalent to the command:"
11665 msgstr ""
11666
11667 #. type: verbatim
11668 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2741
11669 #, no-wrap
11670 msgid ""
11671 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
11672 "\n"
11673 msgstr ""
11674
11675 #. type: textblock
11676 #: ../src/guestfs-actions.pod:4049
11677 msgid "See also C<guestfs_mke2journal>."
11678 msgstr ""
11679
11680 #. type: textblock
11681 #: ../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
11682 msgid "(Added in 1.0.68)"
11683 msgstr ""
11684
11685 #. type: =head2
11686 #: ../src/guestfs-actions.pod:4055
11687 msgid "guestfs_mke2fs_JL"
11688 msgstr ""
11689
11690 #. type: verbatim
11691 #: ../src/guestfs-actions.pod:4057
11692 #, no-wrap
11693 msgid ""
11694 " int\n"
11695 " guestfs_mke2fs_JL (guestfs_h *g,\n"
11696 "                    const char *fstype,\n"
11697 "                    int blocksize,\n"
11698 "                    const char *device,\n"
11699 "                    const char *label);\n"
11700 "\n"
11701 msgstr ""
11702
11703 #. type: textblock
11704 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2749
11705 msgid ""
11706 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11707 "the journal labeled C<label>."
11708 msgstr ""
11709
11710 #. type: textblock
11711 #: ../src/guestfs-actions.pod:4067
11712 msgid "See also C<guestfs_mke2journal_L>."
11713 msgstr ""
11714
11715 #. type: =head2
11716 #: ../src/guestfs-actions.pod:4073
11717 msgid "guestfs_mke2fs_JU"
11718 msgstr ""
11719
11720 #. type: verbatim
11721 #: ../src/guestfs-actions.pod:4075
11722 #, no-wrap
11723 msgid ""
11724 " int\n"
11725 " guestfs_mke2fs_JU (guestfs_h *g,\n"
11726 "                    const char *fstype,\n"
11727 "                    int blocksize,\n"
11728 "                    const char *device,\n"
11729 "                    const char *uuid);\n"
11730 "\n"
11731 msgstr ""
11732
11733 #. type: textblock
11734 #: ../src/guestfs-actions.pod:4082 ../fish/guestfish-actions.pod:2758
11735 msgid ""
11736 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11737 "the journal with UUID C<uuid>."
11738 msgstr ""
11739
11740 #. type: textblock
11741 #: ../src/guestfs-actions.pod:4085
11742 msgid "See also C<guestfs_mke2journal_U>."
11743 msgstr ""
11744
11745 #. type: =head2
11746 #: ../src/guestfs-actions.pod:4091
11747 msgid "guestfs_mke2journal"
11748 msgstr ""
11749
11750 #. type: verbatim
11751 #: ../src/guestfs-actions.pod:4093
11752 #, no-wrap
11753 msgid ""
11754 " int\n"
11755 " guestfs_mke2journal (guestfs_h *g,\n"
11756 "                      int blocksize,\n"
11757 "                      const char *device);\n"
11758 "\n"
11759 msgstr ""
11760
11761 #. type: textblock
11762 #: ../src/guestfs-actions.pod:4098 ../fish/guestfish-actions.pod:2767
11763 msgid ""
11764 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
11765 "command:"
11766 msgstr ""
11767
11768 #. type: verbatim
11769 #: ../src/guestfs-actions.pod:4101 ../fish/guestfish-actions.pod:2770
11770 #, no-wrap
11771 msgid ""
11772 " mke2fs -O journal_dev -b blocksize device\n"
11773 "\n"
11774 msgstr ""
11775
11776 #. type: =head2
11777 #: ../src/guestfs-actions.pod:4107
11778 msgid "guestfs_mke2journal_L"
11779 msgstr ""
11780
11781 #. type: verbatim
11782 #: ../src/guestfs-actions.pod:4109
11783 #, no-wrap
11784 msgid ""
11785 " int\n"
11786 " guestfs_mke2journal_L (guestfs_h *g,\n"
11787 "                        int blocksize,\n"
11788 "                        const char *label,\n"
11789 "                        const char *device);\n"
11790 "\n"
11791 msgstr ""
11792
11793 #. type: textblock
11794 #: ../src/guestfs-actions.pod:4115 ../fish/guestfish-actions.pod:2776
11795 msgid "This creates an ext2 external journal on C<device> with label C<label>."
11796 msgstr ""
11797
11798 #. type: =head2
11799 #: ../src/guestfs-actions.pod:4121
11800 msgid "guestfs_mke2journal_U"
11801 msgstr ""
11802
11803 #. type: verbatim
11804 #: ../src/guestfs-actions.pod:4123
11805 #, no-wrap
11806 msgid ""
11807 " int\n"
11808 " guestfs_mke2journal_U (guestfs_h *g,\n"
11809 "                        int blocksize,\n"
11810 "                        const char *uuid,\n"
11811 "                        const char *device);\n"
11812 "\n"
11813 msgstr ""
11814
11815 #. type: textblock
11816 #: ../src/guestfs-actions.pod:4129 ../fish/guestfish-actions.pod:2782
11817 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
11818 msgstr ""
11819
11820 #. type: =head2
11821 #: ../src/guestfs-actions.pod:4135
11822 msgid "guestfs_mkfifo"
11823 msgstr ""
11824
11825 #. type: verbatim
11826 #: ../src/guestfs-actions.pod:4137
11827 #, no-wrap
11828 msgid ""
11829 " int\n"
11830 " guestfs_mkfifo (guestfs_h *g,\n"
11831 "                 int mode,\n"
11832 "                 const char *path);\n"
11833 "\n"
11834 msgstr ""
11835
11836 #. type: textblock
11837 #: ../src/guestfs-actions.pod:4142
11838 msgid ""
11839 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
11840 "is just a convenient wrapper around C<guestfs_mknod>."
11841 msgstr ""
11842
11843 #. type: =head2
11844 #: ../src/guestfs-actions.pod:4152
11845 msgid "guestfs_mkfs"
11846 msgstr ""
11847
11848 #. type: verbatim
11849 #: ../src/guestfs-actions.pod:4154
11850 #, no-wrap
11851 msgid ""
11852 " int\n"
11853 " guestfs_mkfs (guestfs_h *g,\n"
11854 "               const char *fstype,\n"
11855 "               const char *device);\n"
11856 "\n"
11857 msgstr ""
11858
11859 #. type: textblock
11860 #: ../src/guestfs-actions.pod:4159 ../fish/guestfish-actions.pod:2798
11861 msgid ""
11862 "This creates a filesystem on C<device> (usually a partition or LVM logical "
11863 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
11864 msgstr ""
11865
11866 #. type: =head2
11867 #: ../src/guestfs-actions.pod:4167
11868 msgid "guestfs_mkfs_b"
11869 msgstr ""
11870
11871 #. type: verbatim
11872 #: ../src/guestfs-actions.pod:4169
11873 #, no-wrap
11874 msgid ""
11875 " int\n"
11876 " guestfs_mkfs_b (guestfs_h *g,\n"
11877 "                 const char *fstype,\n"
11878 "                 int blocksize,\n"
11879 "                 const char *device);\n"
11880 "\n"
11881 msgstr ""
11882
11883 #. type: textblock
11884 #: ../src/guestfs-actions.pod:4175
11885 msgid ""
11886 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
11887 "block size of the resulting filesystem.  Supported block sizes depend on the "
11888 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
11889 msgstr ""
11890
11891 #. type: textblock
11892 #: ../src/guestfs-actions.pod:4180 ../src/guestfs-actions.pod:4222 ../fish/guestfish-actions.pod:2811 ../fish/guestfish-actions.pod:2838
11893 msgid ""
11894 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
11895 "cluster size."
11896 msgstr ""
11897
11898 #. type: textblock
11899 #: ../src/guestfs-actions.pod:4185 ../fish/guestfish-actions.pod:2814
11900 msgid ""
11901 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
11902 "instead."
11903 msgstr ""
11904
11905 #. type: =head2
11906 #: ../src/guestfs-actions.pod:4194
11907 msgid "guestfs_mkfs_opts"
11908 msgstr ""
11909
11910 #. type: verbatim
11911 #: ../src/guestfs-actions.pod:4196
11912 #, no-wrap
11913 msgid ""
11914 " int\n"
11915 " guestfs_mkfs_opts (guestfs_h *g,\n"
11916 "                    const char *fstype,\n"
11917 "                    const char *device,\n"
11918 "                    ...);\n"
11919 "\n"
11920 msgstr ""
11921
11922 #. type: verbatim
11923 #: ../src/guestfs-actions.pod:4207
11924 #, no-wrap
11925 msgid ""
11926 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
11927 "\n"
11928 msgstr ""
11929
11930 #. type: textblock
11931 #: ../src/guestfs-actions.pod:4209 ../fish/guestfish-actions.pod:2825
11932 msgid ""
11933 "This function creates a filesystem on C<device>.  The filesystem type is "
11934 "C<fstype>, for example C<ext3>."
11935 msgstr ""
11936
11937 #. type: =item
11938 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2832
11939 msgid "C<blocksize>"
11940 msgstr ""
11941
11942 #. type: textblock
11943 #: ../src/guestfs-actions.pod:4218 ../fish/guestfish-actions.pod:2834
11944 msgid ""
11945 "The filesystem block size.  Supported block sizes depend on the filesystem "
11946 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
11947 "filesystems."
11948 msgstr ""
11949
11950 #. type: textblock
11951 #: ../src/guestfs-actions.pod:4225 ../fish/guestfish-actions.pod:2841
11952 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
11953 msgstr ""
11954
11955 #. type: textblock
11956 #: ../src/guestfs-actions.pod:4231
11957 msgid "(Added in 1.7.19)"
11958 msgstr ""
11959
11960 #. type: =head2
11961 #: ../src/guestfs-actions.pod:4233
11962 msgid "guestfs_mkfs_opts_va"
11963 msgstr ""
11964
11965 #. type: verbatim
11966 #: ../src/guestfs-actions.pod:4235
11967 #, no-wrap
11968 msgid ""
11969 " int\n"
11970 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
11971 "                       const char *fstype,\n"
11972 "                       const char *device,\n"
11973 "                       va_list args);\n"
11974 "\n"
11975 msgstr ""
11976
11977 #. type: textblock
11978 #: ../src/guestfs-actions.pod:4241
11979 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
11980 msgstr ""
11981
11982 #. type: =head2
11983 #: ../src/guestfs-actions.pod:4245
11984 msgid "guestfs_mkfs_opts_argv"
11985 msgstr ""
11986
11987 #. type: verbatim
11988 #: ../src/guestfs-actions.pod:4247
11989 #, no-wrap
11990 msgid ""
11991 " int\n"
11992 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
11993 "                         const char *fstype,\n"
11994 "                         const char *device,\n"
11995 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
11996 "\n"
11997 msgstr ""
11998
11999 #. type: textblock
12000 #: ../src/guestfs-actions.pod:4253
12001 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
12002 msgstr ""
12003
12004 #. type: =head2
12005 #: ../src/guestfs-actions.pod:4257
12006 msgid "guestfs_mkmountpoint"
12007 msgstr ""
12008
12009 #. type: verbatim
12010 #: ../src/guestfs-actions.pod:4259
12011 #, no-wrap
12012 msgid ""
12013 " int\n"
12014 " guestfs_mkmountpoint (guestfs_h *g,\n"
12015 "                       const char *exemptpath);\n"
12016 "\n"
12017 msgstr ""
12018
12019 #. type: textblock
12020 #: ../src/guestfs-actions.pod:4263
12021 msgid ""
12022 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
12023 "that can be used to create extra mountpoints before mounting the first "
12024 "filesystem."
12025 msgstr ""
12026
12027 #. type: textblock
12028 #: ../src/guestfs-actions.pod:4267 ../fish/guestfish-actions.pod:2855
12029 msgid ""
12030 "These calls are I<only> necessary in some very limited circumstances, mainly "
12031 "the case where you want to mount a mix of unrelated and/or read-only "
12032 "filesystems together."
12033 msgstr ""
12034
12035 #. type: textblock
12036 #: ../src/guestfs-actions.pod:4271 ../fish/guestfish-actions.pod:2859
12037 msgid ""
12038 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
12039 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
12040 "inside that.  You can unpack this as follows in guestfish:"
12041 msgstr ""
12042
12043 #. type: verbatim
12044 #: ../src/guestfs-actions.pod:4276 ../fish/guestfish-actions.pod:2864
12045 #, no-wrap
12046 msgid ""
12047 " add-ro Fedora-11-i686-Live.iso\n"
12048 " run\n"
12049 " mkmountpoint /cd\n"
12050 " mkmountpoint /sqsh\n"
12051 " mkmountpoint /ext3fs\n"
12052 " mount /dev/sda /cd\n"
12053 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
12054 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
12055 "\n"
12056 msgstr ""
12057
12058 #. type: textblock
12059 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2873
12060 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
12061 msgstr ""
12062
12063 #. type: textblock
12064 #: ../src/guestfs-actions.pod:4287
12065 msgid ""
12066 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
12067 "may get unexpected errors if you try to mix these calls.  It is safest to "
12068 "manually unmount filesystems and remove mountpoints after use."
12069 msgstr ""
12070
12071 #. type: textblock
12072 #: ../src/guestfs-actions.pod:4291
12073 msgid ""
12074 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
12075 "first, so for this to work for manual mountpoints, you must ensure that the "
12076 "innermost mountpoints have the longest pathnames, as in the example code "
12077 "above."
12078 msgstr ""
12079
12080 #. type: textblock
12081 #: ../src/guestfs-actions.pod:4296 ../fish/guestfish-actions.pod:2884
12082 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
12083 msgstr ""
12084
12085 #. type: textblock
12086 #: ../src/guestfs-actions.pod:4298
12087 msgid ""
12088 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
12089 "means that C<guestfs_umount_all> is called when the handle is closed which "
12090 "can also trigger these issues."
12091 msgstr ""
12092
12093 #. type: textblock
12094 #: ../src/guestfs-actions.pod:4304 ../src/guestfs-actions.pod:4563 ../src/guestfs-actions.pod:5456
12095 msgid "(Added in 1.0.62)"
12096 msgstr ""
12097
12098 #. type: =head2
12099 #: ../src/guestfs-actions.pod:4306
12100 msgid "guestfs_mknod"
12101 msgstr ""
12102
12103 #. type: verbatim
12104 #: ../src/guestfs-actions.pod:4308
12105 #, no-wrap
12106 msgid ""
12107 " int\n"
12108 " guestfs_mknod (guestfs_h *g,\n"
12109 "                int mode,\n"
12110 "                int devmajor,\n"
12111 "                int devminor,\n"
12112 "                const char *path);\n"
12113 "\n"
12114 msgstr ""
12115
12116 #. type: textblock
12117 #: ../src/guestfs-actions.pod:4315 ../fish/guestfish-actions.pod:2894
12118 msgid ""
12119 "This call creates block or character special devices, or named pipes "
12120 "(FIFOs)."
12121 msgstr ""
12122
12123 #. type: textblock
12124 #: ../src/guestfs-actions.pod:4318 ../fish/guestfish-actions.pod:2897
12125 msgid ""
12126 "The C<mode> parameter should be the mode, using the standard constants.  "
12127 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
12128 "used when creating block and character special devices."
12129 msgstr ""
12130
12131 #. type: textblock
12132 #: ../src/guestfs-actions.pod:4323
12133 msgid ""
12134 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
12135 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
12136 "regular file).  These constants are available in the standard Linux header "
12137 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
12138 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
12139 "the appropriate constant for you."
12140 msgstr ""
12141
12142 #. type: =head2
12143 #: ../src/guestfs-actions.pod:4337
12144 msgid "guestfs_mknod_b"
12145 msgstr ""
12146
12147 #. type: verbatim
12148 #: ../src/guestfs-actions.pod:4339
12149 #, no-wrap
12150 msgid ""
12151 " int\n"
12152 " guestfs_mknod_b (guestfs_h *g,\n"
12153 "                  int mode,\n"
12154 "                  int devmajor,\n"
12155 "                  int devminor,\n"
12156 "                  const char *path);\n"
12157 "\n"
12158 msgstr ""
12159
12160 #. type: textblock
12161 #: ../src/guestfs-actions.pod:4346
12162 msgid ""
12163 "This call creates a block device node called C<path> with mode C<mode> and "
12164 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12165 "wrapper around C<guestfs_mknod>."
12166 msgstr ""
12167
12168 #. type: =head2
12169 #: ../src/guestfs-actions.pod:4356
12170 msgid "guestfs_mknod_c"
12171 msgstr ""
12172
12173 #. type: verbatim
12174 #: ../src/guestfs-actions.pod:4358
12175 #, no-wrap
12176 msgid ""
12177 " int\n"
12178 " guestfs_mknod_c (guestfs_h *g,\n"
12179 "                  int mode,\n"
12180 "                  int devmajor,\n"
12181 "                  int devminor,\n"
12182 "                  const char *path);\n"
12183 "\n"
12184 msgstr ""
12185
12186 #. type: textblock
12187 #: ../src/guestfs-actions.pod:4365
12188 msgid ""
12189 "This call creates a char device node called C<path> with mode C<mode> and "
12190 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12191 "wrapper around C<guestfs_mknod>."
12192 msgstr ""
12193
12194 #. type: =head2
12195 #: ../src/guestfs-actions.pod:4375
12196 msgid "guestfs_mkswap"
12197 msgstr ""
12198
12199 #. type: verbatim
12200 #: ../src/guestfs-actions.pod:4377
12201 #, no-wrap
12202 msgid ""
12203 " int\n"
12204 " guestfs_mkswap (guestfs_h *g,\n"
12205 "                 const char *device);\n"
12206 "\n"
12207 msgstr ""
12208
12209 #. type: textblock
12210 #: ../src/guestfs-actions.pod:4381 ../fish/guestfish-actions.pod:2936
12211 msgid "Create a swap partition on C<device>."
12212 msgstr ""
12213
12214 #. type: =head2
12215 #: ../src/guestfs-actions.pod:4387
12216 msgid "guestfs_mkswap_L"
12217 msgstr ""
12218
12219 #. type: verbatim
12220 #: ../src/guestfs-actions.pod:4389
12221 #, no-wrap
12222 msgid ""
12223 " int\n"
12224 " guestfs_mkswap_L (guestfs_h *g,\n"
12225 "                   const char *label,\n"
12226 "                   const char *device);\n"
12227 "\n"
12228 msgstr ""
12229
12230 #. type: textblock
12231 #: ../src/guestfs-actions.pod:4394 ../fish/guestfish-actions.pod:2942
12232 msgid "Create a swap partition on C<device> with label C<label>."
12233 msgstr ""
12234
12235 #. type: textblock
12236 #: ../src/guestfs-actions.pod:4396 ../fish/guestfish-actions.pod:2944
12237 msgid ""
12238 "Note that you cannot attach a swap label to a block device "
12239 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
12240 "the kernel or swap tools."
12241 msgstr ""
12242
12243 #. type: =head2
12244 #: ../src/guestfs-actions.pod:4404
12245 msgid "guestfs_mkswap_U"
12246 msgstr ""
12247
12248 #. type: verbatim
12249 #: ../src/guestfs-actions.pod:4406
12250 #, no-wrap
12251 msgid ""
12252 " int\n"
12253 " guestfs_mkswap_U (guestfs_h *g,\n"
12254 "                   const char *uuid,\n"
12255 "                   const char *device);\n"
12256 "\n"
12257 msgstr ""
12258
12259 #. type: textblock
12260 #: ../src/guestfs-actions.pod:4411 ../fish/guestfish-actions.pod:2952
12261 msgid "Create a swap partition on C<device> with UUID C<uuid>."
12262 msgstr ""
12263
12264 #. type: =head2
12265 #: ../src/guestfs-actions.pod:4417
12266 msgid "guestfs_mkswap_file"
12267 msgstr ""
12268
12269 #. type: verbatim
12270 #: ../src/guestfs-actions.pod:4419
12271 #, no-wrap
12272 msgid ""
12273 " int\n"
12274 " guestfs_mkswap_file (guestfs_h *g,\n"
12275 "                      const char *path);\n"
12276 "\n"
12277 msgstr ""
12278
12279 #. type: textblock
12280 #: ../src/guestfs-actions.pod:4423 ../fish/guestfish-actions.pod:2958
12281 msgid "Create a swap file."
12282 msgstr ""
12283
12284 #. type: textblock
12285 #: ../src/guestfs-actions.pod:4425
12286 msgid ""
12287 "This command just writes a swap file signature to an existing file.  To "
12288 "create the file itself, use something like C<guestfs_fallocate>."
12289 msgstr ""
12290
12291 #. type: =head2
12292 #: ../src/guestfs-actions.pod:4432
12293 msgid "guestfs_modprobe"
12294 msgstr ""
12295
12296 #. type: verbatim
12297 #: ../src/guestfs-actions.pod:4434
12298 #, no-wrap
12299 msgid ""
12300 " int\n"
12301 " guestfs_modprobe (guestfs_h *g,\n"
12302 "                   const char *modulename);\n"
12303 "\n"
12304 msgstr ""
12305
12306 #. type: textblock
12307 #: ../src/guestfs-actions.pod:4438 ../fish/guestfish-actions.pod:2967
12308 msgid "This loads a kernel module in the appliance."
12309 msgstr ""
12310
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:4440 ../fish/guestfish-actions.pod:2969
12313 msgid ""
12314 "The kernel module must have been whitelisted when libguestfs was built (see "
12315 "C<appliance/kmod.whitelist.in> in the source)."
12316 msgstr ""
12317
12318 #. type: =head2
12319 #: ../src/guestfs-actions.pod:4447
12320 msgid "guestfs_mount"
12321 msgstr ""
12322
12323 #. type: verbatim
12324 #: ../src/guestfs-actions.pod:4449
12325 #, no-wrap
12326 msgid ""
12327 " int\n"
12328 " guestfs_mount (guestfs_h *g,\n"
12329 "                const char *device,\n"
12330 "                const char *mountpoint);\n"
12331 "\n"
12332 msgstr ""
12333
12334 #. type: textblock
12335 #: ../src/guestfs-actions.pod:4454 ../fish/guestfish-actions.pod:2976
12336 msgid ""
12337 "Mount a guest disk at a position in the filesystem.  Block devices are named "
12338 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
12339 "those block devices contain partitions, they will have the usual names "
12340 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
12341 msgstr ""
12342
12343 #. type: textblock
12344 #: ../src/guestfs-actions.pod:4460 ../fish/guestfish-actions.pod:2982
12345 msgid ""
12346 "The rules are the same as for L<mount(2)>: A filesystem must first be "
12347 "mounted on C</> before others can be mounted.  Other filesystems can only be "
12348 "mounted on directories which already exist."
12349 msgstr ""
12350
12351 #. type: textblock
12352 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:2987
12353 msgid ""
12354 "The mounted filesystem is writable, if we have sufficient permissions on the "
12355 "underlying device."
12356 msgstr ""
12357
12358 #. type: textblock
12359 #: ../src/guestfs-actions.pod:4468
12360 msgid ""
12361 "B<Important note:> When you use this call, the filesystem options C<sync> "
12362 "and C<noatime> are set implicitly.  This was originally done because we "
12363 "thought it would improve reliability, but it turns out that I<-o sync> has a "
12364 "very large negative performance impact and negligible effect on "
12365 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
12366 "in any code that needs performance, and instead use C<guestfs_mount_options> "
12367 "(use an empty string for the first parameter if you don't want any options)."
12368 msgstr ""
12369
12370 #. type: =head2
12371 #: ../src/guestfs-actions.pod:4482
12372 msgid "guestfs_mount_loop"
12373 msgstr ""
12374
12375 #. type: verbatim
12376 #: ../src/guestfs-actions.pod:4484
12377 #, no-wrap
12378 msgid ""
12379 " int\n"
12380 " guestfs_mount_loop (guestfs_h *g,\n"
12381 "                     const char *file,\n"
12382 "                     const char *mountpoint);\n"
12383 "\n"
12384 msgstr ""
12385
12386 #. type: textblock
12387 #: ../src/guestfs-actions.pod:4489 ../fish/guestfish-actions.pod:3004
12388 msgid ""
12389 "This command lets you mount C<file> (a filesystem image in a file) on a "
12390 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
12391 "mountpoint>."
12392 msgstr ""
12393
12394 #. type: =head2
12395 #: ../src/guestfs-actions.pod:4497
12396 msgid "guestfs_mount_options"
12397 msgstr ""
12398
12399 #. type: verbatim
12400 #: ../src/guestfs-actions.pod:4499
12401 #, no-wrap
12402 msgid ""
12403 " int\n"
12404 " guestfs_mount_options (guestfs_h *g,\n"
12405 "                        const char *options,\n"
12406 "                        const char *device,\n"
12407 "                        const char *mountpoint);\n"
12408 "\n"
12409 msgstr ""
12410
12411 #. type: textblock
12412 #: ../src/guestfs-actions.pod:4505
12413 msgid ""
12414 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12415 "the mount options as for the L<mount(8)> I<-o> flag."
12416 msgstr ""
12417
12418 #. type: textblock
12419 #: ../src/guestfs-actions.pod:4509 ../fish/guestfish-actions.pod:3016
12420 msgid ""
12421 "If the C<options> parameter is an empty string, then no options are passed "
12422 "(all options default to whatever the filesystem uses)."
12423 msgstr ""
12424
12425 #. type: textblock
12426 #: ../src/guestfs-actions.pod:4515 ../src/guestfs-actions.pod:4529 ../src/guestfs-actions.pod:4546
12427 msgid "(Added in 1.0.10)"
12428 msgstr ""
12429
12430 #. type: =head2
12431 #: ../src/guestfs-actions.pod:4517
12432 msgid "guestfs_mount_ro"
12433 msgstr ""
12434
12435 #. type: verbatim
12436 #: ../src/guestfs-actions.pod:4519
12437 #, no-wrap
12438 msgid ""
12439 " int\n"
12440 " guestfs_mount_ro (guestfs_h *g,\n"
12441 "                   const char *device,\n"
12442 "                   const char *mountpoint);\n"
12443 "\n"
12444 msgstr ""
12445
12446 #. type: textblock
12447 #: ../src/guestfs-actions.pod:4524
12448 msgid ""
12449 "This is the same as the C<guestfs_mount> command, but it mounts the "
12450 "filesystem with the read-only (I<-o ro>) flag."
12451 msgstr ""
12452
12453 #. type: =head2
12454 #: ../src/guestfs-actions.pod:4531
12455 msgid "guestfs_mount_vfs"
12456 msgstr ""
12457
12458 #. type: verbatim
12459 #: ../src/guestfs-actions.pod:4533
12460 #, no-wrap
12461 msgid ""
12462 " int\n"
12463 " guestfs_mount_vfs (guestfs_h *g,\n"
12464 "                    const char *options,\n"
12465 "                    const char *vfstype,\n"
12466 "                    const char *device,\n"
12467 "                    const char *mountpoint);\n"
12468 "\n"
12469 msgstr ""
12470
12471 #. type: textblock
12472 #: ../src/guestfs-actions.pod:4540
12473 msgid ""
12474 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12475 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
12476 "I<-t> flags."
12477 msgstr ""
12478
12479 #. type: =head2
12480 #: ../src/guestfs-actions.pod:4548
12481 msgid "guestfs_mountpoints"
12482 msgstr ""
12483
12484 #. type: verbatim
12485 #: ../src/guestfs-actions.pod:4550
12486 #, no-wrap
12487 msgid ""
12488 " char **\n"
12489 " guestfs_mountpoints (guestfs_h *g);\n"
12490 "\n"
12491 msgstr ""
12492
12493 #. type: textblock
12494 #: ../src/guestfs-actions.pod:4553
12495 msgid ""
12496 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
12497 "devices.  This one returns a hash table (map) of device name to directory "
12498 "where the device is mounted."
12499 msgstr ""
12500
12501 #. type: =head2
12502 #: ../src/guestfs-actions.pod:4565
12503 msgid "guestfs_mounts"
12504 msgstr ""
12505
12506 #. type: verbatim
12507 #: ../src/guestfs-actions.pod:4567
12508 #, no-wrap
12509 msgid ""
12510 " char **\n"
12511 " guestfs_mounts (guestfs_h *g);\n"
12512 "\n"
12513 msgstr ""
12514
12515 #. type: textblock
12516 #: ../src/guestfs-actions.pod:4570 ../fish/guestfish-actions.pod:3047
12517 msgid ""
12518 "This returns the list of currently mounted filesystems.  It returns the list "
12519 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
12520 msgstr ""
12521
12522 #. type: textblock
12523 #: ../src/guestfs-actions.pod:4573 ../fish/guestfish-actions.pod:3050
12524 msgid "Some internal mounts are not shown."
12525 msgstr ""
12526
12527 #. type: textblock
12528 #: ../src/guestfs-actions.pod:4575
12529 msgid "See also: C<guestfs_mountpoints>"
12530 msgstr ""
12531
12532 #. type: =head2
12533 #: ../src/guestfs-actions.pod:4583
12534 msgid "guestfs_mv"
12535 msgstr ""
12536
12537 #. type: verbatim
12538 #: ../src/guestfs-actions.pod:4585
12539 #, no-wrap
12540 msgid ""
12541 " int\n"
12542 " guestfs_mv (guestfs_h *g,\n"
12543 "             const char *src,\n"
12544 "             const char *dest);\n"
12545 "\n"
12546 msgstr ""
12547
12548 #. type: textblock
12549 #: ../src/guestfs-actions.pod:4590 ../fish/guestfish-actions.pod:3058
12550 msgid ""
12551 "This moves a file from C<src> to C<dest> where C<dest> is either a "
12552 "destination filename or destination directory."
12553 msgstr ""
12554
12555 #. type: =head2
12556 #: ../src/guestfs-actions.pod:4597
12557 msgid "guestfs_ntfs_3g_probe"
12558 msgstr ""
12559
12560 #. type: verbatim
12561 #: ../src/guestfs-actions.pod:4599
12562 #, no-wrap
12563 msgid ""
12564 " int\n"
12565 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
12566 "                        int rw,\n"
12567 "                        const char *device);\n"
12568 "\n"
12569 msgstr ""
12570
12571 #. type: textblock
12572 #: ../src/guestfs-actions.pod:4604 ../fish/guestfish-actions.pod:3065
12573 msgid ""
12574 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
12575 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
12576 "read-write, and some cannot be mounted at all)."
12577 msgstr ""
12578
12579 #. type: textblock
12580 #: ../src/guestfs-actions.pod:4608 ../fish/guestfish-actions.pod:3069
12581 msgid ""
12582 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
12583 "can be mounted read-write.  Set it to false if you want to test if the "
12584 "volume can be mounted read-only."
12585 msgstr ""
12586
12587 #. type: textblock
12588 #: ../src/guestfs-actions.pod:4612 ../fish/guestfish-actions.pod:3073
12589 msgid ""
12590 "The return value is an integer which C<0> if the operation would succeed, or "
12591 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
12592 msgstr ""
12593
12594 #. type: textblock
12595 #: ../src/guestfs-actions.pod:4618
12596 msgid "(Added in 1.0.43)"
12597 msgstr ""
12598
12599 #. type: =head2
12600 #: ../src/guestfs-actions.pod:4620
12601 msgid "guestfs_ntfsresize"
12602 msgstr ""
12603
12604 #. type: verbatim
12605 #: ../src/guestfs-actions.pod:4622
12606 #, no-wrap
12607 msgid ""
12608 " int\n"
12609 " guestfs_ntfsresize (guestfs_h *g,\n"
12610 "                     const char *device);\n"
12611 "\n"
12612 msgstr ""
12613
12614 #. type: textblock
12615 #: ../src/guestfs-actions.pod:4626 ../fish/guestfish-actions.pod:3081
12616 msgid ""
12617 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
12618 "size of the underlying device.  See also L<ntfsresize(8)>."
12619 msgstr ""
12620
12621 #. type: =head2
12622 #: ../src/guestfs-actions.pod:4634
12623 msgid "guestfs_ntfsresize_size"
12624 msgstr ""
12625
12626 #. type: verbatim
12627 #: ../src/guestfs-actions.pod:4636
12628 #, no-wrap
12629 msgid ""
12630 " int\n"
12631 " guestfs_ntfsresize_size (guestfs_h *g,\n"
12632 "                          const char *device,\n"
12633 "                          int64_t size);\n"
12634 "\n"
12635 msgstr ""
12636
12637 #. type: textblock
12638 #: ../src/guestfs-actions.pod:4641
12639 msgid ""
12640 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
12641 "to specify the new size (in bytes) explicitly."
12642 msgstr ""
12643
12644 #. type: textblock
12645 #: ../src/guestfs-actions.pod:4646 ../src/guestfs-actions.pod:5082 ../src/guestfs-actions.pod:5155 ../src/guestfs-actions.pod:5404 ../src/guestfs-actions.pod:6943
12646 msgid "(Added in 1.3.14)"
12647 msgstr ""
12648
12649 #. type: =head2
12650 #: ../src/guestfs-actions.pod:4648
12651 msgid "guestfs_part_add"
12652 msgstr ""
12653
12654 #. type: verbatim
12655 #: ../src/guestfs-actions.pod:4650
12656 #, no-wrap
12657 msgid ""
12658 " int\n"
12659 " guestfs_part_add (guestfs_h *g,\n"
12660 "                   const char *device,\n"
12661 "                   const char *prlogex,\n"
12662 "                   int64_t startsect,\n"
12663 "                   int64_t endsect);\n"
12664 "\n"
12665 msgstr ""
12666
12667 #. type: textblock
12668 #: ../src/guestfs-actions.pod:4657
12669 msgid ""
12670 "This command adds a partition to C<device>.  If there is no partition table "
12671 "on the device, call C<guestfs_part_init> first."
12672 msgstr ""
12673
12674 #. type: textblock
12675 #: ../src/guestfs-actions.pod:4660 ../fish/guestfish-actions.pod:3099
12676 msgid ""
12677 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
12678 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
12679 "C<logical>) and C<e> (or C<extended>) partition types."
12680 msgstr ""
12681
12682 #. type: textblock
12683 #: ../src/guestfs-actions.pod:4665 ../fish/guestfish-actions.pod:3104
12684 msgid ""
12685 "C<startsect> and C<endsect> are the start and end of the partition in "
12686 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
12687 "from the end of the disk (C<-1> is the last sector)."
12688 msgstr ""
12689
12690 #. type: textblock
12691 #: ../src/guestfs-actions.pod:4669
12692 msgid ""
12693 "Creating a partition which covers the whole disk is not so easy.  Use "
12694 "C<guestfs_part_disk> to do that."
12695 msgstr ""
12696
12697 #. type: textblock
12698 #: ../src/guestfs-actions.pod:4674 ../src/guestfs-actions.pod:4712 ../src/guestfs-actions.pod:4765 ../src/guestfs-actions.pod:4843 ../src/guestfs-actions.pod:4881 ../src/guestfs-actions.pod:4900 ../src/guestfs-actions.pod:4940
12699 msgid "(Added in 1.0.78)"
12700 msgstr ""
12701
12702 #. type: =head2
12703 #: ../src/guestfs-actions.pod:4676
12704 msgid "guestfs_part_del"
12705 msgstr ""
12706
12707 #. type: verbatim
12708 #: ../src/guestfs-actions.pod:4678
12709 #, no-wrap
12710 msgid ""
12711 " int\n"
12712 " guestfs_part_del (guestfs_h *g,\n"
12713 "                   const char *device,\n"
12714 "                   int partnum);\n"
12715 "\n"
12716 msgstr ""
12717
12718 #. type: textblock
12719 #: ../src/guestfs-actions.pod:4683 ../fish/guestfish-actions.pod:3115
12720 msgid "This command deletes the partition numbered C<partnum> on C<device>."
12721 msgstr ""
12722
12723 #. type: textblock
12724 #: ../src/guestfs-actions.pod:4685 ../fish/guestfish-actions.pod:3117
12725 msgid ""
12726 "Note that in the case of MBR partitioning, deleting an extended partition "
12727 "also deletes any logical partitions it contains."
12728 msgstr ""
12729
12730 #. type: =head2
12731 #: ../src/guestfs-actions.pod:4693
12732 msgid "guestfs_part_disk"
12733 msgstr ""
12734
12735 #. type: verbatim
12736 #: ../src/guestfs-actions.pod:4695
12737 #, no-wrap
12738 msgid ""
12739 " int\n"
12740 " guestfs_part_disk (guestfs_h *g,\n"
12741 "                    const char *device,\n"
12742 "                    const char *parttype);\n"
12743 "\n"
12744 msgstr ""
12745
12746 #. type: textblock
12747 #: ../src/guestfs-actions.pod:4700
12748 msgid ""
12749 "This command is simply a combination of C<guestfs_part_init> followed by "
12750 "C<guestfs_part_add> to create a single primary partition covering the whole "
12751 "disk."
12752 msgstr ""
12753
12754 #. type: textblock
12755 #: ../src/guestfs-actions.pod:4704
12756 msgid ""
12757 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
12758 "possible values are described in C<guestfs_part_init>."
12759 msgstr ""
12760
12761 #. type: =head2
12762 #: ../src/guestfs-actions.pod:4714
12763 msgid "guestfs_part_get_bootable"
12764 msgstr ""
12765
12766 #. type: verbatim
12767 #: ../src/guestfs-actions.pod:4716
12768 #, no-wrap
12769 msgid ""
12770 " int\n"
12771 " guestfs_part_get_bootable (guestfs_h *g,\n"
12772 "                            const char *device,\n"
12773 "                            int partnum);\n"
12774 "\n"
12775 msgstr ""
12776
12777 #. type: textblock
12778 #: ../src/guestfs-actions.pod:4721 ../fish/guestfish-actions.pod:3139
12779 msgid ""
12780 "This command returns true if the partition C<partnum> on C<device> has the "
12781 "bootable flag set."
12782 msgstr ""
12783
12784 #. type: textblock
12785 #: ../src/guestfs-actions.pod:4724
12786 msgid "See also C<guestfs_part_set_bootable>."
12787 msgstr ""
12788
12789 #. type: =head2
12790 #: ../src/guestfs-actions.pod:4730
12791 msgid "guestfs_part_get_mbr_id"
12792 msgstr ""
12793
12794 #. type: verbatim
12795 #: ../src/guestfs-actions.pod:4732
12796 #, no-wrap
12797 msgid ""
12798 " int\n"
12799 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
12800 "                          const char *device,\n"
12801 "                          int partnum);\n"
12802 "\n"
12803 msgstr ""
12804
12805 #. type: textblock
12806 #: ../src/guestfs-actions.pod:4737 ../fish/guestfish-actions.pod:3148
12807 msgid ""
12808 "Returns the MBR type byte (also known as the ID byte) from the numbered "
12809 "partition C<partnum>."
12810 msgstr ""
12811
12812 #. type: textblock
12813 #: ../src/guestfs-actions.pod:4740 ../src/guestfs-actions.pod:4916
12814 msgid ""
12815 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
12816 "undefined results for other partition table types (see "
12817 "C<guestfs_part_get_parttype>)."
12818 msgstr ""
12819
12820 #. type: =head2
12821 #: ../src/guestfs-actions.pod:4748
12822 msgid "guestfs_part_get_parttype"
12823 msgstr ""
12824
12825 #. type: verbatim
12826 #: ../src/guestfs-actions.pod:4750
12827 #, no-wrap
12828 msgid ""
12829 " char *\n"
12830 " guestfs_part_get_parttype (guestfs_h *g,\n"
12831 "                            const char *device);\n"
12832 "\n"
12833 msgstr ""
12834
12835 #. type: textblock
12836 #: ../src/guestfs-actions.pod:4754 ../fish/guestfish-actions.pod:3159
12837 msgid ""
12838 "This command examines the partition table on C<device> and returns the "
12839 "partition table type (format) being used."
12840 msgstr ""
12841
12842 #. type: textblock
12843 #: ../src/guestfs-actions.pod:4757
12844 msgid ""
12845 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
12846 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
12847 "possible, although unusual.  See C<guestfs_part_init> for a full list."
12848 msgstr ""
12849
12850 #. type: =head2
12851 #: ../src/guestfs-actions.pod:4767
12852 msgid "guestfs_part_init"
12853 msgstr ""
12854
12855 #. type: verbatim
12856 #: ../src/guestfs-actions.pod:4769
12857 #, no-wrap
12858 msgid ""
12859 " int\n"
12860 " guestfs_part_init (guestfs_h *g,\n"
12861 "                    const char *device,\n"
12862 "                    const char *parttype);\n"
12863 "\n"
12864 msgstr ""
12865
12866 #. type: textblock
12867 #: ../src/guestfs-actions.pod:4774 ../fish/guestfish-actions.pod:3171
12868 msgid ""
12869 "This creates an empty partition table on C<device> of one of the partition "
12870 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
12871 "(for large disks)."
12872 msgstr ""
12873
12874 #. type: textblock
12875 #: ../src/guestfs-actions.pod:4778
12876 msgid ""
12877 "Initially there are no partitions.  Following this, you should call "
12878 "C<guestfs_part_add> for each partition required."
12879 msgstr ""
12880
12881 #. type: textblock
12882 #: ../src/guestfs-actions.pod:4781 ../fish/guestfish-actions.pod:3178
12883 msgid "Possible values for C<parttype> are:"
12884 msgstr ""
12885
12886 #. type: =item
12887 #: ../src/guestfs-actions.pod:4785 ../fish/guestfish-actions.pod:3182
12888 msgid "B<efi> | B<gpt>"
12889 msgstr ""
12890
12891 #. type: textblock
12892 #: ../src/guestfs-actions.pod:4787 ../fish/guestfish-actions.pod:3184
12893 msgid "Intel EFI / GPT partition table."
12894 msgstr ""
12895
12896 #. type: textblock
12897 #: ../src/guestfs-actions.pod:4789 ../fish/guestfish-actions.pod:3186
12898 msgid ""
12899 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
12900 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
12901 "the C<mbr> format."
12902 msgstr ""
12903
12904 #. type: =item
12905 #: ../src/guestfs-actions.pod:4793 ../fish/guestfish-actions.pod:3190
12906 msgid "B<mbr> | B<msdos>"
12907 msgstr ""
12908
12909 #. type: textblock
12910 #: ../src/guestfs-actions.pod:4795 ../fish/guestfish-actions.pod:3192
12911 msgid ""
12912 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
12913 "Windows.  This partition type will B<only> work for device sizes up to 2 "
12914 "TB.  For large disks we recommend using C<gpt>."
12915 msgstr ""
12916
12917 #. type: textblock
12918 #: ../src/guestfs-actions.pod:4802 ../fish/guestfish-actions.pod:3199
12919 msgid "Other partition table types that may work but are not supported include:"
12920 msgstr ""
12921
12922 #. type: =item
12923 #: ../src/guestfs-actions.pod:4807 ../fish/guestfish-actions.pod:3204
12924 msgid "B<aix>"
12925 msgstr ""
12926
12927 #. type: textblock
12928 #: ../src/guestfs-actions.pod:4809 ../fish/guestfish-actions.pod:3206
12929 msgid "AIX disk labels."
12930 msgstr ""
12931
12932 #. type: =item
12933 #: ../src/guestfs-actions.pod:4811 ../fish/guestfish-actions.pod:3208
12934 msgid "B<amiga> | B<rdb>"
12935 msgstr ""
12936
12937 #. type: textblock
12938 #: ../src/guestfs-actions.pod:4813 ../fish/guestfish-actions.pod:3210
12939 msgid "Amiga \"Rigid Disk Block\" format."
12940 msgstr ""
12941
12942 #. type: =item
12943 #: ../src/guestfs-actions.pod:4815 ../fish/guestfish-actions.pod:3212
12944 msgid "B<bsd>"
12945 msgstr ""
12946
12947 #. type: textblock
12948 #: ../src/guestfs-actions.pod:4817 ../fish/guestfish-actions.pod:3214
12949 msgid "BSD disk labels."
12950 msgstr ""
12951
12952 #. type: =item
12953 #: ../src/guestfs-actions.pod:4819 ../fish/guestfish-actions.pod:3216
12954 msgid "B<dasd>"
12955 msgstr ""
12956
12957 #. type: textblock
12958 #: ../src/guestfs-actions.pod:4821 ../fish/guestfish-actions.pod:3218
12959 msgid "DASD, used on IBM mainframes."
12960 msgstr ""
12961
12962 #. type: =item
12963 #: ../src/guestfs-actions.pod:4823 ../fish/guestfish-actions.pod:3220
12964 msgid "B<dvh>"
12965 msgstr ""
12966
12967 #. type: textblock
12968 #: ../src/guestfs-actions.pod:4825 ../fish/guestfish-actions.pod:3222
12969 msgid "MIPS/SGI volumes."
12970 msgstr ""
12971
12972 #. type: =item
12973 #: ../src/guestfs-actions.pod:4827 ../fish/guestfish-actions.pod:3224
12974 msgid "B<mac>"
12975 msgstr ""
12976
12977 #. type: textblock
12978 #: ../src/guestfs-actions.pod:4829 ../fish/guestfish-actions.pod:3226
12979 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
12980 msgstr ""
12981
12982 #. type: =item
12983 #: ../src/guestfs-actions.pod:4831 ../fish/guestfish-actions.pod:3228
12984 msgid "B<pc98>"
12985 msgstr ""
12986
12987 #. type: textblock
12988 #: ../src/guestfs-actions.pod:4833 ../fish/guestfish-actions.pod:3230
12989 msgid "NEC PC-98 format, common in Japan apparently."
12990 msgstr ""
12991
12992 #. type: =item
12993 #: ../src/guestfs-actions.pod:4835 ../fish/guestfish-actions.pod:3232
12994 msgid "B<sun>"
12995 msgstr ""
12996
12997 #. type: textblock
12998 #: ../src/guestfs-actions.pod:4837 ../fish/guestfish-actions.pod:3234
12999 msgid "Sun disk labels."
13000 msgstr ""
13001
13002 #. type: =head2
13003 #: ../src/guestfs-actions.pod:4845
13004 msgid "guestfs_part_list"
13005 msgstr ""
13006
13007 #. type: verbatim
13008 #: ../src/guestfs-actions.pod:4847
13009 #, no-wrap
13010 msgid ""
13011 " struct guestfs_partition_list *\n"
13012 " guestfs_part_list (guestfs_h *g,\n"
13013 "                    const char *device);\n"
13014 "\n"
13015 msgstr ""
13016
13017 #. type: textblock
13018 #: ../src/guestfs-actions.pod:4851 ../fish/guestfish-actions.pod:3242
13019 msgid ""
13020 "This command parses the partition table on C<device> and returns the list of "
13021 "partitions found."
13022 msgstr ""
13023
13024 #. type: textblock
13025 #: ../src/guestfs-actions.pod:4854 ../fish/guestfish-actions.pod:3245
13026 msgid "The fields in the returned structure are:"
13027 msgstr ""
13028
13029 #. type: =item
13030 #: ../src/guestfs-actions.pod:4858 ../fish/guestfish-actions.pod:3249
13031 msgid "B<part_num>"
13032 msgstr ""
13033
13034 #. type: textblock
13035 #: ../src/guestfs-actions.pod:4860 ../fish/guestfish-actions.pod:3251
13036 msgid "Partition number, counting from 1."
13037 msgstr ""
13038
13039 #. type: =item
13040 #: ../src/guestfs-actions.pod:4862 ../fish/guestfish-actions.pod:3253
13041 msgid "B<part_start>"
13042 msgstr ""
13043
13044 #. type: textblock
13045 #: ../src/guestfs-actions.pod:4864
13046 msgid ""
13047 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
13048 "the device's sector size, see C<guestfs_blockdev_getss>."
13049 msgstr ""
13050
13051 #. type: =item
13052 #: ../src/guestfs-actions.pod:4867 ../fish/guestfish-actions.pod:3258
13053 msgid "B<part_end>"
13054 msgstr ""
13055
13056 #. type: textblock
13057 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3260
13058 msgid "End of the partition in bytes."
13059 msgstr ""
13060
13061 #. type: =item
13062 #: ../src/guestfs-actions.pod:4871 ../fish/guestfish-actions.pod:3262
13063 msgid "B<part_size>"
13064 msgstr ""
13065
13066 #. type: textblock
13067 #: ../src/guestfs-actions.pod:4873 ../fish/guestfish-actions.pod:3264
13068 msgid "Size of the partition in bytes."
13069 msgstr ""
13070
13071 #. type: textblock
13072 #: ../src/guestfs-actions.pod:4877
13073 msgid ""
13074 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
13075 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
13076 "use>."
13077 msgstr ""
13078
13079 #. type: =head2
13080 #: ../src/guestfs-actions.pod:4883
13081 msgid "guestfs_part_set_bootable"
13082 msgstr ""
13083
13084 #. type: verbatim
13085 #: ../src/guestfs-actions.pod:4885
13086 #, no-wrap
13087 msgid ""
13088 " int\n"
13089 " guestfs_part_set_bootable (guestfs_h *g,\n"
13090 "                            const char *device,\n"
13091 "                            int partnum,\n"
13092 "                            int bootable);\n"
13093 "\n"
13094 msgstr ""
13095
13096 #. type: textblock
13097 #: ../src/guestfs-actions.pod:4891 ../fish/guestfish-actions.pod:3272
13098 msgid ""
13099 "This sets the bootable flag on partition numbered C<partnum> on device "
13100 "C<device>.  Note that partitions are numbered from 1."
13101 msgstr ""
13102
13103 #. type: textblock
13104 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3275
13105 msgid ""
13106 "The bootable flag is used by some operating systems (notably Windows) to "
13107 "determine which partition to boot from.  It is by no means universally "
13108 "recognized."
13109 msgstr ""
13110
13111 #. type: =head2
13112 #: ../src/guestfs-actions.pod:4902
13113 msgid "guestfs_part_set_mbr_id"
13114 msgstr ""
13115
13116 #. type: verbatim
13117 #: ../src/guestfs-actions.pod:4904
13118 #, no-wrap
13119 msgid ""
13120 " int\n"
13121 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
13122 "                          const char *device,\n"
13123 "                          int partnum,\n"
13124 "                          int idbyte);\n"
13125 "\n"
13126 msgstr ""
13127
13128 #. type: textblock
13129 #: ../src/guestfs-actions.pod:4910 ../fish/guestfish-actions.pod:3283
13130 msgid ""
13131 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
13132 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
13133 "documentation are in fact hexadecimal numbers, but usually documented "
13134 "without any leading \"0x\" which might be confusing."
13135 msgstr ""
13136
13137 #. type: =head2
13138 #: ../src/guestfs-actions.pod:4924
13139 msgid "guestfs_part_set_name"
13140 msgstr ""
13141
13142 #. type: verbatim
13143 #: ../src/guestfs-actions.pod:4926
13144 #, no-wrap
13145 msgid ""
13146 " int\n"
13147 " guestfs_part_set_name (guestfs_h *g,\n"
13148 "                        const char *device,\n"
13149 "                        int partnum,\n"
13150 "                        const char *name);\n"
13151 "\n"
13152 msgstr ""
13153
13154 #. type: textblock
13155 #: ../src/guestfs-actions.pod:4932 ../fish/guestfish-actions.pod:3297
13156 msgid ""
13157 "This sets the partition name on partition numbered C<partnum> on device "
13158 "C<device>.  Note that partitions are numbered from 1."
13159 msgstr ""
13160
13161 #. type: textblock
13162 #: ../src/guestfs-actions.pod:4935 ../fish/guestfish-actions.pod:3300
13163 msgid ""
13164 "The partition name can only be set on certain types of partition table.  "
13165 "This works on C<gpt> but not on C<mbr> partitions."
13166 msgstr ""
13167
13168 #. type: =head2
13169 #: ../src/guestfs-actions.pod:4942
13170 msgid "guestfs_part_to_dev"
13171 msgstr ""
13172
13173 #. type: verbatim
13174 #: ../src/guestfs-actions.pod:4944
13175 #, no-wrap
13176 msgid ""
13177 " char *\n"
13178 " guestfs_part_to_dev (guestfs_h *g,\n"
13179 "                      const char *partition);\n"
13180 "\n"
13181 msgstr ""
13182
13183 #. type: textblock
13184 #: ../src/guestfs-actions.pod:4948 ../fish/guestfish-actions.pod:3307
13185 msgid ""
13186 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
13187 "partition number, returning the device name (eg. \"/dev/sdb\")."
13188 msgstr ""
13189
13190 #. type: textblock
13191 #: ../src/guestfs-actions.pod:4952
13192 msgid ""
13193 "The named partition must exist, for example as a string returned from "
13194 "C<guestfs_list_partitions>."
13195 msgstr ""
13196
13197 #. type: =head2
13198 #: ../src/guestfs-actions.pod:4960
13199 msgid "guestfs_ping_daemon"
13200 msgstr ""
13201
13202 #. type: verbatim
13203 #: ../src/guestfs-actions.pod:4962
13204 #, no-wrap
13205 msgid ""
13206 " int\n"
13207 " guestfs_ping_daemon (guestfs_h *g);\n"
13208 "\n"
13209 msgstr ""
13210
13211 #. type: textblock
13212 #: ../src/guestfs-actions.pod:4965 ../fish/guestfish-actions.pod:3318
13213 msgid ""
13214 "This is a test probe into the guestfs daemon running inside the qemu "
13215 "subprocess.  Calling this function checks that the daemon responds to the "
13216 "ping message, without affecting the daemon or attached block device(s) in "
13217 "any other way."
13218 msgstr ""
13219
13220 #. type: =head2
13221 #: ../src/guestfs-actions.pod:4974
13222 msgid "guestfs_pread"
13223 msgstr ""
13224
13225 #. type: verbatim
13226 #: ../src/guestfs-actions.pod:4976
13227 #, no-wrap
13228 msgid ""
13229 " char *\n"
13230 " guestfs_pread (guestfs_h *g,\n"
13231 "                const char *path,\n"
13232 "                int count,\n"
13233 "                int64_t offset,\n"
13234 "                size_t *size_r);\n"
13235 "\n"
13236 msgstr ""
13237
13238 #. type: textblock
13239 #: ../src/guestfs-actions.pod:4983 ../fish/guestfish-actions.pod:3327
13240 msgid ""
13241 "This command lets you read part of a file.  It reads C<count> bytes of the "
13242 "file, starting at C<offset>, from file C<path>."
13243 msgstr ""
13244
13245 #. type: textblock
13246 #: ../src/guestfs-actions.pod:4986 ../src/guestfs-actions.pod:5012 ../fish/guestfish-actions.pod:3330 ../fish/guestfish-actions.pod:3345
13247 msgid ""
13248 "This may read fewer bytes than requested.  For further details see the "
13249 "L<pread(2)> system call."
13250 msgstr ""
13251
13252 #. type: textblock
13253 #: ../src/guestfs-actions.pod:4989
13254 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
13255 msgstr ""
13256
13257 #. type: =head2
13258 #: ../src/guestfs-actions.pod:5000
13259 msgid "guestfs_pread_device"
13260 msgstr ""
13261
13262 #. type: verbatim
13263 #: ../src/guestfs-actions.pod:5002
13264 #, no-wrap
13265 msgid ""
13266 " char *\n"
13267 " guestfs_pread_device (guestfs_h *g,\n"
13268 "                       const char *device,\n"
13269 "                       int count,\n"
13270 "                       int64_t offset,\n"
13271 "                       size_t *size_r);\n"
13272 "\n"
13273 msgstr ""
13274
13275 #. type: textblock
13276 #: ../src/guestfs-actions.pod:5009 ../fish/guestfish-actions.pod:3342
13277 msgid ""
13278 "This command lets you read part of a file.  It reads C<count> bytes of "
13279 "C<device>, starting at C<offset>."
13280 msgstr ""
13281
13282 #. type: textblock
13283 #: ../src/guestfs-actions.pod:5015
13284 msgid "See also C<guestfs_pread>."
13285 msgstr ""
13286
13287 #. type: textblock
13288 #: ../src/guestfs-actions.pod:5024
13289 msgid "(Added in 1.5.21)"
13290 msgstr ""
13291
13292 #. type: =head2
13293 #: ../src/guestfs-actions.pod:5026
13294 msgid "guestfs_pvcreate"
13295 msgstr ""
13296
13297 #. type: verbatim
13298 #: ../src/guestfs-actions.pod:5028
13299 #, no-wrap
13300 msgid ""
13301 " int\n"
13302 " guestfs_pvcreate (guestfs_h *g,\n"
13303 "                   const char *device);\n"
13304 "\n"
13305 msgstr ""
13306
13307 #. type: textblock
13308 #: ../src/guestfs-actions.pod:5032 ../fish/guestfish-actions.pod:3357
13309 msgid ""
13310 "This creates an LVM physical volume on the named C<device>, where C<device> "
13311 "should usually be a partition name such as C</dev/sda1>."
13312 msgstr ""
13313
13314 #. type: =head2
13315 #: ../src/guestfs-actions.pod:5040
13316 msgid "guestfs_pvremove"
13317 msgstr ""
13318
13319 #. type: verbatim
13320 #: ../src/guestfs-actions.pod:5042
13321 #, no-wrap
13322 msgid ""
13323 " int\n"
13324 " guestfs_pvremove (guestfs_h *g,\n"
13325 "                   const char *device);\n"
13326 "\n"
13327 msgstr ""
13328
13329 #. type: textblock
13330 #: ../src/guestfs-actions.pod:5046 ../fish/guestfish-actions.pod:3365
13331 msgid ""
13332 "This wipes a physical volume C<device> so that LVM will no longer recognise "
13333 "it."
13334 msgstr ""
13335
13336 #. type: textblock
13337 #: ../src/guestfs-actions.pod:5049 ../fish/guestfish-actions.pod:3368
13338 msgid ""
13339 "The implementation uses the C<pvremove> command which refuses to wipe "
13340 "physical volumes that contain any volume groups, so you have to remove those "
13341 "first."
13342 msgstr ""
13343
13344 #. type: =head2
13345 #: ../src/guestfs-actions.pod:5057
13346 msgid "guestfs_pvresize"
13347 msgstr ""
13348
13349 #. type: verbatim
13350 #: ../src/guestfs-actions.pod:5059
13351 #, no-wrap
13352 msgid ""
13353 " int\n"
13354 " guestfs_pvresize (guestfs_h *g,\n"
13355 "                   const char *device);\n"
13356 "\n"
13357 msgstr ""
13358
13359 #. type: textblock
13360 #: ../src/guestfs-actions.pod:5063 ../fish/guestfish-actions.pod:3376
13361 msgid ""
13362 "This resizes (expands or shrinks) an existing LVM physical volume to match "
13363 "the new size of the underlying device."
13364 msgstr ""
13365
13366 #. type: =head2
13367 #: ../src/guestfs-actions.pod:5070
13368 msgid "guestfs_pvresize_size"
13369 msgstr ""
13370
13371 #. type: verbatim
13372 #: ../src/guestfs-actions.pod:5072
13373 #, no-wrap
13374 msgid ""
13375 " int\n"
13376 " guestfs_pvresize_size (guestfs_h *g,\n"
13377 "                        const char *device,\n"
13378 "                        int64_t size);\n"
13379 "\n"
13380 msgstr ""
13381
13382 #. type: textblock
13383 #: ../src/guestfs-actions.pod:5077
13384 msgid ""
13385 "This command is the same as C<guestfs_pvresize> except that it allows you to "
13386 "specify the new size (in bytes) explicitly."
13387 msgstr ""
13388
13389 #. type: =head2
13390 #: ../src/guestfs-actions.pod:5084
13391 msgid "guestfs_pvs"
13392 msgstr ""
13393
13394 #. type: verbatim
13395 #: ../src/guestfs-actions.pod:5086
13396 #, no-wrap
13397 msgid ""
13398 " char **\n"
13399 " guestfs_pvs (guestfs_h *g);\n"
13400 "\n"
13401 msgstr ""
13402
13403 #. type: textblock
13404 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3390
13405 msgid ""
13406 "List all the physical volumes detected.  This is the equivalent of the "
13407 "L<pvs(8)> command."
13408 msgstr ""
13409
13410 #. type: textblock
13411 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3393
13412 msgid ""
13413 "This returns a list of just the device names that contain PVs "
13414 "(eg. C</dev/sda2>)."
13415 msgstr ""
13416
13417 #. type: textblock
13418 #: ../src/guestfs-actions.pod:5095
13419 msgid "See also C<guestfs_pvs_full>."
13420 msgstr ""
13421
13422 #. type: =head2
13423 #: ../src/guestfs-actions.pod:5103
13424 msgid "guestfs_pvs_full"
13425 msgstr ""
13426
13427 #. type: verbatim
13428 #: ../src/guestfs-actions.pod:5105
13429 #, no-wrap
13430 msgid ""
13431 " struct guestfs_lvm_pv_list *\n"
13432 " guestfs_pvs_full (guestfs_h *g);\n"
13433 "\n"
13434 msgstr ""
13435
13436 #. type: textblock
13437 #: ../src/guestfs-actions.pod:5108 ../fish/guestfish-actions.pod:3402
13438 msgid ""
13439 "List all the physical volumes detected.  This is the equivalent of the "
13440 "L<pvs(8)> command.  The \"full\" version includes all fields."
13441 msgstr ""
13442
13443 #. type: textblock
13444 #: ../src/guestfs-actions.pod:5111
13445 msgid ""
13446 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
13447 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
13448 "use>."
13449 msgstr ""
13450
13451 #. type: =head2
13452 #: ../src/guestfs-actions.pod:5117
13453 msgid "guestfs_pvuuid"
13454 msgstr ""
13455
13456 #. type: verbatim
13457 #: ../src/guestfs-actions.pod:5119
13458 #, no-wrap
13459 msgid ""
13460 " char *\n"
13461 " guestfs_pvuuid (guestfs_h *g,\n"
13462 "                 const char *device);\n"
13463 "\n"
13464 msgstr ""
13465
13466 #. type: textblock
13467 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3409
13468 msgid "This command returns the UUID of the LVM PV C<device>."
13469 msgstr ""
13470
13471 #. type: =head2
13472 #: ../src/guestfs-actions.pod:5130
13473 msgid "guestfs_pwrite"
13474 msgstr ""
13475
13476 #. type: verbatim
13477 #: ../src/guestfs-actions.pod:5132
13478 #, no-wrap
13479 msgid ""
13480 " int\n"
13481 " guestfs_pwrite (guestfs_h *g,\n"
13482 "                 const char *path,\n"
13483 "                 const char *content,\n"
13484 "                 size_t content_size,\n"
13485 "                 int64_t offset);\n"
13486 "\n"
13487 msgstr ""
13488
13489 #. type: textblock
13490 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3415
13491 msgid ""
13492 "This command writes to part of a file.  It writes the data buffer C<content> "
13493 "to the file C<path> starting at offset C<offset>."
13494 msgstr ""
13495
13496 #. type: textblock
13497 #: ../src/guestfs-actions.pod:5142 ../fish/guestfish-actions.pod:3418
13498 msgid ""
13499 "This command implements the L<pwrite(2)> system call, and like that system "
13500 "call it may not write the full data requested.  The return value is the "
13501 "number of bytes that were actually written to the file.  This could even be "
13502 "0, although short writes are unlikely for regular files in ordinary "
13503 "circumstances."
13504 msgstr ""
13505
13506 #. type: textblock
13507 #: ../src/guestfs-actions.pod:5148
13508 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
13509 msgstr ""
13510
13511 #. type: =head2
13512 #: ../src/guestfs-actions.pod:5157
13513 msgid "guestfs_pwrite_device"
13514 msgstr ""
13515
13516 #. type: verbatim
13517 #: ../src/guestfs-actions.pod:5159
13518 #, no-wrap
13519 msgid ""
13520 " int\n"
13521 " guestfs_pwrite_device (guestfs_h *g,\n"
13522 "                        const char *device,\n"
13523 "                        const char *content,\n"
13524 "                        size_t content_size,\n"
13525 "                        int64_t offset);\n"
13526 "\n"
13527 msgstr ""
13528
13529 #. type: textblock
13530 #: ../src/guestfs-actions.pod:5166 ../fish/guestfish-actions.pod:3433
13531 msgid ""
13532 "This command writes to part of a device.  It writes the data buffer "
13533 "C<content> to C<device> starting at offset C<offset>."
13534 msgstr ""
13535
13536 #. type: textblock
13537 #: ../src/guestfs-actions.pod:5169 ../fish/guestfish-actions.pod:3436
13538 msgid ""
13539 "This command implements the L<pwrite(2)> system call, and like that system "
13540 "call it may not write the full data requested (although short writes to disk "
13541 "devices and partitions are probably impossible with standard Linux kernels)."
13542 msgstr ""
13543
13544 #. type: textblock
13545 #: ../src/guestfs-actions.pod:5174
13546 msgid "See also C<guestfs_pwrite>."
13547 msgstr ""
13548
13549 #. type: textblock
13550 #: ../src/guestfs-actions.pod:5181
13551 msgid "(Added in 1.5.20)"
13552 msgstr ""
13553
13554 #. type: =head2
13555 #: ../src/guestfs-actions.pod:5183
13556 msgid "guestfs_read_file"
13557 msgstr ""
13558
13559 #. type: verbatim
13560 #: ../src/guestfs-actions.pod:5185
13561 #, no-wrap
13562 msgid ""
13563 " char *\n"
13564 " guestfs_read_file (guestfs_h *g,\n"
13565 "                    const char *path,\n"
13566 "                    size_t *size_r);\n"
13567 "\n"
13568 msgstr ""
13569
13570 #. type: textblock
13571 #: ../src/guestfs-actions.pod:5190 ../fish/guestfish-actions.pod:3450
13572 msgid "This calls returns the contents of the file C<path> as a buffer."
13573 msgstr ""
13574
13575 #. type: textblock
13576 #: ../src/guestfs-actions.pod:5193
13577 msgid ""
13578 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
13579 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
13580 "function is limited in the total size of file that can be handled."
13581 msgstr ""
13582
13583 #. type: textblock
13584 #: ../src/guestfs-actions.pod:5205
13585 msgid "(Added in 1.0.63)"
13586 msgstr ""
13587
13588 #. type: =head2
13589 #: ../src/guestfs-actions.pod:5207
13590 msgid "guestfs_read_lines"
13591 msgstr ""
13592
13593 #. type: verbatim
13594 #: ../src/guestfs-actions.pod:5209
13595 #, no-wrap
13596 msgid ""
13597 " char **\n"
13598 " guestfs_read_lines (guestfs_h *g,\n"
13599 "                     const char *path);\n"
13600 "\n"
13601 msgstr ""
13602
13603 #. type: textblock
13604 #: ../src/guestfs-actions.pod:5215 ../fish/guestfish-actions.pod:3467
13605 msgid ""
13606 "The file contents are returned as a list of lines.  Trailing C<LF> and "
13607 "C<CRLF> character sequences are I<not> returned."
13608 msgstr ""
13609
13610 #. type: textblock
13611 #: ../src/guestfs-actions.pod:5218
13612 msgid ""
13613 "Note that this function cannot correctly handle binary files (specifically, "
13614 "files containing C<\\0> character which is treated as end of line).  For "
13615 "those you need to use the C<guestfs_read_file> function which has a more "
13616 "complex interface."
13617 msgstr ""
13618
13619 #. type: =head2
13620 #: ../src/guestfs-actions.pod:5229
13621 msgid "guestfs_readdir"
13622 msgstr ""
13623
13624 #. type: verbatim
13625 #: ../src/guestfs-actions.pod:5231
13626 #, no-wrap
13627 msgid ""
13628 " struct guestfs_dirent_list *\n"
13629 " guestfs_readdir (guestfs_h *g,\n"
13630 "                  const char *dir);\n"
13631 "\n"
13632 msgstr ""
13633
13634 #. type: textblock
13635 #: ../src/guestfs-actions.pod:5235 ../fish/guestfish-actions.pod:3479
13636 msgid "This returns the list of directory entries in directory C<dir>."
13637 msgstr ""
13638
13639 #. type: textblock
13640 #: ../src/guestfs-actions.pod:5237 ../fish/guestfish-actions.pod:3481
13641 msgid ""
13642 "All entries in the directory are returned, including C<.> and C<..>.  The "
13643 "entries are I<not> sorted, but returned in the same order as the underlying "
13644 "filesystem."
13645 msgstr ""
13646
13647 #. type: textblock
13648 #: ../src/guestfs-actions.pod:5241 ../fish/guestfish-actions.pod:3485
13649 msgid ""
13650 "Also this call returns basic file type information about each file.  The "
13651 "C<ftyp> field will contain one of the following characters:"
13652 msgstr ""
13653
13654 #. type: =item
13655 #: ../src/guestfs-actions.pod:5246 ../fish/guestfish-actions.pod:3490
13656 msgid "'b'"
13657 msgstr ""
13658
13659 #. type: textblock
13660 #: ../src/guestfs-actions.pod:5248 ../fish/guestfish-actions.pod:3492
13661 msgid "Block special"
13662 msgstr ""
13663
13664 #. type: =item
13665 #: ../src/guestfs-actions.pod:5250 ../fish/guestfish-actions.pod:3494
13666 msgid "'c'"
13667 msgstr ""
13668
13669 #. type: textblock
13670 #: ../src/guestfs-actions.pod:5252 ../fish/guestfish-actions.pod:3496
13671 msgid "Char special"
13672 msgstr ""
13673
13674 #. type: =item
13675 #: ../src/guestfs-actions.pod:5254 ../fish/guestfish-actions.pod:3498
13676 msgid "'d'"
13677 msgstr ""
13678
13679 #. type: textblock
13680 #: ../src/guestfs-actions.pod:5256 ../fish/guestfish-actions.pod:3500
13681 msgid "Directory"
13682 msgstr ""
13683
13684 #. type: =item
13685 #: ../src/guestfs-actions.pod:5258 ../fish/guestfish-actions.pod:3502
13686 msgid "'f'"
13687 msgstr ""
13688
13689 #. type: textblock
13690 #: ../src/guestfs-actions.pod:5260 ../fish/guestfish-actions.pod:3504
13691 msgid "FIFO (named pipe)"
13692 msgstr ""
13693
13694 #. type: =item
13695 #: ../src/guestfs-actions.pod:5262 ../fish/guestfish-actions.pod:3506
13696 msgid "'l'"
13697 msgstr ""
13698
13699 #. type: textblock
13700 #: ../src/guestfs-actions.pod:5264 ../fish/guestfish-actions.pod:3508
13701 msgid "Symbolic link"
13702 msgstr ""
13703
13704 #. type: =item
13705 #: ../src/guestfs-actions.pod:5266 ../fish/guestfish-actions.pod:3510
13706 msgid "'r'"
13707 msgstr ""
13708
13709 #. type: textblock
13710 #: ../src/guestfs-actions.pod:5268 ../fish/guestfish-actions.pod:3512
13711 msgid "Regular file"
13712 msgstr ""
13713
13714 #. type: =item
13715 #: ../src/guestfs-actions.pod:5270 ../fish/guestfish-actions.pod:3514
13716 msgid "'s'"
13717 msgstr ""
13718
13719 #. type: textblock
13720 #: ../src/guestfs-actions.pod:5272 ../fish/guestfish-actions.pod:3516
13721 msgid "Socket"
13722 msgstr ""
13723
13724 #. type: =item
13725 #: ../src/guestfs-actions.pod:5274 ../fish/guestfish-actions.pod:3518
13726 msgid "'u'"
13727 msgstr ""
13728
13729 #. type: textblock
13730 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3520
13731 msgid "Unknown file type"
13732 msgstr ""
13733
13734 #. type: =item
13735 #: ../src/guestfs-actions.pod:5278 ../fish/guestfish-actions.pod:3522
13736 msgid "'?'"
13737 msgstr ""
13738
13739 #. type: textblock
13740 #: ../src/guestfs-actions.pod:5280 ../fish/guestfish-actions.pod:3524
13741 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
13742 msgstr ""
13743
13744 #. type: textblock
13745 #: ../src/guestfs-actions.pod:5285
13746 msgid ""
13747 "This function is primarily intended for use by programs.  To get a simple "
13748 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
13749 "consumption, use C<guestfs_ll>."
13750 msgstr ""
13751
13752 #. type: textblock
13753 #: ../src/guestfs-actions.pod:5289
13754 msgid ""
13755 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
13756 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
13757 "use>."
13758 msgstr ""
13759
13760 #. type: =head2
13761 #: ../src/guestfs-actions.pod:5295
13762 msgid "guestfs_readlink"
13763 msgstr ""
13764
13765 #. type: verbatim
13766 #: ../src/guestfs-actions.pod:5297
13767 #, no-wrap
13768 msgid ""
13769 " char *\n"
13770 " guestfs_readlink (guestfs_h *g,\n"
13771 "                   const char *path);\n"
13772 "\n"
13773 msgstr ""
13774
13775 #. type: textblock
13776 #: ../src/guestfs-actions.pod:5301 ../fish/guestfish-actions.pod:3537
13777 msgid "This command reads the target of a symbolic link."
13778 msgstr ""
13779
13780 #. type: =head2
13781 #: ../src/guestfs-actions.pod:5308
13782 msgid "guestfs_readlinklist"
13783 msgstr ""
13784
13785 #. type: verbatim
13786 #: ../src/guestfs-actions.pod:5310
13787 #, no-wrap
13788 msgid ""
13789 " char **\n"
13790 " guestfs_readlinklist (guestfs_h *g,\n"
13791 "                       const char *path,\n"
13792 "                       char *const *names);\n"
13793 "\n"
13794 msgstr ""
13795
13796 #. type: textblock
13797 #: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3543
13798 msgid ""
13799 "This call allows you to do a C<readlink> operation on multiple files, where "
13800 "all files are in the directory C<path>.  C<names> is the list of files from "
13801 "this directory."
13802 msgstr ""
13803
13804 #. type: textblock
13805 #: ../src/guestfs-actions.pod:5319 ../fish/guestfish-actions.pod:3547
13806 msgid ""
13807 "On return you get a list of strings, with a one-to-one correspondence to the "
13808 "C<names> list.  Each string is the value of the symbolic link."
13809 msgstr ""
13810
13811 #. type: textblock
13812 #: ../src/guestfs-actions.pod:5323 ../fish/guestfish-actions.pod:3551
13813 msgid ""
13814 "If the C<readlink(2)> operation fails on any name, then the corresponding "
13815 "result string is the empty string C<\"\">.  However the whole operation is "
13816 "completed even if there were C<readlink(2)> errors, and so you can call this "
13817 "function with names where you don't know if they are symbolic links already "
13818 "(albeit slightly less efficient)."
13819 msgstr ""
13820
13821 #. type: textblock
13822 #: ../src/guestfs-actions.pod:5330 ../fish/guestfish-actions.pod:3558
13823 msgid ""
13824 "This call is intended for programs that want to efficiently list a directory "
13825 "contents without making many round-trips.  Very long directory listings "
13826 "might cause the protocol message size to be exceeded, causing this call to "
13827 "fail.  The caller must split up such requests into smaller groups of names."
13828 msgstr ""
13829
13830 #. type: =head2
13831 #: ../src/guestfs-actions.pod:5343
13832 msgid "guestfs_realpath"
13833 msgstr ""
13834
13835 #. type: verbatim
13836 #: ../src/guestfs-actions.pod:5345
13837 #, no-wrap
13838 msgid ""
13839 " char *\n"
13840 " guestfs_realpath (guestfs_h *g,\n"
13841 "                   const char *path);\n"
13842 "\n"
13843 msgstr ""
13844
13845 #. type: textblock
13846 #: ../src/guestfs-actions.pod:5349 ../fish/guestfish-actions.pod:3569
13847 msgid ""
13848 "Return the canonicalized absolute pathname of C<path>.  The returned path "
13849 "has no C<.>, C<..> or symbolic link path elements."
13850 msgstr ""
13851
13852 #. type: =head2
13853 #: ../src/guestfs-actions.pod:5357
13854 msgid "guestfs_removexattr"
13855 msgstr ""
13856
13857 #. type: verbatim
13858 #: ../src/guestfs-actions.pod:5359
13859 #, no-wrap
13860 msgid ""
13861 " int\n"
13862 " guestfs_removexattr (guestfs_h *g,\n"
13863 "                      const char *xattr,\n"
13864 "                      const char *path);\n"
13865 "\n"
13866 msgstr ""
13867
13868 #. type: textblock
13869 #: ../src/guestfs-actions.pod:5364 ../fish/guestfish-actions.pod:3576
13870 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
13871 msgstr ""
13872
13873 #. type: textblock
13874 #: ../src/guestfs-actions.pod:5367
13875 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
13876 msgstr ""
13877
13878 #. type: =head2
13879 #: ../src/guestfs-actions.pod:5373
13880 msgid "guestfs_resize2fs"
13881 msgstr ""
13882
13883 #. type: verbatim
13884 #: ../src/guestfs-actions.pod:5375
13885 #, no-wrap
13886 msgid ""
13887 " int\n"
13888 " guestfs_resize2fs (guestfs_h *g,\n"
13889 "                    const char *device);\n"
13890 "\n"
13891 msgstr ""
13892
13893 #. type: textblock
13894 #: ../src/guestfs-actions.pod:5379 ../fish/guestfish-actions.pod:3585
13895 msgid ""
13896 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
13897 "underlying device."
13898 msgstr ""
13899
13900 #. type: textblock
13901 #: ../src/guestfs-actions.pod:5382
13902 msgid ""
13903 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
13904 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
13905 "sometimes gives an error about this and sometimes not.  In any case, it is "
13906 "always safe to call C<guestfs_e2fsck_f> before calling this function."
13907 msgstr ""
13908
13909 #. type: =head2
13910 #: ../src/guestfs-actions.pod:5392
13911 msgid "guestfs_resize2fs_size"
13912 msgstr ""
13913
13914 #. type: verbatim
13915 #: ../src/guestfs-actions.pod:5394
13916 #, no-wrap
13917 msgid ""
13918 " int\n"
13919 " guestfs_resize2fs_size (guestfs_h *g,\n"
13920 "                         const char *device,\n"
13921 "                         int64_t size);\n"
13922 "\n"
13923 msgstr ""
13924
13925 #. type: textblock
13926 #: ../src/guestfs-actions.pod:5399
13927 msgid ""
13928 "This command is the same as C<guestfs_resize2fs> except that it allows you "
13929 "to specify the new size (in bytes) explicitly."
13930 msgstr ""
13931
13932 #. type: =head2
13933 #: ../src/guestfs-actions.pod:5406
13934 msgid "guestfs_rm"
13935 msgstr ""
13936
13937 #. type: verbatim
13938 #: ../src/guestfs-actions.pod:5408
13939 #, no-wrap
13940 msgid ""
13941 " int\n"
13942 " guestfs_rm (guestfs_h *g,\n"
13943 "             const char *path);\n"
13944 "\n"
13945 msgstr ""
13946
13947 #. type: textblock
13948 #: ../src/guestfs-actions.pod:5412 ../fish/guestfish-actions.pod:3605
13949 msgid "Remove the single file C<path>."
13950 msgstr ""
13951
13952 #. type: =head2
13953 #: ../src/guestfs-actions.pod:5418
13954 msgid "guestfs_rm_rf"
13955 msgstr ""
13956
13957 #. type: verbatim
13958 #: ../src/guestfs-actions.pod:5420
13959 #, no-wrap
13960 msgid ""
13961 " int\n"
13962 " guestfs_rm_rf (guestfs_h *g,\n"
13963 "                const char *path);\n"
13964 "\n"
13965 msgstr ""
13966
13967 #. type: textblock
13968 #: ../src/guestfs-actions.pod:5424 ../fish/guestfish-actions.pod:3611
13969 msgid ""
13970 "Remove the file or directory C<path>, recursively removing the contents if "
13971 "its a directory.  This is like the C<rm -rf> shell command."
13972 msgstr ""
13973
13974 #. type: =head2
13975 #: ../src/guestfs-actions.pod:5432
13976 msgid "guestfs_rmdir"
13977 msgstr ""
13978
13979 #. type: verbatim
13980 #: ../src/guestfs-actions.pod:5434
13981 #, no-wrap
13982 msgid ""
13983 " int\n"
13984 " guestfs_rmdir (guestfs_h *g,\n"
13985 "                const char *path);\n"
13986 "\n"
13987 msgstr ""
13988
13989 #. type: textblock
13990 #: ../src/guestfs-actions.pod:5438 ../fish/guestfish-actions.pod:3619
13991 msgid "Remove the single directory C<path>."
13992 msgstr ""
13993
13994 #. type: =head2
13995 #: ../src/guestfs-actions.pod:5444
13996 msgid "guestfs_rmmountpoint"
13997 msgstr ""
13998
13999 #. type: verbatim
14000 #: ../src/guestfs-actions.pod:5446
14001 #, no-wrap
14002 msgid ""
14003 " int\n"
14004 " guestfs_rmmountpoint (guestfs_h *g,\n"
14005 "                       const char *exemptpath);\n"
14006 "\n"
14007 msgstr ""
14008
14009 #. type: textblock
14010 #: ../src/guestfs-actions.pod:5450
14011 msgid ""
14012 "This calls removes a mountpoint that was previously created with "
14013 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
14014 msgstr ""
14015
14016 #. type: =head2
14017 #: ../src/guestfs-actions.pod:5458
14018 msgid "guestfs_scrub_device"
14019 msgstr ""
14020
14021 #. type: verbatim
14022 #: ../src/guestfs-actions.pod:5460
14023 #, no-wrap
14024 msgid ""
14025 " int\n"
14026 " guestfs_scrub_device (guestfs_h *g,\n"
14027 "                       const char *device);\n"
14028 "\n"
14029 msgstr ""
14030
14031 #. type: textblock
14032 #: ../src/guestfs-actions.pod:5464 ../fish/guestfish-actions.pod:3633
14033 msgid ""
14034 "This command writes patterns over C<device> to make data retrieval more "
14035 "difficult."
14036 msgstr ""
14037
14038 #. type: textblock
14039 #: ../src/guestfs-actions.pod:5467 ../src/guestfs-actions.pod:5488 ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3636 ../fish/guestfish-actions.pod:3651 ../fish/guestfish-actions.pod:3664
14040 msgid ""
14041 "It is an interface to the L<scrub(1)> program.  See that manual page for "
14042 "more details."
14043 msgstr ""
14044
14045 #. type: textblock
14046 #: ../src/guestfs-actions.pod:5475 ../src/guestfs-actions.pod:5493 ../src/guestfs-actions.pod:5512
14047 msgid "(Added in 1.0.52)"
14048 msgstr ""
14049
14050 #. type: =head2
14051 #: ../src/guestfs-actions.pod:5477
14052 msgid "guestfs_scrub_file"
14053 msgstr ""
14054
14055 #. type: verbatim
14056 #: ../src/guestfs-actions.pod:5479
14057 #, no-wrap
14058 msgid ""
14059 " int\n"
14060 " guestfs_scrub_file (guestfs_h *g,\n"
14061 "                     const char *file);\n"
14062 "\n"
14063 msgstr ""
14064
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:5483 ../fish/guestfish-actions.pod:3646
14067 msgid ""
14068 "This command writes patterns over a file to make data retrieval more "
14069 "difficult."
14070 msgstr ""
14071
14072 #. type: textblock
14073 #: ../src/guestfs-actions.pod:5486 ../fish/guestfish-actions.pod:3649
14074 msgid "The file is I<removed> after scrubbing."
14075 msgstr ""
14076
14077 #. type: =head2
14078 #: ../src/guestfs-actions.pod:5495
14079 msgid "guestfs_scrub_freespace"
14080 msgstr ""
14081
14082 #. type: verbatim
14083 #: ../src/guestfs-actions.pod:5497
14084 #, no-wrap
14085 msgid ""
14086 " int\n"
14087 " guestfs_scrub_freespace (guestfs_h *g,\n"
14088 "                          const char *dir);\n"
14089 "\n"
14090 msgstr ""
14091
14092 #. type: textblock
14093 #: ../src/guestfs-actions.pod:5501
14094 msgid ""
14095 "This command creates the directory C<dir> and then fills it with files until "
14096 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
14097 "and deletes them.  The intention is to scrub any free space on the partition "
14098 "containing C<dir>."
14099 msgstr ""
14100
14101 #. type: =head2
14102 #: ../src/guestfs-actions.pod:5514
14103 msgid "guestfs_set_append"
14104 msgstr ""
14105
14106 #. type: verbatim
14107 #: ../src/guestfs-actions.pod:5516
14108 #, no-wrap
14109 msgid ""
14110 " int\n"
14111 " guestfs_set_append (guestfs_h *g,\n"
14112 "                     const char *append);\n"
14113 "\n"
14114 msgstr ""
14115
14116 #. type: textblock
14117 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3673
14118 msgid ""
14119 "This function is used to add additional options to the guest kernel command "
14120 "line."
14121 msgstr ""
14122
14123 #. type: textblock
14124 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3676
14125 msgid ""
14126 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
14127 "environment variable."
14128 msgstr ""
14129
14130 #. type: textblock
14131 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3679
14132 msgid ""
14133 "Setting C<append> to C<NULL> means I<no> additional options are passed "
14134 "(libguestfs always adds a few of its own)."
14135 msgstr ""
14136
14137 #. type: =head2
14138 #: ../src/guestfs-actions.pod:5533
14139 msgid "guestfs_set_autosync"
14140 msgstr ""
14141
14142 #. type: verbatim
14143 #: ../src/guestfs-actions.pod:5535
14144 #, no-wrap
14145 msgid ""
14146 " int\n"
14147 " guestfs_set_autosync (guestfs_h *g,\n"
14148 "                       int autosync);\n"
14149 "\n"
14150 msgstr ""
14151
14152 #. type: textblock
14153 #: ../src/guestfs-actions.pod:5539
14154 msgid ""
14155 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
14156 "effort attempt to run C<guestfs_umount_all> followed by C<guestfs_sync> when "
14157 "the handle is closed (also if the program exits without closing handles)."
14158 msgstr ""
14159
14160 #. type: textblock
14161 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3693
14162 msgid ""
14163 "This is enabled by default (since libguestfs 1.5.24, previously it was "
14164 "disabled by default)."
14165 msgstr ""
14166
14167 #. type: =head2
14168 #: ../src/guestfs-actions.pod:5551
14169 msgid "guestfs_set_direct"
14170 msgstr ""
14171
14172 #. type: verbatim
14173 #: ../src/guestfs-actions.pod:5553
14174 #, no-wrap
14175 msgid ""
14176 " int\n"
14177 " guestfs_set_direct (guestfs_h *g,\n"
14178 "                     int direct);\n"
14179 "\n"
14180 msgstr ""
14181
14182 #. type: textblock
14183 #: ../src/guestfs-actions.pod:5557 ../fish/guestfish-actions.pod:3702
14184 msgid ""
14185 "If the direct appliance mode flag is enabled, then stdin and stdout are "
14186 "passed directly through to the appliance once it is launched."
14187 msgstr ""
14188
14189 #. type: textblock
14190 #: ../src/guestfs-actions.pod:5561
14191 msgid ""
14192 "One consequence of this is that log messages aren't caught by the library "
14193 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
14194 "stdout."
14195 msgstr ""
14196
14197 #. type: textblock
14198 #: ../src/guestfs-actions.pod:5565 ../fish/guestfish-actions.pod:3710
14199 msgid "You probably don't want to use this unless you know what you are doing."
14200 msgstr ""
14201
14202 #. type: textblock
14203 #: ../src/guestfs-actions.pod:5568 ../fish/guestfish-actions.pod:3713
14204 msgid "The default is disabled."
14205 msgstr ""
14206
14207 #. type: =head2
14208 #: ../src/guestfs-actions.pod:5574
14209 msgid "guestfs_set_e2label"
14210 msgstr ""
14211
14212 #. type: verbatim
14213 #: ../src/guestfs-actions.pod:5576
14214 #, no-wrap
14215 msgid ""
14216 " int\n"
14217 " guestfs_set_e2label (guestfs_h *g,\n"
14218 "                      const char *device,\n"
14219 "                      const char *label);\n"
14220 "\n"
14221 msgstr ""
14222
14223 #. type: textblock
14224 #: ../src/guestfs-actions.pod:5581 ../fish/guestfish-actions.pod:3719
14225 msgid ""
14226 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
14227 "C<label>.  Filesystem labels are limited to 16 characters."
14228 msgstr ""
14229
14230 #. type: textblock
14231 #: ../src/guestfs-actions.pod:5585
14232 msgid ""
14233 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
14234 "the existing label on a filesystem."
14235 msgstr ""
14236
14237 #. type: =head2
14238 #: ../src/guestfs-actions.pod:5592
14239 msgid "guestfs_set_e2uuid"
14240 msgstr ""
14241
14242 #. type: verbatim
14243 #: ../src/guestfs-actions.pod:5594
14244 #, no-wrap
14245 msgid ""
14246 " int\n"
14247 " guestfs_set_e2uuid (guestfs_h *g,\n"
14248 "                     const char *device,\n"
14249 "                     const char *uuid);\n"
14250 "\n"
14251 msgstr ""
14252
14253 #. type: textblock
14254 #: ../src/guestfs-actions.pod:5599 ../fish/guestfish-actions.pod:3730
14255 msgid ""
14256 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
14257 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
14258 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
14259 msgstr ""
14260
14261 #. type: textblock
14262 #: ../src/guestfs-actions.pod:5604
14263 msgid ""
14264 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
14265 "the existing UUID of a filesystem."
14266 msgstr ""
14267
14268 #. type: =head2
14269 #: ../src/guestfs-actions.pod:5611
14270 msgid "guestfs_set_memsize"
14271 msgstr ""
14272
14273 #. type: verbatim
14274 #: ../src/guestfs-actions.pod:5613
14275 #, no-wrap
14276 msgid ""
14277 " int\n"
14278 " guestfs_set_memsize (guestfs_h *g,\n"
14279 "                      int memsize);\n"
14280 "\n"
14281 msgstr ""
14282
14283 #. type: textblock
14284 #: ../src/guestfs-actions.pod:5617
14285 msgid ""
14286 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
14287 "This only has any effect if called before C<guestfs_launch>."
14288 msgstr ""
14289
14290 #. type: textblock
14291 #: ../src/guestfs-actions.pod:5621 ../fish/guestfish-actions.pod:3748
14292 msgid ""
14293 "You can also change this by setting the environment variable "
14294 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
14295 msgstr ""
14296
14297 #. type: =head2
14298 #: ../src/guestfs-actions.pod:5632
14299 msgid "guestfs_set_network"
14300 msgstr ""
14301
14302 #. type: verbatim
14303 #: ../src/guestfs-actions.pod:5634
14304 #, no-wrap
14305 msgid ""
14306 " int\n"
14307 " guestfs_set_network (guestfs_h *g,\n"
14308 "                      int network);\n"
14309 "\n"
14310 msgstr ""
14311
14312 #. type: textblock
14313 #: ../src/guestfs-actions.pod:5638 ../fish/guestfish-actions.pod:3761
14314 msgid ""
14315 "If C<network> is true, then the network is enabled in the libguestfs "
14316 "appliance.  The default is false."
14317 msgstr ""
14318
14319 #. type: textblock
14320 #: ../src/guestfs-actions.pod:5641 ../fish/guestfish-actions.pod:3764
14321 msgid ""
14322 "This affects whether commands are able to access the network (see "
14323 "L<guestfs(3)/RUNNING COMMANDS>)."
14324 msgstr ""
14325
14326 #. type: textblock
14327 #: ../src/guestfs-actions.pod:5644
14328 msgid ""
14329 "You must call this before calling C<guestfs_launch>, otherwise it has no "
14330 "effect."
14331 msgstr ""
14332
14333 #. type: =head2
14334 #: ../src/guestfs-actions.pod:5651
14335 msgid "guestfs_set_path"
14336 msgstr ""
14337
14338 #. type: verbatim
14339 #: ../src/guestfs-actions.pod:5653
14340 #, no-wrap
14341 msgid ""
14342 " int\n"
14343 " guestfs_set_path (guestfs_h *g,\n"
14344 "                   const char *searchpath);\n"
14345 "\n"
14346 msgstr ""
14347
14348 #. type: textblock
14349 #: ../src/guestfs-actions.pod:5657 ../fish/guestfish-actions.pod:3776
14350 msgid "Set the path that libguestfs searches for kernel and initrd.img."
14351 msgstr ""
14352
14353 #. type: textblock
14354 #: ../src/guestfs-actions.pod:5659 ../fish/guestfish-actions.pod:3778
14355 msgid ""
14356 "The default is C<$libdir/guestfs> unless overridden by setting "
14357 "C<LIBGUESTFS_PATH> environment variable."
14358 msgstr ""
14359
14360 #. type: textblock
14361 #: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3781
14362 msgid "Setting C<path> to C<NULL> restores the default path."
14363 msgstr ""
14364
14365 #. type: =head2
14366 #: ../src/guestfs-actions.pod:5668
14367 msgid "guestfs_set_qemu"
14368 msgstr ""
14369
14370 #. type: verbatim
14371 #: ../src/guestfs-actions.pod:5670
14372 #, no-wrap
14373 msgid ""
14374 " int\n"
14375 " guestfs_set_qemu (guestfs_h *g,\n"
14376 "                   const char *qemu);\n"
14377 "\n"
14378 msgstr ""
14379
14380 #. type: textblock
14381 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3789
14382 msgid "Set the qemu binary that we will use."
14383 msgstr ""
14384
14385 #. type: textblock
14386 #: ../src/guestfs-actions.pod:5676 ../fish/guestfish-actions.pod:3791
14387 msgid "The default is chosen when the library was compiled by the configure script."
14388 msgstr ""
14389
14390 #. type: textblock
14391 #: ../src/guestfs-actions.pod:5679 ../fish/guestfish-actions.pod:3794
14392 msgid ""
14393 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
14394 "variable."
14395 msgstr ""
14396
14397 #. type: textblock
14398 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3797
14399 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
14400 msgstr ""
14401
14402 #. type: textblock
14403 #: ../src/guestfs-actions.pod:5684 ../fish/guestfish-actions.pod:3799
14404 msgid ""
14405 "Note that you should call this function as early as possible after creating "
14406 "the handle.  This is because some pre-launch operations depend on testing "
14407 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
14408 "don't retest features, and so you might see inconsistent results.  Using the "
14409 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
14410 "the qemu binary at the same time as the handle is created."
14411 msgstr ""
14412
14413 #. type: =head2
14414 #: ../src/guestfs-actions.pod:5696
14415 msgid "guestfs_set_recovery_proc"
14416 msgstr ""
14417
14418 #. type: verbatim
14419 #: ../src/guestfs-actions.pod:5698
14420 #, no-wrap
14421 msgid ""
14422 " int\n"
14423 " guestfs_set_recovery_proc (guestfs_h *g,\n"
14424 "                            int recoveryproc);\n"
14425 "\n"
14426 msgstr ""
14427
14428 #. type: textblock
14429 #: ../src/guestfs-actions.pod:5702
14430 msgid ""
14431 "If this is called with the parameter C<false> then C<guestfs_launch> does "
14432 "not create a recovery process.  The purpose of the recovery process is to "
14433 "stop runaway qemu processes in the case where the main program aborts "
14434 "abruptly."
14435 msgstr ""
14436
14437 #. type: textblock
14438 #: ../src/guestfs-actions.pod:5707
14439 msgid ""
14440 "This only has any effect if called before C<guestfs_launch>, and the default "
14441 "is true."
14442 msgstr ""
14443
14444 #. type: textblock
14445 #: ../src/guestfs-actions.pod:5710 ../fish/guestfish-actions.pod:3821
14446 msgid ""
14447 "About the only time when you would want to disable this is if the main "
14448 "process will fork itself into the background (\"daemonize\" itself).  In "
14449 "this case the recovery process thinks that the main program has disappeared "
14450 "and so kills qemu, which is not very helpful."
14451 msgstr ""
14452
14453 #. type: =head2
14454 #: ../src/guestfs-actions.pod:5720
14455 msgid "guestfs_set_selinux"
14456 msgstr ""
14457
14458 #. type: verbatim
14459 #: ../src/guestfs-actions.pod:5722
14460 #, no-wrap
14461 msgid ""
14462 " int\n"
14463 " guestfs_set_selinux (guestfs_h *g,\n"
14464 "                      int selinux);\n"
14465 "\n"
14466 msgstr ""
14467
14468 #. type: textblock
14469 #: ../src/guestfs-actions.pod:5726 ../fish/guestfish-actions.pod:3833
14470 msgid ""
14471 "This sets the selinux flag that is passed to the appliance at boot time.  "
14472 "The default is C<selinux=0> (disabled)."
14473 msgstr ""
14474
14475 #. type: textblock
14476 #: ../src/guestfs-actions.pod:5729 ../fish/guestfish-actions.pod:3836
14477 msgid ""
14478 "Note that if SELinux is enabled, it is always in Permissive mode "
14479 "(C<enforcing=0>)."
14480 msgstr ""
14481
14482 #. type: =head2
14483 #: ../src/guestfs-actions.pod:5739
14484 msgid "guestfs_set_trace"
14485 msgstr ""
14486
14487 #. type: verbatim
14488 #: ../src/guestfs-actions.pod:5741
14489 #, no-wrap
14490 msgid ""
14491 " int\n"
14492 " guestfs_set_trace (guestfs_h *g,\n"
14493 "                    int trace);\n"
14494 "\n"
14495 msgstr ""
14496
14497 #. type: textblock
14498 #: ../src/guestfs-actions.pod:5745 ../fish/guestfish-actions.pod:3848
14499 msgid ""
14500 "If the command trace flag is set to 1, then commands are printed on stderr "
14501 "before they are executed in a format which is very similar to the one used "
14502 "by guestfish.  In other words, you can run a program with this enabled, and "
14503 "you will get out a script which you can feed to guestfish to perform the "
14504 "same set of actions."
14505 msgstr ""
14506
14507 #. type: textblock
14508 #: ../src/guestfs-actions.pod:5752 ../fish/guestfish-actions.pod:3855
14509 msgid ""
14510 "If you want to trace C API calls into libguestfs (and other libraries) then "
14511 "possibly a better way is to use the external ltrace(1) command."
14512 msgstr ""
14513
14514 #. type: textblock
14515 #: ../src/guestfs-actions.pod:5756 ../fish/guestfish-actions.pod:3859
14516 msgid ""
14517 "Command traces are disabled unless the environment variable "
14518 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
14519 msgstr ""
14520
14521 #. type: =head2
14522 #: ../src/guestfs-actions.pod:5763
14523 msgid "guestfs_set_verbose"
14524 msgstr ""
14525
14526 #. type: verbatim
14527 #: ../src/guestfs-actions.pod:5765
14528 #, no-wrap
14529 msgid ""
14530 " int\n"
14531 " guestfs_set_verbose (guestfs_h *g,\n"
14532 "                      int verbose);\n"
14533 "\n"
14534 msgstr ""
14535
14536 #. type: textblock
14537 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3868
14538 msgid "If C<verbose> is true, this turns on verbose messages (to C<stderr>)."
14539 msgstr ""
14540
14541 #. type: textblock
14542 #: ../src/guestfs-actions.pod:5771 ../fish/guestfish-actions.pod:3870
14543 msgid ""
14544 "Verbose messages are disabled unless the environment variable "
14545 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
14546 msgstr ""
14547
14548 #. type: =head2
14549 #: ../src/guestfs-actions.pod:5778
14550 msgid "guestfs_setcon"
14551 msgstr ""
14552
14553 #. type: verbatim
14554 #: ../src/guestfs-actions.pod:5780
14555 #, no-wrap
14556 msgid ""
14557 " int\n"
14558 " guestfs_setcon (guestfs_h *g,\n"
14559 "                 const char *context);\n"
14560 "\n"
14561 msgstr ""
14562
14563 #. type: textblock
14564 #: ../src/guestfs-actions.pod:5784 ../fish/guestfish-actions.pod:3877
14565 msgid ""
14566 "This sets the SELinux security context of the daemon to the string "
14567 "C<context>."
14568 msgstr ""
14569
14570 #. type: textblock
14571 #: ../src/guestfs-actions.pod:5787 ../fish/guestfish-actions.pod:3880
14572 msgid "See the documentation about SELINUX in L<guestfs(3)>."
14573 msgstr ""
14574
14575 #. type: =head2
14576 #: ../src/guestfs-actions.pod:5793
14577 msgid "guestfs_setxattr"
14578 msgstr ""
14579
14580 #. type: verbatim
14581 #: ../src/guestfs-actions.pod:5795
14582 #, no-wrap
14583 msgid ""
14584 " int\n"
14585 " guestfs_setxattr (guestfs_h *g,\n"
14586 "                   const char *xattr,\n"
14587 "                   const char *val,\n"
14588 "                   int vallen,\n"
14589 "                   const char *path);\n"
14590 "\n"
14591 msgstr ""
14592
14593 #. type: textblock
14594 #: ../src/guestfs-actions.pod:5802 ../fish/guestfish-actions.pod:3886
14595 msgid ""
14596 "This call sets the extended attribute named C<xattr> of the file C<path> to "
14597 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
14598 msgstr ""
14599
14600 #. type: textblock
14601 #: ../src/guestfs-actions.pod:5806
14602 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
14603 msgstr ""
14604
14605 #. type: =head2
14606 #: ../src/guestfs-actions.pod:5812
14607 msgid "guestfs_sfdisk"
14608 msgstr ""
14609
14610 #. type: verbatim
14611 #: ../src/guestfs-actions.pod:5814
14612 #, no-wrap
14613 msgid ""
14614 " int\n"
14615 " guestfs_sfdisk (guestfs_h *g,\n"
14616 "                 const char *device,\n"
14617 "                 int cyls,\n"
14618 "                 int heads,\n"
14619 "                 int sectors,\n"
14620 "                 char *const *lines);\n"
14621 "\n"
14622 msgstr ""
14623
14624 #. type: textblock
14625 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3896
14626 msgid ""
14627 "This is a direct interface to the L<sfdisk(8)> program for creating "
14628 "partitions on block devices."
14629 msgstr ""
14630
14631 #. type: textblock
14632 #: ../src/guestfs-actions.pod:5825 ../fish/guestfish-actions.pod:3899
14633 msgid "C<device> should be a block device, for example C</dev/sda>."
14634 msgstr ""
14635
14636 #. type: textblock
14637 #: ../src/guestfs-actions.pod:5827 ../fish/guestfish-actions.pod:3901
14638 msgid ""
14639 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
14640 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
14641 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
14642 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
14643 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
14644 "the kernel) cannot work out the right geometry and you will need to tell it."
14645 msgstr ""
14646
14647 #. type: textblock
14648 #: ../src/guestfs-actions.pod:5835 ../fish/guestfish-actions.pod:3909
14649 msgid ""
14650 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
14651 "refer to the L<sfdisk(8)> manpage."
14652 msgstr ""
14653
14654 #. type: textblock
14655 #: ../src/guestfs-actions.pod:5838 ../fish/guestfish-actions.pod:3912
14656 msgid ""
14657 "To create a single partition occupying the whole disk, you would pass "
14658 "C<lines> as a single element list, when the single element being the string "
14659 "C<,> (comma)."
14660 msgstr ""
14661
14662 #. type: textblock
14663 #: ../src/guestfs-actions.pod:5842
14664 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
14665 msgstr ""
14666
14667 #. type: =head2
14668 #: ../src/guestfs-actions.pod:5852
14669 msgid "guestfs_sfdiskM"
14670 msgstr ""
14671
14672 #. type: verbatim
14673 #: ../src/guestfs-actions.pod:5854
14674 #, no-wrap
14675 msgid ""
14676 " int\n"
14677 " guestfs_sfdiskM (guestfs_h *g,\n"
14678 "                  const char *device,\n"
14679 "                  char *const *lines);\n"
14680 "\n"
14681 msgstr ""
14682
14683 #. type: textblock
14684 #: ../src/guestfs-actions.pod:5859
14685 msgid ""
14686 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
14687 "partition sizes are specified in megabytes only (rounded to the nearest "
14688 "cylinder) and you don't need to specify the cyls, heads and sectors "
14689 "parameters which were rarely if ever used anyway."
14690 msgstr ""
14691
14692 #. type: textblock
14693 #: ../src/guestfs-actions.pod:5865
14694 msgid ""
14695 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
14696 "C<guestfs_part_disk>"
14697 msgstr ""
14698
14699 #. type: =head2
14700 #: ../src/guestfs-actions.pod:5875
14701 msgid "guestfs_sfdisk_N"
14702 msgstr ""
14703
14704 #. type: verbatim
14705 #: ../src/guestfs-actions.pod:5877
14706 #, no-wrap
14707 msgid ""
14708 " int\n"
14709 " guestfs_sfdisk_N (guestfs_h *g,\n"
14710 "                   const char *device,\n"
14711 "                   int partnum,\n"
14712 "                   int cyls,\n"
14713 "                   int heads,\n"
14714 "                   int sectors,\n"
14715 "                   const char *line);\n"
14716 "\n"
14717 msgstr ""
14718
14719 #. type: textblock
14720 #: ../src/guestfs-actions.pod:5886 ../fish/guestfish-actions.pod:3942
14721 msgid ""
14722 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
14723 "(note: C<n> counts from 1)."
14724 msgstr ""
14725
14726 #. type: textblock
14727 #: ../src/guestfs-actions.pod:5889
14728 msgid ""
14729 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
14730 "for the cyls/heads/sectors parameters."
14731 msgstr ""
14732
14733 #. type: textblock
14734 #: ../src/guestfs-actions.pod:5892
14735 msgid "See also: C<guestfs_part_add>"
14736 msgstr ""
14737
14738 #. type: =head2
14739 #: ../src/guestfs-actions.pod:5901
14740 msgid "guestfs_sfdisk_disk_geometry"
14741 msgstr ""
14742
14743 #. type: verbatim
14744 #: ../src/guestfs-actions.pod:5903
14745 #, no-wrap
14746 msgid ""
14747 " char *\n"
14748 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
14749 "                               const char *device);\n"
14750 "\n"
14751 msgstr ""
14752
14753 #. type: textblock
14754 #: ../src/guestfs-actions.pod:5907
14755 msgid ""
14756 "This displays the disk geometry of C<device> read from the partition table.  "
14757 "Especially in the case where the underlying block device has been resized, "
14758 "this can be different from the kernel's idea of the geometry (see "
14759 "C<guestfs_sfdisk_kernel_geometry>)."
14760 msgstr ""
14761
14762 #. type: textblock
14763 #: ../src/guestfs-actions.pod:5912 ../src/guestfs-actions.pod:5928 ../fish/guestfish-actions.pod:3962 ../fish/guestfish-actions.pod:3971
14764 msgid "The result is in human-readable format, and not designed to be parsed."
14765 msgstr ""
14766
14767 #. type: =head2
14768 #: ../src/guestfs-actions.pod:5920
14769 msgid "guestfs_sfdisk_kernel_geometry"
14770 msgstr ""
14771
14772 #. type: verbatim
14773 #: ../src/guestfs-actions.pod:5922
14774 #, no-wrap
14775 msgid ""
14776 " char *\n"
14777 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
14778 "                                 const char *device);\n"
14779 "\n"
14780 msgstr ""
14781
14782 #. type: textblock
14783 #: ../src/guestfs-actions.pod:5926 ../fish/guestfish-actions.pod:3969
14784 msgid "This displays the kernel's idea of the geometry of C<device>."
14785 msgstr ""
14786
14787 #. type: =head2
14788 #: ../src/guestfs-actions.pod:5936
14789 msgid "guestfs_sfdisk_l"
14790 msgstr ""
14791
14792 #. type: verbatim
14793 #: ../src/guestfs-actions.pod:5938
14794 #, no-wrap
14795 msgid ""
14796 " char *\n"
14797 " guestfs_sfdisk_l (guestfs_h *g,\n"
14798 "                   const char *device);\n"
14799 "\n"
14800 msgstr ""
14801
14802 #. type: textblock
14803 #: ../src/guestfs-actions.pod:5942 ../fish/guestfish-actions.pod:3978
14804 msgid ""
14805 "This displays the partition table on C<device>, in the human-readable output "
14806 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
14807 msgstr ""
14808
14809 #. type: textblock
14810 #: ../src/guestfs-actions.pod:5946
14811 msgid "See also: C<guestfs_part_list>"
14812 msgstr ""
14813
14814 #. type: =head2
14815 #: ../src/guestfs-actions.pod:5953
14816 msgid "guestfs_sh"
14817 msgstr ""
14818
14819 #. type: verbatim
14820 #: ../src/guestfs-actions.pod:5955
14821 #, no-wrap
14822 msgid ""
14823 " char *\n"
14824 " guestfs_sh (guestfs_h *g,\n"
14825 "             const char *command);\n"
14826 "\n"
14827 msgstr ""
14828
14829 #. type: textblock
14830 #: ../src/guestfs-actions.pod:5959 ../fish/guestfish-actions.pod:3988
14831 msgid ""
14832 "This call runs a command from the guest filesystem via the guest's "
14833 "C</bin/sh>."
14834 msgstr ""
14835
14836 #. type: textblock
14837 #: ../src/guestfs-actions.pod:5962
14838 msgid "This is like C<guestfs_command>, but passes the command to:"
14839 msgstr ""
14840
14841 #. type: verbatim
14842 #: ../src/guestfs-actions.pod:5964 ../fish/guestfish-actions.pod:3993
14843 #, no-wrap
14844 msgid ""
14845 " /bin/sh -c \"command\"\n"
14846 "\n"
14847 msgstr ""
14848
14849 #. type: textblock
14850 #: ../src/guestfs-actions.pod:5966 ../fish/guestfish-actions.pod:3995
14851 msgid ""
14852 "Depending on the guest's shell, this usually results in wildcards being "
14853 "expanded, shell expressions being interpolated and so on."
14854 msgstr ""
14855
14856 #. type: textblock
14857 #: ../src/guestfs-actions.pod:5970
14858 msgid "All the provisos about C<guestfs_command> apply to this call."
14859 msgstr ""
14860
14861 #. type: =head2
14862 #: ../src/guestfs-actions.pod:5977
14863 msgid "guestfs_sh_lines"
14864 msgstr ""
14865
14866 #. type: verbatim
14867 #: ../src/guestfs-actions.pod:5979
14868 #, no-wrap
14869 msgid ""
14870 " char **\n"
14871 " guestfs_sh_lines (guestfs_h *g,\n"
14872 "                   const char *command);\n"
14873 "\n"
14874 msgstr ""
14875
14876 #. type: textblock
14877 #: ../src/guestfs-actions.pod:5983
14878 msgid ""
14879 "This is the same as C<guestfs_sh>, but splits the result into a list of "
14880 "lines."
14881 msgstr ""
14882
14883 #. type: textblock
14884 #: ../src/guestfs-actions.pod:5986
14885 msgid "See also: C<guestfs_command_lines>"
14886 msgstr ""
14887
14888 #. type: =head2
14889 #: ../src/guestfs-actions.pod:5994
14890 msgid "guestfs_sleep"
14891 msgstr ""
14892
14893 #. type: verbatim
14894 #: ../src/guestfs-actions.pod:5996
14895 #, no-wrap
14896 msgid ""
14897 " int\n"
14898 " guestfs_sleep (guestfs_h *g,\n"
14899 "                int secs);\n"
14900 "\n"
14901 msgstr ""
14902
14903 #. type: textblock
14904 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:4014
14905 msgid "Sleep for C<secs> seconds."
14906 msgstr ""
14907
14908 #. type: textblock
14909 #: ../src/guestfs-actions.pod:6004
14910 msgid "(Added in 1.0.41)"
14911 msgstr ""
14912
14913 #. type: =head2
14914 #: ../src/guestfs-actions.pod:6006 ../src/guestfs-structs.pod:109
14915 msgid "guestfs_stat"
14916 msgstr ""
14917
14918 #. type: verbatim
14919 #: ../src/guestfs-actions.pod:6008
14920 #, no-wrap
14921 msgid ""
14922 " struct guestfs_stat *\n"
14923 " guestfs_stat (guestfs_h *g,\n"
14924 "               const char *path);\n"
14925 "\n"
14926 msgstr ""
14927
14928 #. type: textblock
14929 #: ../src/guestfs-actions.pod:6014 ../fish/guestfish-actions.pod:4022
14930 msgid "This is the same as the C<stat(2)> system call."
14931 msgstr ""
14932
14933 #. type: =head2
14934 #: ../src/guestfs-actions.pod:6022 ../src/guestfs-structs.pod:135
14935 msgid "guestfs_statvfs"
14936 msgstr ""
14937
14938 #. type: verbatim
14939 #: ../src/guestfs-actions.pod:6024
14940 #, no-wrap
14941 msgid ""
14942 " struct guestfs_statvfs *\n"
14943 " guestfs_statvfs (guestfs_h *g,\n"
14944 "                  const char *path);\n"
14945 "\n"
14946 msgstr ""
14947
14948 #. type: textblock
14949 #: ../src/guestfs-actions.pod:6028 ../fish/guestfish-actions.pod:4028
14950 msgid ""
14951 "Returns file system statistics for any mounted file system.  C<path> should "
14952 "be a file or directory in the mounted file system (typically it is the mount "
14953 "point itself, but it doesn't need to be)."
14954 msgstr ""
14955
14956 #. type: textblock
14957 #: ../src/guestfs-actions.pod:6032 ../fish/guestfish-actions.pod:4032
14958 msgid "This is the same as the C<statvfs(2)> system call."
14959 msgstr ""
14960
14961 #. type: textblock
14962 #: ../src/guestfs-actions.pod:6034
14963 msgid ""
14964 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
14965 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
14966 msgstr ""
14967
14968 #. type: =head2
14969 #: ../src/guestfs-actions.pod:6040
14970 msgid "guestfs_strings"
14971 msgstr ""
14972
14973 #. type: verbatim
14974 #: ../src/guestfs-actions.pod:6042
14975 #, no-wrap
14976 msgid ""
14977 " char **\n"
14978 " guestfs_strings (guestfs_h *g,\n"
14979 "                  const char *path);\n"
14980 "\n"
14981 msgstr ""
14982
14983 #. type: textblock
14984 #: ../src/guestfs-actions.pod:6046 ../fish/guestfish-actions.pod:4038
14985 msgid ""
14986 "This runs the L<strings(1)> command on a file and returns the list of "
14987 "printable strings found."
14988 msgstr ""
14989
14990 #. type: =head2
14991 #: ../src/guestfs-actions.pod:6058
14992 msgid "guestfs_strings_e"
14993 msgstr ""
14994
14995 #. type: verbatim
14996 #: ../src/guestfs-actions.pod:6060
14997 #, no-wrap
14998 msgid ""
14999 " char **\n"
15000 " guestfs_strings_e (guestfs_h *g,\n"
15001 "                    const char *encoding,\n"
15002 "                    const char *path);\n"
15003 "\n"
15004 msgstr ""
15005
15006 #. type: textblock
15007 #: ../src/guestfs-actions.pod:6065
15008 msgid ""
15009 "This is like the C<guestfs_strings> command, but allows you to specify the "
15010 "encoding of strings that are looked for in the source file C<path>."
15011 msgstr ""
15012
15013 #. type: textblock
15014 #: ../src/guestfs-actions.pod:6069 ../fish/guestfish-actions.pod:4052
15015 msgid "Allowed encodings are:"
15016 msgstr ""
15017
15018 #. type: =item
15019 #: ../src/guestfs-actions.pod:6073 ../fish/guestfish-actions.pod:4056
15020 msgid "s"
15021 msgstr ""
15022
15023 #. type: textblock
15024 #: ../src/guestfs-actions.pod:6075
15025 msgid ""
15026 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
15027 "ISO-8859-X (this is what C<guestfs_strings> uses)."
15028 msgstr ""
15029
15030 #. type: =item
15031 #: ../src/guestfs-actions.pod:6078 ../fish/guestfish-actions.pod:4061
15032 msgid "S"
15033 msgstr ""
15034
15035 #. type: textblock
15036 #: ../src/guestfs-actions.pod:6080 ../fish/guestfish-actions.pod:4063
15037 msgid "Single 8-bit-byte characters."
15038 msgstr ""
15039
15040 #. type: =item
15041 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4065
15042 msgid "b"
15043 msgstr ""
15044
15045 #. type: textblock
15046 #: ../src/guestfs-actions.pod:6084 ../fish/guestfish-actions.pod:4067
15047 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
15048 msgstr ""
15049
15050 #. type: =item
15051 #: ../src/guestfs-actions.pod:6087 ../fish/guestfish-actions.pod:4070
15052 msgid "l (lower case letter L)"
15053 msgstr ""
15054
15055 #. type: textblock
15056 #: ../src/guestfs-actions.pod:6089 ../fish/guestfish-actions.pod:4072
15057 msgid ""
15058 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
15059 "examining binaries in Windows guests."
15060 msgstr ""
15061
15062 #. type: =item
15063 #: ../src/guestfs-actions.pod:6092 ../fish/guestfish-actions.pod:4075
15064 msgid "B"
15065 msgstr ""
15066
15067 #. type: textblock
15068 #: ../src/guestfs-actions.pod:6094 ../fish/guestfish-actions.pod:4077
15069 msgid "32-bit big endian such as UCS-4BE."
15070 msgstr ""
15071
15072 #. type: =item
15073 #: ../src/guestfs-actions.pod:6096 ../fish/guestfish-actions.pod:4079
15074 msgid "L"
15075 msgstr ""
15076
15077 #. type: textblock
15078 #: ../src/guestfs-actions.pod:6098 ../fish/guestfish-actions.pod:4081
15079 msgid "32-bit little endian such as UCS-4LE."
15080 msgstr ""
15081
15082 #. type: textblock
15083 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4085
15084 msgid "The returned strings are transcoded to UTF-8."
15085 msgstr ""
15086
15087 #. type: =head2
15088 #: ../src/guestfs-actions.pod:6113
15089 msgid "guestfs_swapoff_device"
15090 msgstr ""
15091
15092 #. type: verbatim
15093 #: ../src/guestfs-actions.pod:6115
15094 #, no-wrap
15095 msgid ""
15096 " int\n"
15097 " guestfs_swapoff_device (guestfs_h *g,\n"
15098 "                         const char *device);\n"
15099 "\n"
15100 msgstr ""
15101
15102 #. type: textblock
15103 #: ../src/guestfs-actions.pod:6119
15104 msgid ""
15105 "This command disables the libguestfs appliance swap device or partition "
15106 "named C<device>.  See C<guestfs_swapon_device>."
15107 msgstr ""
15108
15109 #. type: =head2
15110 #: ../src/guestfs-actions.pod:6127
15111 msgid "guestfs_swapoff_file"
15112 msgstr ""
15113
15114 #. type: verbatim
15115 #: ../src/guestfs-actions.pod:6129
15116 #, no-wrap
15117 msgid ""
15118 " int\n"
15119 " guestfs_swapoff_file (guestfs_h *g,\n"
15120 "                       const char *file);\n"
15121 "\n"
15122 msgstr ""
15123
15124 #. type: textblock
15125 #: ../src/guestfs-actions.pod:6133 ../fish/guestfish-actions.pod:4102
15126 msgid "This command disables the libguestfs appliance swap on file."
15127 msgstr ""
15128
15129 #. type: =head2
15130 #: ../src/guestfs-actions.pod:6139
15131 msgid "guestfs_swapoff_label"
15132 msgstr ""
15133
15134 #. type: verbatim
15135 #: ../src/guestfs-actions.pod:6141
15136 #, no-wrap
15137 msgid ""
15138 " int\n"
15139 " guestfs_swapoff_label (guestfs_h *g,\n"
15140 "                        const char *label);\n"
15141 "\n"
15142 msgstr ""
15143
15144 #. type: textblock
15145 #: ../src/guestfs-actions.pod:6145 ../fish/guestfish-actions.pod:4108
15146 msgid ""
15147 "This command disables the libguestfs appliance swap on labeled swap "
15148 "partition."
15149 msgstr ""
15150
15151 #. type: =head2
15152 #: ../src/guestfs-actions.pod:6152
15153 msgid "guestfs_swapoff_uuid"
15154 msgstr ""
15155
15156 #. type: verbatim
15157 #: ../src/guestfs-actions.pod:6154
15158 #, no-wrap
15159 msgid ""
15160 " int\n"
15161 " guestfs_swapoff_uuid (guestfs_h *g,\n"
15162 "                       const char *uuid);\n"
15163 "\n"
15164 msgstr ""
15165
15166 #. type: textblock
15167 #: ../src/guestfs-actions.pod:6158 ../fish/guestfish-actions.pod:4115
15168 msgid ""
15169 "This command disables the libguestfs appliance swap partition with the given "
15170 "UUID."
15171 msgstr ""
15172
15173 #. type: =head2
15174 #: ../src/guestfs-actions.pod:6165
15175 msgid "guestfs_swapon_device"
15176 msgstr ""
15177
15178 #. type: verbatim
15179 #: ../src/guestfs-actions.pod:6167
15180 #, no-wrap
15181 msgid ""
15182 " int\n"
15183 " guestfs_swapon_device (guestfs_h *g,\n"
15184 "                        const char *device);\n"
15185 "\n"
15186 msgstr ""
15187
15188 #. type: textblock
15189 #: ../src/guestfs-actions.pod:6171
15190 msgid ""
15191 "This command enables the libguestfs appliance to use the swap device or "
15192 "partition named C<device>.  The increased memory is made available for all "
15193 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
15194 msgstr ""
15195
15196 #. type: textblock
15197 #: ../src/guestfs-actions.pod:6176 ../fish/guestfish-actions.pod:4127
15198 msgid ""
15199 "Note that you should not swap to existing guest swap partitions unless you "
15200 "know what you are doing.  They may contain hibernation information, or other "
15201 "information that the guest doesn't want you to trash.  You also risk leaking "
15202 "information about the host to the guest this way.  Instead, attach a new "
15203 "host device to the guest and swap on that."
15204 msgstr ""
15205
15206 #. type: =head2
15207 #: ../src/guestfs-actions.pod:6187
15208 msgid "guestfs_swapon_file"
15209 msgstr ""
15210
15211 #. type: verbatim
15212 #: ../src/guestfs-actions.pod:6189
15213 #, no-wrap
15214 msgid ""
15215 " int\n"
15216 " guestfs_swapon_file (guestfs_h *g,\n"
15217 "                      const char *file);\n"
15218 "\n"
15219 msgstr ""
15220
15221 #. type: textblock
15222 #: ../src/guestfs-actions.pod:6193
15223 msgid ""
15224 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
15225 "notes."
15226 msgstr ""
15227
15228 #. type: =head2
15229 #: ../src/guestfs-actions.pod:6200
15230 msgid "guestfs_swapon_label"
15231 msgstr ""
15232
15233 #. type: verbatim
15234 #: ../src/guestfs-actions.pod:6202
15235 #, no-wrap
15236 msgid ""
15237 " int\n"
15238 " guestfs_swapon_label (guestfs_h *g,\n"
15239 "                       const char *label);\n"
15240 "\n"
15241 msgstr ""
15242
15243 #. type: textblock
15244 #: ../src/guestfs-actions.pod:6206
15245 msgid ""
15246 "This command enables swap to a labeled swap partition.  See "
15247 "C<guestfs_swapon_device> for other notes."
15248 msgstr ""
15249
15250 #. type: =head2
15251 #: ../src/guestfs-actions.pod:6213
15252 msgid "guestfs_swapon_uuid"
15253 msgstr ""
15254
15255 #. type: verbatim
15256 #: ../src/guestfs-actions.pod:6215
15257 #, no-wrap
15258 msgid ""
15259 " int\n"
15260 " guestfs_swapon_uuid (guestfs_h *g,\n"
15261 "                      const char *uuid);\n"
15262 "\n"
15263 msgstr ""
15264
15265 #. type: textblock
15266 #: ../src/guestfs-actions.pod:6219
15267 msgid ""
15268 "This command enables swap to a swap partition with the given UUID.  See "
15269 "C<guestfs_swapon_device> for other notes."
15270 msgstr ""
15271
15272 #. type: =head2
15273 #: ../src/guestfs-actions.pod:6226
15274 msgid "guestfs_sync"
15275 msgstr ""
15276
15277 #. type: verbatim
15278 #: ../src/guestfs-actions.pod:6228
15279 #, no-wrap
15280 msgid ""
15281 " int\n"
15282 " guestfs_sync (guestfs_h *g);\n"
15283 "\n"
15284 msgstr ""
15285
15286 #. type: textblock
15287 #: ../src/guestfs-actions.pod:6231 ../fish/guestfish-actions.pod:4159
15288 msgid ""
15289 "This syncs the disk, so that any writes are flushed through to the "
15290 "underlying disk image."
15291 msgstr ""
15292
15293 #. type: textblock
15294 #: ../src/guestfs-actions.pod:6234 ../fish/guestfish-actions.pod:4162
15295 msgid ""
15296 "You should always call this if you have modified a disk image, before "
15297 "closing the handle."
15298 msgstr ""
15299
15300 #. type: =head2
15301 #: ../src/guestfs-actions.pod:6241
15302 msgid "guestfs_tail"
15303 msgstr ""
15304
15305 #. type: verbatim
15306 #: ../src/guestfs-actions.pod:6243
15307 #, no-wrap
15308 msgid ""
15309 " char **\n"
15310 " guestfs_tail (guestfs_h *g,\n"
15311 "               const char *path);\n"
15312 "\n"
15313 msgstr ""
15314
15315 #. type: textblock
15316 #: ../src/guestfs-actions.pod:6247 ../fish/guestfish-actions.pod:4169
15317 msgid "This command returns up to the last 10 lines of a file as a list of strings."
15318 msgstr ""
15319
15320 #. type: =head2
15321 #: ../src/guestfs-actions.pod:6259
15322 msgid "guestfs_tail_n"
15323 msgstr ""
15324
15325 #. type: verbatim
15326 #: ../src/guestfs-actions.pod:6261
15327 #, no-wrap
15328 msgid ""
15329 " char **\n"
15330 " guestfs_tail_n (guestfs_h *g,\n"
15331 "                 int nrlines,\n"
15332 "                 const char *path);\n"
15333 "\n"
15334 msgstr ""
15335
15336 #. type: textblock
15337 #: ../src/guestfs-actions.pod:6266 ../fish/guestfish-actions.pod:4179
15338 msgid ""
15339 "If the parameter C<nrlines> is a positive number, this returns the last "
15340 "C<nrlines> lines of the file C<path>."
15341 msgstr ""
15342
15343 #. type: textblock
15344 #: ../src/guestfs-actions.pod:6269 ../fish/guestfish-actions.pod:4182
15345 msgid ""
15346 "If the parameter C<nrlines> is a negative number, this returns lines from "
15347 "the file C<path>, starting with the C<-nrlines>th line."
15348 msgstr ""
15349
15350 #. type: =head2
15351 #: ../src/guestfs-actions.pod:6283
15352 msgid "guestfs_tar_in"
15353 msgstr ""
15354
15355 #. type: verbatim
15356 #: ../src/guestfs-actions.pod:6285
15357 #, no-wrap
15358 msgid ""
15359 " int\n"
15360 " guestfs_tar_in (guestfs_h *g,\n"
15361 "                 const char *tarfile,\n"
15362 "                 const char *directory);\n"
15363 "\n"
15364 msgstr ""
15365
15366 #. type: textblock
15367 #: ../src/guestfs-actions.pod:6290 ../fish/guestfish-actions.pod:4194
15368 msgid ""
15369 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
15370 "tar file) into C<directory>."
15371 msgstr ""
15372
15373 #. type: textblock
15374 #: ../src/guestfs-actions.pod:6293
15375 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
15376 msgstr ""
15377
15378 #. type: textblock
15379 #: ../src/guestfs-actions.pod:6298 ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6331 ../src/guestfs-actions.pod:6347
15380 msgid "(Added in 1.0.3)"
15381 msgstr ""
15382
15383 #. type: =head2
15384 #: ../src/guestfs-actions.pod:6300
15385 msgid "guestfs_tar_out"
15386 msgstr ""
15387
15388 #. type: verbatim
15389 #: ../src/guestfs-actions.pod:6302
15390 #, no-wrap
15391 msgid ""
15392 " int\n"
15393 " guestfs_tar_out (guestfs_h *g,\n"
15394 "                  const char *directory,\n"
15395 "                  const char *tarfile);\n"
15396 "\n"
15397 msgstr ""
15398
15399 #. type: textblock
15400 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4206
15401 msgid ""
15402 "This command packs the contents of C<directory> and downloads it to local "
15403 "file C<tarfile>."
15404 msgstr ""
15405
15406 #. type: textblock
15407 #: ../src/guestfs-actions.pod:6310
15408 msgid ""
15409 "To download a compressed tarball, use C<guestfs_tgz_out> or "
15410 "C<guestfs_txz_out>."
15411 msgstr ""
15412
15413 #. type: =head2
15414 #: ../src/guestfs-actions.pod:6317
15415 msgid "guestfs_tgz_in"
15416 msgstr ""
15417
15418 #. type: verbatim
15419 #: ../src/guestfs-actions.pod:6319
15420 #, no-wrap
15421 msgid ""
15422 " int\n"
15423 " guestfs_tgz_in (guestfs_h *g,\n"
15424 "                 const char *tarball,\n"
15425 "                 const char *directory);\n"
15426 "\n"
15427 msgstr ""
15428
15429 #. type: textblock
15430 #: ../src/guestfs-actions.pod:6324 ../fish/guestfish-actions.pod:4218
15431 msgid ""
15432 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
15433 "tar file) into C<directory>."
15434 msgstr ""
15435
15436 #. type: textblock
15437 #: ../src/guestfs-actions.pod:6327
15438 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
15439 msgstr ""
15440
15441 #. type: =head2
15442 #: ../src/guestfs-actions.pod:6333
15443 msgid "guestfs_tgz_out"
15444 msgstr ""
15445
15446 #. type: verbatim
15447 #: ../src/guestfs-actions.pod:6335
15448 #, no-wrap
15449 msgid ""
15450 " int\n"
15451 " guestfs_tgz_out (guestfs_h *g,\n"
15452 "                  const char *directory,\n"
15453 "                  const char *tarball);\n"
15454 "\n"
15455 msgstr ""
15456
15457 #. type: textblock
15458 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4229
15459 msgid ""
15460 "This command packs the contents of C<directory> and downloads it to local "
15461 "file C<tarball>."
15462 msgstr ""
15463
15464 #. type: textblock
15465 #: ../src/guestfs-actions.pod:6343
15466 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
15467 msgstr ""
15468
15469 #. type: =head2
15470 #: ../src/guestfs-actions.pod:6349
15471 msgid "guestfs_touch"
15472 msgstr ""
15473
15474 #. type: verbatim
15475 #: ../src/guestfs-actions.pod:6351
15476 #, no-wrap
15477 msgid ""
15478 " int\n"
15479 " guestfs_touch (guestfs_h *g,\n"
15480 "                const char *path);\n"
15481 "\n"
15482 msgstr ""
15483
15484 #. type: textblock
15485 #: ../src/guestfs-actions.pod:6355 ../fish/guestfish-actions.pod:4240
15486 msgid ""
15487 "Touch acts like the L<touch(1)> command.  It can be used to update the "
15488 "timestamps on a file, or, if the file does not exist, to create a new "
15489 "zero-length file."
15490 msgstr ""
15491
15492 #. type: textblock
15493 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4244
15494 msgid ""
15495 "This command only works on regular files, and will fail on other file types "
15496 "such as directories, symbolic links, block special etc."
15497 msgstr ""
15498
15499 #. type: =head2
15500 #: ../src/guestfs-actions.pod:6366
15501 msgid "guestfs_truncate"
15502 msgstr ""
15503
15504 #. type: verbatim
15505 #: ../src/guestfs-actions.pod:6368
15506 #, no-wrap
15507 msgid ""
15508 " int\n"
15509 " guestfs_truncate (guestfs_h *g,\n"
15510 "                   const char *path);\n"
15511 "\n"
15512 msgstr ""
15513
15514 #. type: textblock
15515 #: ../src/guestfs-actions.pod:6372 ../fish/guestfish-actions.pod:4251
15516 msgid ""
15517 "This command truncates C<path> to a zero-length file.  The file must exist "
15518 "already."
15519 msgstr ""
15520
15521 #. type: =head2
15522 #: ../src/guestfs-actions.pod:6379
15523 msgid "guestfs_truncate_size"
15524 msgstr ""
15525
15526 #. type: verbatim
15527 #: ../src/guestfs-actions.pod:6381
15528 #, no-wrap
15529 msgid ""
15530 " int\n"
15531 " guestfs_truncate_size (guestfs_h *g,\n"
15532 "                        const char *path,\n"
15533 "                        int64_t size);\n"
15534 "\n"
15535 msgstr ""
15536
15537 #. type: textblock
15538 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4258
15539 msgid ""
15540 "This command truncates C<path> to size C<size> bytes.  The file must exist "
15541 "already."
15542 msgstr ""
15543
15544 #. type: textblock
15545 #: ../src/guestfs-actions.pod:6389
15546 msgid ""
15547 "If the current file size is less than C<size> then the file is extended to "
15548 "the required size with zero bytes.  This creates a sparse file (ie. disk "
15549 "blocks are not allocated for the file until you write to it).  To create a "
15550 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
15551 msgstr ""
15552
15553 #. type: =head2
15554 #: ../src/guestfs-actions.pod:6399
15555 msgid "guestfs_tune2fs_l"
15556 msgstr ""
15557
15558 #. type: verbatim
15559 #: ../src/guestfs-actions.pod:6401
15560 #, no-wrap
15561 msgid ""
15562 " char **\n"
15563 " guestfs_tune2fs_l (guestfs_h *g,\n"
15564 "                    const char *device);\n"
15565 "\n"
15566 msgstr ""
15567
15568 #. type: textblock
15569 #: ../src/guestfs-actions.pod:6405 ../fish/guestfish-actions.pod:4271
15570 msgid ""
15571 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
15572 "C<device>."
15573 msgstr ""
15574
15575 #. type: textblock
15576 #: ../src/guestfs-actions.pod:6408 ../fish/guestfish-actions.pod:4274
15577 msgid ""
15578 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
15579 "for more details.  The list of fields returned isn't clearly defined, and "
15580 "depends on both the version of C<tune2fs> that libguestfs was built against, "
15581 "and the filesystem itself."
15582 msgstr ""
15583
15584 #. type: =head2
15585 #: ../src/guestfs-actions.pod:6421
15586 msgid "guestfs_txz_in"
15587 msgstr ""
15588
15589 #. type: verbatim
15590 #: ../src/guestfs-actions.pod:6423
15591 #, no-wrap
15592 msgid ""
15593 " int\n"
15594 " guestfs_txz_in (guestfs_h *g,\n"
15595 "                 const char *tarball,\n"
15596 "                 const char *directory);\n"
15597 "\n"
15598 msgstr ""
15599
15600 #. type: textblock
15601 #: ../src/guestfs-actions.pod:6428 ../fish/guestfish-actions.pod:4283
15602 msgid ""
15603 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
15604 "tar file) into C<directory>."
15605 msgstr ""
15606
15607 #. type: =head2
15608 #: ../src/guestfs-actions.pod:6435
15609 msgid "guestfs_txz_out"
15610 msgstr ""
15611
15612 #. type: verbatim
15613 #: ../src/guestfs-actions.pod:6437
15614 #, no-wrap
15615 msgid ""
15616 " int\n"
15617 " guestfs_txz_out (guestfs_h *g,\n"
15618 "                  const char *directory,\n"
15619 "                  const char *tarball);\n"
15620 "\n"
15621 msgstr ""
15622
15623 #. type: textblock
15624 #: ../src/guestfs-actions.pod:6442 ../fish/guestfish-actions.pod:4292
15625 msgid ""
15626 "This command packs the contents of C<directory> and downloads it to local "
15627 "file C<tarball> (as an xz compressed tar archive)."
15628 msgstr ""
15629
15630 #. type: =head2
15631 #: ../src/guestfs-actions.pod:6449
15632 msgid "guestfs_umask"
15633 msgstr ""
15634
15635 #. type: verbatim
15636 #: ../src/guestfs-actions.pod:6451
15637 #, no-wrap
15638 msgid ""
15639 " int\n"
15640 " guestfs_umask (guestfs_h *g,\n"
15641 "                int mask);\n"
15642 "\n"
15643 msgstr ""
15644
15645 #. type: textblock
15646 #: ../src/guestfs-actions.pod:6455 ../fish/guestfish-actions.pod:4301
15647 msgid ""
15648 "This function sets the mask used for creating new files and device nodes to "
15649 "C<mask & 0777>."
15650 msgstr ""
15651
15652 #. type: textblock
15653 #: ../src/guestfs-actions.pod:6458 ../fish/guestfish-actions.pod:4304
15654 msgid ""
15655 "Typical umask values would be C<022> which creates new files with "
15656 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
15657 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
15658 msgstr ""
15659
15660 #. type: textblock
15661 #: ../src/guestfs-actions.pod:6463 ../fish/guestfish-actions.pod:4309
15662 msgid ""
15663 "The default umask is C<022>.  This is important because it means that "
15664 "directories and device nodes will be created with C<0644> or C<0755> mode "
15665 "even if you specify C<0777>."
15666 msgstr ""
15667
15668 #. type: textblock
15669 #: ../src/guestfs-actions.pod:6467
15670 msgid ""
15671 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
15672 "C<guestfs_mkdir>."
15673 msgstr ""
15674
15675 #. type: textblock
15676 #: ../src/guestfs-actions.pod:6470 ../fish/guestfish-actions.pod:4316
15677 msgid "This call returns the previous umask."
15678 msgstr ""
15679
15680 #. type: =head2
15681 #: ../src/guestfs-actions.pod:6476
15682 msgid "guestfs_umount"
15683 msgstr ""
15684
15685 #. type: verbatim
15686 #: ../src/guestfs-actions.pod:6478
15687 #, no-wrap
15688 msgid ""
15689 " int\n"
15690 " guestfs_umount (guestfs_h *g,\n"
15691 "                 const char *pathordevice);\n"
15692 "\n"
15693 msgstr ""
15694
15695 #. type: textblock
15696 #: ../src/guestfs-actions.pod:6482 ../fish/guestfish-actions.pod:4324
15697 msgid ""
15698 "This unmounts the given filesystem.  The filesystem may be specified either "
15699 "by its mountpoint (path) or the device which contains the filesystem."
15700 msgstr ""
15701
15702 #. type: =head2
15703 #: ../src/guestfs-actions.pod:6490
15704 msgid "guestfs_umount_all"
15705 msgstr ""
15706
15707 #. type: verbatim
15708 #: ../src/guestfs-actions.pod:6492
15709 #, no-wrap
15710 msgid ""
15711 " int\n"
15712 " guestfs_umount_all (guestfs_h *g);\n"
15713 "\n"
15714 msgstr ""
15715
15716 #. type: textblock
15717 #: ../src/guestfs-actions.pod:6495 ../fish/guestfish-actions.pod:4334
15718 msgid "This unmounts all mounted filesystems."
15719 msgstr ""
15720
15721 #. type: textblock
15722 #: ../src/guestfs-actions.pod:6497 ../fish/guestfish-actions.pod:4336
15723 msgid "Some internal mounts are not unmounted by this call."
15724 msgstr ""
15725
15726 #. type: =head2
15727 #: ../src/guestfs-actions.pod:6503
15728 msgid "guestfs_upload"
15729 msgstr ""
15730
15731 #. type: verbatim
15732 #: ../src/guestfs-actions.pod:6505
15733 #, no-wrap
15734 msgid ""
15735 " int\n"
15736 " guestfs_upload (guestfs_h *g,\n"
15737 "                 const char *filename,\n"
15738 "                 const char *remotefilename);\n"
15739 "\n"
15740 msgstr ""
15741
15742 #. type: textblock
15743 #: ../src/guestfs-actions.pod:6510 ../src/guestfs-actions.pod:6534 ../fish/guestfish-actions.pod:4342 ../fish/guestfish-actions.pod:4355
15744 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
15745 msgstr ""
15746
15747 #. type: textblock
15748 #: ../src/guestfs-actions.pod:6515
15749 msgid "See also C<guestfs_download>."
15750 msgstr ""
15751
15752 #. type: =head2
15753 #: ../src/guestfs-actions.pod:6526
15754 msgid "guestfs_upload_offset"
15755 msgstr ""
15756
15757 #. type: verbatim
15758 #: ../src/guestfs-actions.pod:6528
15759 #, no-wrap
15760 msgid ""
15761 " int\n"
15762 " guestfs_upload_offset (guestfs_h *g,\n"
15763 "                        const char *filename,\n"
15764 "                        const char *remotefilename,\n"
15765 "                        int64_t offset);\n"
15766 "\n"
15767 msgstr ""
15768
15769 #. type: textblock
15770 #: ../src/guestfs-actions.pod:6537 ../fish/guestfish-actions.pod:4358
15771 msgid ""
15772 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
15773 "The intention is to overwrite parts of existing files or devices, although "
15774 "if a non-existant file is specified then it is created with a \"hole\" "
15775 "before C<offset>.  The size of the data written is implicit in the size of "
15776 "the source C<filename>."
15777 msgstr ""
15778
15779 #. type: textblock
15780 #: ../src/guestfs-actions.pod:6544
15781 msgid ""
15782 "Note that there is no limit on the amount of data that can be uploaded with "
15783 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
15784 "full amount unless an error occurs."
15785 msgstr ""
15786
15787 #. type: textblock
15788 #: ../src/guestfs-actions.pod:6549
15789 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
15790 msgstr ""
15791
15792 #. type: =head2
15793 #: ../src/guestfs-actions.pod:6560
15794 msgid "guestfs_utimens"
15795 msgstr ""
15796
15797 #. type: verbatim
15798 #: ../src/guestfs-actions.pod:6562
15799 #, no-wrap
15800 msgid ""
15801 " int\n"
15802 " guestfs_utimens (guestfs_h *g,\n"
15803 "                  const char *path,\n"
15804 "                  int64_t atsecs,\n"
15805 "                  int64_t atnsecs,\n"
15806 "                  int64_t mtsecs,\n"
15807 "                  int64_t mtnsecs);\n"
15808 "\n"
15809 msgstr ""
15810
15811 #. type: textblock
15812 #: ../src/guestfs-actions.pod:6570 ../fish/guestfish-actions.pod:4378
15813 msgid "This command sets the timestamps of a file with nanosecond precision."
15814 msgstr ""
15815
15816 #. type: textblock
15817 #: ../src/guestfs-actions.pod:6573 ../fish/guestfish-actions.pod:4381
15818 msgid ""
15819 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
15820 "from the epoch."
15821 msgstr ""
15822
15823 #. type: textblock
15824 #: ../src/guestfs-actions.pod:6576 ../fish/guestfish-actions.pod:4384
15825 msgid ""
15826 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
15827 "nanoseconds from the epoch."
15828 msgstr ""
15829
15830 #. type: textblock
15831 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4387
15832 msgid ""
15833 "If the C<*nsecs> field contains the special value C<-1> then the "
15834 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
15835 "ignored in this case)."
15836 msgstr ""
15837
15838 #. type: textblock
15839 #: ../src/guestfs-actions.pod:6583 ../fish/guestfish-actions.pod:4391
15840 msgid ""
15841 "If the C<*nsecs> field contains the special value C<-2> then the "
15842 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
15843 "in this case)."
15844 msgstr ""
15845
15846 #. type: =head2
15847 #: ../src/guestfs-actions.pod:6591 ../src/guestfs-structs.pod:175
15848 msgid "guestfs_version"
15849 msgstr ""
15850
15851 #. type: verbatim
15852 #: ../src/guestfs-actions.pod:6593
15853 #, no-wrap
15854 msgid ""
15855 " struct guestfs_version *\n"
15856 " guestfs_version (guestfs_h *g);\n"
15857 "\n"
15858 msgstr ""
15859
15860 #. type: textblock
15861 #: ../src/guestfs-actions.pod:6596 ../fish/guestfish-actions.pod:4399
15862 msgid "Return the libguestfs version number that the program is linked against."
15863 msgstr ""
15864
15865 #. type: textblock
15866 #: ../src/guestfs-actions.pod:6599 ../fish/guestfish-actions.pod:4402
15867 msgid ""
15868 "Note that because of dynamic linking this is not necessarily the version of "
15869 "libguestfs that you compiled against.  You can compile the program, and then "
15870 "at runtime dynamically link against a completely different C<libguestfs.so> "
15871 "library."
15872 msgstr ""
15873
15874 #. type: textblock
15875 #: ../src/guestfs-actions.pod:6604 ../fish/guestfish-actions.pod:4407
15876 msgid ""
15877 "This call was added in version C<1.0.58>.  In previous versions of "
15878 "libguestfs there was no way to get the version number.  From C code you can "
15879 "use dynamic linker functions to find out if this symbol exists (if it "
15880 "doesn't, then it's an earlier version)."
15881 msgstr ""
15882
15883 #. type: textblock
15884 #: ../src/guestfs-actions.pod:6610 ../fish/guestfish-actions.pod:4413
15885 msgid ""
15886 "The call returns a structure with four elements.  The first three (C<major>, "
15887 "C<minor> and C<release>) are numbers and correspond to the usual version "
15888 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
15889 "but may be used for distro-specific information."
15890 msgstr ""
15891
15892 #. type: textblock
15893 #: ../src/guestfs-actions.pod:6616 ../fish/guestfish-actions.pod:4419
15894 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
15895 msgstr ""
15896
15897 #. type: textblock
15898 #: ../src/guestfs-actions.pod:6619 ../fish/guestfish-actions.pod:4422
15899 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
15900 msgstr ""
15901
15902 #. type: textblock
15903 #: ../src/guestfs-actions.pod:6621
15904 msgid ""
15905 "I<Note:> Don't use this call to test for availability of features.  In "
15906 "enterprise distributions we backport features from later versions into "
15907 "earlier versions, making this an unreliable way to test for features.  Use "
15908 "C<guestfs_available> instead."
15909 msgstr ""
15910
15911 #. type: textblock
15912 #: ../src/guestfs-actions.pod:6627
15913 msgid ""
15914 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
15915 "error.  I<The caller must call C<guestfs_free_version> after use>."
15916 msgstr ""
15917
15918 #. type: textblock
15919 #: ../src/guestfs-actions.pod:6631
15920 msgid "(Added in 1.0.58)"
15921 msgstr ""
15922
15923 #. type: =head2
15924 #: ../src/guestfs-actions.pod:6633
15925 msgid "guestfs_vfs_label"
15926 msgstr ""
15927
15928 #. type: verbatim
15929 #: ../src/guestfs-actions.pod:6635
15930 #, no-wrap
15931 msgid ""
15932 " char *\n"
15933 " guestfs_vfs_label (guestfs_h *g,\n"
15934 "                    const char *device);\n"
15935 "\n"
15936 msgstr ""
15937
15938 #. type: textblock
15939 #: ../src/guestfs-actions.pod:6639 ../fish/guestfish-actions.pod:4434
15940 msgid "This returns the filesystem label of the filesystem on C<device>."
15941 msgstr ""
15942
15943 #. type: textblock
15944 #: ../src/guestfs-actions.pod:6642 ../fish/guestfish-actions.pod:4437
15945 msgid "If the filesystem is unlabeled, this returns the empty string."
15946 msgstr ""
15947
15948 #. type: textblock
15949 #: ../src/guestfs-actions.pod:6644
15950 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
15951 msgstr ""
15952
15953 #. type: textblock
15954 #: ../src/guestfs-actions.pod:6649 ../src/guestfs-actions.pod:6686
15955 msgid "(Added in 1.3.18)"
15956 msgstr ""
15957
15958 #. type: =head2
15959 #: ../src/guestfs-actions.pod:6651
15960 msgid "guestfs_vfs_type"
15961 msgstr ""
15962
15963 #. type: verbatim
15964 #: ../src/guestfs-actions.pod:6653
15965 #, no-wrap
15966 msgid ""
15967 " char *\n"
15968 " guestfs_vfs_type (guestfs_h *g,\n"
15969 "                   const char *device);\n"
15970 "\n"
15971 msgstr ""
15972
15973 #. type: textblock
15974 #: ../src/guestfs-actions.pod:6657 ../fish/guestfish-actions.pod:4445
15975 msgid ""
15976 "This command gets the filesystem type corresponding to the filesystem on "
15977 "C<device>."
15978 msgstr ""
15979
15980 #. type: textblock
15981 #: ../src/guestfs-actions.pod:6660 ../fish/guestfish-actions.pod:4448
15982 msgid ""
15983 "For most filesystems, the result is the name of the Linux VFS module which "
15984 "would be used to mount this filesystem if you mounted it without specifying "
15985 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
15986 msgstr ""
15987
15988 #. type: =head2
15989 #: ../src/guestfs-actions.pod:6670
15990 msgid "guestfs_vfs_uuid"
15991 msgstr ""
15992
15993 #. type: verbatim
15994 #: ../src/guestfs-actions.pod:6672
15995 #, no-wrap
15996 msgid ""
15997 " char *\n"
15998 " guestfs_vfs_uuid (guestfs_h *g,\n"
15999 "                   const char *device);\n"
16000 "\n"
16001 msgstr ""
16002
16003 #. type: textblock
16004 #: ../src/guestfs-actions.pod:6676 ../fish/guestfish-actions.pod:4457
16005 msgid "This returns the filesystem UUID of the filesystem on C<device>."
16006 msgstr ""
16007
16008 #. type: textblock
16009 #: ../src/guestfs-actions.pod:6679 ../fish/guestfish-actions.pod:4460
16010 msgid "If the filesystem does not have a UUID, this returns the empty string."
16011 msgstr ""
16012
16013 #. type: textblock
16014 #: ../src/guestfs-actions.pod:6681
16015 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
16016 msgstr ""
16017
16018 #. type: =head2
16019 #: ../src/guestfs-actions.pod:6688
16020 msgid "guestfs_vg_activate"
16021 msgstr ""
16022
16023 #. type: verbatim
16024 #: ../src/guestfs-actions.pod:6690
16025 #, no-wrap
16026 msgid ""
16027 " int\n"
16028 " guestfs_vg_activate (guestfs_h *g,\n"
16029 "                      int activate,\n"
16030 "                      char *const *volgroups);\n"
16031 "\n"
16032 msgstr ""
16033
16034 #. type: textblock
16035 #: ../src/guestfs-actions.pod:6695 ../fish/guestfish-actions.pod:4468
16036 msgid ""
16037 "This command activates or (if C<activate> is false) deactivates all logical "
16038 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
16039 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
16040 "deactivated, then those devices disappear."
16041 msgstr ""
16042
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:6701 ../fish/guestfish-actions.pod:4474
16045 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
16046 msgstr ""
16047
16048 #. type: textblock
16049 #: ../src/guestfs-actions.pod:6703 ../fish/guestfish-actions.pod:4476
16050 msgid ""
16051 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
16052 "activated or deactivated."
16053 msgstr ""
16054
16055 #. type: =head2
16056 #: ../src/guestfs-actions.pod:6710
16057 msgid "guestfs_vg_activate_all"
16058 msgstr ""
16059
16060 #. type: verbatim
16061 #: ../src/guestfs-actions.pod:6712
16062 #, no-wrap
16063 msgid ""
16064 " int\n"
16065 " guestfs_vg_activate_all (guestfs_h *g,\n"
16066 "                          int activate);\n"
16067 "\n"
16068 msgstr ""
16069
16070 #. type: textblock
16071 #: ../src/guestfs-actions.pod:6716 ../fish/guestfish-actions.pod:4483
16072 msgid ""
16073 "This command activates or (if C<activate> is false) deactivates all logical "
16074 "volumes in all volume groups.  If activated, then they are made known to the "
16075 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
16076 "those devices disappear."
16077 msgstr ""
16078
16079 #. type: textblock
16080 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4489
16081 msgid "This command is the same as running C<vgchange -a y|n>"
16082 msgstr ""
16083
16084 #. type: =head2
16085 #: ../src/guestfs-actions.pod:6728
16086 msgid "guestfs_vgcreate"
16087 msgstr ""
16088
16089 #. type: verbatim
16090 #: ../src/guestfs-actions.pod:6730
16091 #, no-wrap
16092 msgid ""
16093 " int\n"
16094 " guestfs_vgcreate (guestfs_h *g,\n"
16095 "                   const char *volgroup,\n"
16096 "                   char *const *physvols);\n"
16097 "\n"
16098 msgstr ""
16099
16100 #. type: textblock
16101 #: ../src/guestfs-actions.pod:6735 ../fish/guestfish-actions.pod:4495
16102 msgid ""
16103 "This creates an LVM volume group called C<volgroup> from the non-empty list "
16104 "of physical volumes C<physvols>."
16105 msgstr ""
16106
16107 #. type: =head2
16108 #: ../src/guestfs-actions.pod:6742
16109 msgid "guestfs_vglvuuids"
16110 msgstr ""
16111
16112 #. type: verbatim
16113 #: ../src/guestfs-actions.pod:6744
16114 #, no-wrap
16115 msgid ""
16116 " char **\n"
16117 " guestfs_vglvuuids (guestfs_h *g,\n"
16118 "                    const char *vgname);\n"
16119 "\n"
16120 msgstr ""
16121
16122 #. type: textblock
16123 #: ../src/guestfs-actions.pod:6748 ../fish/guestfish-actions.pod:4502
16124 msgid ""
16125 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
16126 "volumes created in this volume group."
16127 msgstr ""
16128
16129 #. type: textblock
16130 #: ../src/guestfs-actions.pod:6751
16131 msgid ""
16132 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
16133 "associate logical volumes and volume groups."
16134 msgstr ""
16135
16136 #. type: textblock
16137 #: ../src/guestfs-actions.pod:6754
16138 msgid "See also C<guestfs_vgpvuuids>."
16139 msgstr ""
16140
16141 #. type: =head2
16142 #: ../src/guestfs-actions.pod:6762
16143 msgid "guestfs_vgpvuuids"
16144 msgstr ""
16145
16146 #. type: verbatim
16147 #: ../src/guestfs-actions.pod:6764
16148 #, no-wrap
16149 msgid ""
16150 " char **\n"
16151 " guestfs_vgpvuuids (guestfs_h *g,\n"
16152 "                    const char *vgname);\n"
16153 "\n"
16154 msgstr ""
16155
16156 #. type: textblock
16157 #: ../src/guestfs-actions.pod:6768 ../fish/guestfish-actions.pod:4514
16158 msgid ""
16159 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
16160 "volumes that this volume group resides on."
16161 msgstr ""
16162
16163 #. type: textblock
16164 #: ../src/guestfs-actions.pod:6771
16165 msgid ""
16166 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
16167 "associate physical volumes and volume groups."
16168 msgstr ""
16169
16170 #. type: textblock
16171 #: ../src/guestfs-actions.pod:6774
16172 msgid "See also C<guestfs_vglvuuids>."
16173 msgstr ""
16174
16175 #. type: =head2
16176 #: ../src/guestfs-actions.pod:6782
16177 msgid "guestfs_vgremove"
16178 msgstr ""
16179
16180 #. type: verbatim
16181 #: ../src/guestfs-actions.pod:6784
16182 #, no-wrap
16183 msgid ""
16184 " int\n"
16185 " guestfs_vgremove (guestfs_h *g,\n"
16186 "                   const char *vgname);\n"
16187 "\n"
16188 msgstr ""
16189
16190 #. type: textblock
16191 #: ../src/guestfs-actions.pod:6788 ../fish/guestfish-actions.pod:4526
16192 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
16193 msgstr ""
16194
16195 #. type: textblock
16196 #: ../src/guestfs-actions.pod:6790 ../fish/guestfish-actions.pod:4528
16197 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
16198 msgstr ""
16199
16200 #. type: =head2
16201 #: ../src/guestfs-actions.pod:6797
16202 msgid "guestfs_vgrename"
16203 msgstr ""
16204
16205 #. type: verbatim
16206 #: ../src/guestfs-actions.pod:6799
16207 #, no-wrap
16208 msgid ""
16209 " int\n"
16210 " guestfs_vgrename (guestfs_h *g,\n"
16211 "                   const char *volgroup,\n"
16212 "                   const char *newvolgroup);\n"
16213 "\n"
16214 msgstr ""
16215
16216 #. type: textblock
16217 #: ../src/guestfs-actions.pod:6804 ../fish/guestfish-actions.pod:4535
16218 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
16219 msgstr ""
16220
16221 #. type: =head2
16222 #: ../src/guestfs-actions.pod:6810
16223 msgid "guestfs_vgs"
16224 msgstr ""
16225
16226 #. type: verbatim
16227 #: ../src/guestfs-actions.pod:6812
16228 #, no-wrap
16229 msgid ""
16230 " char **\n"
16231 " guestfs_vgs (guestfs_h *g);\n"
16232 "\n"
16233 msgstr ""
16234
16235 #. type: textblock
16236 #: ../src/guestfs-actions.pod:6815 ../fish/guestfish-actions.pod:4541
16237 msgid ""
16238 "List all the volumes groups detected.  This is the equivalent of the "
16239 "L<vgs(8)> command."
16240 msgstr ""
16241
16242 #. type: textblock
16243 #: ../src/guestfs-actions.pod:6818 ../fish/guestfish-actions.pod:4544
16244 msgid ""
16245 "This returns a list of just the volume group names that were detected "
16246 "(eg. C<VolGroup00>)."
16247 msgstr ""
16248
16249 #. type: textblock
16250 #: ../src/guestfs-actions.pod:6821
16251 msgid "See also C<guestfs_vgs_full>."
16252 msgstr ""
16253
16254 #. type: =head2
16255 #: ../src/guestfs-actions.pod:6829
16256 msgid "guestfs_vgs_full"
16257 msgstr ""
16258
16259 #. type: verbatim
16260 #: ../src/guestfs-actions.pod:6831
16261 #, no-wrap
16262 msgid ""
16263 " struct guestfs_lvm_vg_list *\n"
16264 " guestfs_vgs_full (guestfs_h *g);\n"
16265 "\n"
16266 msgstr ""
16267
16268 #. type: textblock
16269 #: ../src/guestfs-actions.pod:6834 ../fish/guestfish-actions.pod:4553
16270 msgid ""
16271 "List all the volumes groups detected.  This is the equivalent of the "
16272 "L<vgs(8)> command.  The \"full\" version includes all fields."
16273 msgstr ""
16274
16275 #. type: textblock
16276 #: ../src/guestfs-actions.pod:6837
16277 msgid ""
16278 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
16279 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
16280 "use>."
16281 msgstr ""
16282
16283 #. type: =head2
16284 #: ../src/guestfs-actions.pod:6843
16285 msgid "guestfs_vgscan"
16286 msgstr ""
16287
16288 #. type: verbatim
16289 #: ../src/guestfs-actions.pod:6845
16290 #, no-wrap
16291 msgid ""
16292 " int\n"
16293 " guestfs_vgscan (guestfs_h *g);\n"
16294 "\n"
16295 msgstr ""
16296
16297 #. type: textblock
16298 #: ../src/guestfs-actions.pod:6848 ../fish/guestfish-actions.pod:4560
16299 msgid ""
16300 "This rescans all block devices and rebuilds the list of LVM physical "
16301 "volumes, volume groups and logical volumes."
16302 msgstr ""
16303
16304 #. type: =head2
16305 #: ../src/guestfs-actions.pod:6855
16306 msgid "guestfs_vguuid"
16307 msgstr ""
16308
16309 #. type: verbatim
16310 #: ../src/guestfs-actions.pod:6857
16311 #, no-wrap
16312 msgid ""
16313 " char *\n"
16314 " guestfs_vguuid (guestfs_h *g,\n"
16315 "                 const char *vgname);\n"
16316 "\n"
16317 msgstr ""
16318
16319 #. type: textblock
16320 #: ../src/guestfs-actions.pod:6861 ../fish/guestfish-actions.pod:4567
16321 msgid "This command returns the UUID of the LVM VG named C<vgname>."
16322 msgstr ""
16323
16324 #. type: =head2
16325 #: ../src/guestfs-actions.pod:6868
16326 msgid "guestfs_wait_ready"
16327 msgstr ""
16328
16329 #. type: verbatim
16330 #: ../src/guestfs-actions.pod:6870
16331 #, no-wrap
16332 msgid ""
16333 " int\n"
16334 " guestfs_wait_ready (guestfs_h *g);\n"
16335 "\n"
16336 msgstr ""
16337
16338 #. type: textblock
16339 #: ../src/guestfs-actions.pod:6873
16340 msgid "This function is a no op."
16341 msgstr ""
16342
16343 #. type: textblock
16344 #: ../src/guestfs-actions.pod:6875
16345 msgid ""
16346 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
16347 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
16348 "is no longer necessary because C<guestfs_launch> now does the waiting."
16349 msgstr ""
16350
16351 #. type: textblock
16352 #: ../src/guestfs-actions.pod:6880
16353 msgid ""
16354 "If you see any calls to this function in code then you can just remove them, "
16355 "unless you want to retain compatibility with older versions of the API."
16356 msgstr ""
16357
16358 #. type: =head2
16359 #: ../src/guestfs-actions.pod:6888
16360 msgid "guestfs_wc_c"
16361 msgstr ""
16362
16363 #. type: verbatim
16364 #: ../src/guestfs-actions.pod:6890
16365 #, no-wrap
16366 msgid ""
16367 " int\n"
16368 " guestfs_wc_c (guestfs_h *g,\n"
16369 "               const char *path);\n"
16370 "\n"
16371 msgstr ""
16372
16373 #. type: textblock
16374 #: ../src/guestfs-actions.pod:6894 ../fish/guestfish-actions.pod:4573
16375 msgid ""
16376 "This command counts the characters in a file, using the C<wc -c> external "
16377 "command."
16378 msgstr ""
16379
16380 #. type: =head2
16381 #: ../src/guestfs-actions.pod:6901
16382 msgid "guestfs_wc_l"
16383 msgstr ""
16384
16385 #. type: verbatim
16386 #: ../src/guestfs-actions.pod:6903
16387 #, no-wrap
16388 msgid ""
16389 " int\n"
16390 " guestfs_wc_l (guestfs_h *g,\n"
16391 "               const char *path);\n"
16392 "\n"
16393 msgstr ""
16394
16395 #. type: textblock
16396 #: ../src/guestfs-actions.pod:6907 ../fish/guestfish-actions.pod:4580
16397 msgid ""
16398 "This command counts the lines in a file, using the C<wc -l> external "
16399 "command."
16400 msgstr ""
16401
16402 #. type: =head2
16403 #: ../src/guestfs-actions.pod:6914
16404 msgid "guestfs_wc_w"
16405 msgstr ""
16406
16407 #. type: verbatim
16408 #: ../src/guestfs-actions.pod:6916
16409 #, no-wrap
16410 msgid ""
16411 " int\n"
16412 " guestfs_wc_w (guestfs_h *g,\n"
16413 "               const char *path);\n"
16414 "\n"
16415 msgstr ""
16416
16417 #. type: textblock
16418 #: ../src/guestfs-actions.pod:6920 ../fish/guestfish-actions.pod:4587
16419 msgid ""
16420 "This command counts the words in a file, using the C<wc -w> external "
16421 "command."
16422 msgstr ""
16423
16424 #. type: =head2
16425 #: ../src/guestfs-actions.pod:6927
16426 msgid "guestfs_write"
16427 msgstr ""
16428
16429 #. type: verbatim
16430 #: ../src/guestfs-actions.pod:6929
16431 #, no-wrap
16432 msgid ""
16433 " int\n"
16434 " guestfs_write (guestfs_h *g,\n"
16435 "                const char *path,\n"
16436 "                const char *content,\n"
16437 "                size_t content_size);\n"
16438 "\n"
16439 msgstr ""
16440
16441 #. type: textblock
16442 #: ../src/guestfs-actions.pod:6935 ../fish/guestfish-actions.pod:4594
16443 msgid ""
16444 "This call creates a file called C<path>.  The content of the file is the "
16445 "string C<content> (which can contain any 8 bit data)."
16446 msgstr ""
16447
16448 #. type: =head2
16449 #: ../src/guestfs-actions.pod:6945
16450 msgid "guestfs_write_file"
16451 msgstr ""
16452
16453 #. type: verbatim
16454 #: ../src/guestfs-actions.pod:6947
16455 #, no-wrap
16456 msgid ""
16457 " int\n"
16458 " guestfs_write_file (guestfs_h *g,\n"
16459 "                     const char *path,\n"
16460 "                     const char *content,\n"
16461 "                     int size);\n"
16462 "\n"
16463 msgstr ""
16464
16465 #. type: textblock
16466 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4604
16467 msgid ""
16468 "This call creates a file called C<path>.  The contents of the file is the "
16469 "string C<content> (which can contain any 8 bit data), with length C<size>."
16470 msgstr ""
16471
16472 #. type: textblock
16473 #: ../src/guestfs-actions.pod:6957 ../fish/guestfish-actions.pod:4608
16474 msgid ""
16475 "As a special case, if C<size> is C<0> then the length is calculated using "
16476 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
16477 msgstr ""
16478
16479 #. type: textblock
16480 #: ../src/guestfs-actions.pod:6961 ../fish/guestfish-actions.pod:4612
16481 msgid ""
16482 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
16483 "I<not> work, even if the length is specified."
16484 msgstr ""
16485
16486 #. type: textblock
16487 #: ../src/guestfs-actions.pod:6969 ../fish/guestfish-actions.pod:4618
16488 msgid "This function is deprecated.  In new code, use the C<write> call instead."
16489 msgstr ""
16490
16491 #. type: =head2
16492 #: ../src/guestfs-actions.pod:6978
16493 msgid "guestfs_zegrep"
16494 msgstr ""
16495
16496 #. type: verbatim
16497 #: ../src/guestfs-actions.pod:6980
16498 #, no-wrap
16499 msgid ""
16500 " char **\n"
16501 " guestfs_zegrep (guestfs_h *g,\n"
16502 "                 const char *regex,\n"
16503 "                 const char *path);\n"
16504 "\n"
16505 msgstr ""
16506
16507 #. type: textblock
16508 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4629
16509 msgid "This calls the external C<zegrep> program and returns the matching lines."
16510 msgstr ""
16511
16512 #. type: =head2
16513 #: ../src/guestfs-actions.pod:6997
16514 msgid "guestfs_zegrepi"
16515 msgstr ""
16516
16517 #. type: verbatim
16518 #: ../src/guestfs-actions.pod:6999
16519 #, no-wrap
16520 msgid ""
16521 " char **\n"
16522 " guestfs_zegrepi (guestfs_h *g,\n"
16523 "                  const char *regex,\n"
16524 "                  const char *path);\n"
16525 "\n"
16526 msgstr ""
16527
16528 #. type: textblock
16529 #: ../src/guestfs-actions.pod:7004 ../fish/guestfish-actions.pod:4639
16530 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
16531 msgstr ""
16532
16533 #. type: =head2
16534 #: ../src/guestfs-actions.pod:7016
16535 msgid "guestfs_zero"
16536 msgstr ""
16537
16538 #. type: verbatim
16539 #: ../src/guestfs-actions.pod:7018
16540 #, no-wrap
16541 msgid ""
16542 " int\n"
16543 " guestfs_zero (guestfs_h *g,\n"
16544 "               const char *device);\n"
16545 "\n"
16546 msgstr ""
16547
16548 #. type: textblock
16549 #: ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:4649
16550 msgid "This command writes zeroes over the first few blocks of C<device>."
16551 msgstr ""
16552
16553 #. type: textblock
16554 #: ../src/guestfs-actions.pod:7024 ../fish/guestfish-actions.pod:4651
16555 msgid ""
16556 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
16557 "securely wipe the device).  It should be sufficient to remove any partition "
16558 "tables, filesystem superblocks and so on."
16559 msgstr ""
16560
16561 #. type: textblock
16562 #: ../src/guestfs-actions.pod:7028
16563 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
16564 msgstr ""
16565
16566 #. type: =head2
16567 #: ../src/guestfs-actions.pod:7039
16568 msgid "guestfs_zero_device"
16569 msgstr ""
16570
16571 #. type: verbatim
16572 #: ../src/guestfs-actions.pod:7041
16573 #, no-wrap
16574 msgid ""
16575 " int\n"
16576 " guestfs_zero_device (guestfs_h *g,\n"
16577 "                      const char *device);\n"
16578 "\n"
16579 msgstr ""
16580
16581 #. type: textblock
16582 #: ../src/guestfs-actions.pod:7045
16583 msgid ""
16584 "This command writes zeroes over the entire C<device>.  Compare with "
16585 "C<guestfs_zero> which just zeroes the first few blocks of a device."
16586 msgstr ""
16587
16588 #. type: textblock
16589 #: ../src/guestfs-actions.pod:7059
16590 msgid "(Added in 1.3.1)"
16591 msgstr ""
16592
16593 #. type: =head2
16594 #: ../src/guestfs-actions.pod:7061
16595 msgid "guestfs_zerofree"
16596 msgstr ""
16597
16598 #. type: verbatim
16599 #: ../src/guestfs-actions.pod:7063
16600 #, no-wrap
16601 msgid ""
16602 " int\n"
16603 " guestfs_zerofree (guestfs_h *g,\n"
16604 "                   const char *device);\n"
16605 "\n"
16606 msgstr ""
16607
16608 #. type: textblock
16609 #: ../src/guestfs-actions.pod:7067 ../fish/guestfish-actions.pod:4672
16610 msgid ""
16611 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
16612 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
16613 "possible to compress the filesystem more effectively."
16614 msgstr ""
16615
16616 #. type: textblock
16617 #: ../src/guestfs-actions.pod:7072 ../fish/guestfish-actions.pod:4677
16618 msgid "You should B<not> run this program if the filesystem is mounted."
16619 msgstr ""
16620
16621 #. type: textblock
16622 #: ../src/guestfs-actions.pod:7075 ../fish/guestfish-actions.pod:4680
16623 msgid ""
16624 "It is possible that using this program can damage the filesystem or data on "
16625 "the filesystem."
16626 msgstr ""
16627
16628 #. type: =head2
16629 #: ../src/guestfs-actions.pod:7082
16630 msgid "guestfs_zfgrep"
16631 msgstr ""
16632
16633 #. type: verbatim
16634 #: ../src/guestfs-actions.pod:7084
16635 #, no-wrap
16636 msgid ""
16637 " char **\n"
16638 " guestfs_zfgrep (guestfs_h *g,\n"
16639 "                 const char *pattern,\n"
16640 "                 const char *path);\n"
16641 "\n"
16642 msgstr ""
16643
16644 #. type: textblock
16645 #: ../src/guestfs-actions.pod:7089 ../fish/guestfish-actions.pod:4687
16646 msgid "This calls the external C<zfgrep> program and returns the matching lines."
16647 msgstr ""
16648
16649 #. type: =head2
16650 #: ../src/guestfs-actions.pod:7101
16651 msgid "guestfs_zfgrepi"
16652 msgstr ""
16653
16654 #. type: verbatim
16655 #: ../src/guestfs-actions.pod:7103
16656 #, no-wrap
16657 msgid ""
16658 " char **\n"
16659 " guestfs_zfgrepi (guestfs_h *g,\n"
16660 "                  const char *pattern,\n"
16661 "                  const char *path);\n"
16662 "\n"
16663 msgstr ""
16664
16665 #. type: textblock
16666 #: ../src/guestfs-actions.pod:7108 ../fish/guestfish-actions.pod:4697
16667 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
16668 msgstr ""
16669
16670 #. type: =head2
16671 #: ../src/guestfs-actions.pod:7120
16672 msgid "guestfs_zfile"
16673 msgstr ""
16674
16675 #. type: verbatim
16676 #: ../src/guestfs-actions.pod:7122
16677 #, no-wrap
16678 msgid ""
16679 " char *\n"
16680 " guestfs_zfile (guestfs_h *g,\n"
16681 "                const char *meth,\n"
16682 "                const char *path);\n"
16683 "\n"
16684 msgstr ""
16685
16686 #. type: textblock
16687 #: ../src/guestfs-actions.pod:7127 ../fish/guestfish-actions.pod:4707
16688 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
16689 msgstr ""
16690
16691 #. type: textblock
16692 #: ../src/guestfs-actions.pod:7130 ../fish/guestfish-actions.pod:4710
16693 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
16694 msgstr ""
16695
16696 #. type: textblock
16697 #: ../src/guestfs-actions.pod:7132
16698 msgid ""
16699 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
16700 "files."
16701 msgstr ""
16702
16703 #. type: textblock
16704 #: ../src/guestfs-actions.pod:7138 ../fish/guestfish-actions.pod:4715
16705 msgid "This function is deprecated.  In new code, use the C<file> call instead."
16706 msgstr ""
16707
16708 #. type: =head2
16709 #: ../src/guestfs-actions.pod:7147
16710 msgid "guestfs_zgrep"
16711 msgstr ""
16712
16713 #. type: verbatim
16714 #: ../src/guestfs-actions.pod:7149
16715 #, no-wrap
16716 msgid ""
16717 " char **\n"
16718 " guestfs_zgrep (guestfs_h *g,\n"
16719 "                const char *regex,\n"
16720 "                const char *path);\n"
16721 "\n"
16722 msgstr ""
16723
16724 #. type: textblock
16725 #: ../src/guestfs-actions.pod:7154 ../fish/guestfish-actions.pod:4726
16726 msgid "This calls the external C<zgrep> program and returns the matching lines."
16727 msgstr ""
16728
16729 #. type: =head2
16730 #: ../src/guestfs-actions.pod:7166
16731 msgid "guestfs_zgrepi"
16732 msgstr ""
16733
16734 #. type: verbatim
16735 #: ../src/guestfs-actions.pod:7168
16736 #, no-wrap
16737 msgid ""
16738 " char **\n"
16739 " guestfs_zgrepi (guestfs_h *g,\n"
16740 "                 const char *regex,\n"
16741 "                 const char *path);\n"
16742 "\n"
16743 msgstr ""
16744
16745 #. type: textblock
16746 #: ../src/guestfs-actions.pod:7173 ../fish/guestfish-actions.pod:4736
16747 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
16748 msgstr ""
16749
16750 #. type: =item
16751 #: ../src/guestfs-availability.pod:3
16752 msgid "B<augeas>"
16753 msgstr ""
16754
16755 #. type: textblock
16756 #: ../src/guestfs-availability.pod:5
16757 msgid ""
16758 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
16759 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
16760 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
16761 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
16762 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
16763 msgstr ""
16764
16765 #. type: =item
16766 #: ../src/guestfs-availability.pod:21
16767 msgid "B<inotify>"
16768 msgstr ""
16769
16770 #. type: textblock
16771 #: ../src/guestfs-availability.pod:23
16772 msgid ""
16773 "The following functions: L</guestfs_inotify_add_watch> "
16774 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
16775 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
16776 msgstr ""
16777
16778 #. type: =item
16779 #: ../src/guestfs-availability.pod:31
16780 msgid "B<linuxfsuuid>"
16781 msgstr ""
16782
16783 #. type: textblock
16784 #: ../src/guestfs-availability.pod:33
16785 msgid ""
16786 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
16787 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
16788 msgstr ""
16789
16790 #. type: =item
16791 #: ../src/guestfs-availability.pod:40
16792 msgid "B<linuxmodules>"
16793 msgstr ""
16794
16795 #. type: textblock
16796 #: ../src/guestfs-availability.pod:42
16797 msgid "The following functions: L</guestfs_modprobe>"
16798 msgstr ""
16799
16800 #. type: =item
16801 #: ../src/guestfs-availability.pod:45
16802 msgid "B<linuxxattrs>"
16803 msgstr ""
16804
16805 #. type: textblock
16806 #: ../src/guestfs-availability.pod:47
16807 msgid ""
16808 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
16809 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
16810 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
16811 "L</guestfs_setxattr>"
16812 msgstr ""
16813
16814 #. type: =item
16815 #: ../src/guestfs-availability.pod:58
16816 msgid "B<luks>"
16817 msgstr ""
16818
16819 #. type: textblock
16820 #: ../src/guestfs-availability.pod:60
16821 msgid ""
16822 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
16823 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
16824 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
16825 msgstr ""
16826
16827 #. type: =item
16828 #: ../src/guestfs-availability.pod:69
16829 msgid "B<lvm2>"
16830 msgstr ""
16831
16832 #. type: textblock
16833 #: ../src/guestfs-availability.pod:71
16834 msgid ""
16835 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
16836 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
16837 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
16838 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
16839 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
16840 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
16841 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
16842 "L</guestfs_vgs_full>"
16843 msgstr ""
16844
16845 #. type: =item
16846 #: ../src/guestfs-availability.pod:94
16847 msgid "B<mknod>"
16848 msgstr ""
16849
16850 #. type: textblock
16851 #: ../src/guestfs-availability.pod:96
16852 msgid ""
16853 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
16854 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
16855 msgstr ""
16856
16857 #. type: =item
16858 #: ../src/guestfs-availability.pod:102
16859 msgid "B<ntfs3g>"
16860 msgstr ""
16861
16862 #. type: textblock
16863 #: ../src/guestfs-availability.pod:104
16864 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
16865 msgstr ""
16866
16867 #. type: =item
16868 #: ../src/guestfs-availability.pod:107
16869 msgid "B<ntfsprogs>"
16870 msgstr ""
16871
16872 #. type: textblock
16873 #: ../src/guestfs-availability.pod:109
16874 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
16875 msgstr ""
16876
16877 #. type: =item
16878 #: ../src/guestfs-availability.pod:113
16879 msgid "B<realpath>"
16880 msgstr ""
16881
16882 #. type: textblock
16883 #: ../src/guestfs-availability.pod:115
16884 msgid "The following functions: L</guestfs_realpath>"
16885 msgstr ""
16886
16887 #. type: =item
16888 #: ../src/guestfs-availability.pod:118
16889 msgid "B<scrub>"
16890 msgstr ""
16891
16892 #. type: textblock
16893 #: ../src/guestfs-availability.pod:120
16894 msgid ""
16895 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
16896 "L</guestfs_scrub_freespace>"
16897 msgstr ""
16898
16899 #. type: =item
16900 #: ../src/guestfs-availability.pod:125
16901 msgid "B<selinux>"
16902 msgstr ""
16903
16904 #. type: textblock
16905 #: ../src/guestfs-availability.pod:127
16906 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
16907 msgstr ""
16908
16909 #. type: =item
16910 #: ../src/guestfs-availability.pod:131
16911 msgid "B<xz>"
16912 msgstr ""
16913
16914 #. type: textblock
16915 #: ../src/guestfs-availability.pod:133
16916 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
16917 msgstr ""
16918
16919 #. type: =item
16920 #: ../src/guestfs-availability.pod:137
16921 msgid "B<zerofree>"
16922 msgstr ""
16923
16924 #. type: textblock
16925 #: ../src/guestfs-availability.pod:139
16926 msgid "The following functions: L</guestfs_zerofree>"
16927 msgstr ""
16928
16929 #. type: =head2
16930 #: ../src/guestfs-structs.pod:1
16931 msgid "guestfs_int_bool"
16932 msgstr ""
16933
16934 #. type: verbatim
16935 #: ../src/guestfs-structs.pod:3
16936 #, no-wrap
16937 msgid ""
16938 " struct guestfs_int_bool {\n"
16939 "   int32_t i;\n"
16940 "   int32_t b;\n"
16941 " };\n"
16942 " \n"
16943 msgstr ""
16944
16945 #. type: verbatim
16946 #: ../src/guestfs-structs.pod:8
16947 #, no-wrap
16948 msgid ""
16949 " struct guestfs_int_bool_list {\n"
16950 "   uint32_t len; /* Number of elements in list. */\n"
16951 "   struct guestfs_int_bool *val; /* Elements. */\n"
16952 " };\n"
16953 " \n"
16954 msgstr ""
16955
16956 #. type: verbatim
16957 #: ../src/guestfs-structs.pod:13
16958 #, no-wrap
16959 msgid ""
16960 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
16961 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
16962 "\n"
16963 msgstr ""
16964
16965 #. type: =head2
16966 #: ../src/guestfs-structs.pod:16
16967 msgid "guestfs_lvm_pv"
16968 msgstr ""
16969
16970 #. type: verbatim
16971 #: ../src/guestfs-structs.pod:18
16972 #, no-wrap
16973 msgid ""
16974 " struct guestfs_lvm_pv {\n"
16975 "   char *pv_name;\n"
16976 "   /* The next field is NOT nul-terminated, be careful when printing it: "
16977 "*/\n"
16978 "   char pv_uuid[32];\n"
16979 "   char *pv_fmt;\n"
16980 "   uint64_t pv_size;\n"
16981 "   uint64_t dev_size;\n"
16982 "   uint64_t pv_free;\n"
16983 "   uint64_t pv_used;\n"
16984 "   char *pv_attr;\n"
16985 "   int64_t pv_pe_count;\n"
16986 "   int64_t pv_pe_alloc_count;\n"
16987 "   char *pv_tags;\n"
16988 "   uint64_t pe_start;\n"
16989 "   int64_t pv_mda_count;\n"
16990 "   uint64_t pv_mda_free;\n"
16991 " };\n"
16992 " \n"
16993 msgstr ""
16994
16995 #. type: verbatim
16996 #: ../src/guestfs-structs.pod:36
16997 #, no-wrap
16998 msgid ""
16999 " struct guestfs_lvm_pv_list {\n"
17000 "   uint32_t len; /* Number of elements in list. */\n"
17001 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
17002 " };\n"
17003 " \n"
17004 msgstr ""
17005
17006 #. type: verbatim
17007 #: ../src/guestfs-structs.pod:41
17008 #, no-wrap
17009 msgid ""
17010 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
17011 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
17012 "\n"
17013 msgstr ""
17014
17015 #. type: =head2
17016 #: ../src/guestfs-structs.pod:44
17017 msgid "guestfs_lvm_vg"
17018 msgstr ""
17019
17020 #. type: verbatim
17021 #: ../src/guestfs-structs.pod:46
17022 #, no-wrap
17023 msgid ""
17024 " struct guestfs_lvm_vg {\n"
17025 "   char *vg_name;\n"
17026 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17027 "*/\n"
17028 "   char vg_uuid[32];\n"
17029 "   char *vg_fmt;\n"
17030 "   char *vg_attr;\n"
17031 "   uint64_t vg_size;\n"
17032 "   uint64_t vg_free;\n"
17033 "   char *vg_sysid;\n"
17034 "   uint64_t vg_extent_size;\n"
17035 "   int64_t vg_extent_count;\n"
17036 "   int64_t vg_free_count;\n"
17037 "   int64_t max_lv;\n"
17038 "   int64_t max_pv;\n"
17039 "   int64_t pv_count;\n"
17040 "   int64_t lv_count;\n"
17041 "   int64_t snap_count;\n"
17042 "   int64_t vg_seqno;\n"
17043 "   char *vg_tags;\n"
17044 "   int64_t vg_mda_count;\n"
17045 "   uint64_t vg_mda_free;\n"
17046 " };\n"
17047 " \n"
17048 msgstr ""
17049
17050 #. type: verbatim
17051 #: ../src/guestfs-structs.pod:69
17052 #, no-wrap
17053 msgid ""
17054 " struct guestfs_lvm_vg_list {\n"
17055 "   uint32_t len; /* Number of elements in list. */\n"
17056 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
17057 " };\n"
17058 " \n"
17059 msgstr ""
17060
17061 #. type: verbatim
17062 #: ../src/guestfs-structs.pod:74
17063 #, no-wrap
17064 msgid ""
17065 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
17066 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
17067 "\n"
17068 msgstr ""
17069
17070 #. type: =head2
17071 #: ../src/guestfs-structs.pod:77
17072 msgid "guestfs_lvm_lv"
17073 msgstr ""
17074
17075 #. type: verbatim
17076 #: ../src/guestfs-structs.pod:79
17077 #, no-wrap
17078 msgid ""
17079 " struct guestfs_lvm_lv {\n"
17080 "   char *lv_name;\n"
17081 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17082 "*/\n"
17083 "   char lv_uuid[32];\n"
17084 "   char *lv_attr;\n"
17085 "   int64_t lv_major;\n"
17086 "   int64_t lv_minor;\n"
17087 "   int64_t lv_kernel_major;\n"
17088 "   int64_t lv_kernel_minor;\n"
17089 "   uint64_t lv_size;\n"
17090 "   int64_t seg_count;\n"
17091 "   char *origin;\n"
17092 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17093 "   float snap_percent;\n"
17094 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17095 "   float copy_percent;\n"
17096 "   char *move_pv;\n"
17097 "   char *lv_tags;\n"
17098 "   char *mirror_log;\n"
17099 "   char *modules;\n"
17100 " };\n"
17101 " \n"
17102 msgstr ""
17103
17104 #. type: verbatim
17105 #: ../src/guestfs-structs.pod:101
17106 #, no-wrap
17107 msgid ""
17108 " struct guestfs_lvm_lv_list {\n"
17109 "   uint32_t len; /* Number of elements in list. */\n"
17110 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
17111 " };\n"
17112 " \n"
17113 msgstr ""
17114
17115 #. type: verbatim
17116 #: ../src/guestfs-structs.pod:106
17117 #, no-wrap
17118 msgid ""
17119 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
17120 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
17121 "\n"
17122 msgstr ""
17123
17124 #. type: verbatim
17125 #: ../src/guestfs-structs.pod:111
17126 #, no-wrap
17127 msgid ""
17128 " struct guestfs_stat {\n"
17129 "   int64_t dev;\n"
17130 "   int64_t ino;\n"
17131 "   int64_t mode;\n"
17132 "   int64_t nlink;\n"
17133 "   int64_t uid;\n"
17134 "   int64_t gid;\n"
17135 "   int64_t rdev;\n"
17136 "   int64_t size;\n"
17137 "   int64_t blksize;\n"
17138 "   int64_t blocks;\n"
17139 "   int64_t atime;\n"
17140 "   int64_t mtime;\n"
17141 "   int64_t ctime;\n"
17142 " };\n"
17143 " \n"
17144 msgstr ""
17145
17146 #. type: verbatim
17147 #: ../src/guestfs-structs.pod:127
17148 #, no-wrap
17149 msgid ""
17150 " struct guestfs_stat_list {\n"
17151 "   uint32_t len; /* Number of elements in list. */\n"
17152 "   struct guestfs_stat *val; /* Elements. */\n"
17153 " };\n"
17154 " \n"
17155 msgstr ""
17156
17157 #. type: verbatim
17158 #: ../src/guestfs-structs.pod:132
17159 #, no-wrap
17160 msgid ""
17161 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
17162 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
17163 "\n"
17164 msgstr ""
17165
17166 #. type: verbatim
17167 #: ../src/guestfs-structs.pod:137
17168 #, no-wrap
17169 msgid ""
17170 " struct guestfs_statvfs {\n"
17171 "   int64_t bsize;\n"
17172 "   int64_t frsize;\n"
17173 "   int64_t blocks;\n"
17174 "   int64_t bfree;\n"
17175 "   int64_t bavail;\n"
17176 "   int64_t files;\n"
17177 "   int64_t ffree;\n"
17178 "   int64_t favail;\n"
17179 "   int64_t fsid;\n"
17180 "   int64_t flag;\n"
17181 "   int64_t namemax;\n"
17182 " };\n"
17183 " \n"
17184 msgstr ""
17185
17186 #. type: verbatim
17187 #: ../src/guestfs-structs.pod:151
17188 #, no-wrap
17189 msgid ""
17190 " struct guestfs_statvfs_list {\n"
17191 "   uint32_t len; /* Number of elements in list. */\n"
17192 "   struct guestfs_statvfs *val; /* Elements. */\n"
17193 " };\n"
17194 " \n"
17195 msgstr ""
17196
17197 #. type: verbatim
17198 #: ../src/guestfs-structs.pod:156
17199 #, no-wrap
17200 msgid ""
17201 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
17202 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
17203 "\n"
17204 msgstr ""
17205
17206 #. type: =head2
17207 #: ../src/guestfs-structs.pod:159
17208 msgid "guestfs_dirent"
17209 msgstr ""
17210
17211 #. type: verbatim
17212 #: ../src/guestfs-structs.pod:161
17213 #, no-wrap
17214 msgid ""
17215 " struct guestfs_dirent {\n"
17216 "   int64_t ino;\n"
17217 "   char ftyp;\n"
17218 "   char *name;\n"
17219 " };\n"
17220 " \n"
17221 msgstr ""
17222
17223 #. type: verbatim
17224 #: ../src/guestfs-structs.pod:167
17225 #, no-wrap
17226 msgid ""
17227 " struct guestfs_dirent_list {\n"
17228 "   uint32_t len; /* Number of elements in list. */\n"
17229 "   struct guestfs_dirent *val; /* Elements. */\n"
17230 " };\n"
17231 " \n"
17232 msgstr ""
17233
17234 #. type: verbatim
17235 #: ../src/guestfs-structs.pod:172
17236 #, no-wrap
17237 msgid ""
17238 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
17239 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
17240 "\n"
17241 msgstr ""
17242
17243 #. type: verbatim
17244 #: ../src/guestfs-structs.pod:177
17245 #, no-wrap
17246 msgid ""
17247 " struct guestfs_version {\n"
17248 "   int64_t major;\n"
17249 "   int64_t minor;\n"
17250 "   int64_t release;\n"
17251 "   char *extra;\n"
17252 " };\n"
17253 " \n"
17254 msgstr ""
17255
17256 #. type: verbatim
17257 #: ../src/guestfs-structs.pod:184
17258 #, no-wrap
17259 msgid ""
17260 " struct guestfs_version_list {\n"
17261 "   uint32_t len; /* Number of elements in list. */\n"
17262 "   struct guestfs_version *val; /* Elements. */\n"
17263 " };\n"
17264 " \n"
17265 msgstr ""
17266
17267 #. type: verbatim
17268 #: ../src/guestfs-structs.pod:189
17269 #, no-wrap
17270 msgid ""
17271 " void guestfs_free_version (struct guestfs_free_version *);\n"
17272 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
17273 "\n"
17274 msgstr ""
17275
17276 #. type: =head2
17277 #: ../src/guestfs-structs.pod:192
17278 msgid "guestfs_xattr"
17279 msgstr ""
17280
17281 #. type: verbatim
17282 #: ../src/guestfs-structs.pod:194
17283 #, no-wrap
17284 msgid ""
17285 " struct guestfs_xattr {\n"
17286 "   char *attrname;\n"
17287 "   /* The next two fields describe a byte array. */\n"
17288 "   uint32_t attrval_len;\n"
17289 "   char *attrval;\n"
17290 " };\n"
17291 " \n"
17292 msgstr ""
17293
17294 #. type: verbatim
17295 #: ../src/guestfs-structs.pod:201
17296 #, no-wrap
17297 msgid ""
17298 " struct guestfs_xattr_list {\n"
17299 "   uint32_t len; /* Number of elements in list. */\n"
17300 "   struct guestfs_xattr *val; /* Elements. */\n"
17301 " };\n"
17302 " \n"
17303 msgstr ""
17304
17305 #. type: verbatim
17306 #: ../src/guestfs-structs.pod:206
17307 #, no-wrap
17308 msgid ""
17309 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
17310 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
17311 "\n"
17312 msgstr ""
17313
17314 #. type: =head2
17315 #: ../src/guestfs-structs.pod:209
17316 msgid "guestfs_inotify_event"
17317 msgstr ""
17318
17319 #. type: verbatim
17320 #: ../src/guestfs-structs.pod:211
17321 #, no-wrap
17322 msgid ""
17323 " struct guestfs_inotify_event {\n"
17324 "   int64_t in_wd;\n"
17325 "   uint32_t in_mask;\n"
17326 "   uint32_t in_cookie;\n"
17327 "   char *in_name;\n"
17328 " };\n"
17329 " \n"
17330 msgstr ""
17331
17332 #. type: verbatim
17333 #: ../src/guestfs-structs.pod:218
17334 #, no-wrap
17335 msgid ""
17336 " struct guestfs_inotify_event_list {\n"
17337 "   uint32_t len; /* Number of elements in list. */\n"
17338 "   struct guestfs_inotify_event *val; /* Elements. */\n"
17339 " };\n"
17340 " \n"
17341 msgstr ""
17342
17343 #. type: verbatim
17344 #: ../src/guestfs-structs.pod:223
17345 #, no-wrap
17346 msgid ""
17347 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
17348 " void guestfs_free_inotify_event_list (struct "
17349 "guestfs_free_inotify_event_list *);\n"
17350 "\n"
17351 msgstr ""
17352
17353 #. type: =head2
17354 #: ../src/guestfs-structs.pod:226
17355 msgid "guestfs_partition"
17356 msgstr ""
17357
17358 #. type: verbatim
17359 #: ../src/guestfs-structs.pod:228
17360 #, no-wrap
17361 msgid ""
17362 " struct guestfs_partition {\n"
17363 "   int32_t part_num;\n"
17364 "   uint64_t part_start;\n"
17365 "   uint64_t part_end;\n"
17366 "   uint64_t part_size;\n"
17367 " };\n"
17368 " \n"
17369 msgstr ""
17370
17371 #. type: verbatim
17372 #: ../src/guestfs-structs.pod:235
17373 #, no-wrap
17374 msgid ""
17375 " struct guestfs_partition_list {\n"
17376 "   uint32_t len; /* Number of elements in list. */\n"
17377 "   struct guestfs_partition *val; /* Elements. */\n"
17378 " };\n"
17379 " \n"
17380 msgstr ""
17381
17382 #. type: verbatim
17383 #: ../src/guestfs-structs.pod:240
17384 #, no-wrap
17385 msgid ""
17386 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
17387 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
17388 "\n"
17389 msgstr ""
17390
17391 #. type: =head2
17392 #: ../src/guestfs-structs.pod:243
17393 msgid "guestfs_application"
17394 msgstr ""
17395
17396 #. type: verbatim
17397 #: ../src/guestfs-structs.pod:245
17398 #, no-wrap
17399 msgid ""
17400 " struct guestfs_application {\n"
17401 "   char *app_name;\n"
17402 "   char *app_display_name;\n"
17403 "   int32_t app_epoch;\n"
17404 "   char *app_version;\n"
17405 "   char *app_release;\n"
17406 "   char *app_install_path;\n"
17407 "   char *app_trans_path;\n"
17408 "   char *app_publisher;\n"
17409 "   char *app_url;\n"
17410 "   char *app_source_package;\n"
17411 "   char *app_summary;\n"
17412 "   char *app_description;\n"
17413 " };\n"
17414 " \n"
17415 msgstr ""
17416
17417 #. type: verbatim
17418 #: ../src/guestfs-structs.pod:260
17419 #, no-wrap
17420 msgid ""
17421 " struct guestfs_application_list {\n"
17422 "   uint32_t len; /* Number of elements in list. */\n"
17423 "   struct guestfs_application *val; /* Elements. */\n"
17424 " };\n"
17425 " \n"
17426 msgstr ""
17427
17428 #. type: verbatim
17429 #: ../src/guestfs-structs.pod:265
17430 #, no-wrap
17431 msgid ""
17432 " void guestfs_free_application (struct guestfs_free_application *);\n"
17433 " void guestfs_free_application_list (struct guestfs_free_application_list "
17434 "*);\n"
17435 "\n"
17436 msgstr ""
17437
17438 #. type: textblock
17439 #: ../fish/guestfish.pod:5
17440 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
17441 msgstr ""
17442
17443 #. type: verbatim
17444 #: ../fish/guestfish.pod:9
17445 #, no-wrap
17446 msgid ""
17447 " guestfish [--options] [commands]\n"
17448 "\n"
17449 msgstr ""
17450
17451 #. type: verbatim
17452 #: ../fish/guestfish.pod:11
17453 #, no-wrap
17454 msgid ""
17455 " guestfish\n"
17456 "\n"
17457 msgstr ""
17458
17459 #. type: verbatim
17460 #: ../fish/guestfish.pod:13
17461 #, no-wrap
17462 msgid ""
17463 " guestfish [--ro|--rw] -a disk.img\n"
17464 "\n"
17465 msgstr ""
17466
17467 #. type: verbatim
17468 #: ../fish/guestfish.pod:15
17469 #, no-wrap
17470 msgid ""
17471 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
17472 "\n"
17473 msgstr ""
17474
17475 #. type: verbatim
17476 #: ../fish/guestfish.pod:17
17477 #, no-wrap
17478 msgid ""
17479 " guestfish -d libvirt-domain\n"
17480 "\n"
17481 msgstr ""
17482
17483 #. type: verbatim
17484 #: ../fish/guestfish.pod:19
17485 #, no-wrap
17486 msgid ""
17487 " guestfish [--ro|--rw] -a disk.img -i\n"
17488 "\n"
17489 msgstr ""
17490
17491 #. type: verbatim
17492 #: ../fish/guestfish.pod:21
17493 #, no-wrap
17494 msgid ""
17495 " guestfish -d libvirt-domain -i\n"
17496 "\n"
17497 msgstr ""
17498
17499 #. type: =head1
17500 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:59
17501 msgid "WARNING"
17502 msgstr ""
17503
17504 #. type: textblock
17505 #: ../fish/guestfish.pod:25
17506 msgid ""
17507 "Using guestfish in read/write mode on live virtual machines can be "
17508 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
17509 "option to use guestfish safely if the disk image or virtual machine might be "
17510 "live."
17511 msgstr ""
17512
17513 #. type: textblock
17514 #: ../fish/guestfish.pod:32
17515 msgid ""
17516 "Guestfish is a shell and command-line tool for examining and modifying "
17517 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
17518 "functionality of the guestfs API, see L<guestfs(3)>."
17519 msgstr ""
17520
17521 #. type: textblock
17522 #: ../fish/guestfish.pod:36
17523 msgid ""
17524 "Guestfish gives you structured access to the libguestfs API, from shell "
17525 "scripts or the command line or interactively.  If you want to rescue a "
17526 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
17527 "command."
17528 msgstr ""
17529
17530 #. type: =head1
17531 #: ../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
17532 msgid "EXAMPLES"
17533 msgstr ""
17534
17535 #. type: =head2
17536 #: ../fish/guestfish.pod:43
17537 msgid "As an interactive shell"
17538 msgstr ""
17539
17540 #. type: verbatim
17541 #: ../fish/guestfish.pod:45
17542 #, no-wrap
17543 msgid ""
17544 " $ guestfish\n"
17545 " \n"
17546 msgstr ""
17547
17548 #. type: verbatim
17549 #: ../fish/guestfish.pod:47
17550 #, no-wrap
17551 msgid ""
17552 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
17553 " editing virtual machine filesystems.\n"
17554 " \n"
17555 msgstr ""
17556
17557 #. type: verbatim
17558 #: ../fish/guestfish.pod:50
17559 #, no-wrap
17560 msgid ""
17561 " Type: 'help' for a list of commands\n"
17562 "       'man' to read the manual\n"
17563 "       'quit' to quit the shell\n"
17564 " \n"
17565 msgstr ""
17566
17567 #. type: verbatim
17568 #: ../fish/guestfish.pod:54
17569 #, no-wrap
17570 msgid ""
17571 " ><fs> add-ro disk.img\n"
17572 " ><fs> run\n"
17573 " ><fs> list-filesystems\n"
17574 " /dev/sda1: ext4\n"
17575 " /dev/vg_guest/lv_root: ext4\n"
17576 " /dev/vg_guest/lv_swap: swap\n"
17577 " ><fs> mount /dev/vg_guest/lv_root /\n"
17578 " ><fs> cat /etc/fstab\n"
17579 " # /etc/fstab\n"
17580 " # Created by anaconda\n"
17581 " [...]\n"
17582 " ><fs> exit\n"
17583 "\n"
17584 msgstr ""
17585
17586 #. type: =head2
17587 #: ../fish/guestfish.pod:67
17588 msgid "From shell scripts"
17589 msgstr ""
17590
17591 #. type: textblock
17592 #: ../fish/guestfish.pod:69
17593 msgid "Create a new C</etc/motd> file in a guest or disk image:"
17594 msgstr ""
17595
17596 #. type: verbatim
17597 #: ../fish/guestfish.pod:71
17598 #, no-wrap
17599 msgid ""
17600 " guestfish <<_EOF_\n"
17601 " add disk.img\n"
17602 " run\n"
17603 " mount /dev/vg_guest/lv_root /\n"
17604 " write /etc/motd \"Welcome, new users\"\n"
17605 " _EOF_\n"
17606 "\n"
17607 msgstr ""
17608
17609 #. type: textblock
17610 #: ../fish/guestfish.pod:78
17611 msgid "List the LVM logical volumes in a disk image:"
17612 msgstr ""
17613
17614 #. type: verbatim
17615 #: ../fish/guestfish.pod:80
17616 #, no-wrap
17617 msgid ""
17618 " guestfish -a disk.img --ro <<_EOF_\n"
17619 " run\n"
17620 " lvs\n"
17621 " _EOF_\n"
17622 "\n"
17623 msgstr ""
17624
17625 #. type: textblock
17626 #: ../fish/guestfish.pod:85
17627 msgid "List all the filesystems in a disk image:"
17628 msgstr ""
17629
17630 #. type: verbatim
17631 #: ../fish/guestfish.pod:87
17632 #, no-wrap
17633 msgid ""
17634 " guestfish -a disk.img --ro <<_EOF_\n"
17635 " run\n"
17636 " list-filesystems\n"
17637 " _EOF_\n"
17638 "\n"
17639 msgstr ""
17640
17641 #. type: =head2
17642 #: ../fish/guestfish.pod:92
17643 msgid "On one command line"
17644 msgstr ""
17645
17646 #. type: textblock
17647 #: ../fish/guestfish.pod:94
17648 msgid "Update C</etc/resolv.conf> in a guest:"
17649 msgstr ""
17650
17651 #. type: verbatim
17652 #: ../fish/guestfish.pod:96
17653 #, no-wrap
17654 msgid ""
17655 " guestfish \\\n"
17656 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
17657 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
17658 "\n"
17659 msgstr ""
17660
17661 #. type: textblock
17662 #: ../fish/guestfish.pod:100
17663 msgid "Edit C</boot/grub/grub.conf> interactively:"
17664 msgstr ""
17665
17666 #. type: verbatim
17667 #: ../fish/guestfish.pod:102
17668 #, no-wrap
17669 msgid ""
17670 " guestfish --rw --add disk.img \\\n"
17671 "   --mount /dev/vg_guest/lv_root \\\n"
17672 "   --mount /dev/sda1:/boot \\\n"
17673 "   edit /boot/grub/grub.conf\n"
17674 "\n"
17675 msgstr ""
17676
17677 #. type: =head2
17678 #: ../fish/guestfish.pod:107
17679 msgid "Mount disks automatically"
17680 msgstr ""
17681
17682 #. type: textblock
17683 #: ../fish/guestfish.pod:109
17684 msgid ""
17685 "Use the I<-i> option to automatically mount the disks from a virtual "
17686 "machine:"
17687 msgstr ""
17688
17689 #. type: verbatim
17690 #: ../fish/guestfish.pod:112
17691 #, no-wrap
17692 msgid ""
17693 " guestfish --ro -a disk.img -i cat /etc/group\n"
17694 "\n"
17695 msgstr ""
17696
17697 #. type: verbatim
17698 #: ../fish/guestfish.pod:114
17699 #, no-wrap
17700 msgid ""
17701 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
17702 "\n"
17703 msgstr ""
17704
17705 #. type: textblock
17706 #: ../fish/guestfish.pod:116
17707 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
17708 msgstr ""
17709
17710 #. type: verbatim
17711 #: ../fish/guestfish.pod:118
17712 #, no-wrap
17713 msgid ""
17714 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
17715 "\n"
17716 msgstr ""
17717
17718 #. type: =head2
17719 #: ../fish/guestfish.pod:120
17720 msgid "As a script interpreter"
17721 msgstr ""
17722
17723 #. type: textblock
17724 #: ../fish/guestfish.pod:122
17725 msgid "Create a 100MB disk containing an ext2-formatted partition:"
17726 msgstr ""
17727
17728 #. type: verbatim
17729 #: ../fish/guestfish.pod:124
17730 #, no-wrap
17731 msgid ""
17732 " #!/usr/bin/guestfish -f\n"
17733 " sparse test1.img 100M\n"
17734 " run\n"
17735 " part-disk /dev/sda mbr\n"
17736 " mkfs ext2 /dev/sda1\n"
17737 "\n"
17738 msgstr ""
17739
17740 #. type: =head2
17741 #: ../fish/guestfish.pod:130
17742 msgid "Start with a prepared disk"
17743 msgstr ""
17744
17745 #. type: textblock
17746 #: ../fish/guestfish.pod:132
17747 msgid ""
17748 "An alternate way to create a 100MB disk called C<test1.img> containing a "
17749 "single ext2-formatted partition:"
17750 msgstr ""
17751
17752 #. type: verbatim
17753 #: ../fish/guestfish.pod:135
17754 #, no-wrap
17755 msgid ""
17756 " guestfish -N fs\n"
17757 "\n"
17758 msgstr ""
17759
17760 #. type: textblock
17761 #: ../fish/guestfish.pod:137
17762 msgid "To list what is available do:"
17763 msgstr ""
17764
17765 #. type: verbatim
17766 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:888
17767 #, no-wrap
17768 msgid ""
17769 " guestfish -N help | less\n"
17770 "\n"
17771 msgstr ""
17772
17773 #. type: =head2
17774 #: ../fish/guestfish.pod:141
17775 msgid "Remote control"
17776 msgstr ""
17777
17778 #. type: verbatim
17779 #: ../fish/guestfish.pod:143
17780 #, no-wrap
17781 msgid ""
17782 " eval \"`guestfish --listen`\"\n"
17783 " guestfish --remote add-ro disk.img\n"
17784 " guestfish --remote run\n"
17785 " guestfish --remote lvs\n"
17786 "\n"
17787 msgstr ""
17788
17789 #. type: =head1
17790 #: ../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
17791 msgid "OPTIONS"
17792 msgstr ""
17793
17794 #. type: =item
17795 #: ../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
17796 msgid "B<--help>"
17797 msgstr ""
17798
17799 #. type: textblock
17800 #: ../fish/guestfish.pod:154
17801 msgid "Displays general help on options."
17802 msgstr ""
17803
17804 #. type: =item
17805 #: ../fish/guestfish.pod:156
17806 msgid "B<-h>"
17807 msgstr ""
17808
17809 #. type: =item
17810 #: ../fish/guestfish.pod:158
17811 msgid "B<--cmd-help>"
17812 msgstr ""
17813
17814 #. type: textblock
17815 #: ../fish/guestfish.pod:160
17816 msgid "Lists all available guestfish commands."
17817 msgstr ""
17818
17819 #. type: =item
17820 #: ../fish/guestfish.pod:162
17821 msgid "B<-h cmd>"
17822 msgstr ""
17823
17824 #. type: =item
17825 #: ../fish/guestfish.pod:164
17826 msgid "B<--cmd-help cmd>"
17827 msgstr ""
17828
17829 #. type: textblock
17830 #: ../fish/guestfish.pod:166
17831 msgid "Displays detailed help on a single command C<cmd>."
17832 msgstr ""
17833
17834 #. type: =item
17835 #: ../fish/guestfish.pod:168
17836 msgid "B<-a image>"
17837 msgstr ""
17838
17839 #. type: =item
17840 #: ../fish/guestfish.pod:170
17841 msgid "B<--add image>"
17842 msgstr ""
17843
17844 #. type: textblock
17845 #: ../fish/guestfish.pod:172
17846 msgid "Add a block device or virtual machine image to the shell."
17847 msgstr ""
17848
17849 #. type: textblock
17850 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
17851 msgid ""
17852 "The format of the disk image is auto-detected.  To override this and force a "
17853 "particular format use the I<--format=..> option."
17854 msgstr ""
17855
17856 #. type: textblock
17857 #: ../fish/guestfish.pod:177
17858 msgid ""
17859 "Using this flag is mostly equivalent to using the C<add> command, with "
17860 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
17861 "the I<--format=...> flag was given."
17862 msgstr ""
17863
17864 #. type: =item
17865 #: ../fish/guestfish.pod:181
17866 msgid "B<-c URI>"
17867 msgstr ""
17868
17869 #. type: =item
17870 #: ../fish/guestfish.pod:183
17871 msgid "B<--connect URI>"
17872 msgstr ""
17873
17874 #. type: textblock
17875 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
17876 msgid ""
17877 "When used in conjunction with the I<-d> option, this specifies the libvirt "
17878 "URI to use.  The default is to use the default libvirt connection."
17879 msgstr ""
17880
17881 #. type: =item
17882 #: ../fish/guestfish.pod:189
17883 msgid "B<--csh>"
17884 msgstr ""
17885
17886 #. type: textblock
17887 #: ../fish/guestfish.pod:191
17888 msgid ""
17889 "If using the I<--listen> option and a csh-like shell, use this option.  See "
17890 "section L</REMOTE CONTROL AND CSH> below."
17891 msgstr ""
17892
17893 #. type: =item
17894 #: ../fish/guestfish.pod:194
17895 msgid "B<-d libvirt-domain>"
17896 msgstr ""
17897
17898 #. type: =item
17899 #: ../fish/guestfish.pod:196
17900 msgid "B<--domain libvirt-domain>"
17901 msgstr ""
17902
17903 #. type: textblock
17904 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
17905 msgid ""
17906 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
17907 "used, then any libvirt domain can be used.  However in write mode, only "
17908 "libvirt domains which are shut down can be named here."
17909 msgstr ""
17910
17911 #. type: textblock
17912 #: ../fish/guestfish.pod:202
17913 msgid ""
17914 "Using this flag is mostly equivalent to using the C<add-domain> command, "
17915 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
17916 "if the I<--format:...> flag was given."
17917 msgstr ""
17918
17919 #. type: =item
17920 #: ../fish/guestfish.pod:206
17921 msgid "B<-D>"
17922 msgstr ""
17923
17924 #. type: =item
17925 #: ../fish/guestfish.pod:208
17926 msgid "B<--no-dest-paths>"
17927 msgstr ""
17928
17929 #. type: textblock
17930 #: ../fish/guestfish.pod:210
17931 msgid ""
17932 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
17933 "to hit the tab key to complete paths on the guest filesystem, but this "
17934 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
17935 "allow this feature to be disabled."
17936 msgstr ""
17937
17938 #. type: =item
17939 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
17940 msgid "B<--echo-keys>"
17941 msgstr ""
17942
17943 #. type: textblock
17944 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
17945 msgid ""
17946 "When prompting for keys and passphrases, guestfish normally turns echoing "
17947 "off so you cannot see what you are typing.  If you are not worried about "
17948 "Tempest attacks and there is no one else in the room you can specify this "
17949 "flag to see what you are typing."
17950 msgstr ""
17951
17952 #. type: =item
17953 #: ../fish/guestfish.pod:222
17954 msgid "B<-f file>"
17955 msgstr ""
17956
17957 #. type: =item
17958 #: ../fish/guestfish.pod:224
17959 msgid "B<--file file>"
17960 msgstr ""
17961
17962 #. type: textblock
17963 #: ../fish/guestfish.pod:226
17964 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
17965 msgstr ""
17966
17967 #. type: verbatim
17968 #: ../fish/guestfish.pod:229
17969 #, no-wrap
17970 msgid ""
17971 " #!/usr/bin/guestfish -f\n"
17972 "\n"
17973 msgstr ""
17974
17975 #. type: =item
17976 #: ../fish/guestfish.pod:231
17977 msgid "B<--format=raw|qcow2|..>"
17978 msgstr ""
17979
17980 #. type: =item
17981 #: ../fish/guestfish.pod:233
17982 msgid "B<--format>"
17983 msgstr ""
17984
17985 #. type: textblock
17986 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
17987 msgid ""
17988 "The default for the I<-a> option is to auto-detect the format of the disk "
17989 "image.  Using this forces the disk format for I<-a> options which follow on "
17990 "the command line.  Using I<--format> with no argument switches back to "
17991 "auto-detection for subsequent I<-a> options."
17992 msgstr ""
17993
17994 #. type: verbatim
17995 #: ../fish/guestfish.pod:242
17996 #, no-wrap
17997 msgid ""
17998 " guestfish --format=raw -a disk.img\n"
17999 "\n"
18000 msgstr ""
18001
18002 #. type: textblock
18003 #: ../fish/guestfish.pod:244
18004 msgid "forces raw format (no auto-detection) for C<disk.img>."
18005 msgstr ""
18006
18007 #. type: verbatim
18008 #: ../fish/guestfish.pod:246
18009 #, no-wrap
18010 msgid ""
18011 " guestfish --format=raw -a disk.img --format -a another.img\n"
18012 "\n"
18013 msgstr ""
18014
18015 #. type: textblock
18016 #: ../fish/guestfish.pod:248
18017 msgid ""
18018 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
18019 "auto-detection for C<another.img>."
18020 msgstr ""
18021
18022 #. type: textblock
18023 #: ../fish/guestfish.pod:251
18024 msgid ""
18025 "If you have untrusted raw-format guest disk images, you should use this "
18026 "option to specify the disk format.  This avoids a possible security problem "
18027 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
18028 msgstr ""
18029
18030 #. type: =item
18031 #: ../fish/guestfish.pod:256
18032 msgid "B<-i>"
18033 msgstr ""
18034
18035 #. type: =item
18036 #: ../fish/guestfish.pod:258
18037 msgid "B<--inspector>"
18038 msgstr ""
18039
18040 #. type: textblock
18041 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
18042 msgid ""
18043 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
18044 "system and mount filesystems as they would be mounted on the real virtual "
18045 "machine."
18046 msgstr ""
18047
18048 #. type: textblock
18049 #: ../fish/guestfish.pod:264
18050 msgid "Typical usage is either:"
18051 msgstr ""
18052
18053 #. type: verbatim
18054 #: ../fish/guestfish.pod:266
18055 #, no-wrap
18056 msgid ""
18057 " guestfish -d myguest -i\n"
18058 "\n"
18059 msgstr ""
18060
18061 #. type: textblock
18062 #: ../fish/guestfish.pod:268
18063 msgid "(for an inactive libvirt domain called I<myguest>), or:"
18064 msgstr ""
18065
18066 #. type: verbatim
18067 #: ../fish/guestfish.pod:270
18068 #, no-wrap
18069 msgid ""
18070 " guestfish --ro -d myguest -i\n"
18071 "\n"
18072 msgstr ""
18073
18074 #. type: textblock
18075 #: ../fish/guestfish.pod:272
18076 msgid "(for active domains, readonly), or specify the block device directly:"
18077 msgstr ""
18078
18079 #. type: verbatim
18080 #: ../fish/guestfish.pod:274
18081 #, no-wrap
18082 msgid ""
18083 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
18084 "\n"
18085 msgstr ""
18086
18087 #. type: textblock
18088 #: ../fish/guestfish.pod:276
18089 msgid ""
18090 "Note that the command line syntax changed slightly over older versions of "
18091 "guestfish.  You can still use the old syntax:"
18092 msgstr ""
18093
18094 #. type: verbatim
18095 #: ../fish/guestfish.pod:279
18096 #, no-wrap
18097 msgid ""
18098 " guestfish [--ro] -i disk.img\n"
18099 "\n"
18100 msgstr ""
18101
18102 #. type: verbatim
18103 #: ../fish/guestfish.pod:281
18104 #, no-wrap
18105 msgid ""
18106 " guestfish [--ro] -i libvirt-domain\n"
18107 "\n"
18108 msgstr ""
18109
18110 #. type: textblock
18111 #: ../fish/guestfish.pod:283
18112 msgid ""
18113 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
18114 "then using other commands to mount the filesystems that were found."
18115 msgstr ""
18116
18117 #. type: =item
18118 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
18119 msgid "B<--keys-from-stdin>"
18120 msgstr ""
18121
18122 #. type: textblock
18123 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
18124 msgid ""
18125 "Read key or passphrase parameters from stdin.  The default is to try to read "
18126 "passphrases from the user by opening C</dev/tty>."
18127 msgstr ""
18128
18129 #. type: =item
18130 #: ../fish/guestfish.pod:292
18131 msgid "B<--listen>"
18132 msgstr ""
18133
18134 #. type: textblock
18135 #: ../fish/guestfish.pod:294
18136 msgid ""
18137 "Fork into the background and listen for remote commands.  See section "
18138 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
18139 msgstr ""
18140
18141 #. type: =item
18142 #: ../fish/guestfish.pod:297
18143 msgid "B<-m dev[:mountpoint]>"
18144 msgstr ""
18145
18146 #. type: =item
18147 #: ../fish/guestfish.pod:299
18148 msgid "B<--mount dev[:mountpoint]>"
18149 msgstr ""
18150
18151 #. type: textblock
18152 #: ../fish/guestfish.pod:301
18153 msgid "Mount the named partition or logical volume on the given mountpoint."
18154 msgstr ""
18155
18156 #. type: textblock
18157 #: ../fish/guestfish.pod:303
18158 msgid "If the mountpoint is omitted, it defaults to C</>."
18159 msgstr ""
18160
18161 #. type: textblock
18162 #: ../fish/guestfish.pod:305
18163 msgid "You have to mount something on C</> before most commands will work."
18164 msgstr ""
18165
18166 #. type: textblock
18167 #: ../fish/guestfish.pod:307
18168 msgid ""
18169 "If any I<-m> or I<--mount> options are given, the guest is automatically "
18170 "launched."
18171 msgstr ""
18172
18173 #. type: textblock
18174 #: ../fish/guestfish.pod:310
18175 msgid ""
18176 "If you don't know what filesystems a disk image contains, you can either run "
18177 "guestfish without this option, then list the partitions, filesystems and LVs "
18178 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
18179 "commands), or you can use the L<virt-filesystems(1)> program."
18180 msgstr ""
18181
18182 #. type: textblock
18183 #: ../fish/guestfish.pod:316
18184 msgid ""
18185 "Using this flag is mostly equivalent to using the C<mount-options> command "
18186 "or the C<mount-ro> command if the I<--ro> flag was given."
18187 msgstr ""
18188
18189 #. type: =item
18190 #: ../fish/guestfish.pod:319
18191 msgid "B<-n>"
18192 msgstr ""
18193
18194 #. type: =item
18195 #: ../fish/guestfish.pod:321
18196 msgid "B<--no-sync>"
18197 msgstr ""
18198
18199 #. type: textblock
18200 #: ../fish/guestfish.pod:323
18201 msgid ""
18202 "Disable autosync.  This is enabled by default.  See the discussion of "
18203 "autosync in the L<guestfs(3)> manpage."
18204 msgstr ""
18205
18206 #. type: =item
18207 #: ../fish/guestfish.pod:326
18208 msgid "B<-N type>"
18209 msgstr ""
18210
18211 #. type: =item
18212 #: ../fish/guestfish.pod:328
18213 msgid "B<--new type>"
18214 msgstr ""
18215
18216 #. type: =item
18217 #: ../fish/guestfish.pod:330
18218 msgid "B<-N help>"
18219 msgstr ""
18220
18221 #. type: textblock
18222 #: ../fish/guestfish.pod:332
18223 msgid ""
18224 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
18225 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
18226 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
18227 "IMAGES> below."
18228 msgstr ""
18229
18230 #. type: =item
18231 #: ../fish/guestfish.pod:337
18232 msgid "B<--progress-bars>"
18233 msgstr ""
18234
18235 #. type: textblock
18236 #: ../fish/guestfish.pod:339
18237 msgid "Enable progress bars, even when guestfish is used non-interactively."
18238 msgstr ""
18239
18240 #. type: textblock
18241 #: ../fish/guestfish.pod:341
18242 msgid ""
18243 "Progress bars are enabled by default when guestfish is used as an "
18244 "interactive shell."
18245 msgstr ""
18246
18247 #. type: =item
18248 #: ../fish/guestfish.pod:344
18249 msgid "B<--no-progress-bars>"
18250 msgstr ""
18251
18252 #. type: textblock
18253 #: ../fish/guestfish.pod:346
18254 msgid "Disable progress bars."
18255 msgstr ""
18256
18257 #. type: =item
18258 #: ../fish/guestfish.pod:348
18259 msgid "B<--remote[=pid]>"
18260 msgstr ""
18261
18262 #. type: textblock
18263 #: ../fish/guestfish.pod:350
18264 msgid ""
18265 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
18266 "CONTROL GUESTFISH OVER A SOCKET> below."
18267 msgstr ""
18268
18269 #. type: =item
18270 #: ../fish/guestfish.pod:353
18271 msgid "B<-r>"
18272 msgstr ""
18273
18274 #. type: =item
18275 #: ../fish/guestfish.pod:355
18276 msgid "B<--ro>"
18277 msgstr ""
18278
18279 #. type: textblock
18280 #: ../fish/guestfish.pod:357
18281 msgid ""
18282 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
18283 "mounts are done read-only."
18284 msgstr ""
18285
18286 #. type: textblock
18287 #: ../fish/guestfish.pod:360
18288 msgid ""
18289 "The option must always be used if the disk image or virtual machine might be "
18290 "running, and is generally recommended in cases where you don't need write "
18291 "access to the disk."
18292 msgstr ""
18293
18294 #. type: textblock
18295 #: ../fish/guestfish.pod:364
18296 msgid ""
18297 "Note that prepared disk images created with I<-N> are not affected by this "
18298 "option.  Also commands like C<add> are not affected - you have to specify "
18299 "the C<readonly:true> option explicitly if you need it."
18300 msgstr ""
18301
18302 #. type: textblock
18303 #: ../fish/guestfish.pod:368
18304 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
18305 msgstr ""
18306
18307 #. type: =item
18308 #: ../fish/guestfish.pod:370 ../fuse/guestmount.pod:208
18309 msgid "B<--selinux>"
18310 msgstr ""
18311
18312 #. type: textblock
18313 #: ../fish/guestfish.pod:372
18314 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
18315 msgstr ""
18316
18317 #. type: =item
18318 #: ../fish/guestfish.pod:374
18319 msgid "B<-v>"
18320 msgstr ""
18321
18322 #. type: =item
18323 #: ../fish/guestfish.pod:376
18324 msgid "B<--verbose>"
18325 msgstr ""
18326
18327 #. type: textblock
18328 #: ../fish/guestfish.pod:378
18329 msgid ""
18330 "Enable very verbose messages.  This is particularly useful if you find a "
18331 "bug."
18332 msgstr ""
18333
18334 #. type: =item
18335 #: ../fish/guestfish.pod:381
18336 msgid "B<-V>"
18337 msgstr ""
18338
18339 #. type: =item
18340 #: ../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
18341 msgid "B<--version>"
18342 msgstr ""
18343
18344 #. type: textblock
18345 #: ../fish/guestfish.pod:385
18346 msgid "Display the guestfish / libguestfs version number and exit."
18347 msgstr ""
18348
18349 #. type: =item
18350 #: ../fish/guestfish.pod:387
18351 msgid "B<-w>"
18352 msgstr ""
18353
18354 #. type: =item
18355 #: ../fish/guestfish.pod:389
18356 msgid "B<--rw>"
18357 msgstr ""
18358
18359 #. type: textblock
18360 #: ../fish/guestfish.pod:391
18361 msgid ""
18362 "This option does nothing at the moment.  See L</OPENING DISKS FOR READ AND "
18363 "WRITE> below."
18364 msgstr ""
18365
18366 #. type: =item
18367 #: ../fish/guestfish.pod:394
18368 msgid "B<-x>"
18369 msgstr ""
18370
18371 #. type: textblock
18372 #: ../fish/guestfish.pod:396
18373 msgid "Echo each command before executing it."
18374 msgstr ""
18375
18376 #. type: =head1
18377 #: ../fish/guestfish.pod:400
18378 msgid "COMMANDS ON COMMAND LINE"
18379 msgstr ""
18380
18381 #. type: textblock
18382 #: ../fish/guestfish.pod:402
18383 msgid "Any additional (non-option) arguments are treated as commands to execute."
18384 msgstr ""
18385
18386 #. type: textblock
18387 #: ../fish/guestfish.pod:405
18388 msgid ""
18389 "Commands to execute should be separated by a colon (C<:>), where the colon "
18390 "is a separate parameter.  Thus:"
18391 msgstr ""
18392
18393 #. type: verbatim
18394 #: ../fish/guestfish.pod:408
18395 #, no-wrap
18396 msgid ""
18397 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
18398 "\n"
18399 msgstr ""
18400
18401 #. type: textblock
18402 #: ../fish/guestfish.pod:410
18403 msgid ""
18404 "If there are no additional arguments, then we enter a shell, either an "
18405 "interactive shell with a prompt (if the input is a terminal) or a "
18406 "non-interactive shell."
18407 msgstr ""
18408
18409 #. type: textblock
18410 #: ../fish/guestfish.pod:414
18411 msgid ""
18412 "In either command line mode or non-interactive shell, the first command that "
18413 "gives an error causes the whole shell to exit.  In interactive mode (with a "
18414 "prompt) if a command fails, you can continue to enter commands."
18415 msgstr ""
18416
18417 #. type: =head1
18418 #: ../fish/guestfish.pod:419
18419 msgid "USING launch (OR run)"
18420 msgstr ""
18421
18422 #. type: textblock
18423 #: ../fish/guestfish.pod:421
18424 msgid ""
18425 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
18426 "then launch it, then mount any disks you need, and finally issue "
18427 "actions/commands.  So the general order of the day is:"
18428 msgstr ""
18429
18430 #. type: textblock
18431 #: ../fish/guestfish.pod:429
18432 msgid "add or -a/--add"
18433 msgstr ""
18434
18435 #. type: textblock
18436 #: ../fish/guestfish.pod:433
18437 msgid "launch (aka run)"
18438 msgstr ""
18439
18440 #. type: textblock
18441 #: ../fish/guestfish.pod:437
18442 msgid "mount or -m/--mount"
18443 msgstr ""
18444
18445 #. type: textblock
18446 #: ../fish/guestfish.pod:441
18447 msgid "any other commands"
18448 msgstr ""
18449
18450 #. type: textblock
18451 #: ../fish/guestfish.pod:445
18452 msgid ""
18453 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
18454 "guest before mounting or performing any other commands."
18455 msgstr ""
18456
18457 #. type: textblock
18458 #: ../fish/guestfish.pod:448
18459 msgid ""
18460 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
18461 "I<--new> options were given then C<run> is done automatically, simply "
18462 "because guestfish can't perform the action you asked for without doing this."
18463 msgstr ""
18464
18465 #. type: =head1
18466 #: ../fish/guestfish.pod:453
18467 msgid "OPENING DISKS FOR READ AND WRITE"
18468 msgstr ""
18469
18470 #. type: textblock
18471 #: ../fish/guestfish.pod:455
18472 msgid ""
18473 "The guestfish (and L<guestmount(1)>) options I<--ro> and I<--rw> affect "
18474 "whether the other command line options I<-a>, I<-c>, I<-d>, I<-i> and I<-m> "
18475 "open disk images read-only or for writing."
18476 msgstr ""
18477
18478 #. type: textblock
18479 #: ../fish/guestfish.pod:459
18480 msgid ""
18481 "In libguestfs E<lt> 1.6.2, guestfish and guestmount defaulted to opening "
18482 "disk images supplied on the command line for write.  To open a disk image "
18483 "read-only you have to do I<-a image --ro>."
18484 msgstr ""
18485
18486 #. type: textblock
18487 #: ../fish/guestfish.pod:463
18488 msgid ""
18489 "This matters: If you accidentally open a live VM disk image writable then "
18490 "you will cause irreversible disk corruption."
18491 msgstr ""
18492
18493 #. type: textblock
18494 #: ../fish/guestfish.pod:466
18495 msgid ""
18496 "By libguestfs 1.10 we intend to change the default the other way.  Disk "
18497 "images will be opened read-only.  You will have to either specify "
18498 "I<guestfish --rw> or change a configuration file in order to get write "
18499 "access for disk images specified by those other command line options."
18500 msgstr ""
18501
18502 #. type: textblock
18503 #: ../fish/guestfish.pod:471
18504 msgid ""
18505 "This version of guestfish has a I<--rw> option which does nothing (it is "
18506 "already the default).  However it is highly recommended that you use this "
18507 "option to indicate that guestfish needs write access, and to prepare your "
18508 "scripts for the day when this option will be required for write access."
18509 msgstr ""
18510
18511 #. type: textblock
18512 #: ../fish/guestfish.pod:477
18513 msgid ""
18514 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
18515 "other libguestfs program apart from guestfish and guestmount."
18516 msgstr ""
18517
18518 #. type: =head1
18519 #: ../fish/guestfish.pod:480
18520 msgid "QUOTING"
18521 msgstr ""
18522
18523 #. type: textblock
18524 #: ../fish/guestfish.pod:482
18525 msgid ""
18526 "You can quote ordinary parameters using either single or double quotes.  For "
18527 "example:"
18528 msgstr ""
18529
18530 #. type: verbatim
18531 #: ../fish/guestfish.pod:485
18532 #, no-wrap
18533 msgid ""
18534 " add \"file with a space.img\"\n"
18535 "\n"
18536 msgstr ""
18537
18538 #. type: verbatim
18539 #: ../fish/guestfish.pod:487
18540 #, no-wrap
18541 msgid ""
18542 " rm '/file name'\n"
18543 "\n"
18544 msgstr ""
18545
18546 #. type: verbatim
18547 #: ../fish/guestfish.pod:489
18548 #, no-wrap
18549 msgid ""
18550 " rm '/\"'\n"
18551 "\n"
18552 msgstr ""
18553
18554 #. type: textblock
18555 #: ../fish/guestfish.pod:491
18556 msgid ""
18557 "A few commands require a list of strings to be passed.  For these, use a "
18558 "whitespace-separated list, enclosed in quotes.  Strings containing "
18559 "whitespace to be passed through must be enclosed in single quotes.  A "
18560 "literal single quote must be escaped with a backslash."
18561 msgstr ""
18562
18563 #. type: verbatim
18564 #: ../fish/guestfish.pod:496
18565 #, no-wrap
18566 msgid ""
18567 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
18568 " command \"/bin/echo 'foo      bar'\"\n"
18569 " command \"/bin/echo \\'foo\\'\"\n"
18570 "\n"
18571 msgstr ""
18572
18573 #. type: =head1
18574 #: ../fish/guestfish.pod:500
18575 msgid "OPTIONAL ARGUMENTS"
18576 msgstr ""
18577
18578 #. type: textblock
18579 #: ../fish/guestfish.pod:502
18580 msgid ""
18581 "Some commands take optional arguments.  These arguments appear in this "
18582 "documentation as C<[argname:..]>.  You can use them as in these examples:"
18583 msgstr ""
18584
18585 #. type: verbatim
18586 #: ../fish/guestfish.pod:506
18587 #, no-wrap
18588 msgid ""
18589 " add-drive-opts filename\n"
18590 "\n"
18591 msgstr ""
18592
18593 #. type: verbatim
18594 #: ../fish/guestfish.pod:508
18595 #, no-wrap
18596 msgid ""
18597 " add-drive-opts filename readonly:true\n"
18598 "\n"
18599 msgstr ""
18600
18601 #. type: verbatim
18602 #: ../fish/guestfish.pod:510
18603 #, no-wrap
18604 msgid ""
18605 " add-drive-opts filename format:qcow2 readonly:false\n"
18606 "\n"
18607 msgstr ""
18608
18609 #. type: textblock
18610 #: ../fish/guestfish.pod:512
18611 msgid ""
18612 "Each optional argument can appear at most once.  All optional arguments must "
18613 "appear after the required ones."
18614 msgstr ""
18615
18616 #. type: =head1
18617 #: ../fish/guestfish.pod:515
18618 msgid "NUMBERS"
18619 msgstr ""
18620
18621 #. type: textblock
18622 #: ../fish/guestfish.pod:517
18623 msgid "This section applies to all commands which can take integers as parameters."
18624 msgstr ""
18625
18626 #. type: =head2
18627 #: ../fish/guestfish.pod:520
18628 msgid "SIZE SUFFIX"
18629 msgstr ""
18630
18631 #. type: textblock
18632 #: ../fish/guestfish.pod:522
18633 msgid ""
18634 "When the command takes a parameter measured in bytes, you can use one of the "
18635 "following suffixes to specify kilobytes, megabytes and larger sizes:"
18636 msgstr ""
18637
18638 #. type: =item
18639 #: ../fish/guestfish.pod:528
18640 msgid "B<k> or B<K> or B<KiB>"
18641 msgstr ""
18642
18643 #. type: textblock
18644 #: ../fish/guestfish.pod:530
18645 msgid "The size in kilobytes (multiplied by 1024)."
18646 msgstr ""
18647
18648 #. type: =item
18649 #: ../fish/guestfish.pod:532
18650 msgid "B<KB>"
18651 msgstr ""
18652
18653 #. type: textblock
18654 #: ../fish/guestfish.pod:534
18655 msgid "The size in SI 1000 byte units."
18656 msgstr ""
18657
18658 #. type: =item
18659 #: ../fish/guestfish.pod:536
18660 msgid "B<M> or B<MiB>"
18661 msgstr ""
18662
18663 #. type: textblock
18664 #: ../fish/guestfish.pod:538
18665 msgid "The size in megabytes (multiplied by 1048576)."
18666 msgstr ""
18667
18668 #. type: =item
18669 #: ../fish/guestfish.pod:540
18670 msgid "B<MB>"
18671 msgstr ""
18672
18673 #. type: textblock
18674 #: ../fish/guestfish.pod:542
18675 msgid "The size in SI 1000000 byte units."
18676 msgstr ""
18677
18678 #. type: =item
18679 #: ../fish/guestfish.pod:544
18680 msgid "B<G> or B<GiB>"
18681 msgstr ""
18682
18683 #. type: textblock
18684 #: ../fish/guestfish.pod:546
18685 msgid "The size in gigabytes (multiplied by 2**30)."
18686 msgstr ""
18687
18688 #. type: =item
18689 #: ../fish/guestfish.pod:548
18690 msgid "B<GB>"
18691 msgstr ""
18692
18693 #. type: textblock
18694 #: ../fish/guestfish.pod:550
18695 msgid "The size in SI 10**9 byte units."
18696 msgstr ""
18697
18698 #. type: =item
18699 #: ../fish/guestfish.pod:552
18700 msgid "B<T> or B<TiB>"
18701 msgstr ""
18702
18703 #. type: textblock
18704 #: ../fish/guestfish.pod:554
18705 msgid "The size in terabytes (multiplied by 2**40)."
18706 msgstr ""
18707
18708 #. type: =item
18709 #: ../fish/guestfish.pod:556
18710 msgid "B<TB>"
18711 msgstr ""
18712
18713 #. type: textblock
18714 #: ../fish/guestfish.pod:558
18715 msgid "The size in SI 10**12 byte units."
18716 msgstr ""
18717
18718 #. type: =item
18719 #: ../fish/guestfish.pod:560
18720 msgid "B<P> or B<PiB>"
18721 msgstr ""
18722
18723 #. type: textblock
18724 #: ../fish/guestfish.pod:562
18725 msgid "The size in petabytes (multiplied by 2**50)."
18726 msgstr ""
18727
18728 #. type: =item
18729 #: ../fish/guestfish.pod:564
18730 msgid "B<PB>"
18731 msgstr ""
18732
18733 #. type: textblock
18734 #: ../fish/guestfish.pod:566
18735 msgid "The size in SI 10**15 byte units."
18736 msgstr ""
18737
18738 #. type: =item
18739 #: ../fish/guestfish.pod:568
18740 msgid "B<E> or B<EiB>"
18741 msgstr ""
18742
18743 #. type: textblock
18744 #: ../fish/guestfish.pod:570
18745 msgid "The size in exabytes (multiplied by 2**60)."
18746 msgstr ""
18747
18748 #. type: =item
18749 #: ../fish/guestfish.pod:572
18750 msgid "B<EB>"
18751 msgstr ""
18752
18753 #. type: textblock
18754 #: ../fish/guestfish.pod:574
18755 msgid "The size in SI 10**18 byte units."
18756 msgstr ""
18757
18758 #. type: =item
18759 #: ../fish/guestfish.pod:576
18760 msgid "B<Z> or B<ZiB>"
18761 msgstr ""
18762
18763 #. type: textblock
18764 #: ../fish/guestfish.pod:578
18765 msgid "The size in zettabytes (multiplied by 2**70)."
18766 msgstr ""
18767
18768 #. type: =item
18769 #: ../fish/guestfish.pod:580
18770 msgid "B<ZB>"
18771 msgstr ""
18772
18773 #. type: textblock
18774 #: ../fish/guestfish.pod:582
18775 msgid "The size in SI 10**21 byte units."
18776 msgstr ""
18777
18778 #. type: =item
18779 #: ../fish/guestfish.pod:584
18780 msgid "B<Y> or B<YiB>"
18781 msgstr ""
18782
18783 #. type: textblock
18784 #: ../fish/guestfish.pod:586
18785 msgid "The size in yottabytes (multiplied by 2**80)."
18786 msgstr ""
18787
18788 #. type: =item
18789 #: ../fish/guestfish.pod:588
18790 msgid "B<YB>"
18791 msgstr ""
18792
18793 #. type: textblock
18794 #: ../fish/guestfish.pod:590
18795 msgid "The size in SI 10**24 byte units."
18796 msgstr ""
18797
18798 #. type: verbatim
18799 #: ../fish/guestfish.pod:596
18800 #, no-wrap
18801 msgid ""
18802 " truncate-size /file 1G\n"
18803 "\n"
18804 msgstr ""
18805
18806 #. type: textblock
18807 #: ../fish/guestfish.pod:598
18808 msgid "would truncate the file to 1 gigabyte."
18809 msgstr ""
18810
18811 #. type: textblock
18812 #: ../fish/guestfish.pod:600
18813 msgid ""
18814 "Be careful because a few commands take sizes in kilobytes or megabytes "
18815 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
18816 "Adding a suffix will probably not do what you expect."
18817 msgstr ""
18818
18819 #. type: =head2
18820 #: ../fish/guestfish.pod:604
18821 msgid "OCTAL AND HEXADECIMAL NUMBERS"
18822 msgstr ""
18823
18824 #. type: textblock
18825 #: ../fish/guestfish.pod:606
18826 msgid ""
18827 "For specifying the radix (base) use the C convention: C<0> to prefix an "
18828 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
18829 msgstr ""
18830
18831 #. type: verbatim
18832 #: ../fish/guestfish.pod:609
18833 #, no-wrap
18834 msgid ""
18835 " 1234      decimal number 1234\n"
18836 " 02322     octal number, equivalent to decimal 1234\n"
18837 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
18838 "\n"
18839 msgstr ""
18840
18841 #. type: textblock
18842 #: ../fish/guestfish.pod:613
18843 msgid ""
18844 "When using the C<chmod> command, you almost always want to specify an octal "
18845 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
18846 "L<chmod(1)> program):"
18847 msgstr ""
18848
18849 #. type: verbatim
18850 #: ../fish/guestfish.pod:617
18851 #, no-wrap
18852 msgid ""
18853 " chmod 0777 /public  # OK\n"
18854 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
18855 "\n"
18856 msgstr ""
18857
18858 #. type: textblock
18859 #: ../fish/guestfish.pod:620
18860 msgid ""
18861 "Commands that return numbers usually print them in decimal, but some "
18862 "commands print numbers in other radices (eg. C<umask> prints the mode in "
18863 "octal, preceeded by C<0>)."
18864 msgstr ""
18865
18866 #. type: =head1
18867 #: ../fish/guestfish.pod:624
18868 msgid "WILDCARDS AND GLOBBING"
18869 msgstr ""
18870
18871 #. type: textblock
18872 #: ../fish/guestfish.pod:626
18873 msgid ""
18874 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
18875 "(globbing) by default.  So for example the following will not do what you "
18876 "expect:"
18877 msgstr ""
18878
18879 #. type: verbatim
18880 #: ../fish/guestfish.pod:630
18881 #, no-wrap
18882 msgid ""
18883 " rm-rf /home/*\n"
18884 "\n"
18885 msgstr ""
18886
18887 #. type: textblock
18888 #: ../fish/guestfish.pod:632
18889 msgid ""
18890 "Assuming you don't have a directory called literally C</home/*> then the "
18891 "above command will return an error."
18892 msgstr ""
18893
18894 #. type: textblock
18895 #: ../fish/guestfish.pod:635
18896 msgid "To perform wildcard expansion, use the C<glob> command."
18897 msgstr ""
18898
18899 #. type: verbatim
18900 #: ../fish/guestfish.pod:637
18901 #, no-wrap
18902 msgid ""
18903 " glob rm-rf /home/*\n"
18904 "\n"
18905 msgstr ""
18906
18907 #. type: textblock
18908 #: ../fish/guestfish.pod:639
18909 msgid ""
18910 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
18911 "many times), equivalent to:"
18912 msgstr ""
18913
18914 #. type: verbatim
18915 #: ../fish/guestfish.pod:642
18916 #, no-wrap
18917 msgid ""
18918 " rm-rf /home/jim\n"
18919 " rm-rf /home/joe\n"
18920 " rm-rf /home/mary\n"
18921 "\n"
18922 msgstr ""
18923
18924 #. type: textblock
18925 #: ../fish/guestfish.pod:646
18926 msgid "C<glob> only works on simple guest paths and not on device names."
18927 msgstr ""
18928
18929 #. type: textblock
18930 #: ../fish/guestfish.pod:648
18931 msgid ""
18932 "If you have several parameters, each containing a wildcard, then glob will "
18933 "perform a Cartesian product."
18934 msgstr ""
18935
18936 #. type: =head1
18937 #: ../fish/guestfish.pod:651
18938 msgid "COMMENTS"
18939 msgstr ""
18940
18941 #. type: textblock
18942 #: ../fish/guestfish.pod:653
18943 msgid ""
18944 "Any line which starts with a I<#> character is treated as a comment and "
18945 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
18946 "a command.  For example:"
18947 msgstr ""
18948
18949 #. type: verbatim
18950 #: ../fish/guestfish.pod:657
18951 #, no-wrap
18952 msgid ""
18953 " # this is a comment\n"
18954 "         # this is a comment\n"
18955 " foo # NOT a comment\n"
18956 "\n"
18957 msgstr ""
18958
18959 #. type: textblock
18960 #: ../fish/guestfish.pod:661
18961 msgid "Blank lines are also ignored."
18962 msgstr ""
18963
18964 #. type: =head1
18965 #: ../fish/guestfish.pod:663
18966 msgid "RUNNING COMMANDS LOCALLY"
18967 msgstr ""
18968
18969 #. type: textblock
18970 #: ../fish/guestfish.pod:665
18971 msgid ""
18972 "Any line which starts with a I<!> character is treated as a command sent to "
18973 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
18974 msgstr ""
18975
18976 #. type: verbatim
18977 #: ../fish/guestfish.pod:669
18978 #, no-wrap
18979 msgid ""
18980 " !mkdir local\n"
18981 " tgz-out /remote local/remote-data.tar.gz\n"
18982 "\n"
18983 msgstr ""
18984
18985 #. type: textblock
18986 #: ../fish/guestfish.pod:672
18987 msgid ""
18988 "will create a directory C<local> on the host, and then export the contents "
18989 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
18990 "(See C<tgz-out>)."
18991 msgstr ""
18992
18993 #. type: textblock
18994 #: ../fish/guestfish.pod:676
18995 msgid ""
18996 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
18997 "effect, due to the way that subprocesses work in Unix."
18998 msgstr ""
18999
19000 #. type: =head1
19001 #: ../fish/guestfish.pod:679
19002 msgid "PIPES"
19003 msgstr ""
19004
19005 #. type: textblock
19006 #: ../fish/guestfish.pod:681
19007 msgid ""
19008 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
19009 "command (a guestfish command) to the second command (any host command).  For "
19010 "example:"
19011 msgstr ""
19012
19013 #. type: verbatim
19014 #: ../fish/guestfish.pod:685
19015 #, no-wrap
19016 msgid ""
19017 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
19018 "\n"
19019 msgstr ""
19020
19021 #. type: textblock
19022 #: ../fish/guestfish.pod:687
19023 msgid ""
19024 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
19025 "program).  The above command would list all accounts in the guest filesystem "
19026 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
19027 msgstr ""
19028
19029 #. type: verbatim
19030 #: ../fish/guestfish.pod:692
19031 #, no-wrap
19032 msgid ""
19033 " hexdump /bin/ls | head\n"
19034 " list-devices | tail -1\n"
19035 " tgz-out / - | tar ztf -\n"
19036 "\n"
19037 msgstr ""
19038
19039 #. type: textblock
19040 #: ../fish/guestfish.pod:696
19041 msgid ""
19042 "The space before the pipe symbol is required, any space after the pipe "
19043 "symbol is optional.  Everything after the pipe symbol is just passed "
19044 "straight to the host shell, so it can contain redirections, globs and "
19045 "anything else that makes sense on the host side."
19046 msgstr ""
19047
19048 #. type: textblock
19049 #: ../fish/guestfish.pod:701
19050 msgid ""
19051 "To use a literal argument which begins with a pipe symbol, you have to quote "
19052 "it, eg:"
19053 msgstr ""
19054
19055 #. type: verbatim
19056 #: ../fish/guestfish.pod:704
19057 #, no-wrap
19058 msgid ""
19059 " echo \"|\"\n"
19060 "\n"
19061 msgstr ""
19062
19063 #. type: =head1
19064 #: ../fish/guestfish.pod:706
19065 msgid "HOME DIRECTORIES"
19066 msgstr ""
19067
19068 #. type: textblock
19069 #: ../fish/guestfish.pod:708
19070 msgid ""
19071 "If a parameter starts with the character C<~> then the tilde may be expanded "
19072 "as a home directory path (either C<~> for the current user's home directory, "
19073 "or C<~user> for another user)."
19074 msgstr ""
19075
19076 #. type: textblock
19077 #: ../fish/guestfish.pod:712
19078 msgid ""
19079 "Note that home directory expansion happens for users known I<on the host>, "
19080 "not in the guest filesystem."
19081 msgstr ""
19082
19083 #. type: textblock
19084 #: ../fish/guestfish.pod:715
19085 msgid ""
19086 "To use a literal argument which begins with a tilde, you have to quote it, "
19087 "eg:"
19088 msgstr ""
19089
19090 #. type: verbatim
19091 #: ../fish/guestfish.pod:718
19092 #, no-wrap
19093 msgid ""
19094 " echo \"~\"\n"
19095 "\n"
19096 msgstr ""
19097
19098 #. type: textblock
19099 #: ../fish/guestfish.pod:722
19100 msgid ""
19101 "Libguestfs has some support for Linux guests encrypted according to the "
19102 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
19103 "disk encryption systems used by modern Linux guests.  Currently only "
19104 "LVM-on-LUKS is supported."
19105 msgstr ""
19106
19107 #. type: textblock
19108 #: ../fish/guestfish.pod:727
19109 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
19110 msgstr ""
19111
19112 #. type: verbatim
19113 #: ../fish/guestfish.pod:729
19114 #, no-wrap
19115 msgid ""
19116 " ><fs> vfs-type /dev/sda2\n"
19117 " crypto_LUKS\n"
19118 "\n"
19119 msgstr ""
19120
19121 #. type: textblock
19122 #: ../fish/guestfish.pod:732
19123 msgid ""
19124 "Then open those devices using L</luks-open>.  This creates a device-mapper "
19125 "device called C</dev/mapper/luksdev>."
19126 msgstr ""
19127
19128 #. type: verbatim
19129 #: ../fish/guestfish.pod:735
19130 #, no-wrap
19131 msgid ""
19132 " ><fs> luks-open /dev/sda2 luksdev\n"
19133 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
19134 "\n"
19135 msgstr ""
19136
19137 #. type: textblock
19138 #: ../fish/guestfish.pod:738
19139 msgid ""
19140 "Finally you have to tell LVM to scan for volume groups on the newly created "
19141 "mapper device:"
19142 msgstr ""
19143
19144 #. type: verbatim
19145 #: ../fish/guestfish.pod:741
19146 #, no-wrap
19147 msgid ""
19148 " vgscan\n"
19149 " vg-activate-all true\n"
19150 "\n"
19151 msgstr ""
19152
19153 #. type: textblock
19154 #: ../fish/guestfish.pod:744
19155 msgid "The logical volume(s) can now be mounted in the usual way."
19156 msgstr ""
19157
19158 #. type: textblock
19159 #: ../fish/guestfish.pod:746
19160 msgid ""
19161 "Before closing a LUKS device you must unmount any logical volumes on it and "
19162 "deactivate the volume groups by calling C<vg-activate false VG> on each "
19163 "one.  Then you can close the mapper device:"
19164 msgstr ""
19165
19166 #. type: verbatim
19167 #: ../fish/guestfish.pod:750
19168 #, no-wrap
19169 msgid ""
19170 " vg-activate false /dev/VG\n"
19171 " luks-close /dev/mapper/luksdev\n"
19172 "\n"
19173 msgstr ""
19174
19175 #. type: =head1
19176 #: ../fish/guestfish.pod:753
19177 msgid "WINDOWS PATHS"
19178 msgstr ""
19179
19180 #. type: textblock
19181 #: ../fish/guestfish.pod:755
19182 msgid ""
19183 "If a path is prefixed with C<win:> then you can use Windows-style paths "
19184 "(with some limitations).  The following commands are equivalent:"
19185 msgstr ""
19186
19187 #. type: verbatim
19188 #: ../fish/guestfish.pod:758
19189 #, no-wrap
19190 msgid ""
19191 " file /WINDOWS/system32/config/system.LOG\n"
19192 "\n"
19193 msgstr ""
19194
19195 #. type: verbatim
19196 #: ../fish/guestfish.pod:760
19197 #, no-wrap
19198 msgid ""
19199 " file win:/windows/system32/config/system.log\n"
19200 "\n"
19201 msgstr ""
19202
19203 #. type: verbatim
19204 #: ../fish/guestfish.pod:762
19205 #, no-wrap
19206 msgid ""
19207 " file win:\\windows\\system32\\config\\system.log\n"
19208 "\n"
19209 msgstr ""
19210
19211 #. type: verbatim
19212 #: ../fish/guestfish.pod:764
19213 #, no-wrap
19214 msgid ""
19215 " file WIN:C:\\Windows\\SYSTEM32\\conFIG\\SYSTEM.LOG\n"
19216 "\n"
19217 msgstr ""
19218
19219 #. type: textblock
19220 #: ../fish/guestfish.pod:766
19221 msgid ""
19222 "This syntax implicitly calls C<case-sensitive-path> (q.v.) so it also "
19223 "handles case insensitivity like Windows would.  This only works in argument "
19224 "positions that expect a path."
19225 msgstr ""
19226
19227 #. type: =head1
19228 #: ../fish/guestfish.pod:770
19229 msgid "UPLOADING AND DOWNLOADING FILES"
19230 msgstr ""
19231
19232 #. type: textblock
19233 #: ../fish/guestfish.pod:772
19234 msgid ""
19235 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
19236 "others which upload from or download to a local file, you can use the "
19237 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
19238 msgstr ""
19239
19240 #. type: verbatim
19241 #: ../fish/guestfish.pod:776
19242 #, no-wrap
19243 msgid ""
19244 " upload - /foo\n"
19245 "\n"
19246 msgstr ""
19247
19248 #. type: textblock
19249 #: ../fish/guestfish.pod:778
19250 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
19251 msgstr ""
19252
19253 #. type: verbatim
19254 #: ../fish/guestfish.pod:781
19255 #, no-wrap
19256 msgid ""
19257 " tar-out /etc - | tar tf -\n"
19258 "\n"
19259 msgstr ""
19260
19261 #. type: textblock
19262 #: ../fish/guestfish.pod:783
19263 msgid ""
19264 "writes the tarball to stdout and then pipes that into the external \"tar\" "
19265 "command (see L</PIPES>)."
19266 msgstr ""
19267
19268 #. type: textblock
19269 #: ../fish/guestfish.pod:786
19270 msgid ""
19271 "When using C<-> to read from stdin, the input is read up to the end of "
19272 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
19273 "some arbitrary end marker:"
19274 msgstr ""
19275
19276 #. type: verbatim
19277 #: ../fish/guestfish.pod:790
19278 #, no-wrap
19279 msgid ""
19280 " upload -<<END /foo\n"
19281 " input line 1\n"
19282 " input line 2\n"
19283 " input line 3\n"
19284 " END\n"
19285 "\n"
19286 msgstr ""
19287
19288 #. type: textblock
19289 #: ../fish/guestfish.pod:796
19290 msgid ""
19291 "Any string of characters can be used instead of C<END>.  The end marker must "
19292 "appear on a line of its own, without any preceeding or following characters "
19293 "(not even spaces)."
19294 msgstr ""
19295
19296 #. type: textblock
19297 #: ../fish/guestfish.pod:800
19298 msgid ""
19299 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
19300 "upload local files (so-called \"FileIn\" parameters in the generator)."
19301 msgstr ""
19302
19303 #. type: =head1
19304 #: ../fish/guestfish.pod:803
19305 msgid "EXIT ON ERROR BEHAVIOUR"
19306 msgstr ""
19307
19308 #. type: textblock
19309 #: ../fish/guestfish.pod:805
19310 msgid ""
19311 "By default, guestfish will ignore any errors when in interactive mode "
19312 "(ie. taking commands from a human over a tty), and will exit on the first "
19313 "error in non-interactive mode (scripts, commands given on the command line)."
19314 msgstr ""
19315
19316 #. type: textblock
19317 #: ../fish/guestfish.pod:810
19318 msgid ""
19319 "If you prefix a command with a I<-> character, then that command will not "
19320 "cause guestfish to exit, even if that (one) command returns an error."
19321 msgstr ""
19322
19323 #. type: =head1
19324 #: ../fish/guestfish.pod:814
19325 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
19326 msgstr ""
19327
19328 #. type: textblock
19329 #: ../fish/guestfish.pod:816
19330 msgid ""
19331 "Guestfish can be remote-controlled over a socket.  This is useful "
19332 "particularly in shell scripts where you want to make several different "
19333 "changes to a filesystem, but you don't want the overhead of starting up a "
19334 "guestfish process each time."
19335 msgstr ""
19336
19337 #. type: textblock
19338 #: ../fish/guestfish.pod:821
19339 msgid "Start a guestfish server process using:"
19340 msgstr ""
19341
19342 #. type: verbatim
19343 #: ../fish/guestfish.pod:823
19344 #, no-wrap
19345 msgid ""
19346 " eval \"`guestfish --listen`\"\n"
19347 "\n"
19348 msgstr ""
19349
19350 #. type: textblock
19351 #: ../fish/guestfish.pod:825
19352 msgid "and then send it commands by doing:"
19353 msgstr ""
19354
19355 #. type: verbatim
19356 #: ../fish/guestfish.pod:827
19357 #, no-wrap
19358 msgid ""
19359 " guestfish --remote cmd [...]\n"
19360 "\n"
19361 msgstr ""
19362
19363 #. type: textblock
19364 #: ../fish/guestfish.pod:829
19365 msgid "To cause the server to exit, send it the exit command:"
19366 msgstr ""
19367
19368 #. type: verbatim
19369 #: ../fish/guestfish.pod:831
19370 #, no-wrap
19371 msgid ""
19372 " guestfish --remote exit\n"
19373 "\n"
19374 msgstr ""
19375
19376 #. type: textblock
19377 #: ../fish/guestfish.pod:833
19378 msgid ""
19379 "Note that the server will normally exit if there is an error in a command.  "
19380 "You can change this in the usual way.  See section L</EXIT ON ERROR "
19381 "BEHAVIOUR>."
19382 msgstr ""
19383
19384 #. type: =head2
19385 #: ../fish/guestfish.pod:837
19386 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
19387 msgstr ""
19388
19389 #. type: textblock
19390 #: ../fish/guestfish.pod:839
19391 msgid ""
19392 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
19393 "is how the I<--remote> option knows where to send the commands.  You can "
19394 "have several guestfish listener processes running using:"
19395 msgstr ""
19396
19397 #. type: verbatim
19398 #: ../fish/guestfish.pod:843
19399 #, no-wrap
19400 msgid ""
19401 " eval \"`guestfish --listen`\"\n"
19402 " pid1=$GUESTFISH_PID\n"
19403 " eval \"`guestfish --listen`\"\n"
19404 " pid2=$GUESTFISH_PID\n"
19405 " ...\n"
19406 " guestfish --remote=$pid1 cmd\n"
19407 " guestfish --remote=$pid2 cmd\n"
19408 "\n"
19409 msgstr ""
19410
19411 #. type: =head2
19412 #: ../fish/guestfish.pod:851
19413 msgid "REMOTE CONTROL AND CSH"
19414 msgstr ""
19415
19416 #. type: textblock
19417 #: ../fish/guestfish.pod:853
19418 msgid ""
19419 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
19420 "option:"
19421 msgstr ""
19422
19423 #. type: verbatim
19424 #: ../fish/guestfish.pod:856
19425 #, no-wrap
19426 msgid ""
19427 " eval \"`guestfish --listen --csh`\"\n"
19428 "\n"
19429 msgstr ""
19430
19431 #. type: =head2
19432 #: ../fish/guestfish.pod:858
19433 msgid "REMOTE CONTROL DETAILS"
19434 msgstr ""
19435
19436 #. type: textblock
19437 #: ../fish/guestfish.pod:860
19438 msgid ""
19439 "Remote control happens over a Unix domain socket called "
19440 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
19441 "of the process, and C<$PID> is the process ID of the server."
19442 msgstr ""
19443
19444 #. type: textblock
19445 #: ../fish/guestfish.pod:864
19446 msgid "Guestfish client and server versions must match exactly."
19447 msgstr ""
19448
19449 #. type: =head1
19450 #: ../fish/guestfish.pod:866
19451 msgid "PREPARED DISK IMAGES"
19452 msgstr ""
19453
19454 #. type: textblock
19455 #: ../fish/guestfish.pod:868
19456 msgid ""
19457 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
19458 "preformatted disk images that guestfish can make for you to save typing.  "
19459 "This is particularly useful for testing purposes.  This option is used "
19460 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
19461 "can be mixed with I<-a>)."
19462 msgstr ""
19463
19464 #. type: textblock
19465 #: ../fish/guestfish.pod:874
19466 msgid ""
19467 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
19468 "the second and so on.  Existing files in the current directory are "
19469 "I<overwritten>."
19470 msgstr ""
19471
19472 #. type: textblock
19473 #: ../fish/guestfish.pod:878
19474 msgid ""
19475 "The type briefly describes how the disk should be sized, partitioned, how "
19476 "filesystem(s) should be created, and how content should be added.  "
19477 "Optionally the type can be followed by extra parameters, separated by C<:> "
19478 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
19479 "sparsely-allocated disk, containing a single partition, with the partition "
19480 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
19481 "on a 1GB disk instead."
19482 msgstr ""
19483
19484 #. type: textblock
19485 #: ../fish/guestfish.pod:886
19486 msgid "To list the available types and any extra parameters they take, run:"
19487 msgstr ""
19488
19489 #. type: textblock
19490 #: ../fish/guestfish.pod:890
19491 msgid ""
19492 "Note that the prepared filesystem is not mounted.  You would usually have to "
19493 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
19494 msgstr ""
19495
19496 #. type: textblock
19497 #: ../fish/guestfish.pod:894
19498 msgid ""
19499 "If any I<-N> or I<--new> options are given, the guest is automatically "
19500 "launched."
19501 msgstr ""
19502
19503 #. type: textblock
19504 #: ../fish/guestfish.pod:899
19505 msgid "Create a 100MB disk with an ext4-formatted partition:"
19506 msgstr ""
19507
19508 #. type: verbatim
19509 #: ../fish/guestfish.pod:901
19510 #, no-wrap
19511 msgid ""
19512 " guestfish -N fs:ext4\n"
19513 "\n"
19514 msgstr ""
19515
19516 #. type: textblock
19517 #: ../fish/guestfish.pod:903
19518 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
19519 msgstr ""
19520
19521 #. type: verbatim
19522 #: ../fish/guestfish.pod:905
19523 #, no-wrap
19524 msgid ""
19525 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
19526 "\n"
19527 msgstr ""
19528
19529 #. type: textblock
19530 #: ../fish/guestfish.pod:907
19531 msgid "Create a blank 200MB disk:"
19532 msgstr ""
19533
19534 #. type: verbatim
19535 #: ../fish/guestfish.pod:909
19536 #, no-wrap
19537 msgid ""
19538 " guestfish -N disk:200M\n"
19539 "\n"
19540 msgstr ""
19541
19542 #. type: =head1
19543 #: ../fish/guestfish.pod:911
19544 msgid "PROGRESS BARS"
19545 msgstr ""
19546
19547 #. type: textblock
19548 #: ../fish/guestfish.pod:913
19549 msgid ""
19550 "Some (not all) long-running commands send progress notification messages as "
19551 "they are running.  Guestfish turns these messages into progress bars."
19552 msgstr ""
19553
19554 #. type: textblock
19555 #: ../fish/guestfish.pod:917
19556 msgid ""
19557 "When a command that supports progress bars takes longer than two seconds to "
19558 "run, and if progress bars are enabled, then you will see one appearing below "
19559 "the command:"
19560 msgstr ""
19561
19562 #. type: verbatim
19563 #: ../fish/guestfish.pod:921
19564 #, no-wrap
19565 msgid ""
19566 " ><fs> copy-size /large-file /another-file 2048M\n"
19567 " / 10% [#####-----------------------------------------] 00:30\n"
19568 "\n"
19569 msgstr ""
19570
19571 #. type: textblock
19572 #: ../fish/guestfish.pod:924
19573 msgid ""
19574 "The spinner on the left hand side moves round once for every progress "
19575 "notification received from the backend.  This is a (reasonably) golden "
19576 "assurance that the command is \"doing something\" even if the progress bar "
19577 "is not moving, because the command is able to send the progress "
19578 "notifications.  When the bar reaches 100% and the command finishes, the "
19579 "spinner disappears."
19580 msgstr ""
19581
19582 #. type: textblock
19583 #: ../fish/guestfish.pod:931
19584 msgid ""
19585 "Progress bars are enabled by default when guestfish is used interactively.  "
19586 "You can enable them even for non-interactive modes using I<--progress-bars>, "
19587 "and you can disable them completely using I<--no-progress-bars>."
19588 msgstr ""
19589
19590 #. type: =head1
19591 #: ../fish/guestfish.pod:936
19592 msgid "GUESTFISH COMMANDS"
19593 msgstr ""
19594
19595 #. type: textblock
19596 #: ../fish/guestfish.pod:938
19597 msgid ""
19598 "The commands in this section are guestfish convenience commands, in other "
19599 "words, they are not part of the L<guestfs(3)> API."
19600 msgstr ""
19601
19602 #. type: =head2
19603 #: ../fish/guestfish.pod:941
19604 msgid "help"
19605 msgstr ""
19606
19607 #. type: verbatim
19608 #: ../fish/guestfish.pod:943
19609 #, no-wrap
19610 msgid ""
19611 " help\n"
19612 " help cmd\n"
19613 "\n"
19614 msgstr ""
19615
19616 #. type: textblock
19617 #: ../fish/guestfish.pod:946
19618 msgid "Without any parameter, this provides general help."
19619 msgstr ""
19620
19621 #. type: textblock
19622 #: ../fish/guestfish.pod:948
19623 msgid "With a C<cmd> parameter, this displays detailed help for that command."
19624 msgstr ""
19625
19626 #. type: =head2
19627 #: ../fish/guestfish.pod:950
19628 msgid "quit | exit"
19629 msgstr ""
19630
19631 #. type: textblock
19632 #: ../fish/guestfish.pod:952
19633 msgid "This exits guestfish.  You can also use C<^D> key."
19634 msgstr ""
19635
19636 #. type: textblock
19637 #: ../fish/guestfish.pod:954
19638 msgid "@FISH_COMMANDS@"
19639 msgstr ""
19640
19641 #. type: =head1
19642 #: ../fish/guestfish.pod:956
19643 msgid "COMMANDS"
19644 msgstr ""
19645
19646 #. type: =head1
19647 #: ../fish/guestfish.pod:960 ../test-tool/libguestfs-test-tool.pod:83
19648 msgid "EXIT CODE"
19649 msgstr ""
19650
19651 #. type: textblock
19652 #: ../fish/guestfish.pod:962
19653 msgid ""
19654 "guestfish returns 0 if the commands completed without error, or 1 if there "
19655 "was an error."
19656 msgstr ""
19657
19658 #. type: =item
19659 #: ../fish/guestfish.pod:969
19660 msgid "EDITOR"
19661 msgstr ""
19662
19663 #. type: textblock
19664 #: ../fish/guestfish.pod:971
19665 msgid ""
19666 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
19667 "C<vi>."
19668 msgstr ""
19669
19670 #. type: =item
19671 #: ../fish/guestfish.pod:974
19672 msgid "GUESTFISH_PID"
19673 msgstr ""
19674
19675 #. type: textblock
19676 #: ../fish/guestfish.pod:976
19677 msgid ""
19678 "Used with the I<--remote> option to specify the remote guestfish process to "
19679 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
19680 msgstr ""
19681
19682 #. type: =item
19683 #: ../fish/guestfish.pod:980
19684 msgid "HEXEDITOR"
19685 msgstr ""
19686
19687 #. type: textblock
19688 #: ../fish/guestfish.pod:982
19689 msgid ""
19690 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
19691 "not specified, the external L<hexedit(1)> program is used."
19692 msgstr ""
19693
19694 #. type: =item
19695 #: ../fish/guestfish.pod:986
19696 msgid "HOME"
19697 msgstr ""
19698
19699 #. type: textblock
19700 #: ../fish/guestfish.pod:988
19701 msgid ""
19702 "If compiled with GNU readline support, various files in the home directory "
19703 "can be used.  See L</FILES>."
19704 msgstr ""
19705
19706 #. type: textblock
19707 #: ../fish/guestfish.pod:997
19708 msgid ""
19709 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
19710 "effect as using the B<-v> option."
19711 msgstr ""
19712
19713 #. type: textblock
19714 #: ../fish/guestfish.pod:1009
19715 msgid ""
19716 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
19717 "the discussion of paths in L<guestfs(3)>."
19718 msgstr ""
19719
19720 #. type: textblock
19721 #: ../fish/guestfish.pod:1020
19722 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
19723 msgstr ""
19724
19725 #. type: =item
19726 #: ../fish/guestfish.pod:1022
19727 msgid "PAGER"
19728 msgstr ""
19729
19730 #. type: textblock
19731 #: ../fish/guestfish.pod:1024
19732 msgid ""
19733 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
19734 "C<more>."
19735 msgstr ""
19736
19737 #. type: =head1
19738 #: ../fish/guestfish.pod:1039 ../test-tool/libguestfs-test-tool.pod:88
19739 msgid "FILES"
19740 msgstr ""
19741
19742 #. type: =item
19743 #: ../fish/guestfish.pod:1043
19744 msgid "$HOME/.guestfish"
19745 msgstr ""
19746
19747 #. type: textblock
19748 #: ../fish/guestfish.pod:1045
19749 msgid ""
19750 "If compiled with GNU readline support, then the command history is saved in "
19751 "this file."
19752 msgstr ""
19753
19754 #. type: =item
19755 #: ../fish/guestfish.pod:1048
19756 msgid "$HOME/.inputrc"
19757 msgstr ""
19758
19759 #. type: =item
19760 #: ../fish/guestfish.pod:1050
19761 msgid "/etc/inputrc"
19762 msgstr ""
19763
19764 #. type: textblock
19765 #: ../fish/guestfish.pod:1052
19766 msgid ""
19767 "If compiled with GNU readline support, then these files can be used to "
19768 "configure readline.  For further information, please see "
19769 "L<readline(3)/INITIALIZATION FILE>."
19770 msgstr ""
19771
19772 #. type: textblock
19773 #: ../fish/guestfish.pod:1056
19774 msgid "To write rules which only apply to guestfish, use:"
19775 msgstr ""
19776
19777 #. type: verbatim
19778 #: ../fish/guestfish.pod:1058
19779 #, no-wrap
19780 msgid ""
19781 " $if guestfish\n"
19782 " ...\n"
19783 " $endif\n"
19784 "\n"
19785 msgstr ""
19786
19787 #. type: textblock
19788 #: ../fish/guestfish.pod:1062
19789 msgid ""
19790 "Variables that you can set in inputrc that change the behaviour of guestfish "
19791 "in useful ways include:"
19792 msgstr ""
19793
19794 #. type: =item
19795 #: ../fish/guestfish.pod:1067
19796 msgid "completion-ignore-case (default: on)"
19797 msgstr ""
19798
19799 #. type: textblock
19800 #: ../fish/guestfish.pod:1069
19801 msgid ""
19802 "By default, guestfish will ignore case when tab-completing paths on the "
19803 "disk.  Use:"
19804 msgstr ""
19805
19806 #. type: verbatim
19807 #: ../fish/guestfish.pod:1072
19808 #, no-wrap
19809 msgid ""
19810 " set completion-ignore-case off\n"
19811 "\n"
19812 msgstr ""
19813
19814 #. type: textblock
19815 #: ../fish/guestfish.pod:1074
19816 msgid "to make guestfish case sensitive."
19817 msgstr ""
19818
19819 #. type: =item
19820 #: ../fish/guestfish.pod:1078
19821 msgid "test1.img"
19822 msgstr ""
19823
19824 #. type: =item
19825 #: ../fish/guestfish.pod:1080
19826 msgid "test2.img (etc)"
19827 msgstr ""
19828
19829 #. type: textblock
19830 #: ../fish/guestfish.pod:1082
19831 msgid ""
19832 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
19833 "will be created in the file C<test1.img> in the current directory.  The "
19834 "second use of C<-N> will use C<test2.img> and so on.  Any existing file with "
19835 "the same name will be overwritten."
19836 msgstr ""
19837
19838 #. type: textblock
19839 #: ../fish/guestfish.pod:1091
19840 msgid ""
19841 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-df(1)>, "
19842 "L<virt-edit(1)>, L<virt-filesystems(1)>, L<virt-inspector(1)>, "
19843 "L<virt-list-filesystems(1)>, L<virt-list-partitions(1)>, L<virt-ls(1)>, "
19844 "L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, "
19845 "L<virt-win-reg(1)>, L<hexedit(1)>."
19846 msgstr ""
19847
19848 #. type: textblock
19849 #: ../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
19850 msgid ""
19851 "This program is free software; you can redistribute it and/or modify it "
19852 "under the terms of the GNU General Public License as published by the Free "
19853 "Software Foundation; either version 2 of the License, or (at your option) "
19854 "any later version."
19855 msgstr ""
19856
19857 #. type: textblock
19858 #: ../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
19859 msgid ""
19860 "This program is distributed in the hope that it will be useful, but WITHOUT "
19861 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
19862 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
19863 "more details."
19864 msgstr ""
19865
19866 #. type: textblock
19867 #: ../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
19868 msgid ""
19869 "You should have received a copy of the GNU General Public License along with "
19870 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
19871 "Ave, Cambridge, MA 02139, USA."
19872 msgstr ""
19873
19874 #. type: =head2
19875 #: ../fish/guestfish-actions.pod:1
19876 msgid "add-cdrom"
19877 msgstr ""
19878
19879 #. type: verbatim
19880 #: ../fish/guestfish-actions.pod:3
19881 #, no-wrap
19882 msgid ""
19883 " add-cdrom filename\n"
19884 "\n"
19885 msgstr ""
19886
19887 #. type: textblock
19888 #: ../fish/guestfish-actions.pod:15
19889 msgid ""
19890 "This call checks for the existence of C<filename>.  This stops you from "
19891 "specifying other types of drive which are supported by qemu such as C<nbd:> "
19892 "and C<http:> URLs.  To specify those, use the general L</config> call "
19893 "instead."
19894 msgstr ""
19895
19896 #. type: textblock
19897 #: ../fish/guestfish-actions.pod:22
19898 msgid ""
19899 "If you just want to add an ISO file (often you use this as an efficient way "
19900 "to transfer large files into the guest), then you should probably use "
19901 "L</add-drive-ro> instead."
19902 msgstr ""
19903
19904 #. type: =head2
19905 #: ../fish/guestfish-actions.pod:35
19906 msgid "add-domain"
19907 msgstr ""
19908
19909 #. type: =head2
19910 #: ../fish/guestfish-actions.pod:37
19911 msgid "domain"
19912 msgstr ""
19913
19914 #. type: verbatim
19915 #: ../fish/guestfish-actions.pod:39
19916 #, no-wrap
19917 msgid ""
19918 " add-domain dom [libvirturi:..] [readonly:..] [iface:..]\n"
19919 "\n"
19920 msgstr ""
19921
19922 #. type: textblock
19923 #: ../fish/guestfish-actions.pod:41
19924 msgid ""
19925 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
19926 "It works by connecting to libvirt, requesting the domain and domain XML from "
19927 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
19928 msgstr ""
19929
19930 #. type: textblock
19931 #: ../fish/guestfish-actions.pod:64
19932 msgid ""
19933 "The other optional parameters are passed directly through to "
19934 "L</add-drive-opts>."
19935 msgstr ""
19936
19937 #. type: textblock
19938 #: ../fish/guestfish-actions.pod:67 ../fish/guestfish-actions.pod:131 ../fish/guestfish-actions.pod:2845
19939 msgid ""
19940 "This command has one or more optional arguments.  See L</OPTIONAL "
19941 "ARGUMENTS>."
19942 msgstr ""
19943
19944 #. type: =head2
19945 #: ../fish/guestfish-actions.pod:69
19946 msgid "add-drive"
19947 msgstr ""
19948
19949 #. type: verbatim
19950 #: ../fish/guestfish-actions.pod:71
19951 #, no-wrap
19952 msgid ""
19953 " add-drive filename\n"
19954 "\n"
19955 msgstr ""
19956
19957 #. type: textblock
19958 #: ../fish/guestfish-actions.pod:73
19959 msgid ""
19960 "This function is the equivalent of calling L</add-drive-opts> with no "
19961 "optional parameters, so the disk is added writable, with the format being "
19962 "detected automatically."
19963 msgstr ""
19964
19965 #. type: textblock
19966 #: ../fish/guestfish-actions.pod:77
19967 msgid ""
19968 "Automatic detection of the format opens you up to a potential security hole "
19969 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
19970 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
19971 "you should think about replacing calls to this function with calls to "
19972 "L</add-drive-opts>, and specifying the format."
19973 msgstr ""
19974
19975 #. type: =head2
19976 #: ../fish/guestfish-actions.pod:84
19977 msgid "add-drive-opts"
19978 msgstr ""
19979
19980 #. type: =head2
19981 #: ../fish/guestfish-actions.pod:86
19982 msgid "add"
19983 msgstr ""
19984
19985 #. type: verbatim
19986 #: ../fish/guestfish-actions.pod:88
19987 #, no-wrap
19988 msgid ""
19989 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
19990 "\n"
19991 msgstr ""
19992
19993 #. type: textblock
19994 #: ../fish/guestfish-actions.pod:115
19995 msgid ""
19996 "This forces the image format.  If you omit this (or use L</add-drive> or "
19997 "L</add-drive-ro>) then the format is automatically detected.  Possible "
19998 "formats include C<raw> and C<qcow2>."
19999 msgstr ""
20000
20001 #. type: textblock
20002 #: ../fish/guestfish-actions.pod:126
20003 msgid ""
20004 "This rarely-used option lets you emulate the behaviour of the deprecated "
20005 "L</add-drive-with-if> call (q.v.)"
20006 msgstr ""
20007
20008 #. type: =head2
20009 #: ../fish/guestfish-actions.pod:133
20010 msgid "add-drive-ro"
20011 msgstr ""
20012
20013 #. type: =head2
20014 #: ../fish/guestfish-actions.pod:135
20015 msgid "add-ro"
20016 msgstr ""
20017
20018 #. type: verbatim
20019 #: ../fish/guestfish-actions.pod:137
20020 #, no-wrap
20021 msgid ""
20022 " add-drive-ro filename\n"
20023 "\n"
20024 msgstr ""
20025
20026 #. type: textblock
20027 #: ../fish/guestfish-actions.pod:139
20028 msgid ""
20029 "This function is the equivalent of calling L</add-drive-opts> with the "
20030 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
20031 "is added read-only, with the format being detected automatically."
20032 msgstr ""
20033
20034 #. type: =head2
20035 #: ../fish/guestfish-actions.pod:144
20036 msgid "add-drive-ro-with-if"
20037 msgstr ""
20038
20039 #. type: verbatim
20040 #: ../fish/guestfish-actions.pod:146
20041 #, no-wrap
20042 msgid ""
20043 " add-drive-ro-with-if filename iface\n"
20044 "\n"
20045 msgstr ""
20046
20047 #. type: textblock
20048 #: ../fish/guestfish-actions.pod:148
20049 msgid ""
20050 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
20051 "interface emulation to use at run time."
20052 msgstr ""
20053
20054 #. type: =head2
20055 #: ../fish/guestfish-actions.pod:158
20056 msgid "add-drive-with-if"
20057 msgstr ""
20058
20059 #. type: verbatim
20060 #: ../fish/guestfish-actions.pod:160
20061 #, no-wrap
20062 msgid ""
20063 " add-drive-with-if filename iface\n"
20064 "\n"
20065 msgstr ""
20066
20067 #. type: textblock
20068 #: ../fish/guestfish-actions.pod:162
20069 msgid ""
20070 "This is the same as L</add-drive> but it allows you to specify the QEMU "
20071 "interface emulation to use at run time."
20072 msgstr ""
20073
20074 #. type: =head2
20075 #: ../fish/guestfish-actions.pod:172
20076 msgid "aug-clear"
20077 msgstr ""
20078
20079 #. type: verbatim
20080 #: ../fish/guestfish-actions.pod:174
20081 #, no-wrap
20082 msgid ""
20083 " aug-clear augpath\n"
20084 "\n"
20085 msgstr ""
20086
20087 #. type: =head2
20088 #: ../fish/guestfish-actions.pod:179
20089 msgid "aug-close"
20090 msgstr ""
20091
20092 #. type: verbatim
20093 #: ../fish/guestfish-actions.pod:181
20094 #, no-wrap
20095 msgid ""
20096 " aug-close\n"
20097 "\n"
20098 msgstr ""
20099
20100 #. type: textblock
20101 #: ../fish/guestfish-actions.pod:183
20102 msgid ""
20103 "Close the current Augeas handle and free up any resources used by it.  After "
20104 "calling this, you have to call L</aug-init> again before you can use any "
20105 "other Augeas functions."
20106 msgstr ""
20107
20108 #. type: =head2
20109 #: ../fish/guestfish-actions.pod:188
20110 msgid "aug-defnode"
20111 msgstr ""
20112
20113 #. type: verbatim
20114 #: ../fish/guestfish-actions.pod:190
20115 #, no-wrap
20116 msgid ""
20117 " aug-defnode name expr val\n"
20118 "\n"
20119 msgstr ""
20120
20121 #. type: textblock
20122 #: ../fish/guestfish-actions.pod:195
20123 msgid ""
20124 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
20125 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
20126 "containing that single node."
20127 msgstr ""
20128
20129 #. type: =head2
20130 #: ../fish/guestfish-actions.pod:203
20131 msgid "aug-defvar"
20132 msgstr ""
20133
20134 #. type: verbatim
20135 #: ../fish/guestfish-actions.pod:205
20136 #, no-wrap
20137 msgid ""
20138 " aug-defvar name expr\n"
20139 "\n"
20140 msgstr ""
20141
20142 #. type: =head2
20143 #: ../fish/guestfish-actions.pod:214
20144 msgid "aug-get"
20145 msgstr ""
20146
20147 #. type: verbatim
20148 #: ../fish/guestfish-actions.pod:216
20149 #, no-wrap
20150 msgid ""
20151 " aug-get augpath\n"
20152 "\n"
20153 msgstr ""
20154
20155 #. type: =head2
20156 #: ../fish/guestfish-actions.pod:221
20157 msgid "aug-init"
20158 msgstr ""
20159
20160 #. type: verbatim
20161 #: ../fish/guestfish-actions.pod:223
20162 #, no-wrap
20163 msgid ""
20164 " aug-init root flags\n"
20165 "\n"
20166 msgstr ""
20167
20168 #. type: textblock
20169 #: ../fish/guestfish-actions.pod:229
20170 msgid "You must call this before using any other L</aug-*> commands."
20171 msgstr ""
20172
20173 #. type: textblock
20174 #: ../fish/guestfish-actions.pod:264
20175 msgid "Do not load the tree in L</aug-init>."
20176 msgstr ""
20177
20178 #. type: textblock
20179 #: ../fish/guestfish-actions.pod:268
20180 msgid "To close the handle, you can call L</aug-close>."
20181 msgstr ""
20182
20183 #. type: =head2
20184 #: ../fish/guestfish-actions.pod:272
20185 msgid "aug-insert"
20186 msgstr ""
20187
20188 #. type: verbatim
20189 #: ../fish/guestfish-actions.pod:274
20190 #, no-wrap
20191 msgid ""
20192 " aug-insert augpath label true|false\n"
20193 "\n"
20194 msgstr ""
20195
20196 #. type: =head2
20197 #: ../fish/guestfish-actions.pod:284
20198 msgid "aug-load"
20199 msgstr ""
20200
20201 #. type: verbatim
20202 #: ../fish/guestfish-actions.pod:286
20203 #, no-wrap
20204 msgid ""
20205 " aug-load\n"
20206 "\n"
20207 msgstr ""
20208
20209 #. type: =head2
20210 #: ../fish/guestfish-actions.pod:293
20211 msgid "aug-ls"
20212 msgstr ""
20213
20214 #. type: verbatim
20215 #: ../fish/guestfish-actions.pod:295
20216 #, no-wrap
20217 msgid ""
20218 " aug-ls augpath\n"
20219 "\n"
20220 msgstr ""
20221
20222 #. type: textblock
20223 #: ../fish/guestfish-actions.pod:297
20224 msgid ""
20225 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
20226 "resulting nodes into alphabetical order."
20227 msgstr ""
20228
20229 #. type: =head2
20230 #: ../fish/guestfish-actions.pod:300
20231 msgid "aug-match"
20232 msgstr ""
20233
20234 #. type: verbatim
20235 #: ../fish/guestfish-actions.pod:302
20236 #, no-wrap
20237 msgid ""
20238 " aug-match augpath\n"
20239 "\n"
20240 msgstr ""
20241
20242 #. type: =head2
20243 #: ../fish/guestfish-actions.pod:308
20244 msgid "aug-mv"
20245 msgstr ""
20246
20247 #. type: verbatim
20248 #: ../fish/guestfish-actions.pod:310
20249 #, no-wrap
20250 msgid ""
20251 " aug-mv src dest\n"
20252 "\n"
20253 msgstr ""
20254
20255 #. type: =head2
20256 #: ../fish/guestfish-actions.pod:315
20257 msgid "aug-rm"
20258 msgstr ""
20259
20260 #. type: verbatim
20261 #: ../fish/guestfish-actions.pod:317
20262 #, no-wrap
20263 msgid ""
20264 " aug-rm augpath\n"
20265 "\n"
20266 msgstr ""
20267
20268 #. type: =head2
20269 #: ../fish/guestfish-actions.pod:323
20270 msgid "aug-save"
20271 msgstr ""
20272
20273 #. type: verbatim
20274 #: ../fish/guestfish-actions.pod:325
20275 #, no-wrap
20276 msgid ""
20277 " aug-save\n"
20278 "\n"
20279 msgstr ""
20280
20281 #. type: textblock
20282 #: ../fish/guestfish-actions.pod:329
20283 msgid ""
20284 "The flags which were passed to L</aug-init> affect exactly how files are "
20285 "saved."
20286 msgstr ""
20287
20288 #. type: =head2
20289 #: ../fish/guestfish-actions.pod:332
20290 msgid "aug-set"
20291 msgstr ""
20292
20293 #. type: verbatim
20294 #: ../fish/guestfish-actions.pod:334
20295 #, no-wrap
20296 msgid ""
20297 " aug-set augpath val\n"
20298 "\n"
20299 msgstr ""
20300
20301 #. type: textblock
20302 #: ../fish/guestfish-actions.pod:338
20303 msgid ""
20304 "In the Augeas API, it is possible to clear a node by setting the value to "
20305 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
20306 "this call.  Instead you must use the L</aug-clear> call."
20307 msgstr ""
20308
20309 #. type: =head2
20310 #: ../fish/guestfish-actions.pod:343
20311 msgid "available"
20312 msgstr ""
20313
20314 #. type: verbatim
20315 #: ../fish/guestfish-actions.pod:345
20316 #, no-wrap
20317 msgid ""
20318 " available 'groups ...'\n"
20319 "\n"
20320 msgstr ""
20321
20322 #. type: textblock
20323 #: ../fish/guestfish-actions.pod:351
20324 msgid ""
20325 "The libguestfs groups, and the functions that those groups correspond to, "
20326 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
20327 "runtime by calling L</available-all-groups>."
20328 msgstr ""
20329
20330 #. type: textblock
20331 #: ../fish/guestfish-actions.pod:375
20332 msgid "You must call L</launch> before calling this function."
20333 msgstr ""
20334
20335 #. type: textblock
20336 #: ../fish/guestfish-actions.pod:397
20337 msgid ""
20338 "This call was added in version C<1.0.80>.  In previous versions of "
20339 "libguestfs all you could do would be to speculatively execute a command to "
20340 "find out if the daemon implemented it.  See also L</version>."
20341 msgstr ""
20342
20343 #. type: =head2
20344 #: ../fish/guestfish-actions.pod:404
20345 msgid "available-all-groups"
20346 msgstr ""
20347
20348 #. type: verbatim
20349 #: ../fish/guestfish-actions.pod:406
20350 #, no-wrap
20351 msgid ""
20352 " available-all-groups\n"
20353 "\n"
20354 msgstr ""
20355
20356 #. type: textblock
20357 #: ../fish/guestfish-actions.pod:408
20358 msgid ""
20359 "This command returns a list of all optional groups that this daemon knows "
20360 "about.  Note this returns both supported and unsupported groups.  To find "
20361 "out which ones the daemon can actually support you have to call "
20362 "L</available> on each member of the returned list."
20363 msgstr ""
20364
20365 #. type: textblock
20366 #: ../fish/guestfish-actions.pod:414
20367 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
20368 msgstr ""
20369
20370 #. type: =head2
20371 #: ../fish/guestfish-actions.pod:416
20372 msgid "base64-in"
20373 msgstr ""
20374
20375 #. type: verbatim
20376 #: ../fish/guestfish-actions.pod:418
20377 #, no-wrap
20378 msgid ""
20379 " base64-in (base64file|-) filename\n"
20380 "\n"
20381 msgstr ""
20382
20383 #. type: textblock
20384 #: ../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:4200 ../fish/guestfish-actions.pod:4212 ../fish/guestfish-actions.pod:4223 ../fish/guestfish-actions.pod:4234 ../fish/guestfish-actions.pod:4286 ../fish/guestfish-actions.pod:4295 ../fish/guestfish-actions.pod:4349 ../fish/guestfish-actions.pod:4372
20385 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
20386 msgstr ""
20387
20388 #. type: =head2
20389 #: ../fish/guestfish-actions.pod:425
20390 msgid "base64-out"
20391 msgstr ""
20392
20393 #. type: verbatim
20394 #: ../fish/guestfish-actions.pod:427
20395 #, no-wrap
20396 msgid ""
20397 " base64-out filename (base64file|-)\n"
20398 "\n"
20399 msgstr ""
20400
20401 #. type: =head2
20402 #: ../fish/guestfish-actions.pod:434
20403 msgid "blockdev-flushbufs"
20404 msgstr ""
20405
20406 #. type: verbatim
20407 #: ../fish/guestfish-actions.pod:436
20408 #, no-wrap
20409 msgid ""
20410 " blockdev-flushbufs device\n"
20411 "\n"
20412 msgstr ""
20413
20414 #. type: =head2
20415 #: ../fish/guestfish-actions.pod:443
20416 msgid "blockdev-getbsz"
20417 msgstr ""
20418
20419 #. type: verbatim
20420 #: ../fish/guestfish-actions.pod:445
20421 #, no-wrap
20422 msgid ""
20423 " blockdev-getbsz device\n"
20424 "\n"
20425 msgstr ""
20426
20427 #. type: =head2
20428 #: ../fish/guestfish-actions.pod:454
20429 msgid "blockdev-getro"
20430 msgstr ""
20431
20432 #. type: verbatim
20433 #: ../fish/guestfish-actions.pod:456
20434 #, no-wrap
20435 msgid ""
20436 " blockdev-getro device\n"
20437 "\n"
20438 msgstr ""
20439
20440 #. type: =head2
20441 #: ../fish/guestfish-actions.pod:463
20442 msgid "blockdev-getsize64"
20443 msgstr ""
20444
20445 #. type: verbatim
20446 #: ../fish/guestfish-actions.pod:465
20447 #, no-wrap
20448 msgid ""
20449 " blockdev-getsize64 device\n"
20450 "\n"
20451 msgstr ""
20452
20453 #. type: textblock
20454 #: ../fish/guestfish-actions.pod:469
20455 msgid "See also L</blockdev-getsz>."
20456 msgstr ""
20457
20458 #. type: =head2
20459 #: ../fish/guestfish-actions.pod:473
20460 msgid "blockdev-getss"
20461 msgstr ""
20462
20463 #. type: verbatim
20464 #: ../fish/guestfish-actions.pod:475
20465 #, no-wrap
20466 msgid ""
20467 " blockdev-getss device\n"
20468 "\n"
20469 msgstr ""
20470
20471 #. type: textblock
20472 #: ../fish/guestfish-actions.pod:480
20473 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
20474 msgstr ""
20475
20476 #. type: =head2
20477 #: ../fish/guestfish-actions.pod:485
20478 msgid "blockdev-getsz"
20479 msgstr ""
20480
20481 #. type: verbatim
20482 #: ../fish/guestfish-actions.pod:487
20483 #, no-wrap
20484 msgid ""
20485 " blockdev-getsz device\n"
20486 "\n"
20487 msgstr ""
20488
20489 #. type: textblock
20490 #: ../fish/guestfish-actions.pod:492
20491 msgid ""
20492 "See also L</blockdev-getss> for the real sector size of the device, and "
20493 "L</blockdev-getsize64> for the more useful I<size in bytes>."
20494 msgstr ""
20495
20496 #. type: =head2
20497 #: ../fish/guestfish-actions.pod:498
20498 msgid "blockdev-rereadpt"
20499 msgstr ""
20500
20501 #. type: verbatim
20502 #: ../fish/guestfish-actions.pod:500
20503 #, no-wrap
20504 msgid ""
20505 " blockdev-rereadpt device\n"
20506 "\n"
20507 msgstr ""
20508
20509 #. type: =head2
20510 #: ../fish/guestfish-actions.pod:506
20511 msgid "blockdev-setbsz"
20512 msgstr ""
20513
20514 #. type: verbatim
20515 #: ../fish/guestfish-actions.pod:508
20516 #, no-wrap
20517 msgid ""
20518 " blockdev-setbsz device blocksize\n"
20519 "\n"
20520 msgstr ""
20521
20522 #. type: =head2
20523 #: ../fish/guestfish-actions.pod:517
20524 msgid "blockdev-setro"
20525 msgstr ""
20526
20527 #. type: verbatim
20528 #: ../fish/guestfish-actions.pod:519
20529 #, no-wrap
20530 msgid ""
20531 " blockdev-setro device\n"
20532 "\n"
20533 msgstr ""
20534
20535 #. type: =head2
20536 #: ../fish/guestfish-actions.pod:525
20537 msgid "blockdev-setrw"
20538 msgstr ""
20539
20540 #. type: verbatim
20541 #: ../fish/guestfish-actions.pod:527
20542 #, no-wrap
20543 msgid ""
20544 " blockdev-setrw device\n"
20545 "\n"
20546 msgstr ""
20547
20548 #. type: =head2
20549 #: ../fish/guestfish-actions.pod:533
20550 msgid "case-sensitive-path"
20551 msgstr ""
20552
20553 #. type: verbatim
20554 #: ../fish/guestfish-actions.pod:535
20555 #, no-wrap
20556 msgid ""
20557 " case-sensitive-path path\n"
20558 "\n"
20559 msgstr ""
20560
20561 #. type: textblock
20562 #: ../fish/guestfish-actions.pod:559
20563 msgid ""
20564 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
20565 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
20566 "how the directories were originally created under Windows)."
20567 msgstr ""
20568
20569 #. type: textblock
20570 #: ../fish/guestfish-actions.pod:567
20571 msgid "See also L</realpath>."
20572 msgstr ""
20573
20574 #. type: =head2
20575 #: ../fish/guestfish-actions.pod:569
20576 msgid "cat"
20577 msgstr ""
20578
20579 #. type: verbatim
20580 #: ../fish/guestfish-actions.pod:571
20581 #, no-wrap
20582 msgid ""
20583 " cat path\n"
20584 "\n"
20585 msgstr ""
20586
20587 #. type: textblock
20588 #: ../fish/guestfish-actions.pod:575
20589 msgid ""
20590 "Note that this function cannot correctly handle binary files (specifically, "
20591 "files containing C<\\0> character which is treated as end of string).  For "
20592 "those you need to use the L</read-file> or L</download> functions which have "
20593 "a more complex interface."
20594 msgstr ""
20595
20596 #. type: =head2
20597 #: ../fish/guestfish-actions.pod:583
20598 msgid "checksum"
20599 msgstr ""
20600
20601 #. type: verbatim
20602 #: ../fish/guestfish-actions.pod:585
20603 #, no-wrap
20604 msgid ""
20605 " checksum csumtype path\n"
20606 "\n"
20607 msgstr ""
20608
20609 #. type: textblock
20610 #: ../fish/guestfish-actions.pod:628
20611 msgid "To get the checksum for a device, use L</checksum-device>."
20612 msgstr ""
20613
20614 #. type: textblock
20615 #: ../fish/guestfish-actions.pod:630
20616 msgid "To get the checksums for many files, use L</checksums-out>."
20617 msgstr ""
20618
20619 #. type: =head2
20620 #: ../fish/guestfish-actions.pod:632
20621 msgid "checksum-device"
20622 msgstr ""
20623
20624 #. type: verbatim
20625 #: ../fish/guestfish-actions.pod:634
20626 #, no-wrap
20627 msgid ""
20628 " checksum-device csumtype device\n"
20629 "\n"
20630 msgstr ""
20631
20632 #. type: textblock
20633 #: ../fish/guestfish-actions.pod:636
20634 msgid ""
20635 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
20636 "device named C<device>.  For the types of checksums supported see the "
20637 "L</checksum> command."
20638 msgstr ""
20639
20640 #. type: =head2
20641 #: ../fish/guestfish-actions.pod:640
20642 msgid "checksums-out"
20643 msgstr ""
20644
20645 #. type: verbatim
20646 #: ../fish/guestfish-actions.pod:642
20647 #, no-wrap
20648 msgid ""
20649 " checksums-out csumtype directory (sumsfile|-)\n"
20650 "\n"
20651 msgstr ""
20652
20653 #. type: =head2
20654 #: ../fish/guestfish-actions.pod:658
20655 msgid "chmod"
20656 msgstr ""
20657
20658 #. type: verbatim
20659 #: ../fish/guestfish-actions.pod:660
20660 #, no-wrap
20661 msgid ""
20662 " chmod mode path\n"
20663 "\n"
20664 msgstr ""
20665
20666 #. type: =head2
20667 #: ../fish/guestfish-actions.pod:671
20668 msgid "chown"
20669 msgstr ""
20670
20671 #. type: verbatim
20672 #: ../fish/guestfish-actions.pod:673
20673 #, no-wrap
20674 msgid ""
20675 " chown owner group path\n"
20676 "\n"
20677 msgstr ""
20678
20679 #. type: =head2
20680 #: ../fish/guestfish-actions.pod:681
20681 msgid "command"
20682 msgstr ""
20683
20684 #. type: verbatim
20685 #: ../fish/guestfish-actions.pod:683
20686 #, no-wrap
20687 msgid ""
20688 " command 'arguments ...'\n"
20689 "\n"
20690 msgstr ""
20691
20692 #. type: textblock
20693 #: ../fish/guestfish-actions.pod:690
20694 msgid ""
20695 "The single parameter is an argv-style list of arguments.  The first element "
20696 "is the name of the program to run.  Subsequent elements are parameters.  The "
20697 "list must be non-empty (ie. must contain a program name).  Note that the "
20698 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
20699 msgstr ""
20700
20701 #. type: =head2
20702 #: ../fish/guestfish-actions.pod:718
20703 msgid "command-lines"
20704 msgstr ""
20705
20706 #. type: verbatim
20707 #: ../fish/guestfish-actions.pod:720
20708 #, no-wrap
20709 msgid ""
20710 " command-lines 'arguments ...'\n"
20711 "\n"
20712 msgstr ""
20713
20714 #. type: textblock
20715 #: ../fish/guestfish-actions.pod:722
20716 msgid "This is the same as L</command>, but splits the result into a list of lines."
20717 msgstr ""
20718
20719 #. type: textblock
20720 #: ../fish/guestfish-actions.pod:725
20721 msgid "See also: L</sh-lines>"
20722 msgstr ""
20723
20724 #. type: =head2
20725 #: ../fish/guestfish-actions.pod:730
20726 msgid "config"
20727 msgstr ""
20728
20729 #. type: verbatim
20730 #: ../fish/guestfish-actions.pod:732
20731 #, no-wrap
20732 msgid ""
20733 " config qemuparam qemuvalue\n"
20734 "\n"
20735 msgstr ""
20736
20737 #. type: =head2
20738 #: ../fish/guestfish-actions.pod:743
20739 msgid "copy-size"
20740 msgstr ""
20741
20742 #. type: verbatim
20743 #: ../fish/guestfish-actions.pod:745
20744 #, no-wrap
20745 msgid ""
20746 " copy-size src dest size\n"
20747 "\n"
20748 msgstr ""
20749
20750 #. type: =head2
20751 #: ../fish/guestfish-actions.pod:753
20752 msgid "cp"
20753 msgstr ""
20754
20755 #. type: verbatim
20756 #: ../fish/guestfish-actions.pod:755
20757 #, no-wrap
20758 msgid ""
20759 " cp src dest\n"
20760 "\n"
20761 msgstr ""
20762
20763 #. type: =head2
20764 #: ../fish/guestfish-actions.pod:760
20765 msgid "cp-a"
20766 msgstr ""
20767
20768 #. type: verbatim
20769 #: ../fish/guestfish-actions.pod:762
20770 #, no-wrap
20771 msgid ""
20772 " cp-a src dest\n"
20773 "\n"
20774 msgstr ""
20775
20776 #. type: =head2
20777 #: ../fish/guestfish-actions.pod:767
20778 msgid "dd"
20779 msgstr ""
20780
20781 #. type: verbatim
20782 #: ../fish/guestfish-actions.pod:769
20783 #, no-wrap
20784 msgid ""
20785 " dd src dest\n"
20786 "\n"
20787 msgstr ""
20788
20789 #. type: textblock
20790 #: ../fish/guestfish-actions.pod:776
20791 msgid ""
20792 "If the destination is a device, it must be as large or larger than the "
20793 "source file or device, otherwise the copy will fail.  This command cannot do "
20794 "partial copies (see L</copy-size>)."
20795 msgstr ""
20796
20797 #. type: =head2
20798 #: ../fish/guestfish-actions.pod:780
20799 msgid "df"
20800 msgstr ""
20801
20802 #. type: verbatim
20803 #: ../fish/guestfish-actions.pod:782
20804 #, no-wrap
20805 msgid ""
20806 " df\n"
20807 "\n"
20808 msgstr ""
20809
20810 #. type: textblock
20811 #: ../fish/guestfish-actions.pod:786 ../fish/guestfish-actions.pod:797
20812 msgid ""
20813 "This command is mostly useful for interactive sessions.  It is I<not> "
20814 "intended that you try to parse the output string.  Use L</statvfs> from "
20815 "programs."
20816 msgstr ""
20817
20818 #. type: =head2
20819 #: ../fish/guestfish-actions.pod:790
20820 msgid "df-h"
20821 msgstr ""
20822
20823 #. type: verbatim
20824 #: ../fish/guestfish-actions.pod:792
20825 #, no-wrap
20826 msgid ""
20827 " df-h\n"
20828 "\n"
20829 msgstr ""
20830
20831 #. type: =head2
20832 #: ../fish/guestfish-actions.pod:801
20833 msgid "dmesg"
20834 msgstr ""
20835
20836 #. type: verbatim
20837 #: ../fish/guestfish-actions.pod:803
20838 #, no-wrap
20839 msgid ""
20840 " dmesg\n"
20841 "\n"
20842 msgstr ""
20843
20844 #. type: textblock
20845 #: ../fish/guestfish-actions.pod:809
20846 msgid ""
20847 "Another way to get the same information is to enable verbose messages with "
20848 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
20849 "before running the program."
20850 msgstr ""
20851
20852 #. type: =head2
20853 #: ../fish/guestfish-actions.pod:814
20854 msgid "download"
20855 msgstr ""
20856
20857 #. type: verbatim
20858 #: ../fish/guestfish-actions.pod:816
20859 #, no-wrap
20860 msgid ""
20861 " download remotefilename (filename|-)\n"
20862 "\n"
20863 msgstr ""
20864
20865 #. type: textblock
20866 #: ../fish/guestfish-actions.pod:823
20867 msgid "See also L</upload>, L</cat>."
20868 msgstr ""
20869
20870 #. type: =head2
20871 #: ../fish/guestfish-actions.pod:827
20872 msgid "download-offset"
20873 msgstr ""
20874
20875 #. type: verbatim
20876 #: ../fish/guestfish-actions.pod:829
20877 #, no-wrap
20878 msgid ""
20879 " download-offset remotefilename (filename|-) offset size\n"
20880 "\n"
20881 msgstr ""
20882
20883 #. type: textblock
20884 #: ../fish/guestfish-actions.pod:837
20885 msgid ""
20886 "Note that there is no limit on the amount of data that can be downloaded "
20887 "with this call, unlike with L</pread>, and this call always reads the full "
20888 "amount unless an error occurs."
20889 msgstr ""
20890
20891 #. type: textblock
20892 #: ../fish/guestfish-actions.pod:842
20893 msgid "See also L</download>, L</pread>."
20894 msgstr ""
20895
20896 #. type: =head2
20897 #: ../fish/guestfish-actions.pod:846
20898 msgid "drop-caches"
20899 msgstr ""
20900
20901 #. type: verbatim
20902 #: ../fish/guestfish-actions.pod:848
20903 #, no-wrap
20904 msgid ""
20905 " drop-caches whattodrop\n"
20906 "\n"
20907 msgstr ""
20908
20909 #. type: =head2
20910 #: ../fish/guestfish-actions.pod:860
20911 msgid "du"
20912 msgstr ""
20913
20914 #. type: verbatim
20915 #: ../fish/guestfish-actions.pod:862
20916 #, no-wrap
20917 msgid ""
20918 " du path\n"
20919 "\n"
20920 msgstr ""
20921
20922 #. type: =head2
20923 #: ../fish/guestfish-actions.pod:874
20924 msgid "e2fsck-f"
20925 msgstr ""
20926
20927 #. type: verbatim
20928 #: ../fish/guestfish-actions.pod:876
20929 #, no-wrap
20930 msgid ""
20931 " e2fsck-f device\n"
20932 "\n"
20933 msgstr ""
20934
20935 #. type: textblock
20936 #: ../fish/guestfish-actions.pod:882
20937 msgid ""
20938 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
20939 "should use L</fsck>."
20940 msgstr ""
20941
20942 #. type: =head2
20943 #: ../fish/guestfish-actions.pod:885
20944 msgid "echo-daemon"
20945 msgstr ""
20946
20947 #. type: verbatim
20948 #: ../fish/guestfish-actions.pod:887
20949 #, no-wrap
20950 msgid ""
20951 " echo-daemon 'words ...'\n"
20952 "\n"
20953 msgstr ""
20954
20955 #. type: textblock
20956 #: ../fish/guestfish-actions.pod:894
20957 msgid "See also L</ping-daemon>."
20958 msgstr ""
20959
20960 #. type: =head2
20961 #: ../fish/guestfish-actions.pod:896
20962 msgid "egrep"
20963 msgstr ""
20964
20965 #. type: verbatim
20966 #: ../fish/guestfish-actions.pod:898
20967 #, no-wrap
20968 msgid ""
20969 " egrep regex path\n"
20970 "\n"
20971 msgstr ""
20972
20973 #. type: =head2
20974 #: ../fish/guestfish-actions.pod:906
20975 msgid "egrepi"
20976 msgstr ""
20977
20978 #. type: verbatim
20979 #: ../fish/guestfish-actions.pod:908
20980 #, no-wrap
20981 msgid ""
20982 " egrepi regex path\n"
20983 "\n"
20984 msgstr ""
20985
20986 #. type: =head2
20987 #: ../fish/guestfish-actions.pod:916
20988 msgid "equal"
20989 msgstr ""
20990
20991 #. type: verbatim
20992 #: ../fish/guestfish-actions.pod:918
20993 #, no-wrap
20994 msgid ""
20995 " equal file1 file2\n"
20996 "\n"
20997 msgstr ""
20998
20999 #. type: =head2
21000 #: ../fish/guestfish-actions.pod:925
21001 msgid "exists"
21002 msgstr ""
21003
21004 #. type: verbatim
21005 #: ../fish/guestfish-actions.pod:927
21006 #, no-wrap
21007 msgid ""
21008 " exists path\n"
21009 "\n"
21010 msgstr ""
21011
21012 #. type: textblock
21013 #: ../fish/guestfish-actions.pod:932
21014 msgid "See also L</is-file>, L</is-dir>, L</stat>."
21015 msgstr ""
21016
21017 #. type: =head2
21018 #: ../fish/guestfish-actions.pod:934
21019 msgid "fallocate"
21020 msgstr ""
21021
21022 #. type: verbatim
21023 #: ../fish/guestfish-actions.pod:936
21024 #, no-wrap
21025 msgid ""
21026 " fallocate path len\n"
21027 "\n"
21028 msgstr ""
21029
21030 #. type: =head2
21031 #: ../fish/guestfish-actions.pod:953
21032 msgid "fallocate64"
21033 msgstr ""
21034
21035 #. type: verbatim
21036 #: ../fish/guestfish-actions.pod:955
21037 #, no-wrap
21038 msgid ""
21039 " fallocate64 path len\n"
21040 "\n"
21041 msgstr ""
21042
21043 #. type: textblock
21044 #: ../fish/guestfish-actions.pod:961
21045 msgid ""
21046 "Note that this call allocates disk blocks for the file.  To create a sparse "
21047 "file use L</truncate-size> instead."
21048 msgstr ""
21049
21050 #. type: textblock
21051 #: ../fish/guestfish-actions.pod:964
21052 msgid ""
21053 "The deprecated call L</fallocate> does the same, but owing to an oversight "
21054 "it only allowed 30 bit lengths to be specified, effectively limiting the "
21055 "maximum size of files created through that call to 1GB."
21056 msgstr ""
21057
21058 #. type: =head2
21059 #: ../fish/guestfish-actions.pod:973
21060 msgid "fgrep"
21061 msgstr ""
21062
21063 #. type: verbatim
21064 #: ../fish/guestfish-actions.pod:975
21065 #, no-wrap
21066 msgid ""
21067 " fgrep pattern path\n"
21068 "\n"
21069 msgstr ""
21070
21071 #. type: =head2
21072 #: ../fish/guestfish-actions.pod:983
21073 msgid "fgrepi"
21074 msgstr ""
21075
21076 #. type: verbatim
21077 #: ../fish/guestfish-actions.pod:985
21078 #, no-wrap
21079 msgid ""
21080 " fgrepi pattern path\n"
21081 "\n"
21082 msgstr ""
21083
21084 #. type: =head2
21085 #: ../fish/guestfish-actions.pod:993
21086 msgid "file"
21087 msgstr ""
21088
21089 #. type: verbatim
21090 #: ../fish/guestfish-actions.pod:995
21091 #, no-wrap
21092 msgid ""
21093 " file path\n"
21094 "\n"
21095 msgstr ""
21096
21097 #. type: textblock
21098 #: ../fish/guestfish-actions.pod:1011
21099 msgid ""
21100 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
21101 "(etc)."
21102 msgstr ""
21103
21104 #. type: =head2
21105 #: ../fish/guestfish-actions.pod:1014
21106 msgid "file-architecture"
21107 msgstr ""
21108
21109 #. type: verbatim
21110 #: ../fish/guestfish-actions.pod:1016
21111 #, no-wrap
21112 msgid ""
21113 " file-architecture filename\n"
21114 "\n"
21115 msgstr ""
21116
21117 #. type: =head2
21118 #: ../fish/guestfish-actions.pod:1119
21119 msgid "filesize"
21120 msgstr ""
21121
21122 #. type: verbatim
21123 #: ../fish/guestfish-actions.pod:1121
21124 #, no-wrap
21125 msgid ""
21126 " filesize file\n"
21127 "\n"
21128 msgstr ""
21129
21130 #. type: textblock
21131 #: ../fish/guestfish-actions.pod:1125
21132 msgid ""
21133 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
21134 "L</is-file> etc.  To get the size of block devices, use "
21135 "L</blockdev-getsize64>."
21136 msgstr ""
21137
21138 #. type: =head2
21139 #: ../fish/guestfish-actions.pod:1129
21140 msgid "fill"
21141 msgstr ""
21142
21143 #. type: verbatim
21144 #: ../fish/guestfish-actions.pod:1131
21145 #, no-wrap
21146 msgid ""
21147 " fill c len path\n"
21148 "\n"
21149 msgstr ""
21150
21151 #. type: textblock
21152 #: ../fish/guestfish-actions.pod:1137
21153 msgid ""
21154 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
21155 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
21156 "L</fill-pattern>."
21157 msgstr ""
21158
21159 #. type: =head2
21160 #: ../fish/guestfish-actions.pod:1142
21161 msgid "fill-pattern"
21162 msgstr ""
21163
21164 #. type: verbatim
21165 #: ../fish/guestfish-actions.pod:1144
21166 #, no-wrap
21167 msgid ""
21168 " fill-pattern pattern len path\n"
21169 "\n"
21170 msgstr ""
21171
21172 #. type: textblock
21173 #: ../fish/guestfish-actions.pod:1146
21174 msgid ""
21175 "This function is like L</fill> except that it creates a new file of length "
21176 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
21177 "is truncated if necessary to ensure the length of the file is exactly C<len> "
21178 "bytes."
21179 msgstr ""
21180
21181 #. type: =head2
21182 #: ../fish/guestfish-actions.pod:1151
21183 msgid "find"
21184 msgstr ""
21185
21186 #. type: verbatim
21187 #: ../fish/guestfish-actions.pod:1153
21188 #, no-wrap
21189 msgid ""
21190 " find directory\n"
21191 "\n"
21192 msgstr ""
21193
21194 #. type: textblock
21195 #: ../fish/guestfish-actions.pod:1167
21196 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
21197 msgstr ""
21198
21199 #. type: textblock
21200 #: ../fish/guestfish-actions.pod:1180
21201 msgid "See also L</find0>."
21202 msgstr ""
21203
21204 #. type: =head2
21205 #: ../fish/guestfish-actions.pod:1185
21206 msgid "find0"
21207 msgstr ""
21208
21209 #. type: verbatim
21210 #: ../fish/guestfish-actions.pod:1187
21211 #, no-wrap
21212 msgid ""
21213 " find0 directory (files|-)\n"
21214 "\n"
21215 msgstr ""
21216
21217 #. type: textblock
21218 #: ../fish/guestfish-actions.pod:1193
21219 msgid "This command works the same way as L</find> with the following exceptions:"
21220 msgstr ""
21221
21222 #. type: =head2
21223 #: ../fish/guestfish-actions.pod:1220
21224 msgid "findfs-label"
21225 msgstr ""
21226
21227 #. type: verbatim
21228 #: ../fish/guestfish-actions.pod:1222
21229 #, no-wrap
21230 msgid ""
21231 " findfs-label label\n"
21232 "\n"
21233 msgstr ""
21234
21235 #. type: textblock
21236 #: ../fish/guestfish-actions.pod:1228
21237 msgid "To find the label of a filesystem, use L</vfs-label>."
21238 msgstr ""
21239
21240 #. type: =head2
21241 #: ../fish/guestfish-actions.pod:1230
21242 msgid "findfs-uuid"
21243 msgstr ""
21244
21245 #. type: verbatim
21246 #: ../fish/guestfish-actions.pod:1232
21247 #, no-wrap
21248 msgid ""
21249 " findfs-uuid uuid\n"
21250 "\n"
21251 msgstr ""
21252
21253 #. type: textblock
21254 #: ../fish/guestfish-actions.pod:1238
21255 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
21256 msgstr ""
21257
21258 #. type: =head2
21259 #: ../fish/guestfish-actions.pod:1240
21260 msgid "fsck"
21261 msgstr ""
21262
21263 #. type: verbatim
21264 #: ../fish/guestfish-actions.pod:1242
21265 #, no-wrap
21266 msgid ""
21267 " fsck fstype device\n"
21268 "\n"
21269 msgstr ""
21270
21271 #. type: =head2
21272 #: ../fish/guestfish-actions.pod:1272
21273 msgid "get-append"
21274 msgstr ""
21275
21276 #. type: verbatim
21277 #: ../fish/guestfish-actions.pod:1274
21278 #, no-wrap
21279 msgid ""
21280 " get-append\n"
21281 "\n"
21282 msgstr ""
21283
21284 #. type: =head2
21285 #: ../fish/guestfish-actions.pod:1281
21286 msgid "get-autosync"
21287 msgstr ""
21288
21289 #. type: verbatim
21290 #: ../fish/guestfish-actions.pod:1283
21291 #, no-wrap
21292 msgid ""
21293 " get-autosync\n"
21294 "\n"
21295 msgstr ""
21296
21297 #. type: =head2
21298 #: ../fish/guestfish-actions.pod:1287
21299 msgid "get-direct"
21300 msgstr ""
21301
21302 #. type: verbatim
21303 #: ../fish/guestfish-actions.pod:1289
21304 #, no-wrap
21305 msgid ""
21306 " get-direct\n"
21307 "\n"
21308 msgstr ""
21309
21310 #. type: =head2
21311 #: ../fish/guestfish-actions.pod:1293
21312 msgid "get-e2label"
21313 msgstr ""
21314
21315 #. type: verbatim
21316 #: ../fish/guestfish-actions.pod:1295
21317 #, no-wrap
21318 msgid ""
21319 " get-e2label device\n"
21320 "\n"
21321 msgstr ""
21322
21323 #. type: =head2
21324 #: ../fish/guestfish-actions.pod:1307
21325 msgid "get-e2uuid"
21326 msgstr ""
21327
21328 #. type: verbatim
21329 #: ../fish/guestfish-actions.pod:1309
21330 #, no-wrap
21331 msgid ""
21332 " get-e2uuid device\n"
21333 "\n"
21334 msgstr ""
21335
21336 #. type: =head2
21337 #: ../fish/guestfish-actions.pod:1321
21338 msgid "get-memsize"
21339 msgstr ""
21340
21341 #. type: verbatim
21342 #: ../fish/guestfish-actions.pod:1323
21343 #, no-wrap
21344 msgid ""
21345 " get-memsize\n"
21346 "\n"
21347 msgstr ""
21348
21349 #. type: textblock
21350 #: ../fish/guestfish-actions.pod:1328
21351 msgid ""
21352 "If L</set-memsize> was not called on this handle, and if "
21353 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
21354 "value for memsize."
21355 msgstr ""
21356
21357 #. type: =head2
21358 #: ../fish/guestfish-actions.pod:1335
21359 msgid "get-network"
21360 msgstr ""
21361
21362 #. type: verbatim
21363 #: ../fish/guestfish-actions.pod:1337
21364 #, no-wrap
21365 msgid ""
21366 " get-network\n"
21367 "\n"
21368 msgstr ""
21369
21370 #. type: =head2
21371 #: ../fish/guestfish-actions.pod:1341
21372 msgid "get-path"
21373 msgstr ""
21374
21375 #. type: verbatim
21376 #: ../fish/guestfish-actions.pod:1343
21377 #, no-wrap
21378 msgid ""
21379 " get-path\n"
21380 "\n"
21381 msgstr ""
21382
21383 #. type: =head2
21384 #: ../fish/guestfish-actions.pod:1350
21385 msgid "get-pid"
21386 msgstr ""
21387
21388 #. type: =head2
21389 #: ../fish/guestfish-actions.pod:1352
21390 msgid "pid"
21391 msgstr ""
21392
21393 #. type: verbatim
21394 #: ../fish/guestfish-actions.pod:1354
21395 #, no-wrap
21396 msgid ""
21397 " get-pid\n"
21398 "\n"
21399 msgstr ""
21400
21401 #. type: =head2
21402 #: ../fish/guestfish-actions.pod:1361
21403 msgid "get-qemu"
21404 msgstr ""
21405
21406 #. type: verbatim
21407 #: ../fish/guestfish-actions.pod:1363
21408 #, no-wrap
21409 msgid ""
21410 " get-qemu\n"
21411 "\n"
21412 msgstr ""
21413
21414 #. type: =head2
21415 #: ../fish/guestfish-actions.pod:1370
21416 msgid "get-recovery-proc"
21417 msgstr ""
21418
21419 #. type: verbatim
21420 #: ../fish/guestfish-actions.pod:1372
21421 #, no-wrap
21422 msgid ""
21423 " get-recovery-proc\n"
21424 "\n"
21425 msgstr ""
21426
21427 #. type: =head2
21428 #: ../fish/guestfish-actions.pod:1376
21429 msgid "get-selinux"
21430 msgstr ""
21431
21432 #. type: verbatim
21433 #: ../fish/guestfish-actions.pod:1378
21434 #, no-wrap
21435 msgid ""
21436 " get-selinux\n"
21437 "\n"
21438 msgstr ""
21439
21440 #. type: textblock
21441 #: ../fish/guestfish-actions.pod:1380
21442 msgid ""
21443 "This returns the current setting of the selinux flag which is passed to the "
21444 "appliance at boot time.  See L</set-selinux>."
21445 msgstr ""
21446
21447 #. type: =head2
21448 #: ../fish/guestfish-actions.pod:1386
21449 msgid "get-state"
21450 msgstr ""
21451
21452 #. type: verbatim
21453 #: ../fish/guestfish-actions.pod:1388
21454 #, no-wrap
21455 msgid ""
21456 " get-state\n"
21457 "\n"
21458 msgstr ""
21459
21460 #. type: =head2
21461 #: ../fish/guestfish-actions.pod:1395
21462 msgid "get-trace"
21463 msgstr ""
21464
21465 #. type: verbatim
21466 #: ../fish/guestfish-actions.pod:1397
21467 #, no-wrap
21468 msgid ""
21469 " get-trace\n"
21470 "\n"
21471 msgstr ""
21472
21473 #. type: =head2
21474 #: ../fish/guestfish-actions.pod:1401
21475 msgid "get-umask"
21476 msgstr ""
21477
21478 #. type: verbatim
21479 #: ../fish/guestfish-actions.pod:1403
21480 #, no-wrap
21481 msgid ""
21482 " get-umask\n"
21483 "\n"
21484 msgstr ""
21485
21486 #. type: textblock
21487 #: ../fish/guestfish-actions.pod:1405
21488 msgid ""
21489 "Return the current umask.  By default the umask is C<022> unless it has been "
21490 "set by calling L</umask>."
21491 msgstr ""
21492
21493 #. type: =head2
21494 #: ../fish/guestfish-actions.pod:1408
21495 msgid "get-verbose"
21496 msgstr ""
21497
21498 #. type: verbatim
21499 #: ../fish/guestfish-actions.pod:1410
21500 #, no-wrap
21501 msgid ""
21502 " get-verbose\n"
21503 "\n"
21504 msgstr ""
21505
21506 #. type: =head2
21507 #: ../fish/guestfish-actions.pod:1414
21508 msgid "getcon"
21509 msgstr ""
21510
21511 #. type: verbatim
21512 #: ../fish/guestfish-actions.pod:1416
21513 #, no-wrap
21514 msgid ""
21515 " getcon\n"
21516 "\n"
21517 msgstr ""
21518
21519 #. type: textblock
21520 #: ../fish/guestfish-actions.pod:1420
21521 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
21522 msgstr ""
21523
21524 #. type: =head2
21525 #: ../fish/guestfish-actions.pod:1423
21526 msgid "getxattr"
21527 msgstr ""
21528
21529 #. type: verbatim
21530 #: ../fish/guestfish-actions.pod:1425
21531 #, no-wrap
21532 msgid ""
21533 " getxattr path name\n"
21534 "\n"
21535 msgstr ""
21536
21537 #. type: textblock
21538 #: ../fish/guestfish-actions.pod:1427
21539 msgid ""
21540 "Get a single extended attribute from file C<path> named C<name>.  This call "
21541 "follows symlinks.  If you want to lookup an extended attribute for the "
21542 "symlink itself, use L</lgetxattr>."
21543 msgstr ""
21544
21545 #. type: textblock
21546 #: ../fish/guestfish-actions.pod:1431 ../fish/guestfish-actions.pod:2262
21547 msgid ""
21548 "Normally it is better to get all extended attributes from a file in one go "
21549 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
21550 "buggy and do not provide a way to list out attributes.  For these "
21551 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
21552 "attributes you want in advance and call this function."
21553 msgstr ""
21554
21555 #. type: textblock
21556 #: ../fish/guestfish-actions.pod:1441
21557 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
21558 msgstr ""
21559
21560 #. type: =head2
21561 #: ../fish/guestfish-actions.pod:1443
21562 msgid "getxattrs"
21563 msgstr ""
21564
21565 #. type: verbatim
21566 #: ../fish/guestfish-actions.pod:1445
21567 #, no-wrap
21568 msgid ""
21569 " getxattrs path\n"
21570 "\n"
21571 msgstr ""
21572
21573 #. type: textblock
21574 #: ../fish/guestfish-actions.pod:1453
21575 msgid "See also: L</lgetxattrs>, L<attr(5)>."
21576 msgstr ""
21577
21578 #. type: =head2
21579 #: ../fish/guestfish-actions.pod:1455
21580 msgid "glob-expand"
21581 msgstr ""
21582
21583 #. type: verbatim
21584 #: ../fish/guestfish-actions.pod:1457
21585 #, no-wrap
21586 msgid ""
21587 " glob-expand pattern\n"
21588 "\n"
21589 msgstr ""
21590
21591 #. type: =head2
21592 #: ../fish/guestfish-actions.pod:1470
21593 msgid "grep"
21594 msgstr ""
21595
21596 #. type: verbatim
21597 #: ../fish/guestfish-actions.pod:1472
21598 #, no-wrap
21599 msgid ""
21600 " grep regex path\n"
21601 "\n"
21602 msgstr ""
21603
21604 #. type: =head2
21605 #: ../fish/guestfish-actions.pod:1480
21606 msgid "grepi"
21607 msgstr ""
21608
21609 #. type: verbatim
21610 #: ../fish/guestfish-actions.pod:1482
21611 #, no-wrap
21612 msgid ""
21613 " grepi regex path\n"
21614 "\n"
21615 msgstr ""
21616
21617 #. type: =head2
21618 #: ../fish/guestfish-actions.pod:1490
21619 msgid "grub-install"
21620 msgstr ""
21621
21622 #. type: verbatim
21623 #: ../fish/guestfish-actions.pod:1492
21624 #, no-wrap
21625 msgid ""
21626 " grub-install root device\n"
21627 "\n"
21628 msgstr ""
21629
21630 #. type: =head2
21631 #: ../fish/guestfish-actions.pod:1508
21632 msgid "head"
21633 msgstr ""
21634
21635 #. type: verbatim
21636 #: ../fish/guestfish-actions.pod:1510
21637 #, no-wrap
21638 msgid ""
21639 " head path\n"
21640 "\n"
21641 msgstr ""
21642
21643 #. type: =head2
21644 #: ../fish/guestfish-actions.pod:1518
21645 msgid "head-n"
21646 msgstr ""
21647
21648 #. type: verbatim
21649 #: ../fish/guestfish-actions.pod:1520
21650 #, no-wrap
21651 msgid ""
21652 " head-n nrlines path\n"
21653 "\n"
21654 msgstr ""
21655
21656 #. type: =head2
21657 #: ../fish/guestfish-actions.pod:1533
21658 msgid "hexdump"
21659 msgstr ""
21660
21661 #. type: verbatim
21662 #: ../fish/guestfish-actions.pod:1535
21663 #, no-wrap
21664 msgid ""
21665 " hexdump path\n"
21666 "\n"
21667 msgstr ""
21668
21669 #. type: =head2
21670 #: ../fish/guestfish-actions.pod:1543
21671 msgid "initrd-cat"
21672 msgstr ""
21673
21674 #. type: verbatim
21675 #: ../fish/guestfish-actions.pod:1545
21676 #, no-wrap
21677 msgid ""
21678 " initrd-cat initrdpath filename\n"
21679 "\n"
21680 msgstr ""
21681
21682 #. type: textblock
21683 #: ../fish/guestfish-actions.pod:1557
21684 msgid "See also L</initrd-list>."
21685 msgstr ""
21686
21687 #. type: =head2
21688 #: ../fish/guestfish-actions.pod:1562
21689 msgid "initrd-list"
21690 msgstr ""
21691
21692 #. type: verbatim
21693 #: ../fish/guestfish-actions.pod:1564
21694 #, no-wrap
21695 msgid ""
21696 " initrd-list path\n"
21697 "\n"
21698 msgstr ""
21699
21700 #. type: =head2
21701 #: ../fish/guestfish-actions.pod:1576
21702 msgid "inotify-add-watch"
21703 msgstr ""
21704
21705 #. type: verbatim
21706 #: ../fish/guestfish-actions.pod:1578
21707 #, no-wrap
21708 msgid ""
21709 " inotify-add-watch path mask\n"
21710 "\n"
21711 msgstr ""
21712
21713 #. type: =head2
21714 #: ../fish/guestfish-actions.pod:1590
21715 msgid "inotify-close"
21716 msgstr ""
21717
21718 #. type: verbatim
21719 #: ../fish/guestfish-actions.pod:1592
21720 #, no-wrap
21721 msgid ""
21722 " inotify-close\n"
21723 "\n"
21724 msgstr ""
21725
21726 #. type: =head2
21727 #: ../fish/guestfish-actions.pod:1598
21728 msgid "inotify-files"
21729 msgstr ""
21730
21731 #. type: verbatim
21732 #: ../fish/guestfish-actions.pod:1600
21733 #, no-wrap
21734 msgid ""
21735 " inotify-files\n"
21736 "\n"
21737 msgstr ""
21738
21739 #. type: textblock
21740 #: ../fish/guestfish-actions.pod:1602
21741 msgid ""
21742 "This function is a helpful wrapper around L</inotify-read> which just "
21743 "returns a list of pathnames of objects that were touched.  The returned "
21744 "pathnames are sorted and deduplicated."
21745 msgstr ""
21746
21747 #. type: =head2
21748 #: ../fish/guestfish-actions.pod:1606
21749 msgid "inotify-init"
21750 msgstr ""
21751
21752 #. type: verbatim
21753 #: ../fish/guestfish-actions.pod:1608
21754 #, no-wrap
21755 msgid ""
21756 " inotify-init maxevents\n"
21757 "\n"
21758 msgstr ""
21759
21760 #. type: textblock
21761 #: ../fish/guestfish-actions.pod:1614
21762 msgid ""
21763 "C<maxevents> is the maximum number of events which will be queued up between "
21764 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
21765 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
21766 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
21767 "but records the fact that it threw them away by setting a flag "
21768 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
21769 msgstr ""
21770
21771 #. type: textblock
21772 #: ../fish/guestfish-actions.pod:1624
21773 msgid ""
21774 "Before any events are generated, you have to add some watches to the "
21775 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
21776 "L</inotify-watch-all>."
21777 msgstr ""
21778
21779 #. type: textblock
21780 #: ../fish/guestfish-actions.pod:1630
21781 msgid ""
21782 "Queued up events should be read periodically by calling L</inotify-read> (or "
21783 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
21784 "If you don't read the events out often enough then you risk the internal "
21785 "queue overflowing."
21786 msgstr ""
21787
21788 #. type: textblock
21789 #: ../fish/guestfish-actions.pod:1637
21790 msgid ""
21791 "The handle should be closed after use by calling L</inotify-close>.  This "
21792 "also removes any watches automatically."
21793 msgstr ""
21794
21795 #. type: =head2
21796 #: ../fish/guestfish-actions.pod:1646
21797 msgid "inotify-read"
21798 msgstr ""
21799
21800 #. type: verbatim
21801 #: ../fish/guestfish-actions.pod:1648
21802 #, no-wrap
21803 msgid ""
21804 " inotify-read\n"
21805 "\n"
21806 msgstr ""
21807
21808 #. type: =head2
21809 #: ../fish/guestfish-actions.pod:1661
21810 msgid "inotify-rm-watch"
21811 msgstr ""
21812
21813 #. type: verbatim
21814 #: ../fish/guestfish-actions.pod:1663
21815 #, no-wrap
21816 msgid ""
21817 " inotify-rm-watch wd\n"
21818 "\n"
21819 msgstr ""
21820
21821 #. type: textblock
21822 #: ../fish/guestfish-actions.pod:1665
21823 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
21824 msgstr ""
21825
21826 #. type: =head2
21827 #: ../fish/guestfish-actions.pod:1668
21828 msgid "inspect-get-arch"
21829 msgstr ""
21830
21831 #. type: verbatim
21832 #: ../fish/guestfish-actions.pod:1670
21833 #, no-wrap
21834 msgid ""
21835 " inspect-get-arch root\n"
21836 "\n"
21837 msgstr ""
21838
21839 #. type: textblock
21840 #: ../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
21841 msgid ""
21842 "This function should only be called with a root device string as returned by "
21843 "L</inspect-os>."
21844 msgstr ""
21845
21846 #. type: textblock
21847 #: ../fish/guestfish-actions.pod:1675
21848 msgid ""
21849 "This returns the architecture of the inspected operating system.  The "
21850 "possible return values are listed under L</file-architecture>."
21851 msgstr ""
21852
21853 #. type: =head2
21854 #: ../fish/guestfish-actions.pod:1684
21855 msgid "inspect-get-distro"
21856 msgstr ""
21857
21858 #. type: verbatim
21859 #: ../fish/guestfish-actions.pod:1686
21860 #, no-wrap
21861 msgid ""
21862 " inspect-get-distro root\n"
21863 "\n"
21864 msgstr ""
21865
21866 #. type: =head2
21867 #: ../fish/guestfish-actions.pod:1758
21868 msgid "inspect-get-filesystems"
21869 msgstr ""
21870
21871 #. type: verbatim
21872 #: ../fish/guestfish-actions.pod:1760
21873 #, no-wrap
21874 msgid ""
21875 " inspect-get-filesystems root\n"
21876 "\n"
21877 msgstr ""
21878
21879 #. type: textblock
21880 #: ../fish/guestfish-actions.pod:1773
21881 msgid ""
21882 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21883 "L</inspect-get-mountpoints>."
21884 msgstr ""
21885
21886 #. type: =head2
21887 #: ../fish/guestfish-actions.pod:1776
21888 msgid "inspect-get-hostname"
21889 msgstr ""
21890
21891 #. type: verbatim
21892 #: ../fish/guestfish-actions.pod:1778
21893 #, no-wrap
21894 msgid ""
21895 " inspect-get-hostname root\n"
21896 "\n"
21897 msgstr ""
21898
21899 #. type: =head2
21900 #: ../fish/guestfish-actions.pod:1791
21901 msgid "inspect-get-major-version"
21902 msgstr ""
21903
21904 #. type: verbatim
21905 #: ../fish/guestfish-actions.pod:1793
21906 #, no-wrap
21907 msgid ""
21908 " inspect-get-major-version root\n"
21909 "\n"
21910 msgstr ""
21911
21912 #. type: =head2
21913 #: ../fish/guestfish-actions.pod:1812
21914 msgid "inspect-get-minor-version"
21915 msgstr ""
21916
21917 #. type: verbatim
21918 #: ../fish/guestfish-actions.pod:1814
21919 #, no-wrap
21920 msgid ""
21921 " inspect-get-minor-version root\n"
21922 "\n"
21923 msgstr ""
21924
21925 #. type: textblock
21926 #: ../fish/guestfish-actions.pod:1824
21927 msgid ""
21928 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21929 "L</inspect-get-major-version>."
21930 msgstr ""
21931
21932 #. type: =head2
21933 #: ../fish/guestfish-actions.pod:1827
21934 msgid "inspect-get-mountpoints"
21935 msgstr ""
21936
21937 #. type: verbatim
21938 #: ../fish/guestfish-actions.pod:1829
21939 #, no-wrap
21940 msgid ""
21941 " inspect-get-mountpoints root\n"
21942 "\n"
21943 msgstr ""
21944
21945 #. type: textblock
21946 #: ../fish/guestfish-actions.pod:1851
21947 msgid ""
21948 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21949 "L</inspect-get-filesystems>."
21950 msgstr ""
21951
21952 #. type: =head2
21953 #: ../fish/guestfish-actions.pod:1854
21954 msgid "inspect-get-package-format"
21955 msgstr ""
21956
21957 #. type: verbatim
21958 #: ../fish/guestfish-actions.pod:1856
21959 #, no-wrap
21960 msgid ""
21961 " inspect-get-package-format root\n"
21962 "\n"
21963 msgstr ""
21964
21965 #. type: textblock
21966 #: ../fish/guestfish-actions.pod:1861
21967 msgid ""
21968 "This function and L</inspect-get-package-management> return the package "
21969 "format and package management tool used by the inspected operating system.  "
21970 "For example for Fedora these functions would return C<rpm> (package format) "
21971 "and C<yum> (package management)."
21972 msgstr ""
21973
21974 #. type: =head2
21975 #: ../fish/guestfish-actions.pod:1876
21976 msgid "inspect-get-package-management"
21977 msgstr ""
21978
21979 #. type: verbatim
21980 #: ../fish/guestfish-actions.pod:1878
21981 #, no-wrap
21982 msgid ""
21983 " inspect-get-package-management root\n"
21984 "\n"
21985 msgstr ""
21986
21987 #. type: textblock
21988 #: ../fish/guestfish-actions.pod:1883
21989 msgid ""
21990 "L</inspect-get-package-format> and this function return the package format "
21991 "and package management tool used by the inspected operating system.  For "
21992 "example for Fedora these functions would return C<rpm> (package format) and "
21993 "C<yum> (package management)."
21994 msgstr ""
21995
21996 #. type: =head2
21997 #: ../fish/guestfish-actions.pod:1900
21998 msgid "inspect-get-product-name"
21999 msgstr ""
22000
22001 #. type: verbatim
22002 #: ../fish/guestfish-actions.pod:1902
22003 #, no-wrap
22004 msgid ""
22005 " inspect-get-product-name root\n"
22006 "\n"
22007 msgstr ""
22008
22009 #. type: =head2
22010 #: ../fish/guestfish-actions.pod:1917
22011 msgid "inspect-get-roots"
22012 msgstr ""
22013
22014 #. type: verbatim
22015 #: ../fish/guestfish-actions.pod:1919
22016 #, no-wrap
22017 msgid ""
22018 " inspect-get-roots\n"
22019 "\n"
22020 msgstr ""
22021
22022 #. type: textblock
22023 #: ../fish/guestfish-actions.pod:1921
22024 msgid ""
22025 "This function is a convenient way to get the list of root devices, as "
22026 "returned from a previous call to L</inspect-os>, but without redoing the "
22027 "whole inspection process."
22028 msgstr ""
22029
22030 #. type: textblock
22031 #: ../fish/guestfish-actions.pod:1925
22032 msgid ""
22033 "This returns an empty list if either no root devices were found or the "
22034 "caller has not called L</inspect-os>."
22035 msgstr ""
22036
22037 #. type: =head2
22038 #: ../fish/guestfish-actions.pod:1930
22039 msgid "inspect-get-type"
22040 msgstr ""
22041
22042 #. type: verbatim
22043 #: ../fish/guestfish-actions.pod:1932
22044 #, no-wrap
22045 msgid ""
22046 " inspect-get-type root\n"
22047 "\n"
22048 msgstr ""
22049
22050 #. type: =head2
22051 #: ../fish/guestfish-actions.pod:1965
22052 msgid "inspect-get-windows-systemroot"
22053 msgstr ""
22054
22055 #. type: verbatim
22056 #: ../fish/guestfish-actions.pod:1967
22057 #, no-wrap
22058 msgid ""
22059 " inspect-get-windows-systemroot root\n"
22060 "\n"
22061 msgstr ""
22062
22063 #. type: =head2
22064 #: ../fish/guestfish-actions.pod:1981
22065 msgid "inspect-list-applications"
22066 msgstr ""
22067
22068 #. type: verbatim
22069 #: ../fish/guestfish-actions.pod:1983
22070 #, no-wrap
22071 msgid ""
22072 " inspect-list-applications root\n"
22073 "\n"
22074 msgstr ""
22075
22076 #. type: textblock
22077 #: ../fish/guestfish-actions.pod:1990
22078 msgid ""
22079 "I<Note:> This call works differently from other parts of the inspection "
22080 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
22081 "then mount up the disks, before calling this.  Listing applications is a "
22082 "significantly more difficult operation which requires access to the full "
22083 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
22084 "are just returning data cached in the libguestfs handle, this call actually "
22085 "reads parts of the mounted filesystems during the call."
22086 msgstr ""
22087
22088 #. type: =head2
22089 #: ../fish/guestfish-actions.pod:2080
22090 msgid "inspect-os"
22091 msgstr ""
22092
22093 #. type: verbatim
22094 #: ../fish/guestfish-actions.pod:2082
22095 #, no-wrap
22096 msgid ""
22097 " inspect-os\n"
22098 "\n"
22099 msgstr ""
22100
22101 #. type: textblock
22102 #: ../fish/guestfish-actions.pod:2097
22103 msgid ""
22104 "You can pass the root string(s) returned to other L</inspect-get-*> "
22105 "functions in order to query further information about each operating system, "
22106 "such as the name and version."
22107 msgstr ""
22108
22109 #. type: textblock
22110 #: ../fish/guestfish-actions.pod:2102
22111 msgid ""
22112 "This function uses other libguestfs features such as L</mount-ro> and "
22113 "L</umount-all> in order to mount and unmount filesystems and look at the "
22114 "contents.  This should be called with no disks currently mounted.  The "
22115 "function may also use Augeas, so any existing Augeas handle will be closed."
22116 msgstr ""
22117
22118 #. type: textblock
22119 #: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:2290 ../fish/guestfish-actions.pod:2336
22120 msgid "See also L</list-filesystems>."
22121 msgstr ""
22122
22123 #. type: =head2
22124 #: ../fish/guestfish-actions.pod:2116
22125 msgid "is-blockdev"
22126 msgstr ""
22127
22128 #. type: verbatim
22129 #: ../fish/guestfish-actions.pod:2118
22130 #, no-wrap
22131 msgid ""
22132 " is-blockdev path\n"
22133 "\n"
22134 msgstr ""
22135
22136 #. type: textblock
22137 #: ../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
22138 msgid "See also L</stat>."
22139 msgstr ""
22140
22141 #. type: =head2
22142 #: ../fish/guestfish-actions.pod:2125
22143 msgid "is-busy"
22144 msgstr ""
22145
22146 #. type: verbatim
22147 #: ../fish/guestfish-actions.pod:2127
22148 #, no-wrap
22149 msgid ""
22150 " is-busy\n"
22151 "\n"
22152 msgstr ""
22153
22154 #. type: =head2
22155 #: ../fish/guestfish-actions.pod:2134
22156 msgid "is-chardev"
22157 msgstr ""
22158
22159 #. type: verbatim
22160 #: ../fish/guestfish-actions.pod:2136
22161 #, no-wrap
22162 msgid ""
22163 " is-chardev path\n"
22164 "\n"
22165 msgstr ""
22166
22167 #. type: =head2
22168 #: ../fish/guestfish-actions.pod:2143
22169 msgid "is-config"
22170 msgstr ""
22171
22172 #. type: verbatim
22173 #: ../fish/guestfish-actions.pod:2145
22174 #, no-wrap
22175 msgid ""
22176 " is-config\n"
22177 "\n"
22178 msgstr ""
22179
22180 #. type: =head2
22181 #: ../fish/guestfish-actions.pod:2152
22182 msgid "is-dir"
22183 msgstr ""
22184
22185 #. type: verbatim
22186 #: ../fish/guestfish-actions.pod:2154
22187 #, no-wrap
22188 msgid ""
22189 " is-dir path\n"
22190 "\n"
22191 msgstr ""
22192
22193 #. type: =head2
22194 #: ../fish/guestfish-actions.pod:2162
22195 msgid "is-fifo"
22196 msgstr ""
22197
22198 #. type: verbatim
22199 #: ../fish/guestfish-actions.pod:2164
22200 #, no-wrap
22201 msgid ""
22202 " is-fifo path\n"
22203 "\n"
22204 msgstr ""
22205
22206 #. type: =head2
22207 #: ../fish/guestfish-actions.pod:2171
22208 msgid "is-file"
22209 msgstr ""
22210
22211 #. type: verbatim
22212 #: ../fish/guestfish-actions.pod:2173
22213 #, no-wrap
22214 msgid ""
22215 " is-file path\n"
22216 "\n"
22217 msgstr ""
22218
22219 #. type: =head2
22220 #: ../fish/guestfish-actions.pod:2181
22221 msgid "is-launching"
22222 msgstr ""
22223
22224 #. type: verbatim
22225 #: ../fish/guestfish-actions.pod:2183
22226 #, no-wrap
22227 msgid ""
22228 " is-launching\n"
22229 "\n"
22230 msgstr ""
22231
22232 #. type: =head2
22233 #: ../fish/guestfish-actions.pod:2190
22234 msgid "is-lv"
22235 msgstr ""
22236
22237 #. type: verbatim
22238 #: ../fish/guestfish-actions.pod:2192
22239 #, no-wrap
22240 msgid ""
22241 " is-lv device\n"
22242 "\n"
22243 msgstr ""
22244
22245 #. type: =head2
22246 #: ../fish/guestfish-actions.pod:2197
22247 msgid "is-ready"
22248 msgstr ""
22249
22250 #. type: verbatim
22251 #: ../fish/guestfish-actions.pod:2199
22252 #, no-wrap
22253 msgid ""
22254 " is-ready\n"
22255 "\n"
22256 msgstr ""
22257
22258 #. type: =head2
22259 #: ../fish/guestfish-actions.pod:2206
22260 msgid "is-socket"
22261 msgstr ""
22262
22263 #. type: verbatim
22264 #: ../fish/guestfish-actions.pod:2208
22265 #, no-wrap
22266 msgid ""
22267 " is-socket path\n"
22268 "\n"
22269 msgstr ""
22270
22271 #. type: =head2
22272 #: ../fish/guestfish-actions.pod:2215
22273 msgid "is-symlink"
22274 msgstr ""
22275
22276 #. type: verbatim
22277 #: ../fish/guestfish-actions.pod:2217
22278 #, no-wrap
22279 msgid ""
22280 " is-symlink path\n"
22281 "\n"
22282 msgstr ""
22283
22284 #. type: =head2
22285 #: ../fish/guestfish-actions.pod:2224
22286 msgid "kill-subprocess"
22287 msgstr ""
22288
22289 #. type: verbatim
22290 #: ../fish/guestfish-actions.pod:2226
22291 #, no-wrap
22292 msgid ""
22293 " kill-subprocess\n"
22294 "\n"
22295 msgstr ""
22296
22297 #. type: =head2
22298 #: ../fish/guestfish-actions.pod:2230
22299 msgid "launch"
22300 msgstr ""
22301
22302 #. type: =head2
22303 #: ../fish/guestfish-actions.pod:2232
22304 msgid "run"
22305 msgstr ""
22306
22307 #. type: verbatim
22308 #: ../fish/guestfish-actions.pod:2234
22309 #, no-wrap
22310 msgid ""
22311 " launch\n"
22312 "\n"
22313 msgstr ""
22314
22315 #. type: =head2
22316 #: ../fish/guestfish-actions.pod:2242
22317 msgid "lchown"
22318 msgstr ""
22319
22320 #. type: verbatim
22321 #: ../fish/guestfish-actions.pod:2244
22322 #, no-wrap
22323 msgid ""
22324 " lchown owner group path\n"
22325 "\n"
22326 msgstr ""
22327
22328 #. type: textblock
22329 #: ../fish/guestfish-actions.pod:2246
22330 msgid ""
22331 "Change the file owner to C<owner> and group to C<group>.  This is like "
22332 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
22333 "the target."
22334 msgstr ""
22335
22336 #. type: =head2
22337 #: ../fish/guestfish-actions.pod:2254
22338 msgid "lgetxattr"
22339 msgstr ""
22340
22341 #. type: verbatim
22342 #: ../fish/guestfish-actions.pod:2256
22343 #, no-wrap
22344 msgid ""
22345 " lgetxattr path name\n"
22346 "\n"
22347 msgstr ""
22348
22349 #. type: textblock
22350 #: ../fish/guestfish-actions.pod:2272
22351 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
22352 msgstr ""
22353
22354 #. type: =head2
22355 #: ../fish/guestfish-actions.pod:2274
22356 msgid "lgetxattrs"
22357 msgstr ""
22358
22359 #. type: verbatim
22360 #: ../fish/guestfish-actions.pod:2276
22361 #, no-wrap
22362 msgid ""
22363 " lgetxattrs path\n"
22364 "\n"
22365 msgstr ""
22366
22367 #. type: textblock
22368 #: ../fish/guestfish-actions.pod:2278
22369 msgid ""
22370 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
22371 "it returns the extended attributes of the link itself."
22372 msgstr ""
22373
22374 #. type: =head2
22375 #: ../fish/guestfish-actions.pod:2282
22376 msgid "list-devices"
22377 msgstr ""
22378
22379 #. type: verbatim
22380 #: ../fish/guestfish-actions.pod:2284
22381 #, no-wrap
22382 msgid ""
22383 " list-devices\n"
22384 "\n"
22385 msgstr ""
22386
22387 #. type: =head2
22388 #: ../fish/guestfish-actions.pod:2292
22389 msgid "list-filesystems"
22390 msgstr ""
22391
22392 #. type: verbatim
22393 #: ../fish/guestfish-actions.pod:2294
22394 #, no-wrap
22395 msgid ""
22396 " list-filesystems\n"
22397 "\n"
22398 msgstr ""
22399
22400 #. type: textblock
22401 #: ../fish/guestfish-actions.pod:2313
22402 msgid ""
22403 "This command runs other libguestfs commands, which might include L</mount> "
22404 "and L</umount>, and therefore you should use this soon after launch and only "
22405 "when nothing is mounted."
22406 msgstr ""
22407
22408 #. type: textblock
22409 #: ../fish/guestfish-actions.pod:2317
22410 msgid ""
22411 "Not all of the filesystems returned will be mountable.  In particular, swap "
22412 "partitions are returned in the list.  Also this command does not check that "
22413 "each filesystem found is valid and mountable, and some filesystems might be "
22414 "mountable but require special options.  Filesystems may not all belong to a "
22415 "single logical operating system (use L</inspect-os> to look for OSes)."
22416 msgstr ""
22417
22418 #. type: =head2
22419 #: ../fish/guestfish-actions.pod:2325
22420 msgid "list-partitions"
22421 msgstr ""
22422
22423 #. type: verbatim
22424 #: ../fish/guestfish-actions.pod:2327
22425 #, no-wrap
22426 msgid ""
22427 " list-partitions\n"
22428 "\n"
22429 msgstr ""
22430
22431 #. type: textblock
22432 #: ../fish/guestfish-actions.pod:2333
22433 msgid ""
22434 "This does not return logical volumes.  For that you will need to call "
22435 "L</lvs>."
22436 msgstr ""
22437
22438 #. type: =head2
22439 #: ../fish/guestfish-actions.pod:2338
22440 msgid "ll"
22441 msgstr ""
22442
22443 #. type: verbatim
22444 #: ../fish/guestfish-actions.pod:2340
22445 #, no-wrap
22446 msgid ""
22447 " ll directory\n"
22448 "\n"
22449 msgstr ""
22450
22451 #. type: =head2
22452 #: ../fish/guestfish-actions.pod:2348
22453 msgid "ln"
22454 msgstr ""
22455
22456 #. type: verbatim
22457 #: ../fish/guestfish-actions.pod:2350
22458 #, no-wrap
22459 msgid ""
22460 " ln target linkname\n"
22461 "\n"
22462 msgstr ""
22463
22464 #. type: =head2
22465 #: ../fish/guestfish-actions.pod:2354
22466 msgid "ln-f"
22467 msgstr ""
22468
22469 #. type: verbatim
22470 #: ../fish/guestfish-actions.pod:2356
22471 #, no-wrap
22472 msgid ""
22473 " ln-f target linkname\n"
22474 "\n"
22475 msgstr ""
22476
22477 #. type: =head2
22478 #: ../fish/guestfish-actions.pod:2361
22479 msgid "ln-s"
22480 msgstr ""
22481
22482 #. type: verbatim
22483 #: ../fish/guestfish-actions.pod:2363
22484 #, no-wrap
22485 msgid ""
22486 " ln-s target linkname\n"
22487 "\n"
22488 msgstr ""
22489
22490 #. type: =head2
22491 #: ../fish/guestfish-actions.pod:2367
22492 msgid "ln-sf"
22493 msgstr ""
22494
22495 #. type: verbatim
22496 #: ../fish/guestfish-actions.pod:2369
22497 #, no-wrap
22498 msgid ""
22499 " ln-sf target linkname\n"
22500 "\n"
22501 msgstr ""
22502
22503 #. type: =head2
22504 #: ../fish/guestfish-actions.pod:2374
22505 msgid "lremovexattr"
22506 msgstr ""
22507
22508 #. type: verbatim
22509 #: ../fish/guestfish-actions.pod:2376
22510 #, no-wrap
22511 msgid ""
22512 " lremovexattr xattr path\n"
22513 "\n"
22514 msgstr ""
22515
22516 #. type: textblock
22517 #: ../fish/guestfish-actions.pod:2378
22518 msgid ""
22519 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
22520 "it removes an extended attribute of the link itself."
22521 msgstr ""
22522
22523 #. type: =head2
22524 #: ../fish/guestfish-actions.pod:2382
22525 msgid "ls"
22526 msgstr ""
22527
22528 #. type: verbatim
22529 #: ../fish/guestfish-actions.pod:2384
22530 #, no-wrap
22531 msgid ""
22532 " ls directory\n"
22533 "\n"
22534 msgstr ""
22535
22536 #. type: textblock
22537 #: ../fish/guestfish-actions.pod:2390
22538 msgid ""
22539 "This command is mostly useful for interactive sessions.  Programs should "
22540 "probably use L</readdir> instead."
22541 msgstr ""
22542
22543 #. type: =head2
22544 #: ../fish/guestfish-actions.pod:2393
22545 msgid "lsetxattr"
22546 msgstr ""
22547
22548 #. type: verbatim
22549 #: ../fish/guestfish-actions.pod:2395
22550 #, no-wrap
22551 msgid ""
22552 " lsetxattr xattr val vallen path\n"
22553 "\n"
22554 msgstr ""
22555
22556 #. type: textblock
22557 #: ../fish/guestfish-actions.pod:2397
22558 msgid ""
22559 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
22560 "sets an extended attribute of the link itself."
22561 msgstr ""
22562
22563 #. type: =head2
22564 #: ../fish/guestfish-actions.pod:2401
22565 msgid "lstat"
22566 msgstr ""
22567
22568 #. type: verbatim
22569 #: ../fish/guestfish-actions.pod:2403
22570 #, no-wrap
22571 msgid ""
22572 " lstat path\n"
22573 "\n"
22574 msgstr ""
22575
22576 #. type: textblock
22577 #: ../fish/guestfish-actions.pod:2407
22578 msgid ""
22579 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
22580 "the link is stat-ed, not the file it refers to."
22581 msgstr ""
22582
22583 #. type: =head2
22584 #: ../fish/guestfish-actions.pod:2413
22585 msgid "lstatlist"
22586 msgstr ""
22587
22588 #. type: verbatim
22589 #: ../fish/guestfish-actions.pod:2415
22590 #, no-wrap
22591 msgid ""
22592 " lstatlist path 'names ...'\n"
22593 "\n"
22594 msgstr ""
22595
22596 #. type: textblock
22597 #: ../fish/guestfish-actions.pod:2417
22598 msgid ""
22599 "This call allows you to perform the L</lstat> operation on multiple files, "
22600 "where all files are in the directory C<path>.  C<names> is the list of files "
22601 "from this directory."
22602 msgstr ""
22603
22604 #. type: textblock
22605 #: ../fish/guestfish-actions.pod:2426
22606 msgid ""
22607 "This call is intended for programs that want to efficiently list a directory "
22608 "contents without making many round-trips.  See also L</lxattrlist> for a "
22609 "similarly efficient call for getting extended attributes.  Very long "
22610 "directory listings might cause the protocol message size to be exceeded, "
22611 "causing this call to fail.  The caller must split up such requests into "
22612 "smaller groups of names."
22613 msgstr ""
22614
22615 #. type: =head2
22616 #: ../fish/guestfish-actions.pod:2434
22617 msgid "luks-add-key"
22618 msgstr ""
22619
22620 #. type: verbatim
22621 #: ../fish/guestfish-actions.pod:2436
22622 #, no-wrap
22623 msgid ""
22624 " luks-add-key device keyslot\n"
22625 "\n"
22626 msgstr ""
22627
22628 #. type: textblock
22629 #: ../fish/guestfish-actions.pod:2443
22630 msgid ""
22631 "Note that if C<keyslot> already contains a key, then this command will "
22632 "fail.  You have to use L</luks-kill-slot> first to remove that key."
22633 msgstr ""
22634
22635 #. type: textblock
22636 #: ../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
22637 msgid ""
22638 "This command has one or more key or passphrase parameters.  Guestfish will "
22639 "prompt for these separately."
22640 msgstr ""
22641
22642 #. type: =head2
22643 #: ../fish/guestfish-actions.pod:2450
22644 msgid "luks-close"
22645 msgstr ""
22646
22647 #. type: verbatim
22648 #: ../fish/guestfish-actions.pod:2452
22649 #, no-wrap
22650 msgid ""
22651 " luks-close device\n"
22652 "\n"
22653 msgstr ""
22654
22655 #. type: textblock
22656 #: ../fish/guestfish-actions.pod:2454
22657 msgid ""
22658 "This closes a LUKS device that was created earlier by L</luks-open> or "
22659 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
22660 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
22661 "underlying block device."
22662 msgstr ""
22663
22664 #. type: =head2
22665 #: ../fish/guestfish-actions.pod:2460
22666 msgid "luks-format"
22667 msgstr ""
22668
22669 #. type: verbatim
22670 #: ../fish/guestfish-actions.pod:2462
22671 #, no-wrap
22672 msgid ""
22673 " luks-format device keyslot\n"
22674 "\n"
22675 msgstr ""
22676
22677 #. type: =head2
22678 #: ../fish/guestfish-actions.pod:2475
22679 msgid "luks-format-cipher"
22680 msgstr ""
22681
22682 #. type: verbatim
22683 #: ../fish/guestfish-actions.pod:2477
22684 #, no-wrap
22685 msgid ""
22686 " luks-format-cipher device keyslot cipher\n"
22687 "\n"
22688 msgstr ""
22689
22690 #. type: textblock
22691 #: ../fish/guestfish-actions.pod:2479
22692 msgid ""
22693 "This command is the same as L</luks-format> but it also allows you to set "
22694 "the C<cipher> used."
22695 msgstr ""
22696
22697 #. type: =head2
22698 #: ../fish/guestfish-actions.pod:2488
22699 msgid "luks-kill-slot"
22700 msgstr ""
22701
22702 #. type: verbatim
22703 #: ../fish/guestfish-actions.pod:2490
22704 #, no-wrap
22705 msgid ""
22706 " luks-kill-slot device keyslot\n"
22707 "\n"
22708 msgstr ""
22709
22710 #. type: =head2
22711 #: ../fish/guestfish-actions.pod:2499
22712 msgid "luks-open"
22713 msgstr ""
22714
22715 #. type: verbatim
22716 #: ../fish/guestfish-actions.pod:2501
22717 #, no-wrap
22718 msgid ""
22719 " luks-open device mapname\n"
22720 "\n"
22721 msgstr ""
22722
22723 #. type: textblock
22724 #: ../fish/guestfish-actions.pod:2515
22725 msgid ""
22726 "If this block device contains LVM volume groups, then calling L</vgscan> "
22727 "followed by L</vg-activate-all> will make them visible."
22728 msgstr ""
22729
22730 #. type: =head2
22731 #: ../fish/guestfish-actions.pod:2522
22732 msgid "luks-open-ro"
22733 msgstr ""
22734
22735 #. type: verbatim
22736 #: ../fish/guestfish-actions.pod:2524
22737 #, no-wrap
22738 msgid ""
22739 " luks-open-ro device mapname\n"
22740 "\n"
22741 msgstr ""
22742
22743 #. type: textblock
22744 #: ../fish/guestfish-actions.pod:2526
22745 msgid ""
22746 "This is the same as L</luks-open> except that a read-only mapping is "
22747 "created."
22748 msgstr ""
22749
22750 #. type: =head2
22751 #: ../fish/guestfish-actions.pod:2532
22752 msgid "lvcreate"
22753 msgstr ""
22754
22755 #. type: verbatim
22756 #: ../fish/guestfish-actions.pod:2534
22757 #, no-wrap
22758 msgid ""
22759 " lvcreate logvol volgroup mbytes\n"
22760 "\n"
22761 msgstr ""
22762
22763 #. type: =head2
22764 #: ../fish/guestfish-actions.pod:2539
22765 msgid "lvm-canonical-lv-name"
22766 msgstr ""
22767
22768 #. type: verbatim
22769 #: ../fish/guestfish-actions.pod:2541
22770 #, no-wrap
22771 msgid ""
22772 " lvm-canonical-lv-name lvname\n"
22773 "\n"
22774 msgstr ""
22775
22776 #. type: textblock
22777 #: ../fish/guestfish-actions.pod:2550
22778 msgid "See also L</is-lv>."
22779 msgstr ""
22780
22781 #. type: =head2
22782 #: ../fish/guestfish-actions.pod:2552
22783 msgid "lvm-clear-filter"
22784 msgstr ""
22785
22786 #. type: verbatim
22787 #: ../fish/guestfish-actions.pod:2554
22788 #, no-wrap
22789 msgid ""
22790 " lvm-clear-filter\n"
22791 "\n"
22792 msgstr ""
22793
22794 #. type: textblock
22795 #: ../fish/guestfish-actions.pod:2556
22796 msgid ""
22797 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
22798 "block device."
22799 msgstr ""
22800
22801 #. type: =head2
22802 #: ../fish/guestfish-actions.pod:2562
22803 msgid "lvm-remove-all"
22804 msgstr ""
22805
22806 #. type: verbatim
22807 #: ../fish/guestfish-actions.pod:2564
22808 #, no-wrap
22809 msgid ""
22810 " lvm-remove-all\n"
22811 "\n"
22812 msgstr ""
22813
22814 #. type: =head2
22815 #: ../fish/guestfish-actions.pod:2572
22816 msgid "lvm-set-filter"
22817 msgstr ""
22818
22819 #. type: verbatim
22820 #: ../fish/guestfish-actions.pod:2574
22821 #, no-wrap
22822 msgid ""
22823 " lvm-set-filter 'devices ...'\n"
22824 "\n"
22825 msgstr ""
22826
22827 #. type: =head2
22828 #: ../fish/guestfish-actions.pod:2599
22829 msgid "lvremove"
22830 msgstr ""
22831
22832 #. type: verbatim
22833 #: ../fish/guestfish-actions.pod:2601
22834 #, no-wrap
22835 msgid ""
22836 " lvremove device\n"
22837 "\n"
22838 msgstr ""
22839
22840 #. type: =head2
22841 #: ../fish/guestfish-actions.pod:2609
22842 msgid "lvrename"
22843 msgstr ""
22844
22845 #. type: verbatim
22846 #: ../fish/guestfish-actions.pod:2611
22847 #, no-wrap
22848 msgid ""
22849 " lvrename logvol newlogvol\n"
22850 "\n"
22851 msgstr ""
22852
22853 #. type: =head2
22854 #: ../fish/guestfish-actions.pod:2615
22855 msgid "lvresize"
22856 msgstr ""
22857
22858 #. type: verbatim
22859 #: ../fish/guestfish-actions.pod:2617
22860 #, no-wrap
22861 msgid ""
22862 " lvresize device mbytes\n"
22863 "\n"
22864 msgstr ""
22865
22866 #. type: =head2
22867 #: ../fish/guestfish-actions.pod:2623
22868 msgid "lvresize-free"
22869 msgstr ""
22870
22871 #. type: verbatim
22872 #: ../fish/guestfish-actions.pod:2625
22873 #, no-wrap
22874 msgid ""
22875 " lvresize-free lv percent\n"
22876 "\n"
22877 msgstr ""
22878
22879 #. type: =head2
22880 #: ../fish/guestfish-actions.pod:2633
22881 msgid "lvs"
22882 msgstr ""
22883
22884 #. type: verbatim
22885 #: ../fish/guestfish-actions.pod:2635
22886 #, no-wrap
22887 msgid ""
22888 " lvs\n"
22889 "\n"
22890 msgstr ""
22891
22892 #. type: textblock
22893 #: ../fish/guestfish-actions.pod:2643
22894 msgid "See also L</lvs-full>, L</list-filesystems>."
22895 msgstr ""
22896
22897 #. type: =head2
22898 #: ../fish/guestfish-actions.pod:2645
22899 msgid "lvs-full"
22900 msgstr ""
22901
22902 #. type: verbatim
22903 #: ../fish/guestfish-actions.pod:2647
22904 #, no-wrap
22905 msgid ""
22906 " lvs-full\n"
22907 "\n"
22908 msgstr ""
22909
22910 #. type: =head2
22911 #: ../fish/guestfish-actions.pod:2652
22912 msgid "lvuuid"
22913 msgstr ""
22914
22915 #. type: verbatim
22916 #: ../fish/guestfish-actions.pod:2654
22917 #, no-wrap
22918 msgid ""
22919 " lvuuid device\n"
22920 "\n"
22921 msgstr ""
22922
22923 #. type: =head2
22924 #: ../fish/guestfish-actions.pod:2658
22925 msgid "lxattrlist"
22926 msgstr ""
22927
22928 #. type: verbatim
22929 #: ../fish/guestfish-actions.pod:2660
22930 #, no-wrap
22931 msgid ""
22932 " lxattrlist path 'names ...'\n"
22933 "\n"
22934 msgstr ""
22935
22936 #. type: textblock
22937 #: ../fish/guestfish-actions.pod:2676
22938 msgid ""
22939 "This call is intended for programs that want to efficiently list a directory "
22940 "contents without making many round-trips.  See also L</lstatlist> for a "
22941 "similarly efficient call for getting standard stats.  Very long directory "
22942 "listings might cause the protocol message size to be exceeded, causing this "
22943 "call to fail.  The caller must split up such requests into smaller groups of "
22944 "names."
22945 msgstr ""
22946
22947 #. type: =head2
22948 #: ../fish/guestfish-actions.pod:2684
22949 msgid "mkdir"
22950 msgstr ""
22951
22952 #. type: verbatim
22953 #: ../fish/guestfish-actions.pod:2686
22954 #, no-wrap
22955 msgid ""
22956 " mkdir path\n"
22957 "\n"
22958 msgstr ""
22959
22960 #. type: =head2
22961 #: ../fish/guestfish-actions.pod:2690
22962 msgid "mkdir-mode"
22963 msgstr ""
22964
22965 #. type: verbatim
22966 #: ../fish/guestfish-actions.pod:2692
22967 #, no-wrap
22968 msgid ""
22969 " mkdir-mode path mode\n"
22970 "\n"
22971 msgstr ""
22972
22973 #. type: textblock
22974 #: ../fish/guestfish-actions.pod:2701
22975 msgid "See also L</mkdir>, L</umask>"
22976 msgstr ""
22977
22978 #. type: =head2
22979 #: ../fish/guestfish-actions.pod:2703
22980 msgid "mkdir-p"
22981 msgstr ""
22982
22983 #. type: verbatim
22984 #: ../fish/guestfish-actions.pod:2705
22985 #, no-wrap
22986 msgid ""
22987 " mkdir-p path\n"
22988 "\n"
22989 msgstr ""
22990
22991 #. type: =head2
22992 #: ../fish/guestfish-actions.pod:2710
22993 msgid "mkdtemp"
22994 msgstr ""
22995
22996 #. type: verbatim
22997 #: ../fish/guestfish-actions.pod:2712
22998 #, no-wrap
22999 msgid ""
23000 " mkdtemp template\n"
23001 "\n"
23002 msgstr ""
23003
23004 #. type: =head2
23005 #: ../fish/guestfish-actions.pod:2733
23006 msgid "mke2fs-J"
23007 msgstr ""
23008
23009 #. type: verbatim
23010 #: ../fish/guestfish-actions.pod:2735
23011 #, no-wrap
23012 msgid ""
23013 " mke2fs-J fstype blocksize device journal\n"
23014 "\n"
23015 msgstr ""
23016
23017 #. type: textblock
23018 #: ../fish/guestfish-actions.pod:2743
23019 msgid "See also L</mke2journal>."
23020 msgstr ""
23021
23022 #. type: =head2
23023 #: ../fish/guestfish-actions.pod:2745
23024 msgid "mke2fs-JL"
23025 msgstr ""
23026
23027 #. type: verbatim
23028 #: ../fish/guestfish-actions.pod:2747
23029 #, no-wrap
23030 msgid ""
23031 " mke2fs-JL fstype blocksize device label\n"
23032 "\n"
23033 msgstr ""
23034
23035 #. type: textblock
23036 #: ../fish/guestfish-actions.pod:2752
23037 msgid "See also L</mke2journal-L>."
23038 msgstr ""
23039
23040 #. type: =head2
23041 #: ../fish/guestfish-actions.pod:2754
23042 msgid "mke2fs-JU"
23043 msgstr ""
23044
23045 #. type: verbatim
23046 #: ../fish/guestfish-actions.pod:2756
23047 #, no-wrap
23048 msgid ""
23049 " mke2fs-JU fstype blocksize device uuid\n"
23050 "\n"
23051 msgstr ""
23052
23053 #. type: textblock
23054 #: ../fish/guestfish-actions.pod:2761
23055 msgid "See also L</mke2journal-U>."
23056 msgstr ""
23057
23058 #. type: =head2
23059 #: ../fish/guestfish-actions.pod:2763
23060 msgid "mke2journal"
23061 msgstr ""
23062
23063 #. type: verbatim
23064 #: ../fish/guestfish-actions.pod:2765
23065 #, no-wrap
23066 msgid ""
23067 " mke2journal blocksize device\n"
23068 "\n"
23069 msgstr ""
23070
23071 #. type: =head2
23072 #: ../fish/guestfish-actions.pod:2772
23073 msgid "mke2journal-L"
23074 msgstr ""
23075
23076 #. type: verbatim
23077 #: ../fish/guestfish-actions.pod:2774
23078 #, no-wrap
23079 msgid ""
23080 " mke2journal-L blocksize label device\n"
23081 "\n"
23082 msgstr ""
23083
23084 #. type: =head2
23085 #: ../fish/guestfish-actions.pod:2778
23086 msgid "mke2journal-U"
23087 msgstr ""
23088
23089 #. type: verbatim
23090 #: ../fish/guestfish-actions.pod:2780
23091 #, no-wrap
23092 msgid ""
23093 " mke2journal-U blocksize uuid device\n"
23094 "\n"
23095 msgstr ""
23096
23097 #. type: =head2
23098 #: ../fish/guestfish-actions.pod:2784
23099 msgid "mkfifo"
23100 msgstr ""
23101
23102 #. type: verbatim
23103 #: ../fish/guestfish-actions.pod:2786
23104 #, no-wrap
23105 msgid ""
23106 " mkfifo mode path\n"
23107 "\n"
23108 msgstr ""
23109
23110 #. type: textblock
23111 #: ../fish/guestfish-actions.pod:2788
23112 msgid ""
23113 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
23114 "is just a convenient wrapper around L</mknod>."
23115 msgstr ""
23116
23117 #. type: =head2
23118 #: ../fish/guestfish-actions.pod:2794
23119 msgid "mkfs"
23120 msgstr ""
23121
23122 #. type: verbatim
23123 #: ../fish/guestfish-actions.pod:2796
23124 #, no-wrap
23125 msgid ""
23126 " mkfs fstype device\n"
23127 "\n"
23128 msgstr ""
23129
23130 #. type: =head2
23131 #: ../fish/guestfish-actions.pod:2802
23132 msgid "mkfs-b"
23133 msgstr ""
23134
23135 #. type: verbatim
23136 #: ../fish/guestfish-actions.pod:2804
23137 #, no-wrap
23138 msgid ""
23139 " mkfs-b fstype blocksize device\n"
23140 "\n"
23141 msgstr ""
23142
23143 #. type: textblock
23144 #: ../fish/guestfish-actions.pod:2806
23145 msgid ""
23146 "This call is similar to L</mkfs>, but it allows you to control the block "
23147 "size of the resulting filesystem.  Supported block sizes depend on the "
23148 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
23149 msgstr ""
23150
23151 #. type: =head2
23152 #: ../fish/guestfish-actions.pod:2821
23153 msgid "mkfs-opts"
23154 msgstr ""
23155
23156 #. type: verbatim
23157 #: ../fish/guestfish-actions.pod:2823
23158 #, no-wrap
23159 msgid ""
23160 " mkfs-opts fstype device [blocksize:..]\n"
23161 "\n"
23162 msgstr ""
23163
23164 #. type: =head2
23165 #: ../fish/guestfish-actions.pod:2847
23166 msgid "mkmountpoint"
23167 msgstr ""
23168
23169 #. type: verbatim
23170 #: ../fish/guestfish-actions.pod:2849
23171 #, no-wrap
23172 msgid ""
23173 " mkmountpoint exemptpath\n"
23174 "\n"
23175 msgstr ""
23176
23177 #. type: textblock
23178 #: ../fish/guestfish-actions.pod:2851
23179 msgid ""
23180 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
23181 "to create extra mountpoints before mounting the first filesystem."
23182 msgstr ""
23183
23184 #. type: textblock
23185 #: ../fish/guestfish-actions.pod:2875
23186 msgid ""
23187 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
23188 "unexpected errors if you try to mix these calls.  It is safest to manually "
23189 "unmount filesystems and remove mountpoints after use."
23190 msgstr ""
23191
23192 #. type: textblock
23193 #: ../fish/guestfish-actions.pod:2879
23194 msgid ""
23195 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
23196 "for this to work for manual mountpoints, you must ensure that the innermost "
23197 "mountpoints have the longest pathnames, as in the example code above."
23198 msgstr ""
23199
23200 #. type: textblock
23201 #: ../fish/guestfish-actions.pod:2886
23202 msgid ""
23203 "Autosync [see L</set-autosync>, this is set by default on handles] means "
23204 "that L</umount-all> is called when the handle is closed which can also "
23205 "trigger these issues."
23206 msgstr ""
23207
23208 #. type: =head2
23209 #: ../fish/guestfish-actions.pod:2890
23210 msgid "mknod"
23211 msgstr ""
23212
23213 #. type: verbatim
23214 #: ../fish/guestfish-actions.pod:2892
23215 #, no-wrap
23216 msgid ""
23217 " mknod mode devmajor devminor path\n"
23218 "\n"
23219 msgstr ""
23220
23221 #. type: textblock
23222 #: ../fish/guestfish-actions.pod:2902
23223 msgid ""
23224 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
23225 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
23226 "regular file).  These constants are available in the standard Linux header "
23227 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
23228 "wrappers around this command which bitwise OR in the appropriate constant "
23229 "for you."
23230 msgstr ""
23231
23232 #. type: =head2
23233 #: ../fish/guestfish-actions.pod:2912
23234 msgid "mknod-b"
23235 msgstr ""
23236
23237 #. type: verbatim
23238 #: ../fish/guestfish-actions.pod:2914
23239 #, no-wrap
23240 msgid ""
23241 " mknod-b mode devmajor devminor path\n"
23242 "\n"
23243 msgstr ""
23244
23245 #. type: textblock
23246 #: ../fish/guestfish-actions.pod:2916
23247 msgid ""
23248 "This call creates a block device node called C<path> with mode C<mode> and "
23249 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23250 "wrapper around L</mknod>."
23251 msgstr ""
23252
23253 #. type: =head2
23254 #: ../fish/guestfish-actions.pod:2922
23255 msgid "mknod-c"
23256 msgstr ""
23257
23258 #. type: verbatim
23259 #: ../fish/guestfish-actions.pod:2924
23260 #, no-wrap
23261 msgid ""
23262 " mknod-c mode devmajor devminor path\n"
23263 "\n"
23264 msgstr ""
23265
23266 #. type: textblock
23267 #: ../fish/guestfish-actions.pod:2926
23268 msgid ""
23269 "This call creates a char device node called C<path> with mode C<mode> and "
23270 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23271 "wrapper around L</mknod>."
23272 msgstr ""
23273
23274 #. type: =head2
23275 #: ../fish/guestfish-actions.pod:2932
23276 msgid "mkswap"
23277 msgstr ""
23278
23279 #. type: verbatim
23280 #: ../fish/guestfish-actions.pod:2934
23281 #, no-wrap
23282 msgid ""
23283 " mkswap device\n"
23284 "\n"
23285 msgstr ""
23286
23287 #. type: =head2
23288 #: ../fish/guestfish-actions.pod:2938
23289 msgid "mkswap-L"
23290 msgstr ""
23291
23292 #. type: verbatim
23293 #: ../fish/guestfish-actions.pod:2940
23294 #, no-wrap
23295 msgid ""
23296 " mkswap-L label device\n"
23297 "\n"
23298 msgstr ""
23299
23300 #. type: =head2
23301 #: ../fish/guestfish-actions.pod:2948
23302 msgid "mkswap-U"
23303 msgstr ""
23304
23305 #. type: verbatim
23306 #: ../fish/guestfish-actions.pod:2950
23307 #, no-wrap
23308 msgid ""
23309 " mkswap-U uuid device\n"
23310 "\n"
23311 msgstr ""
23312
23313 #. type: =head2
23314 #: ../fish/guestfish-actions.pod:2954
23315 msgid "mkswap-file"
23316 msgstr ""
23317
23318 #. type: verbatim
23319 #: ../fish/guestfish-actions.pod:2956
23320 #, no-wrap
23321 msgid ""
23322 " mkswap-file path\n"
23323 "\n"
23324 msgstr ""
23325
23326 #. type: textblock
23327 #: ../fish/guestfish-actions.pod:2960
23328 msgid ""
23329 "This command just writes a swap file signature to an existing file.  To "
23330 "create the file itself, use something like L</fallocate>."
23331 msgstr ""
23332
23333 #. type: =head2
23334 #: ../fish/guestfish-actions.pod:2963
23335 msgid "modprobe"
23336 msgstr ""
23337
23338 #. type: verbatim
23339 #: ../fish/guestfish-actions.pod:2965
23340 #, no-wrap
23341 msgid ""
23342 " modprobe modulename\n"
23343 "\n"
23344 msgstr ""
23345
23346 #. type: =head2
23347 #: ../fish/guestfish-actions.pod:2972
23348 msgid "mount"
23349 msgstr ""
23350
23351 #. type: verbatim
23352 #: ../fish/guestfish-actions.pod:2974
23353 #, no-wrap
23354 msgid ""
23355 " mount device mountpoint\n"
23356 "\n"
23357 msgstr ""
23358
23359 #. type: textblock
23360 #: ../fish/guestfish-actions.pod:2990
23361 msgid ""
23362 "B<Important note:> When you use this call, the filesystem options C<sync> "
23363 "and C<noatime> are set implicitly.  This was originally done because we "
23364 "thought it would improve reliability, but it turns out that I<-o sync> has a "
23365 "very large negative performance impact and negligible effect on "
23366 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
23367 "code that needs performance, and instead use L</mount-options> (use an empty "
23368 "string for the first parameter if you don't want any options)."
23369 msgstr ""
23370
23371 #. type: =head2
23372 #: ../fish/guestfish-actions.pod:3000
23373 msgid "mount-loop"
23374 msgstr ""
23375
23376 #. type: verbatim
23377 #: ../fish/guestfish-actions.pod:3002
23378 #, no-wrap
23379 msgid ""
23380 " mount-loop file mountpoint\n"
23381 "\n"
23382 msgstr ""
23383
23384 #. type: =head2
23385 #: ../fish/guestfish-actions.pod:3008
23386 msgid "mount-options"
23387 msgstr ""
23388
23389 #. type: verbatim
23390 #: ../fish/guestfish-actions.pod:3010
23391 #, no-wrap
23392 msgid ""
23393 " mount-options options device mountpoint\n"
23394 "\n"
23395 msgstr ""
23396
23397 #. type: textblock
23398 #: ../fish/guestfish-actions.pod:3012
23399 msgid ""
23400 "This is the same as the L</mount> command, but it allows you to set the "
23401 "mount options as for the L<mount(8)> I<-o> flag."
23402 msgstr ""
23403
23404 #. type: =head2
23405 #: ../fish/guestfish-actions.pod:3020
23406 msgid "mount-ro"
23407 msgstr ""
23408
23409 #. type: verbatim
23410 #: ../fish/guestfish-actions.pod:3022
23411 #, no-wrap
23412 msgid ""
23413 " mount-ro device mountpoint\n"
23414 "\n"
23415 msgstr ""
23416
23417 #. type: textblock
23418 #: ../fish/guestfish-actions.pod:3024
23419 msgid ""
23420 "This is the same as the L</mount> command, but it mounts the filesystem with "
23421 "the read-only (I<-o ro>) flag."
23422 msgstr ""
23423
23424 #. type: =head2
23425 #: ../fish/guestfish-actions.pod:3027
23426 msgid "mount-vfs"
23427 msgstr ""
23428
23429 #. type: verbatim
23430 #: ../fish/guestfish-actions.pod:3029
23431 #, no-wrap
23432 msgid ""
23433 " mount-vfs options vfstype device mountpoint\n"
23434 "\n"
23435 msgstr ""
23436
23437 #. type: textblock
23438 #: ../fish/guestfish-actions.pod:3031
23439 msgid ""
23440 "This is the same as the L</mount> command, but it allows you to set both the "
23441 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
23442 msgstr ""
23443
23444 #. type: =head2
23445 #: ../fish/guestfish-actions.pod:3035
23446 msgid "mountpoints"
23447 msgstr ""
23448
23449 #. type: verbatim
23450 #: ../fish/guestfish-actions.pod:3037
23451 #, no-wrap
23452 msgid ""
23453 " mountpoints\n"
23454 "\n"
23455 msgstr ""
23456
23457 #. type: textblock
23458 #: ../fish/guestfish-actions.pod:3039
23459 msgid ""
23460 "This call is similar to L</mounts>.  That call returns a list of devices.  "
23461 "This one returns a hash table (map) of device name to directory where the "
23462 "device is mounted."
23463 msgstr ""
23464
23465 #. type: =head2
23466 #: ../fish/guestfish-actions.pod:3043
23467 msgid "mounts"
23468 msgstr ""
23469
23470 #. type: verbatim
23471 #: ../fish/guestfish-actions.pod:3045
23472 #, no-wrap
23473 msgid ""
23474 " mounts\n"
23475 "\n"
23476 msgstr ""
23477
23478 #. type: textblock
23479 #: ../fish/guestfish-actions.pod:3052
23480 msgid "See also: L</mountpoints>"
23481 msgstr ""
23482
23483 #. type: =head2
23484 #: ../fish/guestfish-actions.pod:3054
23485 msgid "mv"
23486 msgstr ""
23487
23488 #. type: verbatim
23489 #: ../fish/guestfish-actions.pod:3056
23490 #, no-wrap
23491 msgid ""
23492 " mv src dest\n"
23493 "\n"
23494 msgstr ""
23495
23496 #. type: =head2
23497 #: ../fish/guestfish-actions.pod:3061
23498 msgid "ntfs-3g-probe"
23499 msgstr ""
23500
23501 #. type: verbatim
23502 #: ../fish/guestfish-actions.pod:3063
23503 #, no-wrap
23504 msgid ""
23505 " ntfs-3g-probe true|false device\n"
23506 "\n"
23507 msgstr ""
23508
23509 #. type: =head2
23510 #: ../fish/guestfish-actions.pod:3077
23511 msgid "ntfsresize"
23512 msgstr ""
23513
23514 #. type: verbatim
23515 #: ../fish/guestfish-actions.pod:3079
23516 #, no-wrap
23517 msgid ""
23518 " ntfsresize device\n"
23519 "\n"
23520 msgstr ""
23521
23522 #. type: =head2
23523 #: ../fish/guestfish-actions.pod:3085
23524 msgid "ntfsresize-size"
23525 msgstr ""
23526
23527 #. type: verbatim
23528 #: ../fish/guestfish-actions.pod:3087
23529 #, no-wrap
23530 msgid ""
23531 " ntfsresize-size device size\n"
23532 "\n"
23533 msgstr ""
23534
23535 #. type: textblock
23536 #: ../fish/guestfish-actions.pod:3089
23537 msgid ""
23538 "This command is the same as L</ntfsresize> except that it allows you to "
23539 "specify the new size (in bytes) explicitly."
23540 msgstr ""
23541
23542 #. type: =head2
23543 #: ../fish/guestfish-actions.pod:3092
23544 msgid "part-add"
23545 msgstr ""
23546
23547 #. type: verbatim
23548 #: ../fish/guestfish-actions.pod:3094
23549 #, no-wrap
23550 msgid ""
23551 " part-add device prlogex startsect endsect\n"
23552 "\n"
23553 msgstr ""
23554
23555 #. type: textblock
23556 #: ../fish/guestfish-actions.pod:3096
23557 msgid ""
23558 "This command adds a partition to C<device>.  If there is no partition table "
23559 "on the device, call L</part-init> first."
23560 msgstr ""
23561
23562 #. type: textblock
23563 #: ../fish/guestfish-actions.pod:3108
23564 msgid ""
23565 "Creating a partition which covers the whole disk is not so easy.  Use "
23566 "L</part-disk> to do that."
23567 msgstr ""
23568
23569 #. type: =head2
23570 #: ../fish/guestfish-actions.pod:3111
23571 msgid "part-del"
23572 msgstr ""
23573
23574 #. type: verbatim
23575 #: ../fish/guestfish-actions.pod:3113
23576 #, no-wrap
23577 msgid ""
23578 " part-del device partnum\n"
23579 "\n"
23580 msgstr ""
23581
23582 #. type: =head2
23583 #: ../fish/guestfish-actions.pod:3121
23584 msgid "part-disk"
23585 msgstr ""
23586
23587 #. type: verbatim
23588 #: ../fish/guestfish-actions.pod:3123
23589 #, no-wrap
23590 msgid ""
23591 " part-disk device parttype\n"
23592 "\n"
23593 msgstr ""
23594
23595 #. type: textblock
23596 #: ../fish/guestfish-actions.pod:3125
23597 msgid ""
23598 "This command is simply a combination of L</part-init> followed by "
23599 "L</part-add> to create a single primary partition covering the whole disk."
23600 msgstr ""
23601
23602 #. type: textblock
23603 #: ../fish/guestfish-actions.pod:3129
23604 msgid ""
23605 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
23606 "possible values are described in L</part-init>."
23607 msgstr ""
23608
23609 #. type: =head2
23610 #: ../fish/guestfish-actions.pod:3135
23611 msgid "part-get-bootable"
23612 msgstr ""
23613
23614 #. type: verbatim
23615 #: ../fish/guestfish-actions.pod:3137
23616 #, no-wrap
23617 msgid ""
23618 " part-get-bootable device partnum\n"
23619 "\n"
23620 msgstr ""
23621
23622 #. type: textblock
23623 #: ../fish/guestfish-actions.pod:3142
23624 msgid "See also L</part-set-bootable>."
23625 msgstr ""
23626
23627 #. type: =head2
23628 #: ../fish/guestfish-actions.pod:3144
23629 msgid "part-get-mbr-id"
23630 msgstr ""
23631
23632 #. type: verbatim
23633 #: ../fish/guestfish-actions.pod:3146
23634 #, no-wrap
23635 msgid ""
23636 " part-get-mbr-id device partnum\n"
23637 "\n"
23638 msgstr ""
23639
23640 #. type: textblock
23641 #: ../fish/guestfish-actions.pod:3151 ../fish/guestfish-actions.pod:3289
23642 msgid ""
23643 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
23644 "undefined results for other partition table types (see "
23645 "L</part-get-parttype>)."
23646 msgstr ""
23647
23648 #. type: =head2
23649 #: ../fish/guestfish-actions.pod:3155
23650 msgid "part-get-parttype"
23651 msgstr ""
23652
23653 #. type: verbatim
23654 #: ../fish/guestfish-actions.pod:3157
23655 #, no-wrap
23656 msgid ""
23657 " part-get-parttype device\n"
23658 "\n"
23659 msgstr ""
23660
23661 #. type: textblock
23662 #: ../fish/guestfish-actions.pod:3162
23663 msgid ""
23664 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
23665 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
23666 "possible, although unusual.  See L</part-init> for a full list."
23667 msgstr ""
23668
23669 #. type: =head2
23670 #: ../fish/guestfish-actions.pod:3167
23671 msgid "part-init"
23672 msgstr ""
23673
23674 #. type: verbatim
23675 #: ../fish/guestfish-actions.pod:3169
23676 #, no-wrap
23677 msgid ""
23678 " part-init device parttype\n"
23679 "\n"
23680 msgstr ""
23681
23682 #. type: textblock
23683 #: ../fish/guestfish-actions.pod:3175
23684 msgid ""
23685 "Initially there are no partitions.  Following this, you should call "
23686 "L</part-add> for each partition required."
23687 msgstr ""
23688
23689 #. type: =head2
23690 #: ../fish/guestfish-actions.pod:3238
23691 msgid "part-list"
23692 msgstr ""
23693
23694 #. type: verbatim
23695 #: ../fish/guestfish-actions.pod:3240
23696 #, no-wrap
23697 msgid ""
23698 " part-list device\n"
23699 "\n"
23700 msgstr ""
23701
23702 #. type: textblock
23703 #: ../fish/guestfish-actions.pod:3255
23704 msgid ""
23705 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
23706 "the device's sector size, see L</blockdev-getss>."
23707 msgstr ""
23708
23709 #. type: =head2
23710 #: ../fish/guestfish-actions.pod:3268
23711 msgid "part-set-bootable"
23712 msgstr ""
23713
23714 #. type: verbatim
23715 #: ../fish/guestfish-actions.pod:3270
23716 #, no-wrap
23717 msgid ""
23718 " part-set-bootable device partnum true|false\n"
23719 "\n"
23720 msgstr ""
23721
23722 #. type: =head2
23723 #: ../fish/guestfish-actions.pod:3279
23724 msgid "part-set-mbr-id"
23725 msgstr ""
23726
23727 #. type: verbatim
23728 #: ../fish/guestfish-actions.pod:3281
23729 #, no-wrap
23730 msgid ""
23731 " part-set-mbr-id device partnum idbyte\n"
23732 "\n"
23733 msgstr ""
23734
23735 #. type: =head2
23736 #: ../fish/guestfish-actions.pod:3293
23737 msgid "part-set-name"
23738 msgstr ""
23739
23740 #. type: verbatim
23741 #: ../fish/guestfish-actions.pod:3295
23742 #, no-wrap
23743 msgid ""
23744 " part-set-name device partnum name\n"
23745 "\n"
23746 msgstr ""
23747
23748 #. type: =head2
23749 #: ../fish/guestfish-actions.pod:3303
23750 msgid "part-to-dev"
23751 msgstr ""
23752
23753 #. type: verbatim
23754 #: ../fish/guestfish-actions.pod:3305
23755 #, no-wrap
23756 msgid ""
23757 " part-to-dev partition\n"
23758 "\n"
23759 msgstr ""
23760
23761 #. type: textblock
23762 #: ../fish/guestfish-actions.pod:3311
23763 msgid ""
23764 "The named partition must exist, for example as a string returned from "
23765 "L</list-partitions>."
23766 msgstr ""
23767
23768 #. type: =head2
23769 #: ../fish/guestfish-actions.pod:3314
23770 msgid "ping-daemon"
23771 msgstr ""
23772
23773 #. type: verbatim
23774 #: ../fish/guestfish-actions.pod:3316
23775 #, no-wrap
23776 msgid ""
23777 " ping-daemon\n"
23778 "\n"
23779 msgstr ""
23780
23781 #. type: =head2
23782 #: ../fish/guestfish-actions.pod:3323
23783 msgid "pread"
23784 msgstr ""
23785
23786 #. type: verbatim
23787 #: ../fish/guestfish-actions.pod:3325
23788 #, no-wrap
23789 msgid ""
23790 " pread path count offset\n"
23791 "\n"
23792 msgstr ""
23793
23794 #. type: textblock
23795 #: ../fish/guestfish-actions.pod:3333
23796 msgid "See also L</pwrite>, L</pread-device>."
23797 msgstr ""
23798
23799 #. type: =head2
23800 #: ../fish/guestfish-actions.pod:3338
23801 msgid "pread-device"
23802 msgstr ""
23803
23804 #. type: verbatim
23805 #: ../fish/guestfish-actions.pod:3340
23806 #, no-wrap
23807 msgid ""
23808 " pread-device device count offset\n"
23809 "\n"
23810 msgstr ""
23811
23812 #. type: textblock
23813 #: ../fish/guestfish-actions.pod:3348
23814 msgid "See also L</pread>."
23815 msgstr ""
23816
23817 #. type: =head2
23818 #: ../fish/guestfish-actions.pod:3353
23819 msgid "pvcreate"
23820 msgstr ""
23821
23822 #. type: verbatim
23823 #: ../fish/guestfish-actions.pod:3355
23824 #, no-wrap
23825 msgid ""
23826 " pvcreate device\n"
23827 "\n"
23828 msgstr ""
23829
23830 #. type: =head2
23831 #: ../fish/guestfish-actions.pod:3361
23832 msgid "pvremove"
23833 msgstr ""
23834
23835 #. type: verbatim
23836 #: ../fish/guestfish-actions.pod:3363
23837 #, no-wrap
23838 msgid ""
23839 " pvremove device\n"
23840 "\n"
23841 msgstr ""
23842
23843 #. type: =head2
23844 #: ../fish/guestfish-actions.pod:3372
23845 msgid "pvresize"
23846 msgstr ""
23847
23848 #. type: verbatim
23849 #: ../fish/guestfish-actions.pod:3374
23850 #, no-wrap
23851 msgid ""
23852 " pvresize device\n"
23853 "\n"
23854 msgstr ""
23855
23856 #. type: =head2
23857 #: ../fish/guestfish-actions.pod:3379
23858 msgid "pvresize-size"
23859 msgstr ""
23860
23861 #. type: verbatim
23862 #: ../fish/guestfish-actions.pod:3381
23863 #, no-wrap
23864 msgid ""
23865 " pvresize-size device size\n"
23866 "\n"
23867 msgstr ""
23868
23869 #. type: textblock
23870 #: ../fish/guestfish-actions.pod:3383
23871 msgid ""
23872 "This command is the same as L</pvresize> except that it allows you to "
23873 "specify the new size (in bytes) explicitly."
23874 msgstr ""
23875
23876 #. type: =head2
23877 #: ../fish/guestfish-actions.pod:3386
23878 msgid "pvs"
23879 msgstr ""
23880
23881 #. type: verbatim
23882 #: ../fish/guestfish-actions.pod:3388
23883 #, no-wrap
23884 msgid ""
23885 " pvs\n"
23886 "\n"
23887 msgstr ""
23888
23889 #. type: textblock
23890 #: ../fish/guestfish-actions.pod:3396
23891 msgid "See also L</pvs-full>."
23892 msgstr ""
23893
23894 #. type: =head2
23895 #: ../fish/guestfish-actions.pod:3398
23896 msgid "pvs-full"
23897 msgstr ""
23898
23899 #. type: verbatim
23900 #: ../fish/guestfish-actions.pod:3400
23901 #, no-wrap
23902 msgid ""
23903 " pvs-full\n"
23904 "\n"
23905 msgstr ""
23906
23907 #. type: =head2
23908 #: ../fish/guestfish-actions.pod:3405
23909 msgid "pvuuid"
23910 msgstr ""
23911
23912 #. type: verbatim
23913 #: ../fish/guestfish-actions.pod:3407
23914 #, no-wrap
23915 msgid ""
23916 " pvuuid device\n"
23917 "\n"
23918 msgstr ""
23919
23920 #. type: =head2
23921 #: ../fish/guestfish-actions.pod:3411
23922 msgid "pwrite"
23923 msgstr ""
23924
23925 #. type: verbatim
23926 #: ../fish/guestfish-actions.pod:3413
23927 #, no-wrap
23928 msgid ""
23929 " pwrite path content offset\n"
23930 "\n"
23931 msgstr ""
23932
23933 #. type: textblock
23934 #: ../fish/guestfish-actions.pod:3424
23935 msgid "See also L</pread>, L</pwrite-device>."
23936 msgstr ""
23937
23938 #. type: =head2
23939 #: ../fish/guestfish-actions.pod:3429
23940 msgid "pwrite-device"
23941 msgstr ""
23942
23943 #. type: verbatim
23944 #: ../fish/guestfish-actions.pod:3431
23945 #, no-wrap
23946 msgid ""
23947 " pwrite-device device content offset\n"
23948 "\n"
23949 msgstr ""
23950
23951 #. type: textblock
23952 #: ../fish/guestfish-actions.pod:3441
23953 msgid "See also L</pwrite>."
23954 msgstr ""
23955
23956 #. type: =head2
23957 #: ../fish/guestfish-actions.pod:3446
23958 msgid "read-file"
23959 msgstr ""
23960
23961 #. type: verbatim
23962 #: ../fish/guestfish-actions.pod:3448
23963 #, no-wrap
23964 msgid ""
23965 " read-file path\n"
23966 "\n"
23967 msgstr ""
23968
23969 #. type: textblock
23970 #: ../fish/guestfish-actions.pod:3453
23971 msgid ""
23972 "Unlike L</cat>, this function can correctly handle files that contain "
23973 "embedded ASCII NUL characters.  However unlike L</download>, this function "
23974 "is limited in the total size of file that can be handled."
23975 msgstr ""
23976
23977 #. type: =head2
23978 #: ../fish/guestfish-actions.pod:3461
23979 msgid "read-lines"
23980 msgstr ""
23981
23982 #. type: verbatim
23983 #: ../fish/guestfish-actions.pod:3463
23984 #, no-wrap
23985 msgid ""
23986 " read-lines path\n"
23987 "\n"
23988 msgstr ""
23989
23990 #. type: textblock
23991 #: ../fish/guestfish-actions.pod:3470
23992 msgid ""
23993 "Note that this function cannot correctly handle binary files (specifically, "
23994 "files containing C<\\0> character which is treated as end of line).  For "
23995 "those you need to use the L</read-file> function which has a more complex "
23996 "interface."
23997 msgstr ""
23998
23999 #. type: =head2
24000 #: ../fish/guestfish-actions.pod:3475
24001 msgid "readdir"
24002 msgstr ""
24003
24004 #. type: verbatim
24005 #: ../fish/guestfish-actions.pod:3477
24006 #, no-wrap
24007 msgid ""
24008 " readdir dir\n"
24009 "\n"
24010 msgstr ""
24011
24012 #. type: textblock
24013 #: ../fish/guestfish-actions.pod:3529
24014 msgid ""
24015 "This function is primarily intended for use by programs.  To get a simple "
24016 "list of names, use L</ls>.  To get a printable directory for human "
24017 "consumption, use L</ll>."
24018 msgstr ""
24019
24020 #. type: =head2
24021 #: ../fish/guestfish-actions.pod:3533
24022 msgid "readlink"
24023 msgstr ""
24024
24025 #. type: verbatim
24026 #: ../fish/guestfish-actions.pod:3535
24027 #, no-wrap
24028 msgid ""
24029 " readlink path\n"
24030 "\n"
24031 msgstr ""
24032
24033 #. type: =head2
24034 #: ../fish/guestfish-actions.pod:3539
24035 msgid "readlinklist"
24036 msgstr ""
24037
24038 #. type: verbatim
24039 #: ../fish/guestfish-actions.pod:3541
24040 #, no-wrap
24041 msgid ""
24042 " readlinklist path 'names ...'\n"
24043 "\n"
24044 msgstr ""
24045
24046 #. type: =head2
24047 #: ../fish/guestfish-actions.pod:3565
24048 msgid "realpath"
24049 msgstr ""
24050
24051 #. type: verbatim
24052 #: ../fish/guestfish-actions.pod:3567
24053 #, no-wrap
24054 msgid ""
24055 " realpath path\n"
24056 "\n"
24057 msgstr ""
24058
24059 #. type: =head2
24060 #: ../fish/guestfish-actions.pod:3572
24061 msgid "removexattr"
24062 msgstr ""
24063
24064 #. type: verbatim
24065 #: ../fish/guestfish-actions.pod:3574
24066 #, no-wrap
24067 msgid ""
24068 " removexattr xattr path\n"
24069 "\n"
24070 msgstr ""
24071
24072 #. type: textblock
24073 #: ../fish/guestfish-actions.pod:3579
24074 msgid "See also: L</lremovexattr>, L<attr(5)>."
24075 msgstr ""
24076
24077 #. type: =head2
24078 #: ../fish/guestfish-actions.pod:3581
24079 msgid "resize2fs"
24080 msgstr ""
24081
24082 #. type: verbatim
24083 #: ../fish/guestfish-actions.pod:3583
24084 #, no-wrap
24085 msgid ""
24086 " resize2fs device\n"
24087 "\n"
24088 msgstr ""
24089
24090 #. type: textblock
24091 #: ../fish/guestfish-actions.pod:3588
24092 msgid ""
24093 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
24094 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
24095 "gives an error about this and sometimes not.  In any case, it is always safe "
24096 "to call L</e2fsck-f> before calling this function."
24097 msgstr ""
24098
24099 #. type: =head2
24100 #: ../fish/guestfish-actions.pod:3594
24101 msgid "resize2fs-size"
24102 msgstr ""
24103
24104 #. type: verbatim
24105 #: ../fish/guestfish-actions.pod:3596
24106 #, no-wrap
24107 msgid ""
24108 " resize2fs-size device size\n"
24109 "\n"
24110 msgstr ""
24111
24112 #. type: textblock
24113 #: ../fish/guestfish-actions.pod:3598
24114 msgid ""
24115 "This command is the same as L</resize2fs> except that it allows you to "
24116 "specify the new size (in bytes) explicitly."
24117 msgstr ""
24118
24119 #. type: =head2
24120 #: ../fish/guestfish-actions.pod:3601
24121 msgid "rm"
24122 msgstr ""
24123
24124 #. type: verbatim
24125 #: ../fish/guestfish-actions.pod:3603
24126 #, no-wrap
24127 msgid ""
24128 " rm path\n"
24129 "\n"
24130 msgstr ""
24131
24132 #. type: =head2
24133 #: ../fish/guestfish-actions.pod:3607
24134 msgid "rm-rf"
24135 msgstr ""
24136
24137 #. type: verbatim
24138 #: ../fish/guestfish-actions.pod:3609
24139 #, no-wrap
24140 msgid ""
24141 " rm-rf path\n"
24142 "\n"
24143 msgstr ""
24144
24145 #. type: =head2
24146 #: ../fish/guestfish-actions.pod:3615
24147 msgid "rmdir"
24148 msgstr ""
24149
24150 #. type: verbatim
24151 #: ../fish/guestfish-actions.pod:3617
24152 #, no-wrap
24153 msgid ""
24154 " rmdir path\n"
24155 "\n"
24156 msgstr ""
24157
24158 #. type: =head2
24159 #: ../fish/guestfish-actions.pod:3621
24160 msgid "rmmountpoint"
24161 msgstr ""
24162
24163 #. type: verbatim
24164 #: ../fish/guestfish-actions.pod:3623
24165 #, no-wrap
24166 msgid ""
24167 " rmmountpoint exemptpath\n"
24168 "\n"
24169 msgstr ""
24170
24171 #. type: textblock
24172 #: ../fish/guestfish-actions.pod:3625
24173 msgid ""
24174 "This calls removes a mountpoint that was previously created with "
24175 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
24176 msgstr ""
24177
24178 #. type: =head2
24179 #: ../fish/guestfish-actions.pod:3629
24180 msgid "scrub-device"
24181 msgstr ""
24182
24183 #. type: verbatim
24184 #: ../fish/guestfish-actions.pod:3631
24185 #, no-wrap
24186 msgid ""
24187 " scrub-device device\n"
24188 "\n"
24189 msgstr ""
24190
24191 #. type: =head2
24192 #: ../fish/guestfish-actions.pod:3642
24193 msgid "scrub-file"
24194 msgstr ""
24195
24196 #. type: verbatim
24197 #: ../fish/guestfish-actions.pod:3644
24198 #, no-wrap
24199 msgid ""
24200 " scrub-file file\n"
24201 "\n"
24202 msgstr ""
24203
24204 #. type: =head2
24205 #: ../fish/guestfish-actions.pod:3654
24206 msgid "scrub-freespace"
24207 msgstr ""
24208
24209 #. type: verbatim
24210 #: ../fish/guestfish-actions.pod:3656
24211 #, no-wrap
24212 msgid ""
24213 " scrub-freespace dir\n"
24214 "\n"
24215 msgstr ""
24216
24217 #. type: textblock
24218 #: ../fish/guestfish-actions.pod:3658
24219 msgid ""
24220 "This command creates the directory C<dir> and then fills it with files until "
24221 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
24222 "deletes them.  The intention is to scrub any free space on the partition "
24223 "containing C<dir>."
24224 msgstr ""
24225
24226 #. type: =head2
24227 #: ../fish/guestfish-actions.pod:3667
24228 msgid "set-append"
24229 msgstr ""
24230
24231 #. type: =head2
24232 #: ../fish/guestfish-actions.pod:3669
24233 msgid "append"
24234 msgstr ""
24235
24236 #. type: verbatim
24237 #: ../fish/guestfish-actions.pod:3671
24238 #, no-wrap
24239 msgid ""
24240 " set-append append\n"
24241 "\n"
24242 msgstr ""
24243
24244 #. type: =head2
24245 #: ../fish/guestfish-actions.pod:3682
24246 msgid "set-autosync"
24247 msgstr ""
24248
24249 #. type: =head2
24250 #: ../fish/guestfish-actions.pod:3684
24251 msgid "autosync"
24252 msgstr ""
24253
24254 #. type: verbatim
24255 #: ../fish/guestfish-actions.pod:3686
24256 #, no-wrap
24257 msgid ""
24258 " set-autosync true|false\n"
24259 "\n"
24260 msgstr ""
24261
24262 #. type: textblock
24263 #: ../fish/guestfish-actions.pod:3688
24264 msgid ""
24265 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
24266 "effort attempt to run L</umount-all> followed by L</sync> when the handle is "
24267 "closed (also if the program exits without closing handles)."
24268 msgstr ""
24269
24270 #. type: =head2
24271 #: ../fish/guestfish-actions.pod:3696
24272 msgid "set-direct"
24273 msgstr ""
24274
24275 #. type: =head2
24276 #: ../fish/guestfish-actions.pod:3698
24277 msgid "direct"
24278 msgstr ""
24279
24280 #. type: verbatim
24281 #: ../fish/guestfish-actions.pod:3700
24282 #, no-wrap
24283 msgid ""
24284 " set-direct true|false\n"
24285 "\n"
24286 msgstr ""
24287
24288 #. type: textblock
24289 #: ../fish/guestfish-actions.pod:3706
24290 msgid ""
24291 "One consequence of this is that log messages aren't caught by the library "
24292 "and handled by L</set-log-message-callback>, but go straight to stdout."
24293 msgstr ""
24294
24295 #. type: =head2
24296 #: ../fish/guestfish-actions.pod:3715
24297 msgid "set-e2label"
24298 msgstr ""
24299
24300 #. type: verbatim
24301 #: ../fish/guestfish-actions.pod:3717
24302 #, no-wrap
24303 msgid ""
24304 " set-e2label device label\n"
24305 "\n"
24306 msgstr ""
24307
24308 #. type: textblock
24309 #: ../fish/guestfish-actions.pod:3723
24310 msgid ""
24311 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
24312 "label on a filesystem."
24313 msgstr ""
24314
24315 #. type: =head2
24316 #: ../fish/guestfish-actions.pod:3726
24317 msgid "set-e2uuid"
24318 msgstr ""
24319
24320 #. type: verbatim
24321 #: ../fish/guestfish-actions.pod:3728
24322 #, no-wrap
24323 msgid ""
24324 " set-e2uuid device uuid\n"
24325 "\n"
24326 msgstr ""
24327
24328 #. type: textblock
24329 #: ../fish/guestfish-actions.pod:3735
24330 msgid ""
24331 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
24332 "UUID of a filesystem."
24333 msgstr ""
24334
24335 #. type: =head2
24336 #: ../fish/guestfish-actions.pod:3738
24337 msgid "set-memsize"
24338 msgstr ""
24339
24340 #. type: =head2
24341 #: ../fish/guestfish-actions.pod:3740
24342 msgid "memsize"
24343 msgstr ""
24344
24345 #. type: verbatim
24346 #: ../fish/guestfish-actions.pod:3742
24347 #, no-wrap
24348 msgid ""
24349 " set-memsize memsize\n"
24350 "\n"
24351 msgstr ""
24352
24353 #. type: textblock
24354 #: ../fish/guestfish-actions.pod:3744
24355 msgid ""
24356 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
24357 "This only has any effect if called before L</launch>."
24358 msgstr ""
24359
24360 #. type: =head2
24361 #: ../fish/guestfish-actions.pod:3755
24362 msgid "set-network"
24363 msgstr ""
24364
24365 #. type: =head2
24366 #: ../fish/guestfish-actions.pod:3757
24367 msgid "network"
24368 msgstr ""
24369
24370 #. type: verbatim
24371 #: ../fish/guestfish-actions.pod:3759
24372 #, no-wrap
24373 msgid ""
24374 " set-network true|false\n"
24375 "\n"
24376 msgstr ""
24377
24378 #. type: textblock
24379 #: ../fish/guestfish-actions.pod:3767
24380 msgid "You must call this before calling L</launch>, otherwise it has no effect."
24381 msgstr ""
24382
24383 #. type: =head2
24384 #: ../fish/guestfish-actions.pod:3770
24385 msgid "set-path"
24386 msgstr ""
24387
24388 #. type: =head2
24389 #: ../fish/guestfish-actions.pod:3772
24390 msgid "path"
24391 msgstr ""
24392
24393 #. type: verbatim
24394 #: ../fish/guestfish-actions.pod:3774
24395 #, no-wrap
24396 msgid ""
24397 " set-path searchpath\n"
24398 "\n"
24399 msgstr ""
24400
24401 #. type: =head2
24402 #: ../fish/guestfish-actions.pod:3783
24403 msgid "set-qemu"
24404 msgstr ""
24405
24406 #. type: =head2
24407 #: ../fish/guestfish-actions.pod:3785
24408 msgid "qemu"
24409 msgstr ""
24410
24411 #. type: verbatim
24412 #: ../fish/guestfish-actions.pod:3787
24413 #, no-wrap
24414 msgid ""
24415 " set-qemu qemu\n"
24416 "\n"
24417 msgstr ""
24418
24419 #. type: =head2
24420 #: ../fish/guestfish-actions.pod:3807
24421 msgid "set-recovery-proc"
24422 msgstr ""
24423
24424 #. type: =head2
24425 #: ../fish/guestfish-actions.pod:3809
24426 msgid "recovery-proc"
24427 msgstr ""
24428
24429 #. type: verbatim
24430 #: ../fish/guestfish-actions.pod:3811
24431 #, no-wrap
24432 msgid ""
24433 " set-recovery-proc true|false\n"
24434 "\n"
24435 msgstr ""
24436
24437 #. type: textblock
24438 #: ../fish/guestfish-actions.pod:3813
24439 msgid ""
24440 "If this is called with the parameter C<false> then L</launch> does not "
24441 "create a recovery process.  The purpose of the recovery process is to stop "
24442 "runaway qemu processes in the case where the main program aborts abruptly."
24443 msgstr ""
24444
24445 #. type: textblock
24446 #: ../fish/guestfish-actions.pod:3818
24447 msgid ""
24448 "This only has any effect if called before L</launch>, and the default is "
24449 "true."
24450 msgstr ""
24451
24452 #. type: =head2
24453 #: ../fish/guestfish-actions.pod:3827
24454 msgid "set-selinux"
24455 msgstr ""
24456
24457 #. type: =head2
24458 #: ../fish/guestfish-actions.pod:3829
24459 msgid "selinux"
24460 msgstr ""
24461
24462 #. type: verbatim
24463 #: ../fish/guestfish-actions.pod:3831
24464 #, no-wrap
24465 msgid ""
24466 " set-selinux true|false\n"
24467 "\n"
24468 msgstr ""
24469
24470 #. type: =head2
24471 #: ../fish/guestfish-actions.pod:3842
24472 msgid "set-trace"
24473 msgstr ""
24474
24475 #. type: =head2
24476 #: ../fish/guestfish-actions.pod:3844
24477 msgid "trace"
24478 msgstr ""
24479
24480 #. type: verbatim
24481 #: ../fish/guestfish-actions.pod:3846
24482 #, no-wrap
24483 msgid ""
24484 " set-trace true|false\n"
24485 "\n"
24486 msgstr ""
24487
24488 #. type: =head2
24489 #: ../fish/guestfish-actions.pod:3862
24490 msgid "set-verbose"
24491 msgstr ""
24492
24493 #. type: =head2
24494 #: ../fish/guestfish-actions.pod:3864
24495 msgid "verbose"
24496 msgstr ""
24497
24498 #. type: verbatim
24499 #: ../fish/guestfish-actions.pod:3866
24500 #, no-wrap
24501 msgid ""
24502 " set-verbose true|false\n"
24503 "\n"
24504 msgstr ""
24505
24506 #. type: =head2
24507 #: ../fish/guestfish-actions.pod:3873
24508 msgid "setcon"
24509 msgstr ""
24510
24511 #. type: verbatim
24512 #: ../fish/guestfish-actions.pod:3875
24513 #, no-wrap
24514 msgid ""
24515 " setcon context\n"
24516 "\n"
24517 msgstr ""
24518
24519 #. type: =head2
24520 #: ../fish/guestfish-actions.pod:3882
24521 msgid "setxattr"
24522 msgstr ""
24523
24524 #. type: verbatim
24525 #: ../fish/guestfish-actions.pod:3884
24526 #, no-wrap
24527 msgid ""
24528 " setxattr xattr val vallen path\n"
24529 "\n"
24530 msgstr ""
24531
24532 #. type: textblock
24533 #: ../fish/guestfish-actions.pod:3890
24534 msgid "See also: L</lsetxattr>, L<attr(5)>."
24535 msgstr ""
24536
24537 #. type: =head2
24538 #: ../fish/guestfish-actions.pod:3892
24539 msgid "sfdisk"
24540 msgstr ""
24541
24542 #. type: verbatim
24543 #: ../fish/guestfish-actions.pod:3894
24544 #, no-wrap
24545 msgid ""
24546 " sfdisk device cyls heads sectors 'lines ...'\n"
24547 "\n"
24548 msgstr ""
24549
24550 #. type: textblock
24551 #: ../fish/guestfish-actions.pod:3916
24552 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
24553 msgstr ""
24554
24555 #. type: =head2
24556 #: ../fish/guestfish-actions.pod:3922
24557 msgid "sfdiskM"
24558 msgstr ""
24559
24560 #. type: verbatim
24561 #: ../fish/guestfish-actions.pod:3924
24562 #, no-wrap
24563 msgid ""
24564 " sfdiskM device 'lines ...'\n"
24565 "\n"
24566 msgstr ""
24567
24568 #. type: textblock
24569 #: ../fish/guestfish-actions.pod:3926
24570 msgid ""
24571 "This is a simplified interface to the L</sfdisk> command, where partition "
24572 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
24573 "you don't need to specify the cyls, heads and sectors parameters which were "
24574 "rarely if ever used anyway."
24575 msgstr ""
24576
24577 #. type: textblock
24578 #: ../fish/guestfish-actions.pod:3932
24579 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
24580 msgstr ""
24581
24582 #. type: =head2
24583 #: ../fish/guestfish-actions.pod:3938
24584 msgid "sfdisk-N"
24585 msgstr ""
24586
24587 #. type: verbatim
24588 #: ../fish/guestfish-actions.pod:3940
24589 #, no-wrap
24590 msgid ""
24591 " sfdisk-N device partnum cyls heads sectors line\n"
24592 "\n"
24593 msgstr ""
24594
24595 #. type: textblock
24596 #: ../fish/guestfish-actions.pod:3945
24597 msgid ""
24598 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
24599 "cyls/heads/sectors parameters."
24600 msgstr ""
24601
24602 #. type: textblock
24603 #: ../fish/guestfish-actions.pod:3948
24604 msgid "See also: L</part-add>"
24605 msgstr ""
24606
24607 #. type: =head2
24608 #: ../fish/guestfish-actions.pod:3953
24609 msgid "sfdisk-disk-geometry"
24610 msgstr ""
24611
24612 #. type: verbatim
24613 #: ../fish/guestfish-actions.pod:3955
24614 #, no-wrap
24615 msgid ""
24616 " sfdisk-disk-geometry device\n"
24617 "\n"
24618 msgstr ""
24619
24620 #. type: textblock
24621 #: ../fish/guestfish-actions.pod:3957
24622 msgid ""
24623 "This displays the disk geometry of C<device> read from the partition table.  "
24624 "Especially in the case where the underlying block device has been resized, "
24625 "this can be different from the kernel's idea of the geometry (see "
24626 "L</sfdisk-kernel-geometry>)."
24627 msgstr ""
24628
24629 #. type: =head2
24630 #: ../fish/guestfish-actions.pod:3965
24631 msgid "sfdisk-kernel-geometry"
24632 msgstr ""
24633
24634 #. type: verbatim
24635 #: ../fish/guestfish-actions.pod:3967
24636 #, no-wrap
24637 msgid ""
24638 " sfdisk-kernel-geometry device\n"
24639 "\n"
24640 msgstr ""
24641
24642 #. type: =head2
24643 #: ../fish/guestfish-actions.pod:3974
24644 msgid "sfdisk-l"
24645 msgstr ""
24646
24647 #. type: verbatim
24648 #: ../fish/guestfish-actions.pod:3976
24649 #, no-wrap
24650 msgid ""
24651 " sfdisk-l device\n"
24652 "\n"
24653 msgstr ""
24654
24655 #. type: textblock
24656 #: ../fish/guestfish-actions.pod:3982
24657 msgid "See also: L</part-list>"
24658 msgstr ""
24659
24660 #. type: =head2
24661 #: ../fish/guestfish-actions.pod:3984
24662 msgid "sh"
24663 msgstr ""
24664
24665 #. type: verbatim
24666 #: ../fish/guestfish-actions.pod:3986
24667 #, no-wrap
24668 msgid ""
24669 " sh command\n"
24670 "\n"
24671 msgstr ""
24672
24673 #. type: textblock
24674 #: ../fish/guestfish-actions.pod:3991
24675 msgid "This is like L</command>, but passes the command to:"
24676 msgstr ""
24677
24678 #. type: textblock
24679 #: ../fish/guestfish-actions.pod:3999
24680 msgid "All the provisos about L</command> apply to this call."
24681 msgstr ""
24682
24683 #. type: =head2
24684 #: ../fish/guestfish-actions.pod:4001
24685 msgid "sh-lines"
24686 msgstr ""
24687
24688 #. type: verbatim
24689 #: ../fish/guestfish-actions.pod:4003
24690 #, no-wrap
24691 msgid ""
24692 " sh-lines command\n"
24693 "\n"
24694 msgstr ""
24695
24696 #. type: textblock
24697 #: ../fish/guestfish-actions.pod:4005
24698 msgid "This is the same as L</sh>, but splits the result into a list of lines."
24699 msgstr ""
24700
24701 #. type: textblock
24702 #: ../fish/guestfish-actions.pod:4008
24703 msgid "See also: L</command-lines>"
24704 msgstr ""
24705
24706 #. type: =head2
24707 #: ../fish/guestfish-actions.pod:4010
24708 msgid "sleep"
24709 msgstr ""
24710
24711 #. type: verbatim
24712 #: ../fish/guestfish-actions.pod:4012
24713 #, no-wrap
24714 msgid ""
24715 " sleep secs\n"
24716 "\n"
24717 msgstr ""
24718
24719 #. type: =head2
24720 #: ../fish/guestfish-actions.pod:4016
24721 msgid "stat"
24722 msgstr ""
24723
24724 #. type: verbatim
24725 #: ../fish/guestfish-actions.pod:4018
24726 #, no-wrap
24727 msgid ""
24728 " stat path\n"
24729 "\n"
24730 msgstr ""
24731
24732 #. type: =head2
24733 #: ../fish/guestfish-actions.pod:4024
24734 msgid "statvfs"
24735 msgstr ""
24736
24737 #. type: verbatim
24738 #: ../fish/guestfish-actions.pod:4026
24739 #, no-wrap
24740 msgid ""
24741 " statvfs path\n"
24742 "\n"
24743 msgstr ""
24744
24745 #. type: =head2
24746 #: ../fish/guestfish-actions.pod:4034
24747 msgid "strings"
24748 msgstr ""
24749
24750 #. type: verbatim
24751 #: ../fish/guestfish-actions.pod:4036
24752 #, no-wrap
24753 msgid ""
24754 " strings path\n"
24755 "\n"
24756 msgstr ""
24757
24758 #. type: =head2
24759 #: ../fish/guestfish-actions.pod:4044
24760 msgid "strings-e"
24761 msgstr ""
24762
24763 #. type: verbatim
24764 #: ../fish/guestfish-actions.pod:4046
24765 #, no-wrap
24766 msgid ""
24767 " strings-e encoding path\n"
24768 "\n"
24769 msgstr ""
24770
24771 #. type: textblock
24772 #: ../fish/guestfish-actions.pod:4048
24773 msgid ""
24774 "This is like the L</strings> command, but allows you to specify the encoding "
24775 "of strings that are looked for in the source file C<path>."
24776 msgstr ""
24777
24778 #. type: textblock
24779 #: ../fish/guestfish-actions.pod:4058
24780 msgid ""
24781 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
24782 "ISO-8859-X (this is what L</strings> uses)."
24783 msgstr ""
24784
24785 #. type: =head2
24786 #: ../fish/guestfish-actions.pod:4090
24787 msgid "swapoff-device"
24788 msgstr ""
24789
24790 #. type: verbatim
24791 #: ../fish/guestfish-actions.pod:4092
24792 #, no-wrap
24793 msgid ""
24794 " swapoff-device device\n"
24795 "\n"
24796 msgstr ""
24797
24798 #. type: textblock
24799 #: ../fish/guestfish-actions.pod:4094
24800 msgid ""
24801 "This command disables the libguestfs appliance swap device or partition "
24802 "named C<device>.  See L</swapon-device>."
24803 msgstr ""
24804
24805 #. type: =head2
24806 #: ../fish/guestfish-actions.pod:4098
24807 msgid "swapoff-file"
24808 msgstr ""
24809
24810 #. type: verbatim
24811 #: ../fish/guestfish-actions.pod:4100
24812 #, no-wrap
24813 msgid ""
24814 " swapoff-file file\n"
24815 "\n"
24816 msgstr ""
24817
24818 #. type: =head2
24819 #: ../fish/guestfish-actions.pod:4104
24820 msgid "swapoff-label"
24821 msgstr ""
24822
24823 #. type: verbatim
24824 #: ../fish/guestfish-actions.pod:4106
24825 #, no-wrap
24826 msgid ""
24827 " swapoff-label label\n"
24828 "\n"
24829 msgstr ""
24830
24831 #. type: =head2
24832 #: ../fish/guestfish-actions.pod:4111
24833 msgid "swapoff-uuid"
24834 msgstr ""
24835
24836 #. type: verbatim
24837 #: ../fish/guestfish-actions.pod:4113
24838 #, no-wrap
24839 msgid ""
24840 " swapoff-uuid uuid\n"
24841 "\n"
24842 msgstr ""
24843
24844 #. type: =head2
24845 #: ../fish/guestfish-actions.pod:4118
24846 msgid "swapon-device"
24847 msgstr ""
24848
24849 #. type: verbatim
24850 #: ../fish/guestfish-actions.pod:4120
24851 #, no-wrap
24852 msgid ""
24853 " swapon-device device\n"
24854 "\n"
24855 msgstr ""
24856
24857 #. type: textblock
24858 #: ../fish/guestfish-actions.pod:4122
24859 msgid ""
24860 "This command enables the libguestfs appliance to use the swap device or "
24861 "partition named C<device>.  The increased memory is made available for all "
24862 "commands, for example those run using L</command> or L</sh>."
24863 msgstr ""
24864
24865 #. type: =head2
24866 #: ../fish/guestfish-actions.pod:4134
24867 msgid "swapon-file"
24868 msgstr ""
24869
24870 #. type: verbatim
24871 #: ../fish/guestfish-actions.pod:4136
24872 #, no-wrap
24873 msgid ""
24874 " swapon-file file\n"
24875 "\n"
24876 msgstr ""
24877
24878 #. type: textblock
24879 #: ../fish/guestfish-actions.pod:4138
24880 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
24881 msgstr ""
24882
24883 #. type: =head2
24884 #: ../fish/guestfish-actions.pod:4141
24885 msgid "swapon-label"
24886 msgstr ""
24887
24888 #. type: verbatim
24889 #: ../fish/guestfish-actions.pod:4143
24890 #, no-wrap
24891 msgid ""
24892 " swapon-label label\n"
24893 "\n"
24894 msgstr ""
24895
24896 #. type: textblock
24897 #: ../fish/guestfish-actions.pod:4145
24898 msgid ""
24899 "This command enables swap to a labeled swap partition.  See "
24900 "L</swapon-device> for other notes."
24901 msgstr ""
24902
24903 #. type: =head2
24904 #: ../fish/guestfish-actions.pod:4148
24905 msgid "swapon-uuid"
24906 msgstr ""
24907
24908 #. type: verbatim
24909 #: ../fish/guestfish-actions.pod:4150
24910 #, no-wrap
24911 msgid ""
24912 " swapon-uuid uuid\n"
24913 "\n"
24914 msgstr ""
24915
24916 #. type: textblock
24917 #: ../fish/guestfish-actions.pod:4152
24918 msgid ""
24919 "This command enables swap to a swap partition with the given UUID.  See "
24920 "L</swapon-device> for other notes."
24921 msgstr ""
24922
24923 #. type: =head2
24924 #: ../fish/guestfish-actions.pod:4155
24925 msgid "sync"
24926 msgstr ""
24927
24928 #. type: verbatim
24929 #: ../fish/guestfish-actions.pod:4157
24930 #, no-wrap
24931 msgid ""
24932 " sync\n"
24933 "\n"
24934 msgstr ""
24935
24936 #. type: =head2
24937 #: ../fish/guestfish-actions.pod:4165
24938 msgid "tail"
24939 msgstr ""
24940
24941 #. type: verbatim
24942 #: ../fish/guestfish-actions.pod:4167
24943 #, no-wrap
24944 msgid ""
24945 " tail path\n"
24946 "\n"
24947 msgstr ""
24948
24949 #. type: =head2
24950 #: ../fish/guestfish-actions.pod:4175
24951 msgid "tail-n"
24952 msgstr ""
24953
24954 #. type: verbatim
24955 #: ../fish/guestfish-actions.pod:4177
24956 #, no-wrap
24957 msgid ""
24958 " tail-n nrlines path\n"
24959 "\n"
24960 msgstr ""
24961
24962 #. type: =head2
24963 #: ../fish/guestfish-actions.pod:4190
24964 msgid "tar-in"
24965 msgstr ""
24966
24967 #. type: verbatim
24968 #: ../fish/guestfish-actions.pod:4192
24969 #, no-wrap
24970 msgid ""
24971 " tar-in (tarfile|-) directory\n"
24972 "\n"
24973 msgstr ""
24974
24975 #. type: textblock
24976 #: ../fish/guestfish-actions.pod:4197
24977 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
24978 msgstr ""
24979
24980 #. type: =head2
24981 #: ../fish/guestfish-actions.pod:4202
24982 msgid "tar-out"
24983 msgstr ""
24984
24985 #. type: verbatim
24986 #: ../fish/guestfish-actions.pod:4204
24987 #, no-wrap
24988 msgid ""
24989 " tar-out directory (tarfile|-)\n"
24990 "\n"
24991 msgstr ""
24992
24993 #. type: textblock
24994 #: ../fish/guestfish-actions.pod:4209
24995 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
24996 msgstr ""
24997
24998 #. type: =head2
24999 #: ../fish/guestfish-actions.pod:4214
25000 msgid "tgz-in"
25001 msgstr ""
25002
25003 #. type: verbatim
25004 #: ../fish/guestfish-actions.pod:4216
25005 #, no-wrap
25006 msgid ""
25007 " tgz-in (tarball|-) directory\n"
25008 "\n"
25009 msgstr ""
25010
25011 #. type: textblock
25012 #: ../fish/guestfish-actions.pod:4221
25013 msgid "To upload an uncompressed tarball, use L</tar-in>."
25014 msgstr ""
25015
25016 #. type: =head2
25017 #: ../fish/guestfish-actions.pod:4225
25018 msgid "tgz-out"
25019 msgstr ""
25020
25021 #. type: verbatim
25022 #: ../fish/guestfish-actions.pod:4227
25023 #, no-wrap
25024 msgid ""
25025 " tgz-out directory (tarball|-)\n"
25026 "\n"
25027 msgstr ""
25028
25029 #. type: textblock
25030 #: ../fish/guestfish-actions.pod:4232
25031 msgid "To download an uncompressed tarball, use L</tar-out>."
25032 msgstr ""
25033
25034 #. type: =head2
25035 #: ../fish/guestfish-actions.pod:4236
25036 msgid "touch"
25037 msgstr ""
25038
25039 #. type: verbatim
25040 #: ../fish/guestfish-actions.pod:4238
25041 #, no-wrap
25042 msgid ""
25043 " touch path\n"
25044 "\n"
25045 msgstr ""
25046
25047 #. type: =head2
25048 #: ../fish/guestfish-actions.pod:4247
25049 msgid "truncate"
25050 msgstr ""
25051
25052 #. type: verbatim
25053 #: ../fish/guestfish-actions.pod:4249
25054 #, no-wrap
25055 msgid ""
25056 " truncate path\n"
25057 "\n"
25058 msgstr ""
25059
25060 #. type: =head2
25061 #: ../fish/guestfish-actions.pod:4254
25062 msgid "truncate-size"
25063 msgstr ""
25064
25065 #. type: verbatim
25066 #: ../fish/guestfish-actions.pod:4256
25067 #, no-wrap
25068 msgid ""
25069 " truncate-size path size\n"
25070 "\n"
25071 msgstr ""
25072
25073 #. type: textblock
25074 #: ../fish/guestfish-actions.pod:4261
25075 msgid ""
25076 "If the current file size is less than C<size> then the file is extended to "
25077 "the required size with zero bytes.  This creates a sparse file (ie. disk "
25078 "blocks are not allocated for the file until you write to it).  To create a "
25079 "non-sparse file of zeroes, use L</fallocate64> instead."
25080 msgstr ""
25081
25082 #. type: =head2
25083 #: ../fish/guestfish-actions.pod:4267
25084 msgid "tune2fs-l"
25085 msgstr ""
25086
25087 #. type: verbatim
25088 #: ../fish/guestfish-actions.pod:4269
25089 #, no-wrap
25090 msgid ""
25091 " tune2fs-l device\n"
25092 "\n"
25093 msgstr ""
25094
25095 #. type: =head2
25096 #: ../fish/guestfish-actions.pod:4279
25097 msgid "txz-in"
25098 msgstr ""
25099
25100 #. type: verbatim
25101 #: ../fish/guestfish-actions.pod:4281
25102 #, no-wrap
25103 msgid ""
25104 " txz-in (tarball|-) directory\n"
25105 "\n"
25106 msgstr ""
25107
25108 #. type: =head2
25109 #: ../fish/guestfish-actions.pod:4288
25110 msgid "txz-out"
25111 msgstr ""
25112
25113 #. type: verbatim
25114 #: ../fish/guestfish-actions.pod:4290
25115 #, no-wrap
25116 msgid ""
25117 " txz-out directory (tarball|-)\n"
25118 "\n"
25119 msgstr ""
25120
25121 #. type: =head2
25122 #: ../fish/guestfish-actions.pod:4297
25123 msgid "umask"
25124 msgstr ""
25125
25126 #. type: verbatim
25127 #: ../fish/guestfish-actions.pod:4299
25128 #, no-wrap
25129 msgid ""
25130 " umask mask\n"
25131 "\n"
25132 msgstr ""
25133
25134 #. type: textblock
25135 #: ../fish/guestfish-actions.pod:4313
25136 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
25137 msgstr ""
25138
25139 #. type: =head2
25140 #: ../fish/guestfish-actions.pod:4318
25141 msgid "umount"
25142 msgstr ""
25143
25144 #. type: =head2
25145 #: ../fish/guestfish-actions.pod:4320
25146 msgid "unmount"
25147 msgstr ""
25148
25149 #. type: verbatim
25150 #: ../fish/guestfish-actions.pod:4322
25151 #, no-wrap
25152 msgid ""
25153 " umount pathordevice\n"
25154 "\n"
25155 msgstr ""
25156
25157 #. type: =head2
25158 #: ../fish/guestfish-actions.pod:4328
25159 msgid "umount-all"
25160 msgstr ""
25161
25162 #. type: =head2
25163 #: ../fish/guestfish-actions.pod:4330
25164 msgid "unmount-all"
25165 msgstr ""
25166
25167 #. type: verbatim
25168 #: ../fish/guestfish-actions.pod:4332
25169 #, no-wrap
25170 msgid ""
25171 " umount-all\n"
25172 "\n"
25173 msgstr ""
25174
25175 #. type: =head2
25176 #: ../fish/guestfish-actions.pod:4338
25177 msgid "upload"
25178 msgstr ""
25179
25180 #. type: verbatim
25181 #: ../fish/guestfish-actions.pod:4340
25182 #, no-wrap
25183 msgid ""
25184 " upload (filename|-) remotefilename\n"
25185 "\n"
25186 msgstr ""
25187
25188 #. type: textblock
25189 #: ../fish/guestfish-actions.pod:4347
25190 msgid "See also L</download>."
25191 msgstr ""
25192
25193 #. type: =head2
25194 #: ../fish/guestfish-actions.pod:4351
25195 msgid "upload-offset"
25196 msgstr ""
25197
25198 #. type: verbatim
25199 #: ../fish/guestfish-actions.pod:4353
25200 #, no-wrap
25201 msgid ""
25202 " upload-offset (filename|-) remotefilename offset\n"
25203 "\n"
25204 msgstr ""
25205
25206 #. type: textblock
25207 #: ../fish/guestfish-actions.pod:4365
25208 msgid ""
25209 "Note that there is no limit on the amount of data that can be uploaded with "
25210 "this call, unlike with L</pwrite>, and this call always writes the full "
25211 "amount unless an error occurs."
25212 msgstr ""
25213
25214 #. type: textblock
25215 #: ../fish/guestfish-actions.pod:4370
25216 msgid "See also L</upload>, L</pwrite>."
25217 msgstr ""
25218
25219 #. type: =head2
25220 #: ../fish/guestfish-actions.pod:4374
25221 msgid "utimens"
25222 msgstr ""
25223
25224 #. type: verbatim
25225 #: ../fish/guestfish-actions.pod:4376
25226 #, no-wrap
25227 msgid ""
25228 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
25229 "\n"
25230 msgstr ""
25231
25232 #. type: =head2
25233 #: ../fish/guestfish-actions.pod:4395
25234 msgid "version"
25235 msgstr ""
25236
25237 #. type: verbatim
25238 #: ../fish/guestfish-actions.pod:4397
25239 #, no-wrap
25240 msgid ""
25241 " version\n"
25242 "\n"
25243 msgstr ""
25244
25245 #. type: textblock
25246 #: ../fish/guestfish-actions.pod:4424
25247 msgid ""
25248 "I<Note:> Don't use this call to test for availability of features.  In "
25249 "enterprise distributions we backport features from later versions into "
25250 "earlier versions, making this an unreliable way to test for features.  Use "
25251 "L</available> instead."
25252 msgstr ""
25253
25254 #. type: =head2
25255 #: ../fish/guestfish-actions.pod:4430
25256 msgid "vfs-label"
25257 msgstr ""
25258
25259 #. type: verbatim
25260 #: ../fish/guestfish-actions.pod:4432
25261 #, no-wrap
25262 msgid ""
25263 " vfs-label device\n"
25264 "\n"
25265 msgstr ""
25266
25267 #. type: textblock
25268 #: ../fish/guestfish-actions.pod:4439
25269 msgid "To find a filesystem from the label, use L</findfs-label>."
25270 msgstr ""
25271
25272 #. type: =head2
25273 #: ../fish/guestfish-actions.pod:4441
25274 msgid "vfs-type"
25275 msgstr ""
25276
25277 #. type: verbatim
25278 #: ../fish/guestfish-actions.pod:4443
25279 #, no-wrap
25280 msgid ""
25281 " vfs-type device\n"
25282 "\n"
25283 msgstr ""
25284
25285 #. type: =head2
25286 #: ../fish/guestfish-actions.pod:4453
25287 msgid "vfs-uuid"
25288 msgstr ""
25289
25290 #. type: verbatim
25291 #: ../fish/guestfish-actions.pod:4455
25292 #, no-wrap
25293 msgid ""
25294 " vfs-uuid device\n"
25295 "\n"
25296 msgstr ""
25297
25298 #. type: textblock
25299 #: ../fish/guestfish-actions.pod:4462
25300 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
25301 msgstr ""
25302
25303 #. type: =head2
25304 #: ../fish/guestfish-actions.pod:4464
25305 msgid "vg-activate"
25306 msgstr ""
25307
25308 #. type: verbatim
25309 #: ../fish/guestfish-actions.pod:4466
25310 #, no-wrap
25311 msgid ""
25312 " vg-activate true|false 'volgroups ...'\n"
25313 "\n"
25314 msgstr ""
25315
25316 #. type: =head2
25317 #: ../fish/guestfish-actions.pod:4479
25318 msgid "vg-activate-all"
25319 msgstr ""
25320
25321 #. type: verbatim
25322 #: ../fish/guestfish-actions.pod:4481
25323 #, no-wrap
25324 msgid ""
25325 " vg-activate-all true|false\n"
25326 "\n"
25327 msgstr ""
25328
25329 #. type: =head2
25330 #: ../fish/guestfish-actions.pod:4491
25331 msgid "vgcreate"
25332 msgstr ""
25333
25334 #. type: verbatim
25335 #: ../fish/guestfish-actions.pod:4493
25336 #, no-wrap
25337 msgid ""
25338 " vgcreate volgroup 'physvols ...'\n"
25339 "\n"
25340 msgstr ""
25341
25342 #. type: =head2
25343 #: ../fish/guestfish-actions.pod:4498
25344 msgid "vglvuuids"
25345 msgstr ""
25346
25347 #. type: verbatim
25348 #: ../fish/guestfish-actions.pod:4500
25349 #, no-wrap
25350 msgid ""
25351 " vglvuuids vgname\n"
25352 "\n"
25353 msgstr ""
25354
25355 #. type: textblock
25356 #: ../fish/guestfish-actions.pod:4505
25357 msgid ""
25358 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
25359 "logical volumes and volume groups."
25360 msgstr ""
25361
25362 #. type: textblock
25363 #: ../fish/guestfish-actions.pod:4508
25364 msgid "See also L</vgpvuuids>."
25365 msgstr ""
25366
25367 #. type: =head2
25368 #: ../fish/guestfish-actions.pod:4510
25369 msgid "vgpvuuids"
25370 msgstr ""
25371
25372 #. type: verbatim
25373 #: ../fish/guestfish-actions.pod:4512
25374 #, no-wrap
25375 msgid ""
25376 " vgpvuuids vgname\n"
25377 "\n"
25378 msgstr ""
25379
25380 #. type: textblock
25381 #: ../fish/guestfish-actions.pod:4517
25382 msgid ""
25383 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
25384 "physical volumes and volume groups."
25385 msgstr ""
25386
25387 #. type: textblock
25388 #: ../fish/guestfish-actions.pod:4520
25389 msgid "See also L</vglvuuids>."
25390 msgstr ""
25391
25392 #. type: =head2
25393 #: ../fish/guestfish-actions.pod:4522
25394 msgid "vgremove"
25395 msgstr ""
25396
25397 #. type: verbatim
25398 #: ../fish/guestfish-actions.pod:4524
25399 #, no-wrap
25400 msgid ""
25401 " vgremove vgname\n"
25402 "\n"
25403 msgstr ""
25404
25405 #. type: =head2
25406 #: ../fish/guestfish-actions.pod:4531
25407 msgid "vgrename"
25408 msgstr ""
25409
25410 #. type: verbatim
25411 #: ../fish/guestfish-actions.pod:4533
25412 #, no-wrap
25413 msgid ""
25414 " vgrename volgroup newvolgroup\n"
25415 "\n"
25416 msgstr ""
25417
25418 #. type: =head2
25419 #: ../fish/guestfish-actions.pod:4537
25420 msgid "vgs"
25421 msgstr ""
25422
25423 #. type: verbatim
25424 #: ../fish/guestfish-actions.pod:4539
25425 #, no-wrap
25426 msgid ""
25427 " vgs\n"
25428 "\n"
25429 msgstr ""
25430
25431 #. type: textblock
25432 #: ../fish/guestfish-actions.pod:4547
25433 msgid "See also L</vgs-full>."
25434 msgstr ""
25435
25436 #. type: =head2
25437 #: ../fish/guestfish-actions.pod:4549
25438 msgid "vgs-full"
25439 msgstr ""
25440
25441 #. type: verbatim
25442 #: ../fish/guestfish-actions.pod:4551
25443 #, no-wrap
25444 msgid ""
25445 " vgs-full\n"
25446 "\n"
25447 msgstr ""
25448
25449 #. type: =head2
25450 #: ../fish/guestfish-actions.pod:4556
25451 msgid "vgscan"
25452 msgstr ""
25453
25454 #. type: verbatim
25455 #: ../fish/guestfish-actions.pod:4558
25456 #, no-wrap
25457 msgid ""
25458 " vgscan\n"
25459 "\n"
25460 msgstr ""
25461
25462 #. type: =head2
25463 #: ../fish/guestfish-actions.pod:4563
25464 msgid "vguuid"
25465 msgstr ""
25466
25467 #. type: verbatim
25468 #: ../fish/guestfish-actions.pod:4565
25469 #, no-wrap
25470 msgid ""
25471 " vguuid vgname\n"
25472 "\n"
25473 msgstr ""
25474
25475 #. type: =head2
25476 #: ../fish/guestfish-actions.pod:4569
25477 msgid "wc-c"
25478 msgstr ""
25479
25480 #. type: verbatim
25481 #: ../fish/guestfish-actions.pod:4571
25482 #, no-wrap
25483 msgid ""
25484 " wc-c path\n"
25485 "\n"
25486 msgstr ""
25487
25488 #. type: =head2
25489 #: ../fish/guestfish-actions.pod:4576
25490 msgid "wc-l"
25491 msgstr ""
25492
25493 #. type: verbatim
25494 #: ../fish/guestfish-actions.pod:4578
25495 #, no-wrap
25496 msgid ""
25497 " wc-l path\n"
25498 "\n"
25499 msgstr ""
25500
25501 #. type: =head2
25502 #: ../fish/guestfish-actions.pod:4583
25503 msgid "wc-w"
25504 msgstr ""
25505
25506 #. type: verbatim
25507 #: ../fish/guestfish-actions.pod:4585
25508 #, no-wrap
25509 msgid ""
25510 " wc-w path\n"
25511 "\n"
25512 msgstr ""
25513
25514 #. type: =head2
25515 #: ../fish/guestfish-actions.pod:4590
25516 msgid "write"
25517 msgstr ""
25518
25519 #. type: verbatim
25520 #: ../fish/guestfish-actions.pod:4592
25521 #, no-wrap
25522 msgid ""
25523 " write path content\n"
25524 "\n"
25525 msgstr ""
25526
25527 #. type: =head2
25528 #: ../fish/guestfish-actions.pod:4600
25529 msgid "write-file"
25530 msgstr ""
25531
25532 #. type: verbatim
25533 #: ../fish/guestfish-actions.pod:4602
25534 #, no-wrap
25535 msgid ""
25536 " write-file path content size\n"
25537 "\n"
25538 msgstr ""
25539
25540 #. type: =head2
25541 #: ../fish/guestfish-actions.pod:4625
25542 msgid "zegrep"
25543 msgstr ""
25544
25545 #. type: verbatim
25546 #: ../fish/guestfish-actions.pod:4627
25547 #, no-wrap
25548 msgid ""
25549 " zegrep regex path\n"
25550 "\n"
25551 msgstr ""
25552
25553 #. type: =head2
25554 #: ../fish/guestfish-actions.pod:4635
25555 msgid "zegrepi"
25556 msgstr ""
25557
25558 #. type: verbatim
25559 #: ../fish/guestfish-actions.pod:4637
25560 #, no-wrap
25561 msgid ""
25562 " zegrepi regex path\n"
25563 "\n"
25564 msgstr ""
25565
25566 #. type: =head2
25567 #: ../fish/guestfish-actions.pod:4645
25568 msgid "zero"
25569 msgstr ""
25570
25571 #. type: verbatim
25572 #: ../fish/guestfish-actions.pod:4647
25573 #, no-wrap
25574 msgid ""
25575 " zero device\n"
25576 "\n"
25577 msgstr ""
25578
25579 #. type: textblock
25580 #: ../fish/guestfish-actions.pod:4655
25581 msgid "See also: L</zero-device>, L</scrub-device>."
25582 msgstr ""
25583
25584 #. type: =head2
25585 #: ../fish/guestfish-actions.pod:4657
25586 msgid "zero-device"
25587 msgstr ""
25588
25589 #. type: verbatim
25590 #: ../fish/guestfish-actions.pod:4659
25591 #, no-wrap
25592 msgid ""
25593 " zero-device device\n"
25594 "\n"
25595 msgstr ""
25596
25597 #. type: textblock
25598 #: ../fish/guestfish-actions.pod:4661
25599 msgid ""
25600 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
25601 "which just zeroes the first few blocks of a device."
25602 msgstr ""
25603
25604 #. type: =head2
25605 #: ../fish/guestfish-actions.pod:4668
25606 msgid "zerofree"
25607 msgstr ""
25608
25609 #. type: verbatim
25610 #: ../fish/guestfish-actions.pod:4670
25611 #, no-wrap
25612 msgid ""
25613 " zerofree device\n"
25614 "\n"
25615 msgstr ""
25616
25617 #. type: =head2
25618 #: ../fish/guestfish-actions.pod:4683
25619 msgid "zfgrep"
25620 msgstr ""
25621
25622 #. type: verbatim
25623 #: ../fish/guestfish-actions.pod:4685
25624 #, no-wrap
25625 msgid ""
25626 " zfgrep pattern path\n"
25627 "\n"
25628 msgstr ""
25629
25630 #. type: =head2
25631 #: ../fish/guestfish-actions.pod:4693
25632 msgid "zfgrepi"
25633 msgstr ""
25634
25635 #. type: verbatim
25636 #: ../fish/guestfish-actions.pod:4695
25637 #, no-wrap
25638 msgid ""
25639 " zfgrepi pattern path\n"
25640 "\n"
25641 msgstr ""
25642
25643 #. type: =head2
25644 #: ../fish/guestfish-actions.pod:4703
25645 msgid "zfile"
25646 msgstr ""
25647
25648 #. type: verbatim
25649 #: ../fish/guestfish-actions.pod:4705
25650 #, no-wrap
25651 msgid ""
25652 " zfile meth path\n"
25653 "\n"
25654 msgstr ""
25655
25656 #. type: textblock
25657 #: ../fish/guestfish-actions.pod:4712
25658 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
25659 msgstr ""
25660
25661 #. type: =head2
25662 #: ../fish/guestfish-actions.pod:4722
25663 msgid "zgrep"
25664 msgstr ""
25665
25666 #. type: verbatim
25667 #: ../fish/guestfish-actions.pod:4724
25668 #, no-wrap
25669 msgid ""
25670 " zgrep regex path\n"
25671 "\n"
25672 msgstr ""
25673
25674 #. type: =head2
25675 #: ../fish/guestfish-actions.pod:4732
25676 msgid "zgrepi"
25677 msgstr ""
25678
25679 #. type: verbatim
25680 #: ../fish/guestfish-actions.pod:4734
25681 #, no-wrap
25682 msgid ""
25683 " zgrepi regex path\n"
25684 "\n"
25685 msgstr ""
25686
25687 #. type: =head2
25688 #: ../fish/guestfish-commands.pod:1
25689 msgid "alloc"
25690 msgstr ""
25691
25692 #. type: =head2
25693 #: ../fish/guestfish-commands.pod:3
25694 msgid "allocate"
25695 msgstr ""
25696
25697 #. type: verbatim
25698 #: ../fish/guestfish-commands.pod:5
25699 #, no-wrap
25700 msgid ""
25701 " alloc filename size\n"
25702 "\n"
25703 msgstr ""
25704
25705 #. type: textblock
25706 #: ../fish/guestfish-commands.pod:7
25707 msgid ""
25708 "This creates an empty (zeroed) file of the given size, and then adds so it "
25709 "can be further examined."
25710 msgstr ""
25711
25712 #. type: textblock
25713 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
25714 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
25715 msgstr ""
25716
25717 #. type: textblock
25718 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
25719 msgid "Size can be specified using standard suffixes, eg. C<1M>."
25720 msgstr ""
25721
25722 #. type: textblock
25723 #: ../fish/guestfish-commands.pod:14
25724 msgid ""
25725 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
25726 "image, see L</PREPARED DISK IMAGES>."
25727 msgstr ""
25728
25729 #. type: =head2
25730 #: ../fish/guestfish-commands.pod:17
25731 msgid "copy-in"
25732 msgstr ""
25733
25734 #. type: verbatim
25735 #: ../fish/guestfish-commands.pod:19
25736 #, no-wrap
25737 msgid ""
25738 " copy-in local [local ...] /remotedir\n"
25739 "\n"
25740 msgstr ""
25741
25742 #. type: textblock
25743 #: ../fish/guestfish-commands.pod:21
25744 msgid ""
25745 "C<copy-in> copies local files or directories recursively into the disk "
25746 "image, placing them in the directory called C</remotedir> (which must "
25747 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
25748 "other commands as necessary."
25749 msgstr ""
25750
25751 #. type: textblock
25752 #: ../fish/guestfish-commands.pod:26
25753 msgid ""
25754 "Multiple local files and directories can be specified, but the last "
25755 "parameter must always be a remote directory.  Wildcards cannot be used."
25756 msgstr ""
25757
25758 #. type: =head2
25759 #: ../fish/guestfish-commands.pod:30
25760 msgid "copy-out"
25761 msgstr ""
25762
25763 #. type: verbatim
25764 #: ../fish/guestfish-commands.pod:32
25765 #, no-wrap
25766 msgid ""
25767 " copy-out remote [remote ...] localdir\n"
25768 "\n"
25769 msgstr ""
25770
25771 #. type: textblock
25772 #: ../fish/guestfish-commands.pod:34
25773 msgid ""
25774 "C<copy-out> copies remote files or directories recursively out of the disk "
25775 "image, placing them on the host disk in a local directory called C<localdir> "
25776 "(which must exist).  This guestfish meta-command turns into a sequence of "
25777 "L</download>, L</tar-out> and other commands as necessary."
25778 msgstr ""
25779
25780 #. type: textblock
25781 #: ../fish/guestfish-commands.pod:40
25782 msgid ""
25783 "Multiple remote files and directories can be specified, but the last "
25784 "parameter must always be a local directory.  To download to the current "
25785 "directory, use C<.> as in:"
25786 msgstr ""
25787
25788 #. type: verbatim
25789 #: ../fish/guestfish-commands.pod:44
25790 #, no-wrap
25791 msgid ""
25792 " copy-out /home .\n"
25793 "\n"
25794 msgstr ""
25795
25796 #. type: textblock
25797 #: ../fish/guestfish-commands.pod:46
25798 msgid ""
25799 "Wildcards cannot be used in the ordinary command, but you can use them with "
25800 "the help of L</glob> like this:"
25801 msgstr ""
25802
25803 #. type: verbatim
25804 #: ../fish/guestfish-commands.pod:49
25805 #, no-wrap
25806 msgid ""
25807 " glob copy-out /home/* .\n"
25808 "\n"
25809 msgstr ""
25810
25811 #. type: =head2
25812 #: ../fish/guestfish-commands.pod:51
25813 msgid "echo"
25814 msgstr ""
25815
25816 #. type: verbatim
25817 #: ../fish/guestfish-commands.pod:53
25818 #, no-wrap
25819 msgid ""
25820 " echo [params ...]\n"
25821 "\n"
25822 msgstr ""
25823
25824 #. type: textblock
25825 #: ../fish/guestfish-commands.pod:55
25826 msgid "This echos the parameters to the terminal."
25827 msgstr ""
25828
25829 #. type: =head2
25830 #: ../fish/guestfish-commands.pod:57
25831 msgid "edit"
25832 msgstr ""
25833
25834 #. type: =head2
25835 #: ../fish/guestfish-commands.pod:59
25836 msgid "vi"
25837 msgstr ""
25838
25839 #. type: =head2
25840 #: ../fish/guestfish-commands.pod:61
25841 msgid "emacs"
25842 msgstr ""
25843
25844 #. type: verbatim
25845 #: ../fish/guestfish-commands.pod:63
25846 #, no-wrap
25847 msgid ""
25848 " edit filename\n"
25849 "\n"
25850 msgstr ""
25851
25852 #. type: textblock
25853 #: ../fish/guestfish-commands.pod:65
25854 msgid ""
25855 "This is used to edit a file.  It downloads the file, edits it locally using "
25856 "your editor, then uploads the result."
25857 msgstr ""
25858
25859 #. type: textblock
25860 #: ../fish/guestfish-commands.pod:68
25861 msgid ""
25862 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
25863 "or C<emacs> you will get those corresponding editors."
25864 msgstr ""
25865
25866 #. type: =head2
25867 #: ../fish/guestfish-commands.pod:72
25868 msgid "glob"
25869 msgstr ""
25870
25871 #. type: verbatim
25872 #: ../fish/guestfish-commands.pod:74
25873 #, no-wrap
25874 msgid ""
25875 " glob command args...\n"
25876 "\n"
25877 msgstr ""
25878
25879 #. type: textblock
25880 #: ../fish/guestfish-commands.pod:76
25881 msgid ""
25882 "Expand wildcards in any paths in the args list, and run C<command> "
25883 "repeatedly on each matching path."
25884 msgstr ""
25885
25886 #. type: textblock
25887 #: ../fish/guestfish-commands.pod:79
25888 msgid "See L</WILDCARDS AND GLOBBING>."
25889 msgstr ""
25890
25891 #. type: =head2
25892 #: ../fish/guestfish-commands.pod:81
25893 msgid "hexedit"
25894 msgstr ""
25895
25896 #. type: verbatim
25897 #: ../fish/guestfish-commands.pod:83
25898 #, no-wrap
25899 msgid ""
25900 " hexedit <filename|device>\n"
25901 " hexedit <filename|device> <max>\n"
25902 " hexedit <filename|device> <start> <max>\n"
25903 "\n"
25904 msgstr ""
25905
25906 #. type: textblock
25907 #: ../fish/guestfish-commands.pod:87
25908 msgid ""
25909 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
25910 "device."
25911 msgstr ""
25912
25913 #. type: textblock
25914 #: ../fish/guestfish-commands.pod:90
25915 msgid ""
25916 "This command works by downloading potentially the whole file or device, "
25917 "editing it locally, then uploading it.  If the file or device is large, you "
25918 "have to specify which part you wish to edit by using C<max> and/or C<start> "
25919 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
25920 "usual modifiers allowed such as C<1M> (1 megabyte)."
25921 msgstr ""
25922
25923 #. type: textblock
25924 #: ../fish/guestfish-commands.pod:97
25925 msgid "For example to edit the first few sectors of a disk you might do:"
25926 msgstr ""
25927
25928 #. type: verbatim
25929 #: ../fish/guestfish-commands.pod:100
25930 #, no-wrap
25931 msgid ""
25932 " hexedit /dev/sda 1M\n"
25933 "\n"
25934 msgstr ""
25935
25936 #. type: textblock
25937 #: ../fish/guestfish-commands.pod:102
25938 msgid ""
25939 "which would allow you to edit anywhere within the first megabyte of the "
25940 "disk."
25941 msgstr ""
25942
25943 #. type: textblock
25944 #: ../fish/guestfish-commands.pod:105
25945 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
25946 msgstr ""
25947
25948 #. type: verbatim
25949 #: ../fish/guestfish-commands.pod:107
25950 #, no-wrap
25951 msgid ""
25952 " hexedit /dev/sda1 0x400 0x400\n"
25953 "\n"
25954 msgstr ""
25955
25956 #. type: textblock
25957 #: ../fish/guestfish-commands.pod:109
25958 msgid "(assuming the superblock is in the standard location)."
25959 msgstr ""
25960
25961 #. type: textblock
25962 #: ../fish/guestfish-commands.pod:111
25963 msgid ""
25964 "This command requires the external L<hexedit(1)> program.  You can specify "
25965 "another program to use by setting the C<HEXEDITOR> environment variable."
25966 msgstr ""
25967
25968 #. type: textblock
25969 #: ../fish/guestfish-commands.pod:115
25970 msgid "See also L</hexdump>."
25971 msgstr ""
25972
25973 #. type: =head2
25974 #: ../fish/guestfish-commands.pod:117
25975 msgid "lcd"
25976 msgstr ""
25977
25978 #. type: verbatim
25979 #: ../fish/guestfish-commands.pod:119
25980 #, no-wrap
25981 msgid ""
25982 " lcd directory\n"
25983 "\n"
25984 msgstr ""
25985
25986 #. type: textblock
25987 #: ../fish/guestfish-commands.pod:121
25988 msgid "Change the local directory, ie. the current directory of guestfish itself."
25989 msgstr ""
25990
25991 #. type: textblock
25992 #: ../fish/guestfish-commands.pod:124
25993 msgid "Note that C<!cd> won't do what you might expect."
25994 msgstr ""
25995
25996 #. type: =head2
25997 #: ../fish/guestfish-commands.pod:126
25998 msgid "man"
25999 msgstr ""
26000
26001 #. type: =head2
26002 #: ../fish/guestfish-commands.pod:128
26003 msgid "manual"
26004 msgstr ""
26005
26006 #. type: verbatim
26007 #: ../fish/guestfish-commands.pod:130
26008 #, no-wrap
26009 msgid ""
26010 "  man\n"
26011 "\n"
26012 msgstr ""
26013
26014 #. type: textblock
26015 #: ../fish/guestfish-commands.pod:132
26016 msgid "Opens the manual page for guestfish."
26017 msgstr ""
26018
26019 #. type: =head2
26020 #: ../fish/guestfish-commands.pod:134
26021 msgid "more"
26022 msgstr ""
26023
26024 #. type: =head2
26025 #: ../fish/guestfish-commands.pod:136
26026 msgid "less"
26027 msgstr ""
26028
26029 #. type: verbatim
26030 #: ../fish/guestfish-commands.pod:138
26031 #, no-wrap
26032 msgid ""
26033 " more filename\n"
26034 "\n"
26035 msgstr ""
26036
26037 #. type: verbatim
26038 #: ../fish/guestfish-commands.pod:140
26039 #, no-wrap
26040 msgid ""
26041 " less filename\n"
26042 "\n"
26043 msgstr ""
26044
26045 #. type: textblock
26046 #: ../fish/guestfish-commands.pod:142
26047 msgid "This is used to view a file."
26048 msgstr ""
26049
26050 #. type: textblock
26051 #: ../fish/guestfish-commands.pod:144
26052 msgid ""
26053 "The default viewer is C<$PAGER>.  However if you use the alternate command "
26054 "C<less> you will get the C<less> command specifically."
26055 msgstr ""
26056
26057 #. type: =head2
26058 #: ../fish/guestfish-commands.pod:147
26059 msgid "reopen"
26060 msgstr ""
26061
26062 #. type: verbatim
26063 #: ../fish/guestfish-commands.pod:149
26064 #, no-wrap
26065 msgid ""
26066 "  reopen\n"
26067 "\n"
26068 msgstr ""
26069
26070 #. type: textblock
26071 #: ../fish/guestfish-commands.pod:151
26072 msgid ""
26073 "Close and reopen the libguestfs handle.  It is not necessary to use this "
26074 "normally, because the handle is closed properly when guestfish exits.  "
26075 "However this is occasionally useful for testing."
26076 msgstr ""
26077
26078 #. type: =head2
26079 #: ../fish/guestfish-commands.pod:155
26080 msgid "sparse"
26081 msgstr ""
26082
26083 #. type: verbatim
26084 #: ../fish/guestfish-commands.pod:157
26085 #, no-wrap
26086 msgid ""
26087 " sparse filename size\n"
26088 "\n"
26089 msgstr ""
26090
26091 #. type: textblock
26092 #: ../fish/guestfish-commands.pod:159
26093 msgid ""
26094 "This creates an empty sparse file of the given size, and then adds so it can "
26095 "be further examined."
26096 msgstr ""
26097
26098 #. type: textblock
26099 #: ../fish/guestfish-commands.pod:162
26100 msgid ""
26101 "In all respects it works the same as the L</alloc> command, except that the "
26102 "image file is allocated sparsely, which means that disk blocks are not "
26103 "assigned to the file until they are needed.  Sparse disk files only use "
26104 "space when written to, but they are slower and there is a danger you could "
26105 "run out of real disk space during a write operation."
26106 msgstr ""
26107
26108 #. type: =head2
26109 #: ../fish/guestfish-commands.pod:172
26110 msgid "supported"
26111 msgstr ""
26112
26113 #. type: verbatim
26114 #: ../fish/guestfish-commands.pod:174
26115 #, no-wrap
26116 msgid ""
26117 " supported\n"
26118 "\n"
26119 msgstr ""
26120
26121 #. type: textblock
26122 #: ../fish/guestfish-commands.pod:176
26123 msgid ""
26124 "This command returns a list of the optional groups known to the daemon, and "
26125 "indicates which ones are supported by this build of the libguestfs "
26126 "appliance."
26127 msgstr ""
26128
26129 #. type: textblock
26130 #: ../fish/guestfish-commands.pod:180
26131 msgid "See also L<guestfs(3)/AVAILABILITY>."
26132 msgstr ""
26133
26134 #. type: =head2
26135 #: ../fish/guestfish-commands.pod:182
26136 msgid "time"
26137 msgstr ""
26138
26139 #. type: verbatim
26140 #: ../fish/guestfish-commands.pod:184
26141 #, no-wrap
26142 msgid ""
26143 " time command args...\n"
26144 "\n"
26145 msgstr ""
26146
26147 #. type: textblock
26148 #: ../fish/guestfish-commands.pod:186
26149 msgid ""
26150 "Run the command as usual, but print the elapsed time afterwards.  This can "
26151 "be useful for benchmarking operations."
26152 msgstr ""
26153
26154 #. type: textblock
26155 #: ../test-tool/libguestfs-test-tool.pod:5
26156 msgid "libguestfs-test-tool - End user tests for libguestfs"
26157 msgstr ""
26158
26159 #. type: verbatim
26160 #: ../test-tool/libguestfs-test-tool.pod:9
26161 #, no-wrap
26162 msgid ""
26163 " libguestfs-test-tool [--options]\n"
26164 "\n"
26165 msgstr ""
26166
26167 #. type: textblock
26168 #: ../test-tool/libguestfs-test-tool.pod:13
26169 msgid ""
26170 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
26171 "and developers, to allow them to check basic libguestfs functionality is "
26172 "working.  This is needed because libguestfs occasionally breaks for reasons "
26173 "beyond our control: usually because of changes in the underlying qemu or "
26174 "kernel packages, or the host environment."
26175 msgstr ""
26176
26177 #. type: textblock
26178 #: ../test-tool/libguestfs-test-tool.pod:20
26179 msgid "If you suspect a problem in libguestfs, then just run:"
26180 msgstr ""
26181
26182 #. type: verbatim
26183 #: ../test-tool/libguestfs-test-tool.pod:22
26184 #, no-wrap
26185 msgid ""
26186 " libguestfs-test-tool\n"
26187 "\n"
26188 msgstr ""
26189
26190 #. type: textblock
26191 #: ../test-tool/libguestfs-test-tool.pod:24
26192 msgid "It will print lots of diagnostic messages."
26193 msgstr ""
26194
26195 #. type: textblock
26196 #: ../test-tool/libguestfs-test-tool.pod:26
26197 msgid "If it runs to completion successfully, you will see this near the end:"
26198 msgstr ""
26199
26200 #. type: verbatim
26201 #: ../test-tool/libguestfs-test-tool.pod:28
26202 #, no-wrap
26203 msgid ""
26204 " ===== TEST FINISHED OK =====\n"
26205 "\n"
26206 msgstr ""
26207
26208 #. type: textblock
26209 #: ../test-tool/libguestfs-test-tool.pod:30
26210 msgid "and the test tool will exit with code 0."
26211 msgstr ""
26212
26213 #. type: textblock
26214 #: ../test-tool/libguestfs-test-tool.pod:32
26215 msgid ""
26216 "If it fails (and/or exits with non-zero error code), please paste the "
26217 "B<complete, unedited> output of the test tool into a bug report.  More "
26218 "information about reporting bugs can be found on the "
26219 "L<http://libguestfs.org/> website."
26220 msgstr ""
26221
26222 #. type: =item
26223 #: ../test-tool/libguestfs-test-tool.pod:41
26224 msgid "I<--help>"
26225 msgstr ""
26226
26227 #. type: textblock
26228 #: ../test-tool/libguestfs-test-tool.pod:43
26229 msgid "Display short usage information and exit."
26230 msgstr ""
26231
26232 #. type: =item
26233 #: ../test-tool/libguestfs-test-tool.pod:45
26234 msgid "I<--helper /path/to/libguestfs-test-tool-helper>"
26235 msgstr ""
26236
26237 #. type: textblock
26238 #: ../test-tool/libguestfs-test-tool.pod:47
26239 msgid ""
26240 "Pass an alternate name for the helper program.  libguestfs-test-tool will "
26241 "normally look in the C<$libexec> directory that was configured when the tool "
26242 "was built."
26243 msgstr ""
26244
26245 #. type: =item
26246 #: ../test-tool/libguestfs-test-tool.pod:51
26247 msgid "I<--qemu qemu_binary>"
26248 msgstr ""
26249
26250 #. type: textblock
26251 #: ../test-tool/libguestfs-test-tool.pod:53
26252 msgid ""
26253 "If you have downloaded another qemu binary, point this option at the full "
26254 "path of the binary to try it."
26255 msgstr ""
26256
26257 #. type: =item
26258 #: ../test-tool/libguestfs-test-tool.pod:56
26259 msgid "I<--qemudir qemu_source_dir>"
26260 msgstr ""
26261
26262 #. type: textblock
26263 #: ../test-tool/libguestfs-test-tool.pod:58
26264 msgid ""
26265 "If you have compiled qemu from source, point this option at the source "
26266 "directory to try it."
26267 msgstr ""
26268
26269 #. type: =item
26270 #: ../test-tool/libguestfs-test-tool.pod:61
26271 msgid "I<--timeout N>"
26272 msgstr ""
26273
26274 #. type: textblock
26275 #: ../test-tool/libguestfs-test-tool.pod:63
26276 msgid ""
26277 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
26278 "does not usually need to be adjusted unless your machine is very slow."
26279 msgstr ""
26280
26281 #. type: =head1
26282 #: ../test-tool/libguestfs-test-tool.pod:69
26283 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
26284 msgstr ""
26285
26286 #. type: textblock
26287 #: ../test-tool/libguestfs-test-tool.pod:71
26288 msgid ""
26289 "If you have compiled another version of qemu from source and would like to "
26290 "try that, then you can use the I<--qemudir> option to point to the qemu "
26291 "source directory."
26292 msgstr ""
26293
26294 #. type: textblock
26295 #: ../test-tool/libguestfs-test-tool.pod:75
26296 msgid ""
26297 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
26298 "option to point to the binary."
26299 msgstr ""
26300
26301 #. type: textblock
26302 #: ../test-tool/libguestfs-test-tool.pod:78
26303 msgid ""
26304 "When using an alternate qemu with libguestfs, usually you would need to "
26305 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
26306 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
26307 "when you use either of the I<--qemudir> or I<--qemu> options."
26308 msgstr ""
26309
26310 #. type: textblock
26311 #: ../test-tool/libguestfs-test-tool.pod:85
26312 msgid ""
26313 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
26314 "I<1> if there was an error."
26315 msgstr ""
26316
26317 #. type: =item
26318 #: ../test-tool/libguestfs-test-tool.pod:92
26319 msgid "/usr/libexec/libguestfs-test-tool-helper"
26320 msgstr ""
26321
26322 #. type: textblock
26323 #: ../test-tool/libguestfs-test-tool.pod:94
26324 msgid ""
26325 "This helper program is run inside the appliance and provides additional "
26326 "tests."
26327 msgstr ""
26328
26329 #. type: =item
26330 #: ../test-tool/libguestfs-test-tool.pod:97
26331 msgid "/usr/bin/mkisofs"
26332 msgstr ""
26333
26334 #. type: textblock
26335 #: ../test-tool/libguestfs-test-tool.pod:99
26336 msgid ""
26337 "The C<mkisofs> command is required in order to construct a CD-ROM ISO file "
26338 "which is used as part of the tests."
26339 msgstr ""
26340
26341 #. type: textblock
26342 #: ../test-tool/libguestfs-test-tool.pod:106
26343 msgid ""
26344 "For the full list of environment variables which may affect libguestfs, "
26345 "please see the L<guestfs(3)> manual page."
26346 msgstr ""
26347
26348 #. type: textblock
26349 #: ../test-tool/libguestfs-test-tool.pod:111
26350 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
26351 msgstr ""
26352
26353 #. type: textblock
26354 #: ../test-tool/libguestfs-test-tool.pod:121
26355 msgid "Copyright (C) 2009 Red Hat Inc.  L<http://libguestfs.org/>"
26356 msgstr ""
26357
26358 #. type: textblock
26359 #: ../fuse/guestmount.pod:5
26360 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
26361 msgstr ""
26362
26363 #. type: verbatim
26364 #: ../fuse/guestmount.pod:9
26365 #, no-wrap
26366 msgid ""
26367 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
26368 "\n"
26369 msgstr ""
26370
26371 #. type: verbatim
26372 #: ../fuse/guestmount.pod:11
26373 #, no-wrap
26374 msgid ""
26375 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
26376 "\n"
26377 msgstr ""
26378
26379 #. type: verbatim
26380 #: ../fuse/guestmount.pod:13
26381 #, no-wrap
26382 msgid ""
26383 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
26384 "\n"
26385 msgstr ""
26386
26387 #. type: textblock
26388 #: ../fuse/guestmount.pod:17
26389 msgid ""
26390 "You must I<not> use C<guestmount> in read-write mode on live virtual "
26391 "machines.  If you do this, you risk disk corruption in the VM."
26392 msgstr ""
26393
26394 #. type: textblock
26395 #: ../fuse/guestmount.pod:22
26396 msgid ""
26397 "The guestmount program can be used to mount virtual machine filesystems and "
26398 "other disk images on the host.  It uses libguestfs for access to the guest "
26399 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
26400 "a mountable device."
26401 msgstr ""
26402
26403 #. type: textblock
26404 #: ../fuse/guestmount.pod:27
26405 msgid ""
26406 "Along with other options, you have to give at least one device (I<-a> "
26407 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
26408 "option) or use the I<-i> inspection option.  How this works is better "
26409 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
26410 "below."
26411 msgstr ""
26412
26413 #. type: textblock
26414 #: ../fuse/guestmount.pod:33
26415 msgid ""
26416 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
26417 "by you, and the filesystem will not be visible to any other users unless you "
26418 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
26419 "the filesystem, use the C<fusermount -u> command."
26420 msgstr ""
26421
26422 #. type: textblock
26423 #: ../fuse/guestmount.pod:41
26424 msgid ""
26425 "For a typical Windows guest which has its main filesystem on the first "
26426 "partition:"
26427 msgstr ""
26428
26429 #. type: verbatim
26430 #: ../fuse/guestmount.pod:44
26431 #, no-wrap
26432 msgid ""
26433 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
26434 "\n"
26435 msgstr ""
26436
26437 #. type: textblock
26438 #: ../fuse/guestmount.pod:46
26439 msgid ""
26440 "For a typical Linux guest which has a /boot filesystem on the first "
26441 "partition, and the root filesystem on a logical volume:"
26442 msgstr ""
26443
26444 #. type: verbatim
26445 #: ../fuse/guestmount.pod:49
26446 #, no-wrap
26447 msgid ""
26448 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
26449 "\n"
26450 msgstr ""
26451
26452 #. type: textblock
26453 #: ../fuse/guestmount.pod:51
26454 msgid "To get libguestfs to detect guest mountpoints for you:"
26455 msgstr ""
26456
26457 #. type: verbatim
26458 #: ../fuse/guestmount.pod:53
26459 #, no-wrap
26460 msgid ""
26461 " guestmount -a guest.img -i --ro /mnt\n"
26462 "\n"
26463 msgstr ""
26464
26465 #. type: textblock
26466 #: ../fuse/guestmount.pod:55
26467 msgid "For a libvirt guest called \"Guest\" you could do:"
26468 msgstr ""
26469
26470 #. type: verbatim
26471 #: ../fuse/guestmount.pod:57
26472 #, no-wrap
26473 msgid ""
26474 " guestmount -d Guest -i --ro /mnt\n"
26475 "\n"
26476 msgstr ""
26477
26478 #. type: textblock
26479 #: ../fuse/guestmount.pod:59
26480 msgid ""
26481 "If you don't know what filesystems are contained in a guest or disk image, "
26482 "use L<virt-filesystems(1)> first:"
26483 msgstr ""
26484
26485 #. type: verbatim
26486 #: ../fuse/guestmount.pod:62
26487 #, no-wrap
26488 msgid ""
26489 " virt-filesystems MyGuest\n"
26490 "\n"
26491 msgstr ""
26492
26493 #. type: textblock
26494 #: ../fuse/guestmount.pod:64
26495 msgid ""
26496 "If you want to trace the libguestfs calls but without excessive debugging "
26497 "information, we recommend:"
26498 msgstr ""
26499
26500 #. type: verbatim
26501 #: ../fuse/guestmount.pod:67
26502 #, no-wrap
26503 msgid ""
26504 " guestmount [...] --trace /mnt\n"
26505 "\n"
26506 msgstr ""
26507
26508 #. type: textblock
26509 #: ../fuse/guestmount.pod:69
26510 msgid "If you want to debug the program, we recommend:"
26511 msgstr ""
26512
26513 #. type: verbatim
26514 #: ../fuse/guestmount.pod:71
26515 #, no-wrap
26516 msgid ""
26517 " guestmount [...] --trace --verbose /mnt\n"
26518 "\n"
26519 msgstr ""
26520
26521 #. type: =item
26522 #: ../fuse/guestmount.pod:77
26523 msgid "B<-a image> | B<--add image>"
26524 msgstr ""
26525
26526 #. type: textblock
26527 #: ../fuse/guestmount.pod:79
26528 msgid "Add a block device or virtual machine image."
26529 msgstr ""
26530
26531 #. type: =item
26532 #: ../fuse/guestmount.pod:84
26533 msgid "B<-c URI> | B<--connect URI>"
26534 msgstr ""
26535
26536 #. type: =item
26537 #: ../fuse/guestmount.pod:90
26538 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
26539 msgstr ""
26540
26541 #. type: =item
26542 #: ../fuse/guestmount.pod:96
26543 msgid "B<--dir-cache-timeout N>"
26544 msgstr ""
26545
26546 #. type: textblock
26547 #: ../fuse/guestmount.pod:98
26548 msgid ""
26549 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
26550 "seconds.  The readdir cache [actually, there are several semi-independent "
26551 "caches] is populated after a readdir(2) call with the stat and extended "
26552 "attributes of the files in the directory, in anticipation that they will be "
26553 "requested soon after."
26554 msgstr ""
26555
26556 #. type: textblock
26557 #: ../fuse/guestmount.pod:104
26558 msgid ""
26559 "There is also a different attribute cache implemented by FUSE (see the FUSE "
26560 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
26561 "requests, only cache existing ones."
26562 msgstr ""
26563
26564 #. type: =item
26565 #: ../fuse/guestmount.pod:115
26566 msgid "B<--format=raw|qcow2|..> | B<--format>"
26567 msgstr ""
26568
26569 #. type: textblock
26570 #: ../fuse/guestmount.pod:122
26571 msgid ""
26572 "If you have untrusted raw-format guest disk images, you should use this "
26573 "option to specify the disk format.  This avoids a possible security problem "
26574 "with malicious guests (CVE-2010-3851).  See also "
26575 "L<guestfs(3)/guestfs_add_drive_opts>."
26576 msgstr ""
26577
26578 #. type: =item
26579 #: ../fuse/guestmount.pod:127
26580 msgid "B<--fuse-help>"
26581 msgstr ""
26582
26583 #. type: textblock
26584 #: ../fuse/guestmount.pod:129
26585 msgid "Display help on special FUSE options (see I<-o> below)."
26586 msgstr ""
26587
26588 #. type: textblock
26589 #: ../fuse/guestmount.pod:133
26590 msgid "Display brief help and exit."
26591 msgstr ""
26592
26593 #. type: =item
26594 #: ../fuse/guestmount.pod:135
26595 msgid "B<-i> | B<--inspector>"
26596 msgstr ""
26597
26598 #. type: =item
26599 #: ../fuse/guestmount.pod:146
26600 msgid "B<-m dev[:mnt]> | B<--mount dev[:mnt]>"
26601 msgstr ""
26602
26603 #. type: textblock
26604 #: ../fuse/guestmount.pod:148
26605 msgid ""
26606 "Mount the named partition or logical volume on the given mountpoint B<in the "
26607 "guest> (this has nothing to do with mountpoints in the host)."
26608 msgstr ""
26609
26610 #. type: textblock
26611 #: ../fuse/guestmount.pod:151
26612 msgid ""
26613 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
26614 "something on C</>."
26615 msgstr ""
26616
26617 #. type: =item
26618 #: ../fuse/guestmount.pod:154
26619 msgid "B<-n> | B<--no-sync>"
26620 msgstr ""
26621
26622 #. type: textblock
26623 #: ../fuse/guestmount.pod:156
26624 msgid ""
26625 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
26626 "unmounted.  If you specify this option, then we don't attempt to sync the "
26627 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
26628 msgstr ""
26629
26630 #. type: =item
26631 #: ../fuse/guestmount.pod:161
26632 msgid "B<-o option> | B<--option option>"
26633 msgstr ""
26634
26635 #. type: textblock
26636 #: ../fuse/guestmount.pod:163
26637 msgid "Pass extra options to FUSE."
26638 msgstr ""
26639
26640 #. type: textblock
26641 #: ../fuse/guestmount.pod:165
26642 msgid ""
26643 "To get a list of all the extra options supported by FUSE, use the command "
26644 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
26645 "of them are a good idea."
26646 msgstr ""
26647
26648 #. type: verbatim
26649 #: ../fuse/guestmount.pod:169
26650 #, no-wrap
26651 msgid ""
26652 " guestmount --fuse-help\n"
26653 "\n"
26654 msgstr ""
26655
26656 #. type: textblock
26657 #: ../fuse/guestmount.pod:171
26658 msgid "Some potentially useful FUSE options:"
26659 msgstr ""
26660
26661 #. type: =item
26662 #: ../fuse/guestmount.pod:175
26663 msgid "B<-o allow_other>"
26664 msgstr ""
26665
26666 #. type: textblock
26667 #: ../fuse/guestmount.pod:177
26668 msgid "Allow other users to see the filesystem."
26669 msgstr ""
26670
26671 #. type: =item
26672 #: ../fuse/guestmount.pod:179
26673 msgid "B<-o attr_timeout=N>"
26674 msgstr ""
26675
26676 #. type: textblock
26677 #: ../fuse/guestmount.pod:181
26678 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
26679 msgstr ""
26680
26681 #. type: =item
26682 #: ../fuse/guestmount.pod:183
26683 msgid "B<-o kernel_cache>"
26684 msgstr ""
26685
26686 #. type: textblock
26687 #: ../fuse/guestmount.pod:185
26688 msgid ""
26689 "Allow the kernel to cache files (reduces the number of reads that have to go "
26690 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
26691 "afford the extra memory usage."
26692 msgstr ""
26693
26694 #. type: =item
26695 #: ../fuse/guestmount.pod:189
26696 msgid "B<-o uid=N> B<-o gid=N>"
26697 msgstr ""
26698
26699 #. type: textblock
26700 #: ../fuse/guestmount.pod:191
26701 msgid ""
26702 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
26703 "the chosen values."
26704 msgstr ""
26705
26706 #. type: =item
26707 #: ../fuse/guestmount.pod:196
26708 msgid "B<-r> | B<--ro>"
26709 msgstr ""
26710
26711 #. type: textblock
26712 #: ../fuse/guestmount.pod:198
26713 msgid ""
26714 "Add devices and mount everything read-only.  Also disallow writes and make "
26715 "the disk appear read-only to FUSE."
26716 msgstr ""
26717
26718 #. type: textblock
26719 #: ../fuse/guestmount.pod:201
26720 msgid ""
26721 "This is highly recommended if you are not going to edit the guest disk.  If "
26722 "the guest is running and this option is I<not> supplied, then there is a "
26723 "strong risk of disk corruption in the guest.  We try to prevent this from "
26724 "happening, but it is not always possible."
26725 msgstr ""
26726
26727 #. type: textblock
26728 #: ../fuse/guestmount.pod:206
26729 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
26730 msgstr ""
26731
26732 #. type: textblock
26733 #: ../fuse/guestmount.pod:210
26734 msgid "Enable SELinux support for the guest."
26735 msgstr ""
26736
26737 #. type: =item
26738 #: ../fuse/guestmount.pod:212
26739 msgid "B<-v> | B<--verbose>"
26740 msgstr ""
26741
26742 #. type: textblock
26743 #: ../fuse/guestmount.pod:214
26744 msgid "Enable verbose messages from underlying libguestfs."
26745 msgstr ""
26746
26747 #. type: =item
26748 #: ../fuse/guestmount.pod:216
26749 msgid "B<-V> | B<--version>"
26750 msgstr ""
26751
26752 #. type: textblock
26753 #: ../fuse/guestmount.pod:218
26754 msgid "Display the program version and exit."
26755 msgstr ""
26756
26757 #. type: =item
26758 #: ../fuse/guestmount.pod:220
26759 msgid "B<-w> | B<--rw>"
26760 msgstr ""
26761
26762 #. type: textblock
26763 #: ../fuse/guestmount.pod:222
26764 msgid ""
26765 "This option does nothing at the moment.  See L<guestfish(1)/OPENING DISKS "
26766 "FOR READ AND WRITE>."
26767 msgstr ""
26768
26769 #. type: =item
26770 #: ../fuse/guestmount.pod:225
26771 msgid "B<-x> | B<--trace>"
26772 msgstr ""
26773
26774 #. type: textblock
26775 #: ../fuse/guestmount.pod:227
26776 msgid "Trace libguestfs calls and entry into each FUSE function."
26777 msgstr ""
26778
26779 #. type: textblock
26780 #: ../fuse/guestmount.pod:229
26781 msgid "This also stops the daemon from forking into the background."
26782 msgstr ""
26783
26784 #. type: textblock
26785 #: ../fuse/guestmount.pod:235
26786 msgid ""
26787 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
26788 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
26789 "L<http://fuse.sf.net/>."
26790 msgstr ""
26791
26792 #. type: textblock
26793 #: ../tools/virt-edit.pl:34
26794 msgid "virt-edit - Edit a file in a virtual machine"
26795 msgstr ""
26796
26797 #. type: verbatim
26798 #: ../tools/virt-edit.pl:38
26799 #, no-wrap
26800 msgid ""
26801 " virt-edit [--options] domname file\n"
26802 "\n"
26803 msgstr ""
26804
26805 #. type: verbatim
26806 #: ../tools/virt-edit.pl:40
26807 #, no-wrap
26808 msgid ""
26809 " virt-edit [--options] disk.img [disk.img ...] file\n"
26810 "\n"
26811 msgstr ""
26812
26813 #. type: verbatim
26814 #: ../tools/virt-edit.pl:42
26815 #, no-wrap
26816 msgid ""
26817 " virt-edit [domname|disk.img] file -e 'expr'\n"
26818 "\n"
26819 msgstr ""
26820
26821 #. type: textblock
26822 #: ../tools/virt-edit.pl:46
26823 msgid ""
26824 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
26825 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
26826 "doing this, but doesn't catch all cases."
26827 msgstr ""
26828
26829 #. type: textblock
26830 #: ../tools/virt-edit.pl:52
26831 msgid ""
26832 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
26833 "the named virtual machine (or disk image)."
26834 msgstr ""
26835
26836 #. type: textblock
26837 #: ../tools/virt-edit.pl:55
26838 msgid "If you want to just view a file, use L<virt-cat(1)>."
26839 msgstr ""
26840
26841 #. type: textblock
26842 #: ../tools/virt-edit.pl:57
26843 msgid ""
26844 "For more complex cases you should look at the L<guestfish(1)> tool (see "
26845 "L</USING GUESTFISH> below)."
26846 msgstr ""
26847
26848 #. type: textblock
26849 #: ../tools/virt-edit.pl:60
26850 msgid ""
26851 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
26852 "files.  L<guestfish(1)> can do that and much more."
26853 msgstr ""
26854
26855 #. type: textblock
26856 #: ../tools/virt-edit.pl:65
26857 msgid "Edit the named files interactively:"
26858 msgstr ""
26859
26860 #. type: verbatim
26861 #: ../tools/virt-edit.pl:67
26862 #, no-wrap
26863 msgid ""
26864 " virt-edit mydomain /boot/grub/grub.conf\n"
26865 "\n"
26866 msgstr ""
26867
26868 #. type: verbatim
26869 #: ../tools/virt-edit.pl:69
26870 #, no-wrap
26871 msgid ""
26872 " virt-edit mydomain /etc/passwd\n"
26873 "\n"
26874 msgstr ""
26875
26876 #. type: textblock
26877 #: ../tools/virt-edit.pl:71
26878 msgid ""
26879 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
26880 "below).  To change the init default level to 5:"
26881 msgstr ""
26882
26883 #. type: verbatim
26884 #: ../tools/virt-edit.pl:75
26885 #, no-wrap
26886 msgid ""
26887 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
26888 "\n"
26889 msgstr ""
26890
26891 #. type: textblock
26892 #: ../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
26893 msgid "Display brief help."
26894 msgstr ""
26895
26896 #. type: textblock
26897 #: ../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
26898 msgid "Display version number and exit."
26899 msgstr ""
26900
26901 #. type: =item
26902 #: ../tools/virt-edit.pl:101
26903 msgid "B<--backup extension> | B<-b extension>"
26904 msgstr ""
26905
26906 #. type: textblock
26907 #: ../tools/virt-edit.pl:103
26908 msgid ""
26909 "Create a backup of the original file I<in the guest disk image>.  The backup "
26910 "has the original filename with C<extension> added."
26911 msgstr ""
26912
26913 #. type: textblock
26914 #: ../tools/virt-edit.pl:106
26915 msgid ""
26916 "Usually the first character of C<extension> would be a dot C<.> so you would "
26917 "write:"
26918 msgstr ""
26919
26920 #. type: verbatim
26921 #: ../tools/virt-edit.pl:109
26922 #, no-wrap
26923 msgid ""
26924 " virt-edit -b .orig [etc]\n"
26925 "\n"
26926 msgstr ""
26927
26928 #. type: textblock
26929 #: ../tools/virt-edit.pl:111
26930 msgid "By default, no backup file is made."
26931 msgstr ""
26932
26933 #. type: =item
26934 #: ../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
26935 msgid "B<--connect URI> | B<-c URI>"
26936 msgstr ""
26937
26938 #. type: textblock
26939 #: ../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
26940 msgid ""
26941 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
26942 "to the default libvirt hypervisor."
26943 msgstr ""
26944
26945 #. type: textblock
26946 #: ../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
26947 msgid ""
26948 "If you specify guest block devices directly, then libvirt is not used at "
26949 "all."
26950 msgstr ""
26951
26952 #. type: =item
26953 #: ../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
26954 msgid "B<--format> raw"
26955 msgstr ""
26956
26957 #. type: textblock
26958 #: ../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
26959 msgid ""
26960 "Specify the format of disk images given on the command line.  If this is "
26961 "omitted then the format is autodetected from the content of the disk image."
26962 msgstr ""
26963
26964 #. type: textblock
26965 #: ../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
26966 msgid ""
26967 "If disk images are requested from libvirt, then this program asks libvirt "
26968 "for this information.  In this case, the value of the format parameter is "
26969 "ignored."
26970 msgstr ""
26971
26972 #. type: textblock
26973 #: ../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
26974 msgid ""
26975 "If working with untrusted raw-format guest disk images, you should ensure "
26976 "the format is always specified."
26977 msgstr ""
26978
26979 #. type: =item
26980 #: ../tools/virt-edit.pl:146
26981 msgid "B<--expr EXPR> | B<-e EXPR>"
26982 msgstr ""
26983
26984 #. type: textblock
26985 #: ../tools/virt-edit.pl:148
26986 msgid ""
26987 "Instead of launching the external editor, non-interactively apply the Perl "
26988 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
26989 "EDITING> below."
26990 msgstr ""
26991
26992 #. type: textblock
26993 #: ../tools/virt-edit.pl:152
26994 msgid ""
26995 "Be careful to properly quote the expression to prevent it from being altered "
26996 "by the shell."
26997 msgstr ""
26998
26999 #. type: =head1
27000 #: ../tools/virt-edit.pl:272
27001 msgid "NON-INTERACTIVE EDITING"
27002 msgstr ""
27003
27004 #. type: textblock
27005 #: ../tools/virt-edit.pl:274
27006 msgid ""
27007 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
27008 "administrator can interactively edit the file."
27009 msgstr ""
27010
27011 #. type: textblock
27012 #: ../tools/virt-edit.pl:277
27013 msgid ""
27014 "There are two ways also to use C<virt-edit> from scripts in order to make "
27015 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
27016 "like this, it's less error-prone to write scripts directly using the "
27017 "libguestfs API and Augeas for configuration file editing.)"
27018 msgstr ""
27019
27020 #. type: textblock
27021 #: ../tools/virt-edit.pl:283
27022 msgid ""
27023 "The first method is to temporarily set C<$EDITOR> to any script or program "
27024 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
27025 "update C<tmpfile> in place however it likes."
27026 msgstr ""
27027
27028 #. type: textblock
27029 #: ../tools/virt-edit.pl:287
27030 msgid ""
27031 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
27032 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
27033 "instances of C<foo> with C<bar> in a file:"
27034 msgstr ""
27035
27036 #. type: verbatim
27037 #: ../tools/virt-edit.pl:291
27038 #, no-wrap
27039 msgid ""
27040 " virt-edit domname filename -e 's/foo/bar/'\n"
27041 "\n"
27042 msgstr ""
27043
27044 #. type: textblock
27045 #: ../tools/virt-edit.pl:293
27046 msgid ""
27047 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
27048 "For example to delete root's password you could do:"
27049 msgstr ""
27050
27051 #. type: verbatim
27052 #: ../tools/virt-edit.pl:296
27053 #, no-wrap
27054 msgid ""
27055 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
27056 "\n"
27057 msgstr ""
27058
27059 #. type: textblock
27060 #: ../tools/virt-edit.pl:298
27061 msgid ""
27062 "What really happens is that the snippet is evaluated as a Perl expression "
27063 "for each line of the file.  The line, including the final C<\\n>, is passed "
27064 "in C<$_> and the expression should update C<$_> or leave it unchanged."
27065 msgstr ""
27066
27067 #. type: textblock
27068 #: ../tools/virt-edit.pl:303
27069 msgid ""
27070 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
27071 "C<apache> user account from the password file you can do:"
27072 msgstr ""
27073
27074 #. type: verbatim
27075 #: ../tools/virt-edit.pl:306
27076 #, no-wrap
27077 msgid ""
27078 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
27079 "\n"
27080 msgstr ""
27081
27082 #. type: textblock
27083 #: ../tools/virt-edit.pl:308
27084 msgid ""
27085 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
27086 "the end of the file is rather difficult this way since there is no concept "
27087 "of \"last line of the file\" - your expression just doesn't get called "
27088 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
27089 "want to do this."
27090 msgstr ""
27091
27092 #. type: textblock
27093 #: ../tools/virt-edit.pl:314
27094 msgid ""
27095 "The variable C<$lineno> contains the current line number.  As is "
27096 "traditional, the first line in the file is number C<1>."
27097 msgstr ""
27098
27099 #. type: textblock
27100 #: ../tools/virt-edit.pl:317
27101 msgid ""
27102 "The return value from the expression is ignored, but the expression may call "
27103 "C<die> in order to abort the whole program, leaving the original file "
27104 "untouched."
27105 msgstr ""
27106
27107 #. type: textblock
27108 #: ../tools/virt-edit.pl:321
27109 msgid ""
27110 "Remember when matching the end of a line that C<$_> may contain the final "
27111 "C<\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
27112 "newline then neither of these.  Thus to match or substitute some text at the "
27113 "end of a line, use this regular expression:"
27114 msgstr ""
27115
27116 #. type: verbatim
27117 #: ../tools/virt-edit.pl:326
27118 #, no-wrap
27119 msgid ""
27120 " /some text(\\r?\\n)?$/\n"
27121 "\n"
27122 msgstr ""
27123
27124 #. type: textblock
27125 #: ../tools/virt-edit.pl:328
27126 msgid ""
27127 "Alternately, use the perl C<chomp> function, being careful not to chomp "
27128 "C<$_> itself (since that would remove all newlines from the file):"
27129 msgstr ""
27130
27131 #. type: verbatim
27132 #: ../tools/virt-edit.pl:332
27133 #, no-wrap
27134 msgid ""
27135 " my $m = $_; chomp $m; $m =~ /some text$/\n"
27136 "\n"
27137 msgstr ""
27138
27139 #. type: =head1
27140 #: ../tools/virt-edit.pl:334
27141 msgid "USING GUESTFISH"
27142 msgstr ""
27143
27144 #. type: textblock
27145 #: ../tools/virt-edit.pl:336
27146 msgid ""
27147 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
27148 "C<virt-edit> doesn't work."
27149 msgstr ""
27150
27151 #. type: textblock
27152 #: ../tools/virt-edit.pl:339
27153 msgid "Using C<virt-edit> is approximately equivalent to doing:"
27154 msgstr ""
27155
27156 #. type: verbatim
27157 #: ../tools/virt-edit.pl:341
27158 #, no-wrap
27159 msgid ""
27160 " guestfish --rw -i -d domname edit /file\n"
27161 "\n"
27162 msgstr ""
27163
27164 #. type: textblock
27165 #: ../tools/virt-edit.pl:343
27166 msgid ""
27167 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
27168 "path to the file."
27169 msgstr ""
27170
27171 #. type: textblock
27172 #: ../tools/virt-edit.pl:346
27173 msgid ""
27174 "The command above uses libguestfs's guest inspection feature and so does not "
27175 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
27176 "disk images that don't contain guests.  To edit a file on a disk image "
27177 "directly, use:"
27178 msgstr ""
27179
27180 #. type: verbatim
27181 #: ../tools/virt-edit.pl:351
27182 #, no-wrap
27183 msgid ""
27184 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
27185 "\n"
27186 msgstr ""
27187
27188 #. type: textblock
27189 #: ../tools/virt-edit.pl:353
27190 msgid ""
27191 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
27192 "the disk image to edit, and C</file> is the full path to the file."
27193 msgstr ""
27194
27195 #. type: textblock
27196 #: ../tools/virt-edit.pl:357
27197 msgid ""
27198 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
27199 "C<write> or C<upload> instead:"
27200 msgstr ""
27201
27202 #. type: verbatim
27203 #: ../tools/virt-edit.pl:360
27204 #, no-wrap
27205 msgid ""
27206 " guestfish --rw -i -d domname touch /newfile\n"
27207 "\n"
27208 msgstr ""
27209
27210 #. type: verbatim
27211 #: ../tools/virt-edit.pl:362
27212 #, no-wrap
27213 msgid ""
27214 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
27215 "\n"
27216 msgstr ""
27217
27218 #. type: verbatim
27219 #: ../tools/virt-edit.pl:364
27220 #, no-wrap
27221 msgid ""
27222 " guestfish --rw -i -d domname upload localfile /newfile\n"
27223 "\n"
27224 msgstr ""
27225
27226 #. type: textblock
27227 #: ../tools/virt-edit.pl:366
27228 msgid "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
27229 msgstr ""
27230
27231 #. type: verbatim
27232 #: ../tools/virt-edit.pl:369
27233 #, no-wrap
27234 msgid ""
27235 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
27236 "\n"
27237 msgstr ""
27238
27239 #. type: =item
27240 #: ../tools/virt-edit.pl:379
27241 msgid "C<EDITOR>"
27242 msgstr ""
27243
27244 #. type: textblock
27245 #: ../tools/virt-edit.pl:381
27246 msgid ""
27247 "If set, this string is used as the editor.  It may contain arguments, "
27248 "eg. C<\"emacs -nw\">"
27249 msgstr ""
27250
27251 #. type: textblock
27252 #: ../tools/virt-edit.pl:384
27253 msgid "If not set, C<vi> is used."
27254 msgstr ""
27255
27256 #. type: =head1
27257 #: ../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
27258 msgid "SHELL QUOTING"
27259 msgstr ""
27260
27261 #. type: textblock
27262 #: ../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
27263 msgid ""
27264 "Libvirt guest names can contain arbitrary characters, some of which have "
27265 "meaning to the shell such as C<#> and space.  You may need to quote or "
27266 "escape these characters on the command line.  See the shell manual page "
27267 "L<sh(1)> for details."
27268 msgstr ""
27269
27270 #. type: textblock
27271 #: ../tools/virt-edit.pl:397
27272 msgid ""
27273 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
27274 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>, "
27275 "L<perl(1)>, L<perlre(1)>."
27276 msgstr ""
27277
27278 #. type: =head1
27279 #: ../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
27280 msgid "AUTHOR"
27281 msgstr ""
27282
27283 #. type: textblock
27284 #: ../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
27285 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
27286 msgstr ""
27287
27288 #. type: textblock
27289 #: ../tools/virt-edit.pl:413
27290 msgid "Copyright (C) 2009-2011 Red Hat Inc."
27291 msgstr ""
27292
27293 #. type: textblock
27294 #: ../tools/virt-win-reg.pl:37
27295 msgid ""
27296 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
27297 "guest"
27298 msgstr ""
27299
27300 #. type: verbatim
27301 #: ../tools/virt-win-reg.pl:41
27302 #, no-wrap
27303 msgid ""
27304 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
27305 "\n"
27306 msgstr ""
27307
27308 #. type: verbatim
27309 #: ../tools/virt-win-reg.pl:43
27310 #, no-wrap
27311 msgid ""
27312 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
27313 "\n"
27314 msgstr ""
27315
27316 #. type: verbatim
27317 #: ../tools/virt-win-reg.pl:45
27318 #, no-wrap
27319 msgid ""
27320 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
27321 "\n"
27322 msgstr ""
27323
27324 #. type: verbatim
27325 #: ../tools/virt-win-reg.pl:47
27326 #, no-wrap
27327 msgid ""
27328 " virt-win-reg --merge domname [input.reg ...]\n"
27329 "\n"
27330 msgstr ""
27331
27332 #. type: verbatim
27333 #: ../tools/virt-win-reg.pl:49
27334 #, no-wrap
27335 msgid ""
27336 " virt-win-reg [--options] disk.img ... # instead of domname\n"
27337 "\n"
27338 msgstr ""
27339
27340 #. type: textblock
27341 #: ../tools/virt-win-reg.pl:53
27342 msgid ""
27343 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
27344 "virtual machines.  If you do this, you I<will> get irreversible disk "
27345 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
27346 "but doesn't catch all cases."
27347 msgstr ""
27348
27349 #. type: textblock
27350 #: ../tools/virt-win-reg.pl:58
27351 msgid ""
27352 "Modifying the Windows Registry is an inherently risky operation.  The format "
27353 "is deliberately obscure and undocumented, and Registry changes can leave the "
27354 "system unbootable.  Therefore when using the C<--merge> option, make sure "
27355 "you have a reliable backup first."
27356 msgstr ""
27357
27358 #. type: textblock
27359 #: ../tools/virt-win-reg.pl:65
27360 msgid ""
27361 "This program can export and merge Windows Registry entries from a Windows "
27362 "guest."
27363 msgstr ""
27364
27365 #. type: textblock
27366 #: ../tools/virt-win-reg.pl:68
27367 msgid ""
27368 "The first parameter is the libvirt guest name or the raw disk image of a "
27369 "Windows guest."
27370 msgstr ""
27371
27372 #. type: textblock
27373 #: ../tools/virt-win-reg.pl:71
27374 msgid ""
27375 "If C<--merge> is I<not> specified, then the chosen registry key is "
27376 "displayed/exported (recursively).  For example:"
27377 msgstr ""
27378
27379 #. type: verbatim
27380 #: ../tools/virt-win-reg.pl:74
27381 #, no-wrap
27382 msgid ""
27383 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
27384 "\n"
27385 msgstr ""
27386
27387 #. type: textblock
27388 #: ../tools/virt-win-reg.pl:76
27389 msgid "You can also display single values from within registry keys, for example:"
27390 msgstr ""
27391
27392 #. type: verbatim
27393 #: ../tools/virt-win-reg.pl:79
27394 #, no-wrap
27395 msgid ""
27396 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
27397 " $ virt-win-reg Windows7 $cvkey ProductName\n"
27398 " Windows 7 Enterprise\n"
27399 "\n"
27400 msgstr ""
27401
27402 #. type: textblock
27403 #: ../tools/virt-win-reg.pl:83
27404 msgid ""
27405 "With C<--merge>, you can merge a textual regedit file into the Windows "
27406 "Registry:"
27407 msgstr ""
27408
27409 #. type: verbatim
27410 #: ../tools/virt-win-reg.pl:86
27411 #, no-wrap
27412 msgid ""
27413 " $ virt-win-reg --merge Windows7 changes.reg\n"
27414 "\n"
27415 msgstr ""
27416
27417 #. type: =head2
27418 #: ../tools/virt-win-reg.pl:88
27419 msgid "NOTE"
27420 msgstr ""
27421
27422 #. type: textblock
27423 #: ../tools/virt-win-reg.pl:90
27424 msgid ""
27425 "This program is only meant for simple access to the registry.  If you want "
27426 "to do complicated things with the registry, we suggest you download the "
27427 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
27428 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
27429 "L<hivexregedit(1)>."
27430 msgstr ""
27431
27432 #. type: =item
27433 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
27434 msgid "B<--debug>"
27435 msgstr ""
27436
27437 #. type: textblock
27438 #: ../tools/virt-win-reg.pl:122 ../tools/virt-resize.pl:498
27439 msgid "Enable debugging messages."
27440 msgstr ""
27441
27442 #. type: =item
27443 #: ../tools/virt-win-reg.pl:157
27444 msgid "B<--merge>"
27445 msgstr ""
27446
27447 #. type: textblock
27448 #: ../tools/virt-win-reg.pl:159
27449 msgid ""
27450 "In merge mode, this merges a textual regedit file into the Windows Registry "
27451 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
27452 "displays or exports Registry entries instead."
27453 msgstr ""
27454
27455 #. type: textblock
27456 #: ../tools/virt-win-reg.pl:163
27457 msgid ""
27458 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
27459 "result in disk corruption.  However exporting (without this flag)  is always "
27460 "safe."
27461 msgstr ""
27462
27463 #. type: =item
27464 #: ../tools/virt-win-reg.pl:171
27465 msgid "B<--encoding> UTF-16LE|ASCII"
27466 msgstr ""
27467
27468 #. type: textblock
27469 #: ../tools/virt-win-reg.pl:173
27470 msgid ""
27471 "When merging (only), you may need to specify the encoding for strings to be "
27472 "used in the hive file.  This is explained in detail in "
27473 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
27474 msgstr ""
27475
27476 #. type: textblock
27477 #: ../tools/virt-win-reg.pl:177
27478 msgid ""
27479 "The default is to use UTF-16LE, which should work with recent versions of "
27480 "Windows."
27481 msgstr ""
27482
27483 #. type: =head1
27484 #: ../tools/virt-win-reg.pl:402
27485 msgid "SUPPORTED SYSTEMS"
27486 msgstr ""
27487
27488 #. type: textblock
27489 #: ../tools/virt-win-reg.pl:404
27490 msgid ""
27491 "The program currently supports Windows NT-derived guests starting with "
27492 "Windows XP through to at least Windows 7."
27493 msgstr ""
27494
27495 #. type: textblock
27496 #: ../tools/virt-win-reg.pl:407
27497 msgid ""
27498 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, "
27499 "C<HKEY_LOCAL_MACHINE\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, "
27500 "C<HKEY_LOCAL_MACHINE\\SYSTEM> and C<HKEY_USERS\\.DEFAULT>."
27501 msgstr ""
27502
27503 #. type: textblock
27504 #: ../tools/virt-win-reg.pl:411
27505 msgid ""
27506 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
27507 "C<HKEY_USERS>."
27508 msgstr ""
27509
27510 #. type: textblock
27511 #: ../tools/virt-win-reg.pl:414
27512 msgid ""
27513 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
27514 "time."
27515 msgstr ""
27516
27517 #. type: =head1
27518 #: ../tools/virt-win-reg.pl:417
27519 msgid "ENCODING"
27520 msgstr ""
27521
27522 #. type: textblock
27523 #: ../tools/virt-win-reg.pl:419
27524 msgid ""
27525 "C<virt-win-reg> expects that regedit files have already been reencoded in "
27526 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
27527 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
27528 "with Windows-style line endings, you may need to reencode the whole file "
27529 "before or after processing."
27530 msgstr ""
27531
27532 #. type: textblock
27533 #: ../tools/virt-win-reg.pl:425
27534 msgid ""
27535 "To reencode a file from Windows format to Linux (before processing it with "
27536 "the C<--merge> option), you would do something like this:"
27537 msgstr ""
27538
27539 #. type: verbatim
27540 #: ../tools/virt-win-reg.pl:428
27541 #, no-wrap
27542 msgid ""
27543 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
27544 "\n"
27545 msgstr ""
27546
27547 #. type: textblock
27548 #: ../tools/virt-win-reg.pl:430
27549 msgid ""
27550 "To go in the opposite direction, after exporting and before sending the file "
27551 "to a Windows user, do something like this:"
27552 msgstr ""
27553
27554 #. type: verbatim
27555 #: ../tools/virt-win-reg.pl:433
27556 #, no-wrap
27557 msgid ""
27558 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
27559 "\n"
27560 msgstr ""
27561
27562 #. type: textblock
27563 #: ../tools/virt-win-reg.pl:435
27564 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
27565 msgstr ""
27566
27567 #. type: textblock
27568 #: ../tools/virt-win-reg.pl:437
27569 msgid ""
27570 "If you are unsure about the current encoding, use the L<file(1)> command.  "
27571 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
27572 "Windows-style (CRLF) line endings, like this:"
27573 msgstr ""
27574
27575 #. type: verbatim
27576 #: ../tools/virt-win-reg.pl:441
27577 #, no-wrap
27578 msgid ""
27579 " $ file software.reg\n"
27580 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
27581 " with CRLF line terminators\n"
27582 "\n"
27583 msgstr ""
27584
27585 #. type: textblock
27586 #: ../tools/virt-win-reg.pl:445
27587 msgid "This file would need conversion before you could C<--merge> it."
27588 msgstr ""
27589
27590 #. type: =head1
27591 #: ../tools/virt-win-reg.pl:447
27592 msgid "CurrentControlSet etc."
27593 msgstr ""
27594
27595 #. type: textblock
27596 #: ../tools/virt-win-reg.pl:449
27597 msgid ""
27598 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
27599 "Registry at the level of the hive file, and therefore you cannot modify "
27600 "these."
27601 msgstr ""
27602
27603 #. type: textblock
27604 #: ../tools/virt-win-reg.pl:453
27605 msgid ""
27606 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
27607 "circumstances it might refer to another control set.  The way to find out is "
27608 "to look at the C<HKLM\\SYSTEM\\Select> key:"
27609 msgstr ""
27610
27611 #. type: verbatim
27612 #: ../tools/virt-win-reg.pl:457
27613 #, no-wrap
27614 msgid ""
27615 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
27616 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
27617 " \"Current\"=dword:00000001\n"
27618 " \"Default\"=dword:00000001\n"
27619 " \"Failed\"=dword:00000000\n"
27620 " \"LastKnownGood\"=dword:00000002\n"
27621 "\n"
27622 msgstr ""
27623
27624 #. type: textblock
27625 #: ../tools/virt-win-reg.pl:464
27626 msgid "\"Current\" is the one which Windows will choose when it boots."
27627 msgstr ""
27628
27629 #. type: textblock
27630 #: ../tools/virt-win-reg.pl:466
27631 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
27632 msgstr ""
27633
27634 #. type: =head1
27635 #: ../tools/virt-win-reg.pl:469
27636 msgid "WINDOWS TIPS"
27637 msgstr ""
27638
27639 #. type: textblock
27640 #: ../tools/virt-win-reg.pl:471
27641 msgid ""
27642 "Note that some of these tips modify the guest disk image.  The guest I<must> "
27643 "be shut off, else you will get disk corruption."
27644 msgstr ""
27645
27646 #. type: =head2
27647 #: ../tools/virt-win-reg.pl:474
27648 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
27649 msgstr ""
27650
27651 #. type: textblock
27652 #: ../tools/virt-win-reg.pl:476
27653 msgid ""
27654 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
27655 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
27656 "is uploaded into C<C:\\>:"
27657 msgstr ""
27658
27659 #. type: verbatim
27660 #: ../tools/virt-win-reg.pl:480
27661 #, no-wrap
27662 msgid ""
27663 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
27664 "\n"
27665 msgstr ""
27666
27667 #. type: textblock
27668 #: ../tools/virt-win-reg.pl:482
27669 msgid "Prepare a regedit file containing the registry change:"
27670 msgstr ""
27671
27672 #. type: verbatim
27673 #: ../tools/virt-win-reg.pl:484
27674 #, no-wrap
27675 msgid ""
27676 " cat > test.reg <<'EOF'\n"
27677 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
27678 " \"Test\"=\"c:\\\\test.bat\"\n"
27679 " EOF\n"
27680 "\n"
27681 msgstr ""
27682
27683 #. type: textblock
27684 #: ../tools/virt-win-reg.pl:489
27685 msgid ""
27686 "In this example we use the key C<RunOnce> which means that the script will "
27687 "run precisely once when the first user logs in.  If you want it to run every "
27688 "time a user logs in, replace C<RunOnce> with C<Run>."
27689 msgstr ""
27690
27691 #. type: textblock
27692 #: ../tools/virt-win-reg.pl:493
27693 msgid "Now update the registry:"
27694 msgstr ""
27695
27696 #. type: verbatim
27697 #: ../tools/virt-win-reg.pl:495
27698 #, no-wrap
27699 msgid ""
27700 " virt-win-reg --merge WindowsGuest test.reg\n"
27701 "\n"
27702 msgstr ""
27703
27704 #. type: =head2
27705 #: ../tools/virt-win-reg.pl:497
27706 msgid "INSTALLING A SERVICE"
27707 msgstr ""
27708
27709 #. type: textblock
27710 #: ../tools/virt-win-reg.pl:499
27711 msgid ""
27712 "This section assumes you are familiar with Windows services, and you either "
27713 "have a program which handles the Windows Service Control Protocol directly "
27714 "or you want to run any program using a service wrapper like SrvAny or the "
27715 "free RHSrvAny."
27716 msgstr ""
27717
27718 #. type: textblock
27719 #: ../tools/virt-win-reg.pl:504
27720 msgid ""
27721 "First upload the program and optionally the service wrapper.  In this case "
27722 "the test program is called C<test.exe> and we are using the RHSrvAny "
27723 "wrapper:"
27724 msgstr ""
27725
27726 #. type: verbatim
27727 #: ../tools/virt-win-reg.pl:508
27728 #, no-wrap
27729 msgid ""
27730 " guestfish -i -d WindowsGuest <<EOF\n"
27731 "   upload rhsrvany.exe /rhsrvany.exe\n"
27732 "   upload test.exe /test.exe\n"
27733 " EOF\n"
27734 "\n"
27735 msgstr ""
27736
27737 #. type: textblock
27738 #: ../tools/virt-win-reg.pl:513
27739 msgid ""
27740 "Prepare a regedit file containing the registry changes.  In this example, "
27741 "the first registry change is needed for the service itself or the service "
27742 "wrapper (if used).  The second registry change is only needed because I am "
27743 "using the RHSrvAny service wrapper."
27744 msgstr ""
27745
27746 #. type: verbatim
27747 #: ../tools/virt-win-reg.pl:518
27748 #, no-wrap
27749 msgid ""
27750 " cat > service.reg <<'EOF'\n"
27751 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
27752 " \"Type\"=dword:00000010\n"
27753 " \"Start\"=dword:00000002\n"
27754 " \"ErrorControl\"=dword:00000001\n"
27755 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
27756 " \"DisplayName\"=\"RHSrvAny\"\n"
27757 " \"ObjectName\"=\"NetworkService\"\n"
27758 " \n"
27759 msgstr ""
27760
27761 #. type: verbatim
27762 #: ../tools/virt-win-reg.pl:527
27763 #, no-wrap
27764 msgid ""
27765 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
27766 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
27767 " \"PWD\"=\"c:\\\\Temp\"\n"
27768 " EOF\n"
27769 "\n"
27770 msgstr ""
27771
27772 #. type: textblock
27773 #: ../tools/virt-win-reg.pl:538
27774 msgid ""
27775 "For use of C<ControlSet001> see the section above in this manual page.  You "
27776 "may need to adjust this according to the control set that is in use by the "
27777 "guest."
27778 msgstr ""
27779
27780 #. type: textblock
27781 #: ../tools/virt-win-reg.pl:544
27782 msgid ""
27783 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
27784 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
27785 "privileged account."
27786 msgstr ""
27787
27788 #. type: textblock
27789 #: ../tools/virt-win-reg.pl:550
27790 msgid ""
27791 "For the meaning of the magic numbers, see this Microsoft KB article: "
27792 "L<http://support.microsoft.com/kb/103000>."
27793 msgstr ""
27794
27795 #. type: textblock
27796 #: ../tools/virt-win-reg.pl:555
27797 msgid "Update the registry:"
27798 msgstr ""
27799
27800 #. type: verbatim
27801 #: ../tools/virt-win-reg.pl:557
27802 #, no-wrap
27803 msgid ""
27804 " virt-win-reg --merge WindowsGuest service.reg\n"
27805 "\n"
27806 msgstr ""
27807
27808 #. type: textblock
27809 #: ../tools/virt-win-reg.pl:561
27810 msgid ""
27811 "Be careful when passing parameters containing C<\\> (backslash) in the "
27812 "shell.  Usually you will have to use 'single quotes' or double backslashes "
27813 "(but not both) to protect them from the shell."
27814 msgstr ""
27815
27816 #. type: textblock
27817 #: ../tools/virt-win-reg.pl:565
27818 msgid "Paths and value names are case-insensitive."
27819 msgstr ""
27820
27821 #. type: textblock
27822 #: ../tools/virt-win-reg.pl:574
27823 msgid ""
27824 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
27825 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
27826 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
27827 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
27828 msgstr ""
27829
27830 #. type: textblock
27831 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
27832 msgid ""
27833 "When reporting bugs, please enable debugging and capture the I<complete> "
27834 "output:"
27835 msgstr ""
27836
27837 #. type: verbatim
27838 #: ../tools/virt-win-reg.pl:592
27839 #, no-wrap
27840 msgid ""
27841 " export LIBGUESTFS_DEBUG=1\n"
27842 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
27843 "\n"
27844 msgstr ""
27845
27846 #. type: textblock
27847 #: ../tools/virt-win-reg.pl:595
27848 msgid ""
27849 "Attach /tmp/virt-win-reg.log to a new bug report at "
27850 "L<https://bugzilla.redhat.com/>"
27851 msgstr ""
27852
27853 #. type: textblock
27854 #: ../tools/virt-win-reg.pl:604 ../tools/virt-resize.pl:1510 ../tools/virt-make-fs.pl:570
27855 msgid "Copyright (C) 2010 Red Hat Inc."
27856 msgstr ""
27857
27858 #. type: textblock
27859 #: ../tools/virt-resize.pl:42
27860 msgid "virt-resize - Resize a virtual machine disk"
27861 msgstr ""
27862
27863 #. type: verbatim
27864 #: ../tools/virt-resize.pl:46
27865 #, no-wrap
27866 msgid ""
27867 " virt-resize [--resize /dev/sdaN=[+/-]<size>[%]]\n"
27868 "   [--expand /dev/sdaN] [--shrink /dev/sdaN]\n"
27869 "   [--ignore /dev/sdaN] [--delete /dev/sdaN] [...] indisk outdisk\n"
27870 "\n"
27871 msgstr ""
27872
27873 #. type: textblock
27874 #: ../tools/virt-resize.pl:52
27875 msgid ""
27876 "Virt-resize is a tool which can resize a virtual machine disk, making it "
27877 "larger or smaller overall, and resizing or deleting any partitions contained "
27878 "within."
27879 msgstr ""
27880
27881 #. type: textblock
27882 #: ../tools/virt-resize.pl:56
27883 msgid ""
27884 "Virt-resize B<cannot> resize disk images in-place.  Virt-resize B<should "
27885 "not> be used on live virtual machines - for consistent results, shut the "
27886 "virtual machine down before resizing it."
27887 msgstr ""
27888
27889 #. type: textblock
27890 #: ../tools/virt-resize.pl:60
27891 msgid ""
27892 "If you are not familiar with the associated tools: L<virt-filesystems(1)> "
27893 "and L<virt-df(1)>, we recommend you go and read those manual pages first."
27894 msgstr ""
27895
27896 #. type: textblock
27897 #: ../tools/virt-resize.pl:66
27898 msgid ""
27899 "Copy C<olddisk> to C<newdisk>, extending one of the guest's partitions to "
27900 "fill the extra 5GB of space."
27901 msgstr ""
27902
27903 #. type: verbatim
27904 #: ../tools/virt-resize.pl:69
27905 #, no-wrap
27906 msgid ""
27907 " truncate -r olddisk newdisk; truncate -s +5G newdisk\n"
27908 " virt-filesystems --long -h --all -a olddisk\n"
27909 " # Note \"/dev/sda2\" is a partition inside the \"olddisk\" file.\n"
27910 " virt-resize --expand /dev/sda2 olddisk newdisk\n"
27911 "\n"
27912 msgstr ""
27913
27914 #. type: textblock
27915 #: ../tools/virt-resize.pl:74
27916 msgid ""
27917 "As above, but make the /boot partition 200MB bigger, while giving the "
27918 "remaining space to /dev/sda2:"
27919 msgstr ""
27920
27921 #. type: verbatim
27922 #: ../tools/virt-resize.pl:77
27923 #, no-wrap
27924 msgid ""
27925 " virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 olddisk newdisk\n"
27926 "\n"
27927 msgstr ""
27928
27929 #. type: textblock
27930 #: ../tools/virt-resize.pl:79
27931 msgid "As above, but the output format will be uncompressed qcow2:"
27932 msgstr ""
27933
27934 #. type: verbatim
27935 #: ../tools/virt-resize.pl:81
27936 #, no-wrap
27937 msgid ""
27938 " qemu-img create -f qcow2 newdisk.qcow2 15G\n"
27939 " virt-resize --expand /dev/sda2 olddisk newdisk.qcow2\n"
27940 "\n"
27941 msgstr ""
27942
27943 #. type: =head1
27944 #: ../tools/virt-resize.pl:84
27945 msgid "DETAILED USAGE"
27946 msgstr ""
27947
27948 #. type: =head2
27949 #: ../tools/virt-resize.pl:86
27950 msgid "EXPANDING A VIRTUAL MACHINE DISK"
27951 msgstr ""
27952
27953 #. type: =item
27954 #: ../tools/virt-resize.pl:90
27955 msgid "1. Shut down the virtual machine"
27956 msgstr ""
27957
27958 #. type: =item
27959 #: ../tools/virt-resize.pl:92
27960 msgid "2. Locate input disk image"
27961 msgstr ""
27962
27963 #. type: textblock
27964 #: ../tools/virt-resize.pl:94
27965 msgid ""
27966 "Locate the input disk image (ie. the file or device on the host containing "
27967 "the guest's disk).  If the guest is managed by libvirt, you can use C<virsh "
27968 "dumpxml> like this to find the disk image name:"
27969 msgstr ""
27970
27971 #. type: verbatim
27972 #: ../tools/virt-resize.pl:98
27973 #, no-wrap
27974 msgid ""
27975 " # virsh dumpxml guestname | xpath /domain/devices/disk/source\n"
27976 " Found 1 nodes:\n"
27977 " -- NODE --\n"
27978 " <source dev=\"/dev/vg/lv_guest\" />\n"
27979 "\n"
27980 msgstr ""
27981
27982 #. type: =item
27983 #: ../tools/virt-resize.pl:103
27984 msgid "3. Look at current sizing"
27985 msgstr ""
27986
27987 #. type: textblock
27988 #: ../tools/virt-resize.pl:105
27989 msgid "Use L<virt-filesystems(1)> to display the current partitions and sizes:"
27990 msgstr ""
27991
27992 #. type: verbatim
27993 #: ../tools/virt-resize.pl:108
27994 #, no-wrap
27995 msgid ""
27996 " # virt-filesystems --long --parts --blkdevs -h -a /dev/vg/lv_guest\n"
27997 " Name       Type       Size  Parent\n"
27998 " /dev/sda1  partition  101M  /dev/sda\n"
27999 " /dev/sda2  partition  7.9G  /dev/sda\n"
28000 " /dev/sda   device     8.0G  -\n"
28001 "\n"
28002 msgstr ""
28003
28004 #. type: textblock
28005 #: ../tools/virt-resize.pl:114
28006 msgid ""
28007 "(This example is a virtual machine with an 8 GB disk which we would like to "
28008 "expand up to 10 GB)."
28009 msgstr ""
28010
28011 #. type: =item
28012 #: ../tools/virt-resize.pl:117
28013 msgid "4. Create output disk"
28014 msgstr ""
28015
28016 #. type: textblock
28017 #: ../tools/virt-resize.pl:119
28018 msgid ""
28019 "Virt-resize cannot do in-place disk modifications.  You have to have space "
28020 "to store the resized output disk."
28021 msgstr ""
28022
28023 #. type: textblock
28024 #: ../tools/virt-resize.pl:122
28025 msgid "To store the resized disk image in a file, create a file of a suitable size:"
28026 msgstr ""
28027
28028 #. type: verbatim
28029 #: ../tools/virt-resize.pl:125
28030 #, no-wrap
28031 msgid ""
28032 " # rm -f outdisk\n"
28033 " # truncate -s 10G outdisk\n"
28034 "\n"
28035 msgstr ""
28036
28037 #. type: textblock
28038 #: ../tools/virt-resize.pl:128
28039 msgid "Or use L<lvcreate(1)> to create a logical volume:"
28040 msgstr ""
28041
28042 #. type: verbatim
28043 #: ../tools/virt-resize.pl:130
28044 #, no-wrap
28045 msgid ""
28046 " # lvcreate -L 10G -n lv_name vg_name\n"
28047 "\n"
28048 msgstr ""
28049
28050 #. type: textblock
28051 #: ../tools/virt-resize.pl:132
28052 msgid "Or use L<virsh(1)> vol-create-as to create a libvirt storage volume:"
28053 msgstr ""
28054
28055 #. type: verbatim
28056 #: ../tools/virt-resize.pl:134
28057 #, no-wrap
28058 msgid ""
28059 " # virsh pool-list\n"
28060 " # virsh vol-create-as poolname newvol 10G\n"
28061 "\n"
28062 msgstr ""
28063
28064 #. type: =item
28065 #: ../tools/virt-resize.pl:137
28066 msgid "5. Resize"
28067 msgstr ""
28068
28069 #. type: textblock
28070 #: ../tools/virt-resize.pl:139
28071 msgid ""
28072 "virt-resize takes two mandatory parameters, the input disk (eg. device or "
28073 "file) and the output disk.  The output disk is the one created in the "
28074 "previous step."
28075 msgstr ""
28076
28077 #. type: verbatim
28078 #: ../tools/virt-resize.pl:143
28079 #, no-wrap
28080 msgid ""
28081 " # virt-resize indisk outdisk\n"
28082 "\n"
28083 msgstr ""
28084
28085 #. type: textblock
28086 #: ../tools/virt-resize.pl:145
28087 msgid ""
28088 "This command just copies disk image C<indisk> to disk image C<outdisk> "
28089 "I<without> resizing or changing any existing partitions.  If C<outdisk> is "
28090 "larger, then an extra, empty partition is created at the end of the disk "
28091 "covering the extra space.  If C<outdisk> is smaller, then it will give an "
28092 "error."
28093 msgstr ""
28094
28095 #. type: textblock
28096 #: ../tools/virt-resize.pl:151
28097 msgid ""
28098 "More realistically you'd want to expand existing partitions in the disk "
28099 "image by passing extra options (for the full list see the L</OPTIONS> "
28100 "section below)."
28101 msgstr ""
28102
28103 #. type: textblock
28104 #: ../tools/virt-resize.pl:155
28105 msgid ""
28106 "L</--expand> is the most useful option.  It expands the named partition "
28107 "within the disk to fill any extra space:"
28108 msgstr ""
28109
28110 #. type: verbatim
28111 #: ../tools/virt-resize.pl:158
28112 #, no-wrap
28113 msgid ""
28114 " # virt-resize --expand /dev/sda2 indisk outdisk\n"
28115 "\n"
28116 msgstr ""
28117
28118 #. type: textblock
28119 #: ../tools/virt-resize.pl:160
28120 msgid ""
28121 "(In this case, an extra partition is I<not> created at the end of the disk, "
28122 "because there will be no unused space)."
28123 msgstr ""
28124
28125 #. type: textblock
28126 #: ../tools/virt-resize.pl:163
28127 msgid ""
28128 "L</--resize> is the other commonly used option.  The following would "
28129 "increase the size of /dev/sda1 by 200M, and expand /dev/sda2 to fill the "
28130 "rest of the available space:"
28131 msgstr ""
28132
28133 #. type: verbatim
28134 #: ../tools/virt-resize.pl:167
28135 #, no-wrap
28136 msgid ""
28137 " # virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 \\\n"
28138 "     indisk outdisk\n"
28139 "\n"
28140 msgstr ""
28141
28142 #. type: textblock
28143 #: ../tools/virt-resize.pl:170
28144 msgid ""
28145 "If the expanded partition in the image contains a filesystem or LVM PV, then "
28146 "if virt-resize knows how, it will resize the contents, the equivalent of "
28147 "calling a command such as L<pvresize(8)>, L<resize2fs(8)> or "
28148 "L<ntfsresize(8)>.  However virt-resize does not know how to resize some "
28149 "filesystems, so you would have to online resize them after booting the "
28150 "guest."
28151 msgstr ""
28152
28153 #. type: textblock
28154 #: ../tools/virt-resize.pl:177
28155 msgid "Other options are covered below."
28156 msgstr ""
28157
28158 #. type: =item
28159 #: ../tools/virt-resize.pl:179
28160 msgid "6. Test"
28161 msgstr ""
28162
28163 #. type: textblock
28164 #: ../tools/virt-resize.pl:181
28165 msgid "Thoroughly test the new disk image I<before> discarding the old one."
28166 msgstr ""
28167
28168 #. type: textblock
28169 #: ../tools/virt-resize.pl:183
28170 msgid "If you are using libvirt, edit the XML to point at the new disk:"
28171 msgstr ""
28172
28173 #. type: verbatim
28174 #: ../tools/virt-resize.pl:185
28175 #, no-wrap
28176 msgid ""
28177 " # virsh edit guestname\n"
28178 "\n"
28179 msgstr ""
28180
28181 #. type: textblock
28182 #: ../tools/virt-resize.pl:187
28183 msgid ""
28184 "Change E<lt>source ...E<gt>, see "
28185 "L<http://libvirt.org/formatdomain.html#elementsDisks>"
28186 msgstr ""
28187
28188 #. type: textblock
28189 #: ../tools/virt-resize.pl:190
28190 msgid "Then start up the domain with the new, resized disk:"
28191 msgstr ""
28192
28193 #. type: verbatim
28194 #: ../tools/virt-resize.pl:192
28195 #, no-wrap
28196 msgid ""
28197 " # virsh start guestname\n"
28198 "\n"
28199 msgstr ""
28200
28201 #. type: textblock
28202 #: ../tools/virt-resize.pl:194
28203 msgid ""
28204 "and check that it still works.  See also the L</NOTES> section below for "
28205 "additional information."
28206 msgstr ""
28207
28208 #. type: =item
28209 #: ../tools/virt-resize.pl:197
28210 msgid "7. Resize LVs etc inside the guest"
28211 msgstr ""
28212
28213 #. type: textblock
28214 #: ../tools/virt-resize.pl:199
28215 msgid "(This can also be done offline using L<guestfish(1)>)"
28216 msgstr ""
28217
28218 #. type: textblock
28219 #: ../tools/virt-resize.pl:201
28220 msgid ""
28221 "Once the guest has booted you should see the new space available, at least "
28222 "for filesystems that virt-resize knows how to resize, and for PVs.  The user "
28223 "may need to resize LVs inside PVs, and also resize filesystem types that "
28224 "virt-resize does not know how to expand."
28225 msgstr ""
28226
28227 #. type: =head2
28228 #: ../tools/virt-resize.pl:208
28229 msgid "SHRINKING A VIRTUAL MACHINE DISK"
28230 msgstr ""
28231
28232 #. type: textblock
28233 #: ../tools/virt-resize.pl:210
28234 msgid ""
28235 "Shrinking is somewhat more complex than expanding, and only an overview is "
28236 "given here."
28237 msgstr ""
28238
28239 #. type: textblock
28240 #: ../tools/virt-resize.pl:213
28241 msgid ""
28242 "Firstly virt-resize will not attempt to shrink any partition content (PVs, "
28243 "filesystems).  The user has to shrink content before passing the disk image "
28244 "to virt-resize, and virt-resize will check that the content has been shrunk "
28245 "properly."
28246 msgstr ""
28247
28248 #. type: textblock
28249 #: ../tools/virt-resize.pl:218
28250 msgid "(Shrinking can also be done offline using L<guestfish(1)>)"
28251 msgstr ""
28252
28253 #. type: textblock
28254 #: ../tools/virt-resize.pl:220
28255 msgid ""
28256 "After shrinking PVs and filesystems, shut down the guest, and proceed with "
28257 "steps 3 and 4 above to allocate a new disk image."
28258 msgstr ""
28259
28260 #. type: textblock
28261 #: ../tools/virt-resize.pl:223
28262 msgid "Then run virt-resize with any of the C<--shrink> and/or C<--resize> options."
28263 msgstr ""
28264
28265 #. type: =head2
28266 #: ../tools/virt-resize.pl:226
28267 msgid "IGNORING OR DELETING PARTITIONS"
28268 msgstr ""
28269
28270 #. type: textblock
28271 #: ../tools/virt-resize.pl:228
28272 msgid ""
28273 "virt-resize also gives a convenient way to ignore or delete partitions when "
28274 "copying from the input disk to the output disk.  Ignoring a partition speeds "
28275 "up the copy where you don't care about the existing contents of a "
28276 "partition.  Deleting a partition removes it completely, but note that it "
28277 "also renumbers any partitions after the one which is deleted, which can "
28278 "leave some guests unbootable."
28279 msgstr ""
28280
28281 #. type: =head2
28282 #: ../tools/virt-resize.pl:235
28283 msgid "QCOW2 AND NON-SPARSE RAW FORMATS"
28284 msgstr ""
28285
28286 #. type: textblock
28287 #: ../tools/virt-resize.pl:237
28288 msgid ""
28289 "If the input disk is in qcow2 format, then you may prefer that the output is "
28290 "in qcow2 format as well.  Alternately, virt-resize can convert the format on "
28291 "the fly.  The output format is simply determined by the format of the empty "
28292 "output container that you provide.  Thus to create qcow2 output, use:"
28293 msgstr ""
28294
28295 #. type: verbatim
28296 #: ../tools/virt-resize.pl:243
28297 #, no-wrap
28298 msgid ""
28299 " qemu-img create [-c] -f qcow2 outdisk [size]\n"
28300 "\n"
28301 msgstr ""
28302
28303 #. type: textblock
28304 #: ../tools/virt-resize.pl:245
28305 msgid "instead of the truncate command (use C<-c> for a compressed disk)."
28306 msgstr ""
28307
28308 #. type: textblock
28309 #: ../tools/virt-resize.pl:247
28310 msgid "Similarly, to get non-sparse raw output use:"
28311 msgstr ""
28312
28313 #. type: verbatim
28314 #: ../tools/virt-resize.pl:249
28315 #, no-wrap
28316 msgid ""
28317 " fallocate -l size outdisk\n"
28318 "\n"
28319 msgstr ""
28320
28321 #. type: textblock
28322 #: ../tools/virt-resize.pl:251
28323 msgid ""
28324 "(on older systems that don't have the L<fallocate(1)> command use C<dd "
28325 "if=/dev/zero of=outdisk bs=1M count=..>)"
28326 msgstr ""
28327
28328 #. type: textblock
28329 #: ../tools/virt-resize.pl:264
28330 msgid "Display help."
28331 msgstr ""
28332
28333 #. type: =item
28334 #: ../tools/virt-resize.pl:278
28335 msgid "B<--resize part=size>"
28336 msgstr ""
28337
28338 #. type: textblock
28339 #: ../tools/virt-resize.pl:280
28340 msgid ""
28341 "Resize the named partition (expanding or shrinking it) so that it has the "
28342 "given size."
28343 msgstr ""
28344
28345 #. type: textblock
28346 #: ../tools/virt-resize.pl:283
28347 msgid ""
28348 "C<size> can be expressed as an absolute number followed by b/K/M/G/T/P/E to "
28349 "mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Petabytes or "
28350 "Exabytes; or as a percentage of the current size; or as a relative number or "
28351 "percentage.  For example:"
28352 msgstr ""
28353
28354 #. type: verbatim
28355 #: ../tools/virt-resize.pl:288
28356 #, no-wrap
28357 msgid ""
28358 " --resize /dev/sda2=10G\n"
28359 "\n"
28360 msgstr ""
28361
28362 #. type: verbatim
28363 #: ../tools/virt-resize.pl:290
28364 #, no-wrap
28365 msgid ""
28366 " --resize /dev/sda4=90%\n"
28367 "\n"
28368 msgstr ""
28369
28370 #. type: verbatim
28371 #: ../tools/virt-resize.pl:292
28372 #, no-wrap
28373 msgid ""
28374 " --resize /dev/sda2=+1G\n"
28375 "\n"
28376 msgstr ""
28377
28378 #. type: verbatim
28379 #: ../tools/virt-resize.pl:294
28380 #, no-wrap
28381 msgid ""
28382 " --resize /dev/sda2=-200M\n"
28383 "\n"
28384 msgstr ""
28385
28386 #. type: verbatim
28387 #: ../tools/virt-resize.pl:296
28388 #, no-wrap
28389 msgid ""
28390 " --resize /dev/sda1=+128K\n"
28391 "\n"
28392 msgstr ""
28393
28394 #. type: verbatim
28395 #: ../tools/virt-resize.pl:298
28396 #, no-wrap
28397 msgid ""
28398 " --resize /dev/sda1=+10%\n"
28399 "\n"
28400 msgstr ""
28401
28402 #. type: verbatim
28403 #: ../tools/virt-resize.pl:300
28404 #, no-wrap
28405 msgid ""
28406 " --resize /dev/sda1=-10%\n"
28407 "\n"
28408 msgstr ""
28409
28410 #. type: textblock
28411 #: ../tools/virt-resize.pl:302
28412 msgid ""
28413 "You can increase the size of any partition.  Virt-resize will expand the "
28414 "direct content of the partition if it knows how (see C<--expand> below)."
28415 msgstr ""
28416
28417 #. type: textblock
28418 #: ../tools/virt-resize.pl:306
28419 msgid ""
28420 "You can only I<decrease> the size of partitions that contain filesystems or "
28421 "PVs which have already been shrunk.  Virt-resize will check this has been "
28422 "done before proceeding, or else will print an error (see also "
28423 "C<--resize-force>)."
28424 msgstr ""
28425
28426 #. type: textblock
28427 #: ../tools/virt-resize.pl:311 ../tools/virt-resize.pl:403 ../tools/virt-resize.pl:420
28428 msgid "You can give this option multiple times."
28429 msgstr ""
28430
28431 #. type: =item
28432 #: ../tools/virt-resize.pl:317
28433 msgid "B<--resize-force part=size>"
28434 msgstr ""
28435
28436 #. type: textblock
28437 #: ../tools/virt-resize.pl:319
28438 msgid ""
28439 "This is the same as C<--resize> except that it will let you decrease the "
28440 "size of any partition.  Generally this means you will lose any data which "
28441 "was at the end of the partition you shrink, but you may not care about that "
28442 "(eg. if shrinking an unused partition, or if you can easily recreate it such "
28443 "as a swap partition)."
28444 msgstr ""
28445
28446 #. type: textblock
28447 #: ../tools/virt-resize.pl:325
28448 msgid "See also the C<--ignore> option."
28449 msgstr ""
28450
28451 #. type: =item
28452 #: ../tools/virt-resize.pl:331
28453 msgid "B<--expand part>"
28454 msgstr ""
28455
28456 #. type: textblock
28457 #: ../tools/virt-resize.pl:333
28458 msgid ""
28459 "Expand the named partition so it uses up all extra space (space left over "
28460 "after any other resize changes that you request have been done)."
28461 msgstr ""
28462
28463 #. type: textblock
28464 #: ../tools/virt-resize.pl:336
28465 msgid ""
28466 "If virt-resize knows how, it will expand the direct content of the "
28467 "partition.  For example, if the partition is an LVM PV, it will expand the "
28468 "PV to fit (like calling L<pvresize(8)>).  Virt-resize leaves any other "
28469 "content it doesn't know about alone."
28470 msgstr ""
28471
28472 #. type: textblock
28473 #: ../tools/virt-resize.pl:341
28474 msgid "Currently virt-resize can resize:"
28475 msgstr ""
28476
28477 #. type: textblock
28478 #: ../tools/virt-resize.pl:347
28479 msgid ""
28480 "ext2, ext3 and ext4 filesystems when they are contained directly inside a "
28481 "partition."
28482 msgstr ""
28483
28484 #. type: textblock
28485 #: ../tools/virt-resize.pl:352
28486 msgid ""
28487 "NTFS filesystems contained directly in a partition, if libguestfs was "
28488 "compiled with support for NTFS."
28489 msgstr ""
28490
28491 #. type: textblock
28492 #: ../tools/virt-resize.pl:355
28493 msgid ""
28494 "The filesystem must have been shut down consistently last time it was used.  "
28495 "Additionally, L<ntfsresize(8)> marks the resized filesystem as requiring a "
28496 "consistency check, so at the first boot after resizing Windows will check "
28497 "the disk."
28498 msgstr ""
28499
28500 #. type: textblock
28501 #: ../tools/virt-resize.pl:362
28502 msgid ""
28503 "LVM PVs (physical volumes).  virt-resize does not usually resize anything "
28504 "inside the PV, but see the C<--LV-expand> option.  The user could also "
28505 "resize LVs as desired after boot."
28506 msgstr ""
28507
28508 #. type: textblock
28509 #: ../tools/virt-resize.pl:368 ../tools/virt-resize.pl:390
28510 msgid "Note that you cannot use C<--expand> and C<--shrink> together."
28511 msgstr ""
28512
28513 #. type: =item
28514 #: ../tools/virt-resize.pl:374
28515 msgid "B<--shrink part>"
28516 msgstr ""
28517
28518 #. type: textblock
28519 #: ../tools/virt-resize.pl:376
28520 msgid ""
28521 "Shrink the named partition until the overall disk image fits in the "
28522 "destination.  The named partition B<must> contain a filesystem or PV which "
28523 "has already been shrunk using another tool (eg. L<guestfish(1)> or other "
28524 "online tools).  Virt-resize will check this and give an error if it has not "
28525 "been done."
28526 msgstr ""
28527
28528 #. type: textblock
28529 #: ../tools/virt-resize.pl:382
28530 msgid ""
28531 "The amount by which the overall disk must be shrunk (after carrying out all "
28532 "other operations requested by the user) is called the \"deficit\".  For "
28533 "example, a straight copy (assume no other operations)  from a 5GB disk image "
28534 "to a 4GB disk image results in a 1GB deficit.  In this case, virt-resize "
28535 "would give an error unless the user specified a partition to shrink and that "
28536 "partition had more than a gigabyte of free space."
28537 msgstr ""
28538
28539 #. type: =item
28540 #: ../tools/virt-resize.pl:396
28541 msgid "B<--ignore part>"
28542 msgstr ""
28543
28544 #. type: textblock
28545 #: ../tools/virt-resize.pl:398
28546 msgid ""
28547 "Ignore the named partition.  Effectively this means the partition is "
28548 "allocated on the destination disk, but the content is not copied across from "
28549 "the source disk.  The content of the partition will be blank (all zero "
28550 "bytes)."
28551 msgstr ""
28552
28553 #. type: =item
28554 #: ../tools/virt-resize.pl:409
28555 msgid "B<--delete part>"
28556 msgstr ""
28557
28558 #. type: textblock
28559 #: ../tools/virt-resize.pl:411
28560 msgid ""
28561 "Delete the named partition.  It would be more accurate to describe this as "
28562 "\"don't copy it over\", since virt-resize doesn't do in-place changes and "
28563 "the original disk image is left intact."
28564 msgstr ""
28565
28566 #. type: textblock
28567 #: ../tools/virt-resize.pl:415
28568 msgid ""
28569 "Note that when you delete a partition, then anything contained in the "
28570 "partition is also deleted.  Furthermore, this causes any partitions that "
28571 "come after to be I<renumbered>, which can easily make your guest unbootable."
28572 msgstr ""
28573
28574 #. type: =item
28575 #: ../tools/virt-resize.pl:426
28576 msgid "B<--LV-expand logvol>"
28577 msgstr ""
28578
28579 #. type: textblock
28580 #: ../tools/virt-resize.pl:428
28581 msgid ""
28582 "This takes the logical volume and, as a final step, expands it to fill all "
28583 "the space available in its volume group.  A typical usage, assuming a Linux "
28584 "guest with a single PV C</dev/sda2> and a root device called "
28585 "C</dev/vg_guest/lv_root> would be:"
28586 msgstr ""
28587
28588 #. type: verbatim
28589 #: ../tools/virt-resize.pl:433
28590 #, no-wrap
28591 msgid ""
28592 " virt-resize indisk outdisk \\\n"
28593 "   --expand /dev/sda2 --LV-expand /dev/vg_guest/lv_root\n"
28594 "\n"
28595 msgstr ""
28596
28597 #. type: textblock
28598 #: ../tools/virt-resize.pl:436
28599 msgid ""
28600 "This would first expand the partition (and PV), and then expand the root "
28601 "device to fill the extra space in the PV."
28602 msgstr ""
28603
28604 #. type: textblock
28605 #: ../tools/virt-resize.pl:439
28606 msgid ""
28607 "The contents of the LV are also resized if virt-resize knows how to do "
28608 "that.  You can stop virt-resize from trying to expand the content by using "
28609 "the option C<--no-expand-content>."
28610 msgstr ""
28611
28612 #. type: textblock
28613 #: ../tools/virt-resize.pl:443
28614 msgid "Use L<virt-filesystems(1)> to list the filesystems in the guest."
28615 msgstr ""
28616
28617 #. type: textblock
28618 #: ../tools/virt-resize.pl:446
28619 msgid ""
28620 "You can give this option multiple times, I<but> it doesn't make sense to do "
28621 "this unless the logical volumes you specify are all in different volume "
28622 "groups."
28623 msgstr ""
28624
28625 #. type: =item
28626 #: ../tools/virt-resize.pl:454
28627 msgid "B<--no-copy-boot-loader>"
28628 msgstr ""
28629
28630 #. type: textblock
28631 #: ../tools/virt-resize.pl:456
28632 msgid ""
28633 "By default, virt-resize copies over some sectors at the start of the disk "
28634 "(up to the beginning of the first partition).  Commonly these sectors "
28635 "contain the Master Boot Record (MBR) and the boot loader, and are required "
28636 "in order for the guest to boot correctly."
28637 msgstr ""
28638
28639 #. type: textblock
28640 #: ../tools/virt-resize.pl:461
28641 msgid ""
28642 "If you specify this flag, then this initial copy is not done.  You may need "
28643 "to reinstall the boot loader in this case."
28644 msgstr ""
28645
28646 #. type: =item
28647 #: ../tools/virt-resize.pl:469
28648 msgid "B<--no-extra-partition>"
28649 msgstr ""
28650
28651 #. type: textblock
28652 #: ../tools/virt-resize.pl:471
28653 msgid ""
28654 "By default, virt-resize creates an extra partition if there is any extra, "
28655 "unused space after all resizing has happened.  Use this option to prevent "
28656 "the extra partition from being created.  If you do this then the extra space "
28657 "will be inaccessible until you run fdisk, parted, or some other partitioning "
28658 "tool in the guest."
28659 msgstr ""
28660
28661 #. type: textblock
28662 #: ../tools/virt-resize.pl:477
28663 msgid ""
28664 "Note that if the surplus space is smaller than 10 MB, no extra partition "
28665 "will be created."
28666 msgstr ""
28667
28668 #. type: =item
28669 #: ../tools/virt-resize.pl:484
28670 msgid "B<--no-expand-content>"
28671 msgstr ""
28672
28673 #. type: textblock
28674 #: ../tools/virt-resize.pl:486
28675 msgid ""
28676 "By default, virt-resize will try to expand the direct contents of "
28677 "partitions, if it knows how (see C<--expand> option above)."
28678 msgstr ""
28679
28680 #. type: textblock
28681 #: ../tools/virt-resize.pl:489
28682 msgid ""
28683 "If you give the C<--no-expand-content> option then virt-resize will not "
28684 "attempt this."
28685 msgstr ""
28686
28687 #. type: =item
28688 #: ../tools/virt-resize.pl:496
28689 msgid "B<-d> | B<--debug>"
28690 msgstr ""
28691
28692 #. type: =item
28693 #: ../tools/virt-resize.pl:504
28694 msgid "B<-n> | B<--dryrun>"
28695 msgstr ""
28696
28697 #. type: textblock
28698 #: ../tools/virt-resize.pl:506
28699 msgid "Print a summary of what would be done, but don't do anything."
28700 msgstr ""
28701
28702 #. type: =item
28703 #: ../tools/virt-resize.pl:512
28704 msgid "B<-q> | B<--quiet>"
28705 msgstr ""
28706
28707 #. type: textblock
28708 #: ../tools/virt-resize.pl:514
28709 msgid "Don't print the summary."
28710 msgstr ""
28711
28712 #. type: textblock
28713 #: ../tools/virt-resize.pl:522
28714 msgid ""
28715 "Specify the format of the input disk image.  If this flag is not given then "
28716 "it is auto-detected from the image itself."
28717 msgstr ""
28718
28719 #. type: textblock
28720 #: ../tools/virt-resize.pl:528
28721 msgid ""
28722 "Note that this option I<does not> affect the output format.  See L</QCOW2 "
28723 "AND NON-SPARSE RAW FORMATS>."
28724 msgstr ""
28725
28726 #. type: =item
28727 #: ../tools/virt-resize.pl:535
28728 msgid "B<--output-format> raw"
28729 msgstr ""
28730
28731 #. type: textblock
28732 #: ../tools/virt-resize.pl:537
28733 msgid ""
28734 "Specify the format of the output disk image.  If this flag is not given then "
28735 "it is auto-detected from the image itself."
28736 msgstr ""
28737
28738 #. type: textblock
28739 #: ../tools/virt-resize.pl:543
28740 msgid ""
28741 "Note that you still need to create the output disk with the right format.  "
28742 "See L</QCOW2 AND NON-SPARSE RAW FORMATS>."
28743 msgstr ""
28744
28745 #. type: =head1
28746 #: ../tools/virt-resize.pl:1419
28747 msgid "NOTES"
28748 msgstr ""
28749
28750 #. type: =head2
28751 #: ../tools/virt-resize.pl:1421
28752 msgid "\"Partition 1 does not end on cylinder boundary.\""
28753 msgstr ""
28754
28755 #. type: textblock
28756 #: ../tools/virt-resize.pl:1423
28757 msgid ""
28758 "Virt-resize aligns partitions to multiples of 64 sectors.  Usually this "
28759 "means the partitions will not be aligned to the ancient CHS geometry.  "
28760 "However CHS geometry is meaningless for disks manufactured since the early "
28761 "1990s, and doubly so for virtual hard drives.  Alignment of partitions to "
28762 "cylinders is not required by any modern operating system."
28763 msgstr ""
28764
28765 #. type: =head2
28766 #: ../tools/virt-resize.pl:1430
28767 msgid "RESIZING WINDOWS VIRTUAL MACHINES"
28768 msgstr ""
28769
28770 #. type: textblock
28771 #: ../tools/virt-resize.pl:1432
28772 msgid ""
28773 "In Windows Vista and later versions, Microsoft switched to using a separate "
28774 "boot partition.  In these VMs, typically C</dev/sda1> is the boot partition "
28775 "and C</dev/sda2> is the main (C:) drive.  We have not had any luck resizing "
28776 "the boot partition.  Doing so seems to break the guest completely.  However "
28777 "expanding the second partition (ie. C: drive) should work."
28778 msgstr ""
28779
28780 #. type: textblock
28781 #: ../tools/virt-resize.pl:1439
28782 msgid ""
28783 "Windows may initiate a lengthy \"chkdsk\" on first boot after a resize, if "
28784 "NTFS partitions have been expanded.  This is just a safety check and (unless "
28785 "it find errors) is nothing to worry about."
28786 msgstr ""
28787
28788 #. type: =head2
28789 #: ../tools/virt-resize.pl:1443
28790 msgid "GUEST BOOT STUCK AT \"GRUB\""
28791 msgstr ""
28792
28793 #. type: textblock
28794 #: ../tools/virt-resize.pl:1445
28795 msgid ""
28796 "If a Linux guest does not boot after resizing, and the boot is stuck after "
28797 "printing C<GRUB> on the console, try reinstalling grub.  This sometimes "
28798 "happens on older (RHEL 5-era) guests, for reasons we don't fully understand, "
28799 "although we think is to do with partition alignment."
28800 msgstr ""
28801
28802 #. type: verbatim
28803 #: ../tools/virt-resize.pl:1450
28804 #, no-wrap
28805 msgid ""
28806 " guestfish -i -a newdisk\n"
28807 " ><fs> cat /boot/grub/device.map\n"
28808 " # check the contents of this file are sensible or\n"
28809 " # edit the file if necessary\n"
28810 " ><fs> grub-install / /dev/vda\n"
28811 " ><fs> exit\n"
28812 "\n"
28813 msgstr ""
28814
28815 #. type: textblock
28816 #: ../tools/virt-resize.pl:1457
28817 msgid ""
28818 "For more flexible guest reconfiguration, including if you need to specify "
28819 "other parameters to grub-install, use L<virt-rescue(1)>."
28820 msgstr ""
28821
28822 #. type: =head1
28823 #: ../tools/virt-resize.pl:1460
28824 msgid "ALTERNATIVE TOOLS"
28825 msgstr ""
28826
28827 #. type: textblock
28828 #: ../tools/virt-resize.pl:1462
28829 msgid ""
28830 "There are several proprietary tools for resizing partitions.  We won't "
28831 "mention any here."
28832 msgstr ""
28833
28834 #. type: textblock
28835 #: ../tools/virt-resize.pl:1465
28836 msgid ""
28837 "L<parted(8)> and its graphical shell gparted can do some types of resizing "
28838 "operations on disk images.  They can resize and move partitions, but I don't "
28839 "think they can do anything with the contents, and they certainly don't "
28840 "understand LVM."
28841 msgstr ""
28842
28843 #. type: textblock
28844 #: ../tools/virt-resize.pl:1470
28845 msgid ""
28846 "L<guestfish(1)> can do everything that virt-resize can do and a lot more, "
28847 "but at a much lower level.  You will probably end up hand-calculating sector "
28848 "offsets, which is something that virt-resize was designed to avoid.  If you "
28849 "want to see the guestfish-equivalent commands that virt-resize runs, use the "
28850 "C<--debug> flag."
28851 msgstr ""
28852
28853 #. type: textblock
28854 #: ../tools/virt-resize.pl:1485
28855 msgid ""
28856 "L<virt-filesystems(1)>, L<virt-df(1)>, L<guestfs(3)>, L<guestfish(1)>, "
28857 "L<lvm(8)>, L<pvresize(8)>, L<lvresize(8)>, L<resize2fs(8)>, "
28858 "L<ntfsresize(8)>, L<virsh(1)>, L<parted(8)>, L<truncate(1)>, "
28859 "L<fallocate(1)>, L<grub(8)>, L<grub-install(8)>, L<virt-rescue(1)>, "
28860 "L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
28861 msgstr ""
28862
28863 #. type: textblock
28864 #: ../tools/virt-list-filesystems.pl:32
28865 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
28866 msgstr ""
28867
28868 #. type: verbatim
28869 #: ../tools/virt-list-filesystems.pl:36
28870 #, no-wrap
28871 msgid ""
28872 " virt-list-filesystems [--options] domname\n"
28873 "\n"
28874 msgstr ""
28875
28876 #. type: verbatim
28877 #: ../tools/virt-list-filesystems.pl:38
28878 #, no-wrap
28879 msgid ""
28880 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
28881 "\n"
28882 msgstr ""
28883
28884 #. type: textblock
28885 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
28886 msgid ""
28887 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
28888 "replacement."
28889 msgstr ""
28890
28891 #. type: textblock
28892 #: ../tools/virt-list-filesystems.pl:45
28893 msgid ""
28894 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
28895 "are contained in a virtual machine or disk image."
28896 msgstr ""
28897
28898 #. type: textblock
28899 #: ../tools/virt-list-filesystems.pl:49
28900 msgid ""
28901 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
28902 "functionality.  For more complex cases you should look at the "
28903 "L<guestfish(1)> tool."
28904 msgstr ""
28905
28906 #. type: =item
28907 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
28908 msgid "B<-l> | B<--long>"
28909 msgstr ""
28910
28911 #. type: textblock
28912 #: ../tools/virt-list-filesystems.pl:108
28913 msgid ""
28914 "With this option, C<virt-list-filesystems> displays the type of each "
28915 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
28916 msgstr ""
28917
28918 #. type: =item
28919 #: ../tools/virt-list-filesystems.pl:115
28920 msgid "B<-a> | B<--all>"
28921 msgstr ""
28922
28923 #. type: textblock
28924 #: ../tools/virt-list-filesystems.pl:117
28925 msgid ""
28926 "Normally we only show mountable filesystems.  If this option is given then "
28927 "swap devices are shown too."
28928 msgstr ""
28929
28930 #. type: textblock
28931 #: ../tools/virt-list-filesystems.pl:191
28932 msgid ""
28933 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
28934 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
28935 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
28936 msgstr ""
28937
28938 #. type: textblock
28939 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:298
28940 msgid "Copyright (C) 2009 Red Hat Inc."
28941 msgstr ""
28942
28943 #. type: textblock
28944 #: ../tools/virt-tar.pl:33
28945 msgid "virt-tar - Extract or upload files to a virtual machine"
28946 msgstr ""
28947
28948 #. type: verbatim
28949 #: ../tools/virt-tar.pl:37
28950 #, no-wrap
28951 msgid ""
28952 " virt-tar [--options] -x domname directory tarball\n"
28953 "\n"
28954 msgstr ""
28955
28956 #. type: verbatim
28957 #: ../tools/virt-tar.pl:39
28958 #, no-wrap
28959 msgid ""
28960 " virt-tar [--options] -u domname tarball directory\n"
28961 "\n"
28962 msgstr ""
28963
28964 #. type: verbatim
28965 #: ../tools/virt-tar.pl:41
28966 #, no-wrap
28967 msgid ""
28968 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
28969 "\n"
28970 msgstr ""
28971
28972 #. type: verbatim
28973 #: ../tools/virt-tar.pl:43
28974 #, no-wrap
28975 msgid ""
28976 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
28977 "\n"
28978 msgstr ""
28979
28980 #. type: textblock
28981 #: ../tools/virt-tar.pl:47
28982 msgid "Download C</home> from the VM into a local tarball:"
28983 msgstr ""
28984
28985 #. type: verbatim
28986 #: ../tools/virt-tar.pl:49
28987 #, no-wrap
28988 msgid ""
28989 " virt-tar -x domname /home home.tar\n"
28990 "\n"
28991 msgstr ""
28992
28993 #. type: verbatim
28994 #: ../tools/virt-tar.pl:51
28995 #, no-wrap
28996 msgid ""
28997 " virt-tar -zx domname /home home.tar.gz\n"
28998 "\n"
28999 msgstr ""
29000
29001 #. type: textblock
29002 #: ../tools/virt-tar.pl:53
29003 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29004 msgstr ""
29005
29006 #. type: verbatim
29007 #: ../tools/virt-tar.pl:55
29008 #, no-wrap
29009 msgid ""
29010 " virt-tar -u domname uploadstuff.tar /tmp\n"
29011 "\n"
29012 msgstr ""
29013
29014 #. type: verbatim
29015 #: ../tools/virt-tar.pl:57
29016 #, no-wrap
29017 msgid ""
29018 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29019 "\n"
29020 msgstr ""
29021
29022 #. type: textblock
29023 #: ../tools/virt-tar.pl:61
29024 msgid ""
29025 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
29026 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29027 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29028 msgstr ""
29029
29030 #. type: textblock
29031 #: ../tools/virt-tar.pl:66
29032 msgid ""
29033 "You can use C<-x> (extract) on live virtual machines, but you might get "
29034 "inconsistent results or errors if there is filesystem activity inside the "
29035 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29036 "work, but the only way to guarantee consistent results is if the virtual "
29037 "machine is shut down."
29038 msgstr ""
29039
29040 #. type: textblock
29041 #: ../tools/virt-tar.pl:74
29042 msgid ""
29043 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29044 "parts of a guest filesystem.  There are many possibilities: making backups, "
29045 "uploading data files, snooping on guest activity, fixing or customizing "
29046 "guests, etc."
29047 msgstr ""
29048
29049 #. type: textblock
29050 #: ../tools/virt-tar.pl:79
29051 msgid ""
29052 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29053 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29054 "should look at the L<guestfish(1)> tool."
29055 msgstr ""
29056
29057 #. type: textblock
29058 #: ../tools/virt-tar.pl:83
29059 msgid ""
29060 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
29061 "its contents (recursively) from the virtual machine into a local tarball.  "
29062 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
29063 "virtual machine.  You cannot use these two options together."
29064 msgstr ""
29065
29066 #. type: textblock
29067 #: ../tools/virt-tar.pl:89
29068 msgid ""
29069 "In addition, you may need to use the C<-z> (gZip) option to enable "
29070 "compression.  When uploading, you have to specify C<-z> if the upload file "
29071 "is compressed because virt-tar won't detect this on its own."
29072 msgstr ""
29073
29074 #. type: textblock
29075 #: ../tools/virt-tar.pl:93
29076 msgid ""
29077 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29078 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29079 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29080 "the L<libguestfs(3)> API)."
29081 msgstr ""
29082
29083 #. type: =item
29084 #: ../tools/virt-tar.pl:151
29085 msgid "B<-x> | B<--extract> | B<--download>"
29086 msgstr ""
29087
29088 #. type: =item
29089 #: ../tools/virt-tar.pl:153
29090 msgid "B<-u> | B<--upload>"
29091 msgstr ""
29092
29093 #. type: textblock
29094 #: ../tools/virt-tar.pl:155
29095 msgid ""
29096 "Use C<-x> to extract (download) a directory from a virtual machine to a "
29097 "local tarball."
29098 msgstr ""
29099
29100 #. type: textblock
29101 #: ../tools/virt-tar.pl:158
29102 msgid ""
29103 "Use C<-u> to upload and unpack from a local tarball into a virtual machine.  "
29104 "Please read the L</WARNING> section above before using this option."
29105 msgstr ""
29106
29107 #. type: textblock
29108 #: ../tools/virt-tar.pl:162
29109 msgid "You must specify exactly one of these options."
29110 msgstr ""
29111
29112 #. type: =item
29113 #: ../tools/virt-tar.pl:168
29114 msgid "B<-z> | B<--gzip>"
29115 msgstr ""
29116
29117 #. type: textblock
29118 #: ../tools/virt-tar.pl:170
29119 msgid "Specify that the input or output tarball is gzip-compressed."
29120 msgstr ""
29121
29122 #. type: textblock
29123 #: ../tools/virt-tar.pl:283
29124 msgid ""
29125 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29126 "L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29127 "L<http://libguestfs.org/>."
29128 msgstr ""
29129
29130 #. type: textblock
29131 #: ../tools/virt-make-fs.pl:37
29132 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29133 msgstr ""
29134
29135 #. type: verbatim
29136 #: ../tools/virt-make-fs.pl:41
29137 #, no-wrap
29138 msgid ""
29139 " virt-make-fs [--options] input.tar output.img\n"
29140 "\n"
29141 msgstr ""
29142
29143 #. type: verbatim
29144 #: ../tools/virt-make-fs.pl:43
29145 #, no-wrap
29146 msgid ""
29147 " virt-make-fs [--options] input.tar.gz output.img\n"
29148 "\n"
29149 msgstr ""
29150
29151 #. type: verbatim
29152 #: ../tools/virt-make-fs.pl:45
29153 #, no-wrap
29154 msgid ""
29155 " virt-make-fs [--options] directory output.img\n"
29156 "\n"
29157 msgstr ""
29158
29159 #. type: textblock
29160 #: ../tools/virt-make-fs.pl:49
29161 msgid ""
29162 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29163 "archive or some files in a directory.  It is similar to tools like "
29164 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29165 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29166 "useful if you want to attach these filesystems to existing virtual machines "
29167 "(eg. to import large amounts of read-only data to a VM)."
29168 msgstr ""
29169
29170 #. type: textblock
29171 #: ../tools/virt-make-fs.pl:57
29172 msgid "Basic usage is:"
29173 msgstr ""
29174
29175 #. type: verbatim
29176 #: ../tools/virt-make-fs.pl:59
29177 #, no-wrap
29178 msgid ""
29179 " virt-make-fs input output\n"
29180 "\n"
29181 msgstr ""
29182
29183 #. type: textblock
29184 #: ../tools/virt-make-fs.pl:61
29185 msgid ""
29186 "where C<input> is either a directory containing files that you want to add, "
29187 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29188 "C<output> is a disk image.  The input type is detected automatically.  The "
29189 "output disk image defaults to a raw ext2 image unless you specify extra "
29190 "flags (see L</OPTIONS> below)."
29191 msgstr ""
29192
29193 #. type: =head2
29194 #: ../tools/virt-make-fs.pl:67
29195 msgid "EXTRA SPACE"
29196 msgstr ""
29197
29198 #. type: textblock
29199 #: ../tools/virt-make-fs.pl:69
29200 msgid ""
29201 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29202 "the files that it contains, but might have extra space.  Depending on how "
29203 "you are going to use the output, you might think this extra space is wasted "
29204 "and want to minimize it, or you might want to leave space so that more files "
29205 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29206 "but you can use the C<--size> flag to leave space in the filesystem if you "
29207 "want it."
29208 msgstr ""
29209
29210 #. type: textblock
29211 #: ../tools/virt-make-fs.pl:77
29212 msgid ""
29213 "An alternative way to leave extra space but not make the output image any "
29214 "bigger is to use an alternative disk image format (instead of the default "
29215 "\"raw\" format).  Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
29216 "image format (check your hypervisor supports this before using it).  This "
29217 "allows you to choose a large C<--size> but the extra space won't actually be "
29218 "allocated in the image until you try to store something in it."
29219 msgstr ""
29220
29221 #. type: textblock
29222 #: ../tools/virt-make-fs.pl:85
29223 msgid ""
29224 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29225 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29226 "to build another image from scratch."
29227 msgstr ""
29228
29229 #. type: =head3
29230 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29231 msgid "EXAMPLE"
29232 msgstr ""
29233
29234 #. type: verbatim
29235 #: ../tools/virt-make-fs.pl:91
29236 #, no-wrap
29237 msgid ""
29238 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29239 "\n"
29240 msgstr ""
29241
29242 #. type: =head2
29243 #: ../tools/virt-make-fs.pl:93
29244 msgid "FILESYSTEM TYPE"
29245 msgstr ""
29246
29247 #. type: textblock
29248 #: ../tools/virt-make-fs.pl:95
29249 msgid ""
29250 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29251 "libguestfs supports can be used (but I<not> read-only formats like "
29252 "ISO9660).  Here are some of the more common choices:"
29253 msgstr ""
29254
29255 #. type: =item
29256 #: ../tools/virt-make-fs.pl:101
29257 msgid "I<ext3>"
29258 msgstr ""
29259
29260 #. type: textblock
29261 #: ../tools/virt-make-fs.pl:103
29262 msgid ""
29263 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29264 "you are not going to use the filesystem in a way that requires the journal, "
29265 "then this is just wasted overhead."
29266 msgstr ""
29267
29268 #. type: =item
29269 #: ../tools/virt-make-fs.pl:107
29270 msgid "I<ntfs> or I<vfat>"
29271 msgstr ""
29272
29273 #. type: textblock
29274 #: ../tools/virt-make-fs.pl:109
29275 msgid "Useful if exporting data to a Windows guest."
29276 msgstr ""
29277
29278 #. type: textblock
29279 #: ../tools/virt-make-fs.pl:111
29280 msgid ""
29281 "I<Note for vfat>: The tar archive or local directory must only contain files "
29282 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29283 "program running within libguestfs is unable to change the ownership of "
29284 "non-root files, since vfat itself does not support this."
29285 msgstr ""
29286
29287 #. type: =item
29288 #: ../tools/virt-make-fs.pl:116
29289 msgid "I<minix>"
29290 msgstr ""
29291
29292 #. type: textblock
29293 #: ../tools/virt-make-fs.pl:118
29294 msgid ""
29295 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29296 "total filesystem size."
29297 msgstr ""
29298
29299 #. type: verbatim
29300 #: ../tools/virt-make-fs.pl:125
29301 #, no-wrap
29302 msgid ""
29303 " virt-make-fs --type=minix input minixfs.img\n"
29304 "\n"
29305 msgstr ""
29306
29307 #. type: =head2
29308 #: ../tools/virt-make-fs.pl:127
29309 msgid "TO PARTITION OR NOT TO PARTITION"
29310 msgstr ""
29311
29312 #. type: textblock
29313 #: ../tools/virt-make-fs.pl:129
29314 msgid "Optionally virt-make-fs can add a partition table to the output disk."
29315 msgstr ""
29316
29317 #. type: textblock
29318 #: ../tools/virt-make-fs.pl:131
29319 msgid ""
29320 "Adding a partition can make the disk image more compatible with certain "
29321 "virtualized operating systems which don't expect to see a filesystem "
29322 "directly located on a block device (Linux doesn't care and will happily "
29323 "handle both types)."
29324 msgstr ""
29325
29326 #. type: textblock
29327 #: ../tools/virt-make-fs.pl:136
29328 msgid ""
29329 "On the other hand, if you have a partition table then the output image is no "
29330 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
29331 "directly on a partitioned disk image.  (However libguestfs tools such as "
29332 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
29333 msgstr ""
29334
29335 #. type: textblock
29336 #: ../tools/virt-make-fs.pl:144
29337 msgid "Add an MBR partition:"
29338 msgstr ""
29339
29340 #. type: verbatim
29341 #: ../tools/virt-make-fs.pl:146
29342 #, no-wrap
29343 msgid ""
29344 " virt-make-fs --partition -- input disk.img\n"
29345 "\n"
29346 msgstr ""
29347
29348 #. type: textblock
29349 #: ../tools/virt-make-fs.pl:148
29350 msgid ""
29351 "If the output disk image could be terabyte-sized or larger, it's better to "
29352 "use an EFI/GPT-compatible partition table:"
29353 msgstr ""
29354
29355 #. type: verbatim
29356 #: ../tools/virt-make-fs.pl:151
29357 #, no-wrap
29358 msgid ""
29359 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
29360 "\n"
29361 msgstr ""
29362
29363 #. type: textblock
29364 #: ../tools/virt-make-fs.pl:179
29365 msgid "Enable debugging information."
29366 msgstr ""
29367
29368 #. type: =item
29369 #: ../tools/virt-make-fs.pl:185
29370 msgid "B<--size=E<lt>NE<gt>>"
29371 msgstr ""
29372
29373 #. type: =item
29374 #: ../tools/virt-make-fs.pl:187
29375 msgid "B<--size=+E<lt>NE<gt>>"
29376 msgstr ""
29377
29378 #. type: =item
29379 #: ../tools/virt-make-fs.pl:189
29380 msgid "B<-s E<lt>NE<gt>>"
29381 msgstr ""
29382
29383 #. type: =item
29384 #: ../tools/virt-make-fs.pl:191
29385 msgid "B<-s +E<lt>NE<gt>>"
29386 msgstr ""
29387
29388 #. type: textblock
29389 #: ../tools/virt-make-fs.pl:193
29390 msgid "Use the C<--size> (or C<-s>) option to choose the size of the output image."
29391 msgstr ""
29392
29393 #. type: textblock
29394 #: ../tools/virt-make-fs.pl:196
29395 msgid ""
29396 "If this option is I<not> given, then the output image will be just large "
29397 "enough to contain all the files, with not much wasted space."
29398 msgstr ""
29399
29400 #. type: textblock
29401 #: ../tools/virt-make-fs.pl:199
29402 msgid ""
29403 "To choose a fixed size output disk, specify an absolute number followed by "
29404 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29405 "Petabytes or Exabytes.  This must be large enough to contain all the input "
29406 "files, else you will get an error."
29407 msgstr ""
29408
29409 #. type: textblock
29410 #: ../tools/virt-make-fs.pl:204
29411 msgid ""
29412 "To leave extra space, specify C<+> (plus sign) and a number followed by "
29413 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29414 "Petabytes or Exabytes.  For example: C<--size=+200M> means enough space for "
29415 "the input files, and (approximately) an extra 200 MB free space."
29416 msgstr ""
29417
29418 #. type: textblock
29419 #: ../tools/virt-make-fs.pl:210
29420 msgid ""
29421 "Note that virt-make-fs estimates free space, and therefore will not produce "
29422 "filesystems containing precisely the free space requested.  (It is much more "
29423 "expensive and time-consuming to produce a filesystem which has precisely the "
29424 "desired free space)."
29425 msgstr ""
29426
29427 #. type: =item
29428 #: ../tools/virt-make-fs.pl:219
29429 msgid "B<--format=E<lt>fmtE<gt>>"
29430 msgstr ""
29431
29432 #. type: =item
29433 #: ../tools/virt-make-fs.pl:221
29434 msgid "B<-F E<lt>fmtE<gt>>"
29435 msgstr ""
29436
29437 #. type: textblock
29438 #: ../tools/virt-make-fs.pl:223
29439 msgid "Choose the output disk image format."
29440 msgstr ""
29441
29442 #. type: textblock
29443 #: ../tools/virt-make-fs.pl:225
29444 msgid "The default is C<raw> (raw disk image)."
29445 msgstr ""
29446
29447 #. type: textblock
29448 #: ../tools/virt-make-fs.pl:227
29449 msgid ""
29450 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
29451 "that would really make sense here is C<qcow2>."
29452 msgstr ""
29453
29454 #. type: =item
29455 #: ../tools/virt-make-fs.pl:234
29456 msgid "B<--type=E<lt>fsE<gt>>"
29457 msgstr ""
29458
29459 #. type: =item
29460 #: ../tools/virt-make-fs.pl:236
29461 msgid "B<-t E<lt>fsE<gt>>"
29462 msgstr ""
29463
29464 #. type: textblock
29465 #: ../tools/virt-make-fs.pl:238
29466 msgid "Choose the output filesystem type."
29467 msgstr ""
29468
29469 #. type: textblock
29470 #: ../tools/virt-make-fs.pl:240
29471 msgid "The default is C<ext2>."
29472 msgstr ""
29473
29474 #. type: textblock
29475 #: ../tools/virt-make-fs.pl:242
29476 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
29477 msgstr ""
29478
29479 #. type: =item
29480 #: ../tools/virt-make-fs.pl:249
29481 msgid "B<--partition>"
29482 msgstr ""
29483
29484 #. type: =item
29485 #: ../tools/virt-make-fs.pl:251
29486 msgid "B<--partition=E<lt>parttypeE<gt>>"
29487 msgstr ""
29488
29489 #. type: textblock
29490 #: ../tools/virt-make-fs.pl:253
29491 msgid ""
29492 "If specified, this flag adds an MBR partition table to the output disk "
29493 "image."
29494 msgstr ""
29495
29496 #. type: textblock
29497 #: ../tools/virt-make-fs.pl:256
29498 msgid ""
29499 "You can change the partition table type, eg. C<--partition=gpt> for large "
29500 "disks."
29501 msgstr ""
29502
29503 #. type: textblock
29504 #: ../tools/virt-make-fs.pl:259
29505 msgid ""
29506 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
29507 "might consider the next parameter to be the partition type.  For example:"
29508 msgstr ""
29509
29510 #. type: verbatim
29511 #: ../tools/virt-make-fs.pl:263
29512 #, no-wrap
29513 msgid ""
29514 " virt-make-fs --partition input.tar ...\n"
29515 "\n"
29516 msgstr ""
29517
29518 #. type: textblock
29519 #: ../tools/virt-make-fs.pl:265
29520 msgid ""
29521 "would cause virt-make-fs to think you wanted to use a partition type of "
29522 "C<input.tar> which is completely wrong.  To avoid this, use C<--> (a double "
29523 "dash) between options and the input file argument:"
29524 msgstr ""
29525
29526 #. type: verbatim
29527 #: ../tools/virt-make-fs.pl:269
29528 #, no-wrap
29529 msgid ""
29530 " virt-make-fs --partition -- input.tar ...\n"
29531 "\n"
29532 msgstr ""
29533
29534 #. type: textblock
29535 #: ../tools/virt-make-fs.pl:541
29536 msgid ""
29537 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<mkisofs(1)>, "
29538 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
29539 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29540 msgstr ""
29541
29542 #. type: verbatim
29543 #: ../tools/virt-make-fs.pl:558
29544 #, no-wrap
29545 msgid ""
29546 " export LIBGUESTFS_DEBUG=1\n"
29547 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
29548 "\n"
29549 msgstr ""
29550
29551 #. type: textblock
29552 #: ../tools/virt-make-fs.pl:561
29553 msgid ""
29554 "Attach /tmp/virt-make-fs.log to a new bug report at "
29555 "L<https://bugzilla.redhat.com/>"
29556 msgstr ""
29557
29558 #. type: textblock
29559 #: ../tools/virt-list-partitions.pl:32
29560 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
29561 msgstr ""
29562
29563 #. type: verbatim
29564 #: ../tools/virt-list-partitions.pl:36
29565 #, no-wrap
29566 msgid ""
29567 " virt-list-partitions [--options] domname\n"
29568 "\n"
29569 msgstr ""
29570
29571 #. type: verbatim
29572 #: ../tools/virt-list-partitions.pl:38
29573 #, no-wrap
29574 msgid ""
29575 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
29576 "\n"
29577 msgstr ""
29578
29579 #. type: textblock
29580 #: ../tools/virt-list-partitions.pl:45
29581 msgid ""
29582 "C<virt-list-partitions> is a command line tool to list the partitions that "
29583 "are contained in a virtual machine or disk image.  It is mainly useful as a "
29584 "first step to using L<virt-resize(1)>."
29585 msgstr ""
29586
29587 #. type: textblock
29588 #: ../tools/virt-list-partitions.pl:50
29589 msgid ""
29590 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
29591 "functionality.  For more complex cases you should look at the "
29592 "L<guestfish(1)> tool."
29593 msgstr ""
29594
29595 #. type: =item
29596 #: ../tools/virt-list-partitions.pl:107
29597 msgid "B<-h> | B<--human-readable>"
29598 msgstr ""
29599
29600 #. type: textblock
29601 #: ../tools/virt-list-partitions.pl:109
29602 msgid "Show sizes in human-readable form (eg. \"1G\")."
29603 msgstr ""
29604
29605 #. type: textblock
29606 #: ../tools/virt-list-partitions.pl:117
29607 msgid ""
29608 "With this option, C<virt-list-partitions> displays the type and size of each "
29609 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
29610 msgstr ""
29611
29612 #. type: =item
29613 #: ../tools/virt-list-partitions.pl:124
29614 msgid "B<-t> | B<--total>"
29615 msgstr ""
29616
29617 #. type: textblock
29618 #: ../tools/virt-list-partitions.pl:126
29619 msgid "Display the total size of each block device (as a separate row or rows)."
29620 msgstr ""
29621
29622 #. type: textblock
29623 #: ../tools/virt-list-partitions.pl:259
29624 msgid ""
29625 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
29626 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
29627 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29628 msgstr ""
29629
29630 #. type: textblock
29631 #: ../tools/virt-list-partitions.pl:275
29632 msgid "Copyright (C) 2009-2010 Red Hat Inc."
29633 msgstr ""