98eeb720f6365ec8484c6a2ce8842e0aed9bb198
[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.5\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-04-11 11:35+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:1587 ../src/guestfs-actions.pod:1591 ../src/guestfs-actions.pod:1595 ../src/guestfs-actions.pod:1599 ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1611 ../src/guestfs-actions.pod:1615 ../src/guestfs-actions.pod:1625 ../src/guestfs-actions.pod:1629 ../src/guestfs-actions.pod:1633 ../src/guestfs-actions.pod:1771 ../src/guestfs-actions.pod:1775 ../src/guestfs-actions.pod:1780 ../src/guestfs-actions.pod:1785 ../src/guestfs-actions.pod:1846 ../src/guestfs-actions.pod:1850 ../src/guestfs-actions.pod:1855 ../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:1065 ../fish/guestfish-actions.pod:1069 ../fish/guestfish-actions.pod:1073 ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1085 ../fish/guestfish-actions.pod:1089 ../fish/guestfish-actions.pod:1093 ../fish/guestfish-actions.pod:1103 ../fish/guestfish-actions.pod:1107 ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1201 ../fish/guestfish-actions.pod:1205 ../fish/guestfish-actions.pod:1210 ../fish/guestfish-actions.pod:1215 ../fish/guestfish-actions.pod:1257 ../fish/guestfish-actions.pod:1261 ../fish/guestfish-actions.pod:1266 ../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:1842 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1253 ../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:1682 ../src/guestfs-actions.pod:1704 ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:2243 ../src/guestfs-actions.pod:2387 ../src/guestfs-actions.pod:2448 ../src/guestfs-actions.pod:2483 ../src/guestfs-actions.pod:3226 ../src/guestfs-actions.pod:3241 ../src/guestfs-actions.pod:3261 ../src/guestfs-actions.pod:3416 ../src/guestfs-actions.pod:3430 ../src/guestfs-actions.pod:3443 ../src/guestfs-actions.pod:3457 ../src/guestfs-actions.pod:3472 ../src/guestfs-actions.pod:3508 ../src/guestfs-actions.pod:3580 ../src/guestfs-actions.pod:3600 ../src/guestfs-actions.pod:3617 ../src/guestfs-actions.pod:3640 ../src/guestfs-actions.pod:3663 ../src/guestfs-actions.pod:3695 ../src/guestfs-actions.pod:3714 ../src/guestfs-actions.pod:3733 ../src/guestfs-actions.pod:3768 ../src/guestfs-actions.pod:3780 ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3832 ../src/guestfs-actions.pod:3845 ../src/guestfs-actions.pod:3860 ../src/guestfs-actions.pod:3877 ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:3990 ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4054 ../src/guestfs-actions.pod:4072 ../src/guestfs-actions.pod:4090 ../src/guestfs-actions.pod:4106 ../src/guestfs-actions.pod:4120 ../src/guestfs-actions.pod:4134 ../src/guestfs-actions.pod:4151 ../src/guestfs-actions.pod:4166 ../src/guestfs-actions.pod:4186 ../src/guestfs-actions.pod:4232 ../src/guestfs-actions.pod:4305 ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4374 ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4416 ../src/guestfs-actions.pod:4431 ../src/guestfs-actions.pod:4446 ../src/guestfs-actions.pod:4481 ../src/guestfs-actions.pod:4496 ../src/guestfs-actions.pod:4516 ../src/guestfs-actions.pod:4530 ../src/guestfs-actions.pod:4547 ../src/guestfs-actions.pod:4596 ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4647 ../src/guestfs-actions.pod:4675 ../src/guestfs-actions.pod:4692 ../src/guestfs-actions.pod:4710 ../src/guestfs-actions.pod:4844 ../src/guestfs-actions.pod:4901 ../src/guestfs-actions.pod:4923 ../src/guestfs-actions.pod:4941 ../src/guestfs-actions.pod:4973 ../src/guestfs-actions.pod:5039 ../src/guestfs-actions.pod:5056 ../src/guestfs-actions.pod:5069 ../src/guestfs-actions.pod:5083 ../src/guestfs-actions.pod:5372 ../src/guestfs-actions.pod:5391 ../src/guestfs-actions.pod:5405 ../src/guestfs-actions.pod:5417 ../src/guestfs-actions.pod:5431 ../src/guestfs-actions.pod:5443 ../src/guestfs-actions.pod:5457 ../src/guestfs-actions.pod:5473 ../src/guestfs-actions.pod:5494 ../src/guestfs-actions.pod:5513 ../src/guestfs-actions.pod:5532 ../src/guestfs-actions.pod:5550 ../src/guestfs-actions.pod:5573 ../src/guestfs-actions.pod:5591 ../src/guestfs-actions.pod:5610 ../src/guestfs-actions.pod:5631 ../src/guestfs-actions.pod:5650 ../src/guestfs-actions.pod:5667 ../src/guestfs-actions.pod:5695 ../src/guestfs-actions.pod:5719 ../src/guestfs-actions.pod:5738 ../src/guestfs-actions.pod:5762 ../src/guestfs-actions.pod:5777 ../src/guestfs-actions.pod:5792 ../src/guestfs-actions.pod:5811 ../src/guestfs-actions.pod:5848 ../src/guestfs-actions.pod:5871 ../src/guestfs-actions.pod:5897 ../src/guestfs-actions.pod:6005 ../src/guestfs-actions.pod:6126 ../src/guestfs-actions.pod:6138 ../src/guestfs-actions.pod:6151 ../src/guestfs-actions.pod:6164 ../src/guestfs-actions.pod:6186 ../src/guestfs-actions.pod:6199 ../src/guestfs-actions.pod:6212 ../src/guestfs-actions.pod:6225 ../src/guestfs-actions.pod:6240 ../src/guestfs-actions.pod:6299 ../src/guestfs-actions.pod:6316 ../src/guestfs-actions.pod:6332 ../src/guestfs-actions.pod:6348 ../src/guestfs-actions.pod:6365 ../src/guestfs-actions.pod:6378 ../src/guestfs-actions.pod:6398 ../src/guestfs-actions.pod:6434 ../src/guestfs-actions.pod:6448 ../src/guestfs-actions.pod:6489 ../src/guestfs-actions.pod:6502 ../src/guestfs-actions.pod:6520 ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6590 ../src/guestfs-actions.pod:6709 ../src/guestfs-actions.pod:6727 ../src/guestfs-actions.pod:6741 ../src/guestfs-actions.pod:6796 ../src/guestfs-actions.pod:6809 ../src/guestfs-actions.pod:6854 ../src/guestfs-actions.pod:6887 ../src/guestfs-actions.pod:6941 ../src/guestfs-actions.pod:6967 ../src/guestfs-actions.pod:7033 ../src/guestfs-actions.pod:7052 ../src/guestfs-actions.pod:7081
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:1921 ../src/guestfs-actions.pod:1942 ../src/guestfs-actions.pod:4191 ../src/guestfs-actions.pod:6975 ../src/guestfs-actions.pod:7144 ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:154 ../fish/guestfish-actions.pod:168 ../fish/guestfish-actions.pod:949 ../fish/guestfish-actions.pod:1306 ../fish/guestfish-actions.pod:1320 ../fish/guestfish-actions.pod:2820 ../fish/guestfish-actions.pod:4624 ../fish/guestfish-actions.pod:4721
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:1893 ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:2094 ../src/guestfs-actions.pod:3228 ../src/guestfs-actions.pod:3243 ../src/guestfs-actions.pod:4483 ../src/guestfs-actions.pod:5552 ../src/guestfs-actions.pod:5669 ../src/guestfs-actions.pod:5779 ../src/guestfs-actions.pod:6242 ../src/guestfs-actions.pod:6367 ../src/guestfs-actions.pod:6889
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:4205
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:1661 ../src/guestfs-actions.pod:1864 ../src/guestfs-actions.pod:1963 ../src/guestfs-actions.pod:2003 ../src/guestfs-actions.pod:2058 ../src/guestfs-actions.pod:2081 ../src/guestfs-actions.pod:2374 ../src/guestfs-actions.pod:2662 ../src/guestfs-actions.pod:2683 ../src/guestfs-actions.pod:4619 ../src/guestfs-actions.pod:4747 ../src/guestfs-actions.pod:5153 ../src/guestfs-actions.pod:5179 ../src/guestfs-actions.pod:6475 ../src/guestfs-actions.pod:6900 ../src/guestfs-actions.pod:6913 ../src/guestfs-actions.pod:6926
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:4246 ../src/guestfs-actions.pod:4258
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:4215 ../fish/guestfish-actions.pod:103 ../fish/guestfish-actions.pod:2831
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:2333
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:2083
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:5230
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:1532 ../src/guestfs-actions.pod:1644 ../src/guestfs-actions.pod:1807 ../src/guestfs-actions.pod:1824 ../src/guestfs-actions.pod:1915 ../src/guestfs-actions.pod:1936 ../src/guestfs-actions.pod:2106 ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:2586 ../src/guestfs-actions.pod:2634 ../src/guestfs-actions.pod:2748 ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2865 ../src/guestfs-actions.pod:2888 ../src/guestfs-actions.pod:3402 ../src/guestfs-actions.pod:3752 ../src/guestfs-actions.pod:3922 ../src/guestfs-actions.pod:4032 ../src/guestfs-actions.pod:4765 ../src/guestfs-actions.pod:4958 ../src/guestfs-actions.pod:5128 ../src/guestfs-actions.pod:5306 ../src/guestfs-actions.pod:5355 ../src/guestfs-actions.pod:5918 ../src/guestfs-actions.pod:5934 ../src/guestfs-actions.pod:5951 ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:6649 ../src/guestfs-actions.pod:6668 ../src/guestfs-actions.pod:6686 ../src/guestfs-actions.pod:6866 ../src/guestfs-actions.pod:7138
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:1746 ../src/guestfs-actions.pod:2178 ../src/guestfs-actions.pod:2194 ../src/guestfs-actions.pod:2213 ../src/guestfs-actions.pod:2256 ../src/guestfs-actions.pod:2280 ../src/guestfs-actions.pod:2351 ../src/guestfs-actions.pod:2400 ../src/guestfs-actions.pod:2611 ../src/guestfs-actions.pod:2822 ../src/guestfs-actions.pod:3037 ../src/guestfs-actions.pod:3322 ../src/guestfs-actions.pod:3384 ../src/guestfs-actions.pod:3489 ../src/guestfs-actions.pod:3894 ../src/guestfs-actions.pod:4580 ../src/guestfs-actions.pod:5100 ../src/guestfs-actions.pod:5226 ../src/guestfs-actions.pod:5340 ../src/guestfs-actions.pod:5991 ../src/guestfs-actions.pod:6052 ../src/guestfs-actions.pod:6107 ../src/guestfs-actions.pod:6253 ../src/guestfs-actions.pod:6277 ../src/guestfs-actions.pod:6759 ../src/guestfs-actions.pod:6779 ../src/guestfs-actions.pod:6826 ../src/guestfs-actions.pod:6991 ../src/guestfs-actions.pod:7010 ../src/guestfs-actions.pod:7095 ../src/guestfs-actions.pod:7114 ../src/guestfs-actions.pod:7160 ../src/guestfs-actions.pod:7179
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:3115 ../src/guestfs-actions.pod:3146 ../src/guestfs-actions.pod:3735 ../src/guestfs-actions.pod:3785 ../src/guestfs-actions.pod:3972 ../src/guestfs-actions.pod:4005 ../src/guestfs-actions.pod:4168 ../src/guestfs-actions.pod:4584 ../src/guestfs-actions.pod:5041 ../src/guestfs-actions.pod:5419 ../src/guestfs-actions.pod:5433 ../src/guestfs-actions.pod:5445 ../src/guestfs-actions.pod:5853 ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504 ../src/guestfs-actions.pod:6743 ../src/guestfs-actions.pod:6979
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:1891 ../src/guestfs-actions.pod:1902 ../src/guestfs-actions.pod:1974 ../src/guestfs-actions.pod:2029 ../src/guestfs-actions.pod:2044 ../src/guestfs-actions.pod:2069 ../src/guestfs-actions.pod:2092 ../src/guestfs-actions.pod:3054 ../src/guestfs-actions.pod:3068 ../src/guestfs-actions.pod:3083 ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:3113 ../src/guestfs-actions.pod:3128 ../src/guestfs-actions.pod:3144 ../src/guestfs-actions.pod:3158 ../src/guestfs-actions.pod:3171 ../src/guestfs-actions.pod:3185 ../src/guestfs-actions.pod:3200 ../src/guestfs-actions.pod:3215 ../src/guestfs-actions.pod:4729
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:6671
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:5216 ../fish/guestfish-actions.pod:573 ../fish/guestfish-actions.pod:3468
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:1750 ../src/guestfs-actions.pod:2198 ../src/guestfs-actions.pod:2217 ../src/guestfs-actions.pod:2260 ../src/guestfs-actions.pod:2284 ../src/guestfs-actions.pod:2301 ../src/guestfs-actions.pod:2330 ../src/guestfs-actions.pod:4998 ../src/guestfs-actions.pod:5024 ../src/guestfs-actions.pod:5155 ../src/guestfs-actions.pod:5181 ../src/guestfs-actions.pod:5205 ../src/guestfs-actions.pod:6056 ../src/guestfs-actions.pod:6111 ../src/guestfs-actions.pod:6257 ../src/guestfs-actions.pod:6281 ../src/guestfs-actions.pod:6943 ../src/guestfs-actions.pod:6969 ../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 ../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:1185 ../fish/guestfish-actions.pod:1480 ../fish/guestfish-actions.pod:1490 ../fish/guestfish-actions.pod:1518 ../fish/guestfish-actions.pod:1533 ../fish/guestfish-actions.pod:1543 ../fish/guestfish-actions.pod:1562 ../fish/guestfish-actions.pod:3338 ../fish/guestfish-actions.pod:3353 ../fish/guestfish-actions.pod:3429 ../fish/guestfish-actions.pod:3446 ../fish/guestfish-actions.pod:3461 ../fish/guestfish-actions.pod:4044 ../fish/guestfish-actions.pod:4090 ../fish/guestfish-actions.pod:4175 ../fish/guestfish-actions.pod:4190 ../fish/guestfish-actions.pod:4600 ../fish/guestfish-actions.pod:4618 ../fish/guestfish-actions.pod:4635 ../fish/guestfish-actions.pod:4645 ../fish/guestfish-actions.pod:4693 ../fish/guestfish-actions.pod:4703 ../fish/guestfish-actions.pod:4732 ../fish/guestfish-actions.pod:4742
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:3326 ../src/guestfs-actions.pod:3388 ../src/guestfs-actions.pod:3405 ../src/guestfs-actions.pod:3493 ../src/guestfs-actions.pod:3898 ../src/guestfs-actions.pod:3912 ../src/guestfs-actions.pod:5104 ../src/guestfs-actions.pod:5118 ../src/guestfs-actions.pod:6830 ../src/guestfs-actions.pod:6844
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:2060 ../src/guestfs-actions.pod:3070 ../src/guestfs-actions.pod:3099 ../src/guestfs-actions.pod:3160 ../src/guestfs-actions.pod:3187 ../src/guestfs-actions.pod:6527
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:4635 ../src/guestfs-actions.pod:4694 ../src/guestfs-actions.pod:4731 ../src/guestfs-actions.pod:4749 ../src/guestfs-actions.pod:4925 ../src/guestfs-actions.pod:6436 ../src/guestfs-actions.pod:6450 ../src/guestfs-actions.pod:6856
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:4149 ../src/guestfs-actions.pod:4334 ../src/guestfs-actions.pod:4353 ../src/guestfs-actions.pod:4372 ../fish/guestfish-actions.pod:669 ../fish/guestfish-actions.pod:2795 ../fish/guestfish-actions.pod:2913 ../fish/guestfish-actions.pod:2923 ../fish/guestfish-actions.pod:2933
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:3257 ../fish/guestfish-actions.pod:677 ../fish/guestfish-actions.pod:2253
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:1535
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:1684 ../src/guestfs-actions.pod:1706 ../src/guestfs-actions.pod:6522 ../src/guestfs-actions.pod:6556 ../src/guestfs-actions.pod:7035 ../src/guestfs-actions.pod:7054
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:3925 ../src/guestfs-actions.pod:5131 ../src/guestfs-actions.pod:6763 ../src/guestfs-actions.pod:6783 ../src/guestfs-actions.pod:6869
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:4598 ../src/guestfs-actions.pod:4975
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:2263 ../src/guestfs-actions.pod:2287 ../src/guestfs-actions.pod:2355 ../src/guestfs-actions.pod:4035 ../src/guestfs-actions.pod:4498 ../src/guestfs-actions.pod:6260 ../src/guestfs-actions.pod:6284 ../src/guestfs-actions.pod:6902 ../src/guestfs-actions.pod:6915 ../src/guestfs-actions.pod:6928
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:6516 ../fish/guestfish-actions.pod:821 ../fish/guestfish-actions.pod:4348
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:6561
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:2071 ../src/guestfs-actions.pod:5764
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:2201 ../src/guestfs-actions.pod:2220 ../src/guestfs-actions.pod:2376 ../src/guestfs-actions.pod:2389 ../src/guestfs-actions.pod:2404 ../src/guestfs-actions.pod:2450 ../src/guestfs-actions.pod:2472 ../src/guestfs-actions.pod:2485 ../src/guestfs-actions.pod:3418 ../src/guestfs-actions.pod:3432 ../src/guestfs-actions.pod:3445 ../src/guestfs-actions.pod:3459 ../src/guestfs-actions.pod:4433 ../src/guestfs-actions.pod:5309 ../src/guestfs-actions.pod:5358 ../src/guestfs-actions.pod:6128 ../src/guestfs-actions.pod:6140 ../src/guestfs-actions.pod:6153 ../src/guestfs-actions.pod:6166 ../src/guestfs-actions.pod:6188 ../src/guestfs-actions.pod:6201 ../src/guestfs-actions.pod:6214 ../src/guestfs-actions.pod:6227 ../src/guestfs-actions.pod:6998 ../src/guestfs-actions.pod:7017 ../src/guestfs-actions.pod:7102 ../src/guestfs-actions.pod:7121 ../src/guestfs-actions.pod:7167 ../src/guestfs-actions.pod:7186
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
7546 msgid ""
7547 "This command can also be used on C</dev/> devices (and partitions, LV "
7548 "names).  You can for example use this to determine if a device contains a "
7549 "filesystem, although it's usually better to use C<guestfs_vfs_type>."
7550 msgstr ""
7551
7552 #. type: textblock
7553 #: ../src/guestfs-actions.pod:1527 ../fish/guestfish-actions.pod:1012
7554 msgid ""
7555 "If the C<path> does not begin with C</dev/> then this command only works for "
7556 "the content of regular files.  For other file types (directory, symbolic "
7557 "link etc) it will just return the string C<directory> etc."
7558 msgstr ""
7559
7560 #. type: =head2
7561 #: ../src/guestfs-actions.pod:1537
7562 msgid "guestfs_file_architecture"
7563 msgstr ""
7564
7565 #. type: verbatim
7566 #: ../src/guestfs-actions.pod:1539
7567 #, no-wrap
7568 msgid ""
7569 " char *\n"
7570 " guestfs_file_architecture (guestfs_h *g,\n"
7571 "                            const char *filename);\n"
7572 "\n"
7573 msgstr ""
7574
7575 #. type: textblock
7576 #: ../src/guestfs-actions.pod:1543 ../fish/guestfish-actions.pod:1021
7577 msgid ""
7578 "This detects the architecture of the binary C<filename>, and returns it if "
7579 "known."
7580 msgstr ""
7581
7582 #. type: textblock
7583 #: ../src/guestfs-actions.pod:1546 ../fish/guestfish-actions.pod:1024
7584 msgid "Currently defined architectures are:"
7585 msgstr ""
7586
7587 #. type: =item
7588 #: ../src/guestfs-actions.pod:1550 ../fish/guestfish-actions.pod:1028
7589 msgid "\"i386\""
7590 msgstr ""
7591
7592 #. type: textblock
7593 #: ../src/guestfs-actions.pod:1552 ../fish/guestfish-actions.pod:1030
7594 msgid ""
7595 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
7596 "irrespective of the precise processor requirements of the binary."
7597 msgstr ""
7598
7599 #. type: =item
7600 #: ../src/guestfs-actions.pod:1555 ../fish/guestfish-actions.pod:1033
7601 msgid "\"x86_64\""
7602 msgstr ""
7603
7604 #. type: textblock
7605 #: ../src/guestfs-actions.pod:1557 ../fish/guestfish-actions.pod:1035
7606 msgid "64 bit x86-64."
7607 msgstr ""
7608
7609 #. type: =item
7610 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1037
7611 msgid "\"sparc\""
7612 msgstr ""
7613
7614 #. type: textblock
7615 #: ../src/guestfs-actions.pod:1561 ../fish/guestfish-actions.pod:1039
7616 msgid "32 bit SPARC."
7617 msgstr ""
7618
7619 #. type: =item
7620 #: ../src/guestfs-actions.pod:1563 ../fish/guestfish-actions.pod:1041
7621 msgid "\"sparc64\""
7622 msgstr ""
7623
7624 #. type: textblock
7625 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1043
7626 msgid "64 bit SPARC V9 and above."
7627 msgstr ""
7628
7629 #. type: =item
7630 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1045
7631 msgid "\"ia64\""
7632 msgstr ""
7633
7634 #. type: textblock
7635 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1047
7636 msgid "Intel Itanium."
7637 msgstr ""
7638
7639 #. type: =item
7640 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1049
7641 msgid "\"ppc\""
7642 msgstr ""
7643
7644 #. type: textblock
7645 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1051
7646 msgid "32 bit Power PC."
7647 msgstr ""
7648
7649 #. type: =item
7650 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1053
7651 msgid "\"ppc64\""
7652 msgstr ""
7653
7654 #. type: textblock
7655 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1055
7656 msgid "64 bit Power PC."
7657 msgstr ""
7658
7659 #. type: textblock
7660 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1059
7661 msgid "Libguestfs may return other architecture strings in future."
7662 msgstr ""
7663
7664 #. type: textblock
7665 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1061
7666 msgid "The function works on at least the following types of files:"
7667 msgstr ""
7668
7669 #. type: textblock
7670 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1067
7671 msgid "many types of Un*x and Linux binary"
7672 msgstr ""
7673
7674 #. type: textblock
7675 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1071
7676 msgid "many types of Un*x and Linux shared library"
7677 msgstr ""
7678
7679 #. type: textblock
7680 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1075
7681 msgid "Windows Win32 and Win64 binaries"
7682 msgstr ""
7683
7684 #. type: textblock
7685 #: ../src/guestfs-actions.pod:1601 ../fish/guestfish-actions.pod:1079
7686 msgid "Windows Win32 and Win64 DLLs"
7687 msgstr ""
7688
7689 #. type: textblock
7690 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1081
7691 msgid "Win32 binaries and DLLs return C<i386>."
7692 msgstr ""
7693
7694 #. type: textblock
7695 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1083
7696 msgid "Win64 binaries and DLLs return C<x86_64>."
7697 msgstr ""
7698
7699 #. type: textblock
7700 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1087
7701 msgid "Linux kernel modules"
7702 msgstr ""
7703
7704 #. type: textblock
7705 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1091
7706 msgid "Linux new-style initrd images"
7707 msgstr ""
7708
7709 #. type: textblock
7710 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1095
7711 msgid "some non-x86 Linux vmlinuz kernels"
7712 msgstr ""
7713
7714 #. type: textblock
7715 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1099
7716 msgid "What it can't do currently:"
7717 msgstr ""
7718
7719 #. type: textblock
7720 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1105
7721 msgid "static libraries (libfoo.a)"
7722 msgstr ""
7723
7724 #. type: textblock
7725 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1109
7726 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
7727 msgstr ""
7728
7729 #. type: textblock
7730 #: ../src/guestfs-actions.pod:1635 ../fish/guestfish-actions.pod:1113
7731 msgid "x86 Linux vmlinuz kernels"
7732 msgstr ""
7733
7734 #. type: textblock
7735 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1115
7736 msgid ""
7737 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
7738 "compressed code, and are horribly hard to unpack.  If you want to find the "
7739 "architecture of a kernel, use the architecture of the associated initrd or "
7740 "kernel module(s) instead."
7741 msgstr ""
7742
7743 #. type: textblock
7744 #: ../src/guestfs-actions.pod:1647 ../src/guestfs-actions.pod:1810 ../src/guestfs-actions.pod:1827 ../src/guestfs-actions.pod:2508 ../src/guestfs-actions.pod:2589 ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:2664 ../src/guestfs-actions.pod:2685 ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2806 ../src/guestfs-actions.pod:2868 ../src/guestfs-actions.pod:3041 ../src/guestfs-actions.pod:3173
7745 msgid "(Added in 1.5.3)"
7746 msgstr ""
7747
7748 #. type: =head2
7749 #: ../src/guestfs-actions.pod:1649
7750 msgid "guestfs_filesize"
7751 msgstr ""
7752
7753 #. type: verbatim
7754 #: ../src/guestfs-actions.pod:1651
7755 #, no-wrap
7756 msgid ""
7757 " int64_t\n"
7758 " guestfs_filesize (guestfs_h *g,\n"
7759 "                   const char *file);\n"
7760 "\n"
7761 msgstr ""
7762
7763 #. type: textblock
7764 #: ../src/guestfs-actions.pod:1655 ../fish/guestfish-actions.pod:1126
7765 msgid "This command returns the size of C<file> in bytes."
7766 msgstr ""
7767
7768 #. type: textblock
7769 #: ../src/guestfs-actions.pod:1657
7770 msgid ""
7771 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
7772 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
7773 "devices, use C<guestfs_blockdev_getsize64>."
7774 msgstr ""
7775
7776 #. type: textblock
7777 #: ../src/guestfs-actions.pod:1663
7778 msgid "(Added in 1.0.82)"
7779 msgstr ""
7780
7781 #. type: =head2
7782 #: ../src/guestfs-actions.pod:1665
7783 msgid "guestfs_fill"
7784 msgstr ""
7785
7786 #. type: verbatim
7787 #: ../src/guestfs-actions.pod:1667
7788 #, no-wrap
7789 msgid ""
7790 " int\n"
7791 " guestfs_fill (guestfs_h *g,\n"
7792 "               int c,\n"
7793 "               int len,\n"
7794 "               const char *path);\n"
7795 "\n"
7796 msgstr ""
7797
7798 #. type: textblock
7799 #: ../src/guestfs-actions.pod:1673 ../fish/guestfish-actions.pod:1136
7800 msgid ""
7801 "This command creates a new file called C<path>.  The initial content of the "
7802 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
7803 "C<[0..255]>."
7804 msgstr ""
7805
7806 #. type: textblock
7807 #: ../src/guestfs-actions.pod:1677
7808 msgid ""
7809 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
7810 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
7811 "bytes use C<guestfs_fill_pattern>."
7812 msgstr ""
7813
7814 #. type: textblock
7815 #: ../src/guestfs-actions.pod:1689
7816 msgid "(Added in 1.0.79)"
7817 msgstr ""
7818
7819 #. type: =head2
7820 #: ../src/guestfs-actions.pod:1691
7821 msgid "guestfs_fill_pattern"
7822 msgstr ""
7823
7824 #. type: verbatim
7825 #: ../src/guestfs-actions.pod:1693
7826 #, no-wrap
7827 msgid ""
7828 " int\n"
7829 " guestfs_fill_pattern (guestfs_h *g,\n"
7830 "                       const char *pattern,\n"
7831 "                       int len,\n"
7832 "                       const char *path);\n"
7833 "\n"
7834 msgstr ""
7835
7836 #. type: textblock
7837 #: ../src/guestfs-actions.pod:1699
7838 msgid ""
7839 "This function is like C<guestfs_fill> except that it creates a new file of "
7840 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
7841 "pattern is truncated if necessary to ensure the length of the file is "
7842 "exactly C<len> bytes."
7843 msgstr ""
7844
7845 #. type: textblock
7846 #: ../src/guestfs-actions.pod:1711
7847 msgid "(Added in 1.3.12)"
7848 msgstr ""
7849
7850 #. type: =head2
7851 #: ../src/guestfs-actions.pod:1713
7852 msgid "guestfs_find"
7853 msgstr ""
7854
7855 #. type: verbatim
7856 #: ../src/guestfs-actions.pod:1715
7857 #, no-wrap
7858 msgid ""
7859 " char **\n"
7860 " guestfs_find (guestfs_h *g,\n"
7861 "               const char *directory);\n"
7862 "\n"
7863 msgstr ""
7864
7865 #. type: textblock
7866 #: ../src/guestfs-actions.pod:1719 ../fish/guestfish-actions.pod:1158
7867 msgid ""
7868 "This command lists out all files and directories, recursively, starting at "
7869 "C<directory>.  It is essentially equivalent to running the shell command "
7870 "C<find directory -print> but some post-processing happens on the output, "
7871 "described below."
7872 msgstr ""
7873
7874 #. type: textblock
7875 #: ../src/guestfs-actions.pod:1724 ../fish/guestfish-actions.pod:1163
7876 msgid ""
7877 "This returns a list of strings I<without any prefix>.  Thus if the directory "
7878 "structure was:"
7879 msgstr ""
7880
7881 #. type: verbatim
7882 #: ../src/guestfs-actions.pod:1727 ../fish/guestfish-actions.pod:1166
7883 #, no-wrap
7884 msgid ""
7885 " /tmp/a\n"
7886 " /tmp/b\n"
7887 " /tmp/c/d\n"
7888 "\n"
7889 msgstr ""
7890
7891 #. type: textblock
7892 #: ../src/guestfs-actions.pod:1731
7893 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
7894 msgstr ""
7895
7896 #. type: verbatim
7897 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1173
7898 #, no-wrap
7899 msgid ""
7900 " a\n"
7901 " b\n"
7902 " c\n"
7903 " c/d\n"
7904 "\n"
7905 msgstr ""
7906
7907 #. type: textblock
7908 #: ../src/guestfs-actions.pod:1739 ../fish/guestfish-actions.pod:1178
7909 msgid "If C<directory> is not a directory, then this command returns an error."
7910 msgstr ""
7911
7912 #. type: textblock
7913 #: ../src/guestfs-actions.pod:1742 ../fish/guestfish-actions.pod:1181
7914 msgid "The returned list is sorted."
7915 msgstr ""
7916
7917 #. type: textblock
7918 #: ../src/guestfs-actions.pod:1744
7919 msgid "See also C<guestfs_find0>."
7920 msgstr ""
7921
7922 #. type: textblock
7923 #: ../src/guestfs-actions.pod:1753 ../src/guestfs-actions.pod:3862 ../src/guestfs-actions.pod:5393
7924 msgid "(Added in 1.0.27)"
7925 msgstr ""
7926
7927 #. type: =head2
7928 #: ../src/guestfs-actions.pod:1755
7929 msgid "guestfs_find0"
7930 msgstr ""
7931
7932 #. type: verbatim
7933 #: ../src/guestfs-actions.pod:1757
7934 #, no-wrap
7935 msgid ""
7936 " int\n"
7937 " guestfs_find0 (guestfs_h *g,\n"
7938 "                const char *directory,\n"
7939 "                const char *files);\n"
7940 "\n"
7941 msgstr ""
7942
7943 #. type: textblock
7944 #: ../src/guestfs-actions.pod:1762 ../fish/guestfish-actions.pod:1192
7945 msgid ""
7946 "This command lists out all files and directories, recursively, starting at "
7947 "C<directory>, placing the resulting list in the external file called "
7948 "C<files>."
7949 msgstr ""
7950
7951 #. type: textblock
7952 #: ../src/guestfs-actions.pod:1766
7953 msgid ""
7954 "This command works the same way as C<guestfs_find> with the following "
7955 "exceptions:"
7956 msgstr ""
7957
7958 #. type: textblock
7959 #: ../src/guestfs-actions.pod:1773 ../fish/guestfish-actions.pod:1203
7960 msgid "The resulting list is written to an external file."
7961 msgstr ""
7962
7963 #. type: textblock
7964 #: ../src/guestfs-actions.pod:1777 ../fish/guestfish-actions.pod:1207
7965 msgid ""
7966 "Items (filenames) in the result are separated by C<\\0> characters.  See "
7967 "L<find(1)> option I<-print0>."
7968 msgstr ""
7969
7970 #. type: textblock
7971 #: ../src/guestfs-actions.pod:1782 ../fish/guestfish-actions.pod:1212
7972 msgid "This command is not limited in the number of names that it can return."
7973 msgstr ""
7974
7975 #. type: textblock
7976 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1217
7977 msgid "The result list is not sorted."
7978 msgstr ""
7979
7980 #. type: textblock
7981 #: ../src/guestfs-actions.pod:1793
7982 msgid "(Added in 1.0.74)"
7983 msgstr ""
7984
7985 #. type: =head2
7986 #: ../src/guestfs-actions.pod:1795
7987 msgid "guestfs_findfs_label"
7988 msgstr ""
7989
7990 #. type: verbatim
7991 #: ../src/guestfs-actions.pod:1797
7992 #, no-wrap
7993 msgid ""
7994 " char *\n"
7995 " guestfs_findfs_label (guestfs_h *g,\n"
7996 "                       const char *label);\n"
7997 "\n"
7998 msgstr ""
7999
8000 #. type: textblock
8001 #: ../src/guestfs-actions.pod:1801 ../fish/guestfish-actions.pod:1227
8002 msgid ""
8003 "This command searches the filesystems and returns the one which has the "
8004 "given label.  An error is returned if no such filesystem can be found."
8005 msgstr ""
8006
8007 #. type: textblock
8008 #: ../src/guestfs-actions.pod:1805
8009 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8010 msgstr ""
8011
8012 #. type: =head2
8013 #: ../src/guestfs-actions.pod:1812
8014 msgid "guestfs_findfs_uuid"
8015 msgstr ""
8016
8017 #. type: verbatim
8018 #: ../src/guestfs-actions.pod:1814
8019 #, no-wrap
8020 msgid ""
8021 " char *\n"
8022 " guestfs_findfs_uuid (guestfs_h *g,\n"
8023 "                      const char *uuid);\n"
8024 "\n"
8025 msgstr ""
8026
8027 #. type: textblock
8028 #: ../src/guestfs-actions.pod:1818 ../fish/guestfish-actions.pod:1237
8029 msgid ""
8030 "This command searches the filesystems and returns the one which has the "
8031 "given UUID.  An error is returned if no such filesystem can be found."
8032 msgstr ""
8033
8034 #. type: textblock
8035 #: ../src/guestfs-actions.pod:1822
8036 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8037 msgstr ""
8038
8039 #. type: =head2
8040 #: ../src/guestfs-actions.pod:1829
8041 msgid "guestfs_fsck"
8042 msgstr ""
8043
8044 #. type: verbatim
8045 #: ../src/guestfs-actions.pod:1831
8046 #, no-wrap
8047 msgid ""
8048 " int\n"
8049 " guestfs_fsck (guestfs_h *g,\n"
8050 "               const char *fstype,\n"
8051 "               const char *device);\n"
8052 "\n"
8053 msgstr ""
8054
8055 #. type: textblock
8056 #: ../src/guestfs-actions.pod:1836 ../fish/guestfish-actions.pod:1247
8057 msgid ""
8058 "This runs the filesystem checker (fsck) on C<device> which should have "
8059 "filesystem type C<fstype>."
8060 msgstr ""
8061
8062 #. type: textblock
8063 #: ../src/guestfs-actions.pod:1839 ../fish/guestfish-actions.pod:1250
8064 msgid ""
8065 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8066 "codes from C<fsck>."
8067 msgstr ""
8068
8069 #. type: textblock
8070 #: ../src/guestfs-actions.pod:1848 ../fish/guestfish-actions.pod:1259
8071 msgid "Multiple status codes can be summed together."
8072 msgstr ""
8073
8074 #. type: textblock
8075 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1263
8076 msgid ""
8077 "A non-zero return code can mean \"success\", for example if errors have been "
8078 "corrected on the filesystem."
8079 msgstr ""
8080
8081 #. type: textblock
8082 #: ../src/guestfs-actions.pod:1857 ../fish/guestfish-actions.pod:1268
8083 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8084 msgstr ""
8085
8086 #. type: textblock
8087 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1273
8088 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8089 msgstr ""
8090
8091 #. type: textblock
8092 #: ../src/guestfs-actions.pod:1866 ../src/guestfs-actions.pod:7040
8093 msgid "(Added in 1.0.16)"
8094 msgstr ""
8095
8096 #. type: =head2
8097 #: ../src/guestfs-actions.pod:1868
8098 msgid "guestfs_get_append"
8099 msgstr ""
8100
8101 #. type: verbatim
8102 #: ../src/guestfs-actions.pod:1870
8103 #, no-wrap
8104 msgid ""
8105 " const char *\n"
8106 " guestfs_get_append (guestfs_h *g);\n"
8107 "\n"
8108 msgstr ""
8109
8110 #. type: textblock
8111 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1279
8112 msgid ""
8113 "Return the additional kernel options which are added to the guest kernel "
8114 "command line."
8115 msgstr ""
8116
8117 #. type: textblock
8118 #: ../src/guestfs-actions.pod:1876 ../fish/guestfish-actions.pod:1282
8119 msgid "If C<NULL> then no options are added."
8120 msgstr ""
8121
8122 #. type: textblock
8123 #: ../src/guestfs-actions.pod:1878
8124 msgid ""
8125 "This function returns a string which may be NULL.  There is no way to return "
8126 "an error from this function.  The string is owned by the guest handle and "
8127 "must I<not> be freed."
8128 msgstr ""
8129
8130 #. type: textblock
8131 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:5071 ../src/guestfs-actions.pod:5534 ../src/guestfs-actions.pod:5902 ../src/guestfs-actions.pod:5921 ../src/guestfs-actions.pod:5937 ../src/guestfs-actions.pod:5954 ../src/guestfs-actions.pod:6711 ../src/guestfs-actions.pod:6729 ../src/guestfs-actions.pod:7083
8132 msgid "(Added in 1.0.26)"
8133 msgstr ""
8134
8135 #. type: =head2
8136 #: ../src/guestfs-actions.pod:1884
8137 msgid "guestfs_get_autosync"
8138 msgstr ""
8139
8140 #. type: verbatim
8141 #: ../src/guestfs-actions.pod:1886
8142 #, no-wrap
8143 msgid ""
8144 " int\n"
8145 " guestfs_get_autosync (guestfs_h *g);\n"
8146 "\n"
8147 msgstr ""
8148
8149 #. type: textblock
8150 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
8151 msgid "Get the autosync flag."
8152 msgstr ""
8153
8154 #. type: =head2
8155 #: ../src/guestfs-actions.pod:1895
8156 msgid "guestfs_get_direct"
8157 msgstr ""
8158
8159 #. type: verbatim
8160 #: ../src/guestfs-actions.pod:1897
8161 #, no-wrap
8162 msgid ""
8163 " int\n"
8164 " guestfs_get_direct (guestfs_h *g);\n"
8165 "\n"
8166 msgstr ""
8167
8168 #. type: textblock
8169 #: ../src/guestfs-actions.pod:1900 ../fish/guestfish-actions.pod:1294
8170 msgid "Return the direct appliance mode flag."
8171 msgstr ""
8172
8173 #. type: textblock
8174 #: ../src/guestfs-actions.pod:1904 ../src/guestfs-actions.pod:5575
8175 msgid "(Added in 1.0.72)"
8176 msgstr ""
8177
8178 #. type: =head2
8179 #: ../src/guestfs-actions.pod:1906
8180 msgid "guestfs_get_e2label"
8181 msgstr ""
8182
8183 #. type: verbatim
8184 #: ../src/guestfs-actions.pod:1908
8185 #, no-wrap
8186 msgid ""
8187 " char *\n"
8188 " guestfs_get_e2label (guestfs_h *g,\n"
8189 "                      const char *device);\n"
8190 "\n"
8191 msgstr ""
8192
8193 #. type: textblock
8194 #: ../src/guestfs-actions.pod:1912 ../fish/guestfish-actions.pod:1300
8195 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
8196 msgstr ""
8197
8198 #. type: textblock
8199 #: ../src/guestfs-actions.pod:1918 ../fish/guestfish-actions.pod:1303
8200 msgid ""
8201 "This function is deprecated.  In new code, use the C<vfs_label> call "
8202 "instead."
8203 msgstr ""
8204
8205 #. type: textblock
8206 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1946 ../src/guestfs-actions.pod:5593 ../src/guestfs-actions.pod:5612
8207 msgid "(Added in 1.0.15)"
8208 msgstr ""
8209
8210 #. type: =head2
8211 #: ../src/guestfs-actions.pod:1927
8212 msgid "guestfs_get_e2uuid"
8213 msgstr ""
8214
8215 #. type: verbatim
8216 #: ../src/guestfs-actions.pod:1929
8217 #, no-wrap
8218 msgid ""
8219 " char *\n"
8220 " guestfs_get_e2uuid (guestfs_h *g,\n"
8221 "                     const char *device);\n"
8222 "\n"
8223 msgstr ""
8224
8225 #. type: textblock
8226 #: ../src/guestfs-actions.pod:1933 ../fish/guestfish-actions.pod:1314
8227 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
8228 msgstr ""
8229
8230 #. type: textblock
8231 #: ../src/guestfs-actions.pod:1939 ../fish/guestfish-actions.pod:1317
8232 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
8233 msgstr ""
8234
8235 #. type: =head2
8236 #: ../src/guestfs-actions.pod:1948
8237 msgid "guestfs_get_memsize"
8238 msgstr ""
8239
8240 #. type: verbatim
8241 #: ../src/guestfs-actions.pod:1950
8242 #, no-wrap
8243 msgid ""
8244 " int\n"
8245 " guestfs_get_memsize (guestfs_h *g);\n"
8246 "\n"
8247 msgstr ""
8248
8249 #. type: textblock
8250 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1328
8251 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
8252 msgstr ""
8253
8254 #. type: textblock
8255 #: ../src/guestfs-actions.pod:1956
8256 msgid ""
8257 "If C<guestfs_set_memsize> was not called on this handle, and if "
8258 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
8259 "value for memsize."
8260 msgstr ""
8261
8262 #. type: textblock
8263 #: ../src/guestfs-actions.pod:1960 ../src/guestfs-actions.pod:2041 ../src/guestfs-actions.pod:5628 ../src/guestfs-actions.pod:5735 ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:1386 ../fish/guestfish-actions.pod:3755 ../fish/guestfish-actions.pod:3842
8264 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
8265 msgstr ""
8266
8267 #. type: textblock
8268 #: ../src/guestfs-actions.pod:1965 ../src/guestfs-actions.pod:4153 ../src/guestfs-actions.pod:4338 ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4376 ../src/guestfs-actions.pod:4388 ../src/guestfs-actions.pod:4405 ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:5296 ../src/guestfs-actions.pod:5633 ../src/guestfs-actions.pod:5876 ../src/guestfs-actions.pod:6477
8269 msgid "(Added in 1.0.55)"
8270 msgstr ""
8271
8272 #. type: =head2
8273 #: ../src/guestfs-actions.pod:1967
8274 msgid "guestfs_get_network"
8275 msgstr ""
8276
8277 #. type: verbatim
8278 #: ../src/guestfs-actions.pod:1969
8279 #, no-wrap
8280 msgid ""
8281 " int\n"
8282 " guestfs_get_network (guestfs_h *g);\n"
8283 "\n"
8284 msgstr ""
8285
8286 #. type: textblock
8287 #: ../src/guestfs-actions.pod:1972 ../fish/guestfish-actions.pod:1342
8288 msgid "This returns the enable network flag."
8289 msgstr ""
8290
8291 #. type: textblock
8292 #: ../src/guestfs-actions.pod:1976 ../src/guestfs-actions.pod:5652
8293 msgid "(Added in 1.5.4)"
8294 msgstr ""
8295
8296 #. type: =head2
8297 #: ../src/guestfs-actions.pod:1978
8298 msgid "guestfs_get_path"
8299 msgstr ""
8300
8301 #. type: verbatim
8302 #: ../src/guestfs-actions.pod:1980
8303 #, no-wrap
8304 msgid ""
8305 " const char *\n"
8306 " guestfs_get_path (guestfs_h *g);\n"
8307 "\n"
8308 msgstr ""
8309
8310 #. type: textblock
8311 #: ../src/guestfs-actions.pod:1983 ../fish/guestfish-actions.pod:1348
8312 msgid "Return the current search path."
8313 msgstr ""
8314
8315 #. type: textblock
8316 #: ../src/guestfs-actions.pod:1985 ../fish/guestfish-actions.pod:1350
8317 msgid ""
8318 "This is always non-NULL.  If it wasn't set already, then this will return "
8319 "the default path."
8320 msgstr ""
8321
8322 #. type: textblock
8323 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2017
8324 msgid ""
8325 "This function returns a string, or NULL on error.  The string is owned by "
8326 "the guest handle and must I<not> be freed."
8327 msgstr ""
8328
8329 #. type: =head2
8330 #: ../src/guestfs-actions.pod:1993
8331 msgid "guestfs_get_pid"
8332 msgstr ""
8333
8334 #. type: verbatim
8335 #: ../src/guestfs-actions.pod:1995
8336 #, no-wrap
8337 msgid ""
8338 " int\n"
8339 " guestfs_get_pid (guestfs_h *g);\n"
8340 "\n"
8341 msgstr ""
8342
8343 #. type: textblock
8344 #: ../src/guestfs-actions.pod:1998 ../fish/guestfish-actions.pod:1359
8345 msgid ""
8346 "Return the process ID of the qemu subprocess.  If there is no qemu "
8347 "subprocess, then this will return an error."
8348 msgstr ""
8349
8350 #. type: textblock
8351 #: ../src/guestfs-actions.pod:2001 ../fish/guestfish-actions.pod:1362
8352 msgid "This is an internal call used for debugging and testing."
8353 msgstr ""
8354
8355 #. type: textblock
8356 #: ../src/guestfs-actions.pod:2005
8357 msgid "(Added in 1.0.56)"
8358 msgstr ""
8359
8360 #. type: =head2
8361 #: ../src/guestfs-actions.pod:2007
8362 msgid "guestfs_get_qemu"
8363 msgstr ""
8364
8365 #. type: verbatim
8366 #: ../src/guestfs-actions.pod:2009
8367 #, no-wrap
8368 msgid ""
8369 " const char *\n"
8370 " guestfs_get_qemu (guestfs_h *g);\n"
8371 "\n"
8372 msgstr ""
8373
8374 #. type: textblock
8375 #: ../src/guestfs-actions.pod:2012 ../fish/guestfish-actions.pod:1368
8376 msgid "Return the current qemu binary."
8377 msgstr ""
8378
8379 #. type: textblock
8380 #: ../src/guestfs-actions.pod:2014 ../fish/guestfish-actions.pod:1370
8381 msgid ""
8382 "This is always non-NULL.  If it wasn't set already, then this will return "
8383 "the default qemu binary name."
8384 msgstr ""
8385
8386 #. type: textblock
8387 #: ../src/guestfs-actions.pod:2020 ../src/guestfs-actions.pod:5697
8388 msgid "(Added in 1.0.6)"
8389 msgstr ""
8390
8391 #. type: =head2
8392 #: ../src/guestfs-actions.pod:2022
8393 msgid "guestfs_get_recovery_proc"
8394 msgstr ""
8395
8396 #. type: verbatim
8397 #: ../src/guestfs-actions.pod:2024
8398 #, no-wrap
8399 msgid ""
8400 " int\n"
8401 " guestfs_get_recovery_proc (guestfs_h *g);\n"
8402 "\n"
8403 msgstr ""
8404
8405 #. type: textblock
8406 #: ../src/guestfs-actions.pod:2027 ../fish/guestfish-actions.pod:1377
8407 msgid "Return the recovery process enabled flag."
8408 msgstr ""
8409
8410 #. type: textblock
8411 #: ../src/guestfs-actions.pod:2031 ../src/guestfs-actions.pod:3263 ../src/guestfs-actions.pod:3560 ../src/guestfs-actions.pod:3960 ../src/guestfs-actions.pod:3992 ../src/guestfs-actions.pod:5001 ../src/guestfs-actions.pod:5344 ../src/guestfs-actions.pod:5721 ../src/guestfs-actions.pod:6380 ../src/guestfs-actions.pod:6400 ../src/guestfs-actions.pod:6592
8412 msgid "(Added in 1.0.77)"
8413 msgstr ""
8414
8415 #. type: =head2
8416 #: ../src/guestfs-actions.pod:2033
8417 msgid "guestfs_get_selinux"
8418 msgstr ""
8419
8420 #. type: verbatim
8421 #: ../src/guestfs-actions.pod:2035
8422 #, no-wrap
8423 msgid ""
8424 " int\n"
8425 " guestfs_get_selinux (guestfs_h *g);\n"
8426 "\n"
8427 msgstr ""
8428
8429 #. type: textblock
8430 #: ../src/guestfs-actions.pod:2038
8431 msgid ""
8432 "This returns the current setting of the selinux flag which is passed to the "
8433 "appliance at boot time.  See C<guestfs_set_selinux>."
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:2046 ../src/guestfs-actions.pod:2109 ../src/guestfs-actions.pod:5740 ../src/guestfs-actions.pod:5794
8438 msgid "(Added in 1.0.67)"
8439 msgstr ""
8440
8441 #. type: =head2
8442 #: ../src/guestfs-actions.pod:2048
8443 msgid "guestfs_get_state"
8444 msgstr ""
8445
8446 #. type: verbatim
8447 #: ../src/guestfs-actions.pod:2050
8448 #, no-wrap
8449 msgid ""
8450 " int\n"
8451 " guestfs_get_state (guestfs_h *g);\n"
8452 "\n"
8453 msgstr ""
8454
8455 #. type: textblock
8456 #: ../src/guestfs-actions.pod:2053 ../fish/guestfish-actions.pod:1393
8457 msgid ""
8458 "This returns the current state as an opaque integer.  This is only useful "
8459 "for printing debug and internal error messages."
8460 msgstr ""
8461
8462 #. type: textblock
8463 #: ../src/guestfs-actions.pod:2056 ../src/guestfs-actions.pod:3066 ../src/guestfs-actions.pod:3095 ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3183 ../fish/guestfish-actions.pod:1396 ../fish/guestfish-actions.pod:2135 ../fish/guestfish-actions.pod:2153 ../fish/guestfish-actions.pod:2191 ../fish/guestfish-actions.pod:2207
8464 msgid "For more information on states, see L<guestfs(3)>."
8465 msgstr ""
8466
8467 #. type: =head2
8468 #: ../src/guestfs-actions.pod:2062
8469 msgid "guestfs_get_trace"
8470 msgstr ""
8471
8472 #. type: verbatim
8473 #: ../src/guestfs-actions.pod:2064
8474 #, no-wrap
8475 msgid ""
8476 " int\n"
8477 " guestfs_get_trace (guestfs_h *g);\n"
8478 "\n"
8479 msgstr ""
8480
8481 #. type: textblock
8482 #: ../src/guestfs-actions.pod:2067 ../fish/guestfish-actions.pod:1402
8483 msgid "Return the command trace flag."
8484 msgstr ""
8485
8486 #. type: =head2
8487 #: ../src/guestfs-actions.pod:2073
8488 msgid "guestfs_get_umask"
8489 msgstr ""
8490
8491 #. type: verbatim
8492 #: ../src/guestfs-actions.pod:2075
8493 #, no-wrap
8494 msgid ""
8495 " int\n"
8496 " guestfs_get_umask (guestfs_h *g);\n"
8497 "\n"
8498 msgstr ""
8499
8500 #. type: textblock
8501 #: ../src/guestfs-actions.pod:2078
8502 msgid ""
8503 "Return the current umask.  By default the umask is C<022> unless it has been "
8504 "set by calling C<guestfs_umask>."
8505 msgstr ""
8506
8507 #. type: =head2
8508 #: ../src/guestfs-actions.pod:2085
8509 msgid "guestfs_get_verbose"
8510 msgstr ""
8511
8512 #. type: verbatim
8513 #: ../src/guestfs-actions.pod:2087
8514 #, no-wrap
8515 msgid ""
8516 " int\n"
8517 " guestfs_get_verbose (guestfs_h *g);\n"
8518 "\n"
8519 msgstr ""
8520
8521 #. type: textblock
8522 #: ../src/guestfs-actions.pod:2090 ../fish/guestfish-actions.pod:1415
8523 msgid "This returns the verbose messages flag."
8524 msgstr ""
8525
8526 #. type: =head2
8527 #: ../src/guestfs-actions.pod:2096
8528 msgid "guestfs_getcon"
8529 msgstr ""
8530
8531 #. type: verbatim
8532 #: ../src/guestfs-actions.pod:2098
8533 #, no-wrap
8534 msgid ""
8535 " char *\n"
8536 " guestfs_getcon (guestfs_h *g);\n"
8537 "\n"
8538 msgstr ""
8539
8540 #. type: textblock
8541 #: ../src/guestfs-actions.pod:2101 ../fish/guestfish-actions.pod:1421
8542 msgid "This gets the SELinux security context of the daemon."
8543 msgstr ""
8544
8545 #. type: textblock
8546 #: ../src/guestfs-actions.pod:2103
8547 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
8548 msgstr ""
8549
8550 #. type: =head2
8551 #: ../src/guestfs-actions.pod:2111
8552 msgid "guestfs_getxattr"
8553 msgstr ""
8554
8555 #. type: verbatim
8556 #: ../src/guestfs-actions.pod:2113
8557 #, no-wrap
8558 msgid ""
8559 " char *\n"
8560 " guestfs_getxattr (guestfs_h *g,\n"
8561 "                   const char *path,\n"
8562 "                   const char *name,\n"
8563 "                   size_t *size_r);\n"
8564 "\n"
8565 msgstr ""
8566
8567 #. type: textblock
8568 #: ../src/guestfs-actions.pod:2119
8569 msgid ""
8570 "Get a single extended attribute from file C<path> named C<name>.  This call "
8571 "follows symlinks.  If you want to lookup an extended attribute for the "
8572 "symlink itself, use C<guestfs_lgetxattr>."
8573 msgstr ""
8574
8575 #. type: textblock
8576 #: ../src/guestfs-actions.pod:2123 ../src/guestfs-actions.pod:3277
8577 msgid ""
8578 "Normally it is better to get all extended attributes from a file in one go "
8579 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
8580 "implementations are buggy and do not provide a way to list out attributes.  "
8581 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
8582 "extended attributes you want in advance and call this function."
8583 msgstr ""
8584
8585 #. type: textblock
8586 #: ../src/guestfs-actions.pod:2130 ../src/guestfs-actions.pod:3284 ../fish/guestfish-actions.pod:1441 ../fish/guestfish-actions.pod:2272
8587 msgid ""
8588 "Extended attribute values are blobs of binary data.  If there is no extended "
8589 "attribute named C<name>, this returns an error."
8590 msgstr ""
8591
8592 #. type: textblock
8593 #: ../src/guestfs-actions.pod:2133
8594 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
8595 msgstr ""
8596
8597 #. type: textblock
8598 #: ../src/guestfs-actions.pod:2135 ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:3289 ../src/guestfs-actions.pod:4994 ../src/guestfs-actions.pod:5020 ../src/guestfs-actions.pod:5201
8599 msgid ""
8600 "This function returns a buffer, or NULL on error.  The size of the returned "
8601 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
8602 "after use>."
8603 msgstr ""
8604
8605 #. type: textblock
8606 #: ../src/guestfs-actions.pod:2139 ../src/guestfs-actions.pod:3293
8607 msgid "(Added in 1.7.24)"
8608 msgstr ""
8609
8610 #. type: =head2
8611 #: ../src/guestfs-actions.pod:2141
8612 msgid "guestfs_getxattrs"
8613 msgstr ""
8614
8615 #. type: verbatim
8616 #: ../src/guestfs-actions.pod:2143
8617 #, no-wrap
8618 msgid ""
8619 " struct guestfs_xattr_list *\n"
8620 " guestfs_getxattrs (guestfs_h *g,\n"
8621 "                    const char *path);\n"
8622 "\n"
8623 msgstr ""
8624
8625 #. type: textblock
8626 #: ../src/guestfs-actions.pod:2147 ../fish/guestfish-actions.pod:1450
8627 msgid "This call lists the extended attributes of the file or directory C<path>."
8628 msgstr ""
8629
8630 #. type: textblock
8631 #: ../src/guestfs-actions.pod:2150 ../fish/guestfish-actions.pod:1453
8632 msgid ""
8633 "At the system call level, this is a combination of the L<listxattr(2)> and "
8634 "L<getxattr(2)> calls."
8635 msgstr ""
8636
8637 #. type: textblock
8638 #: ../src/guestfs-actions.pod:2153
8639 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
8640 msgstr ""
8641
8642 #. type: textblock
8643 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:3305 ../src/guestfs-actions.pod:3956
8644 msgid ""
8645 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
8646 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
8647 msgstr ""
8648
8649 #. type: textblock
8650 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3309 ../src/guestfs-actions.pod:3474 ../src/guestfs-actions.pod:3510 ../src/guestfs-actions.pod:5374 ../src/guestfs-actions.pod:5813 ../src/guestfs-actions.pod:7148
8651 msgid "(Added in 1.0.59)"
8652 msgstr ""
8653
8654 #. type: =head2
8655 #: ../src/guestfs-actions.pod:2161
8656 msgid "guestfs_glob_expand"
8657 msgstr ""
8658
8659 #. type: verbatim
8660 #: ../src/guestfs-actions.pod:2163
8661 #, no-wrap
8662 msgid ""
8663 " char **\n"
8664 " guestfs_glob_expand (guestfs_h *g,\n"
8665 "                      const char *pattern);\n"
8666 "\n"
8667 msgstr ""
8668
8669 #. type: textblock
8670 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1462
8671 msgid ""
8672 "This command searches for all the pathnames matching C<pattern> according to "
8673 "the wildcard expansion rules used by the shell."
8674 msgstr ""
8675
8676 #. type: textblock
8677 #: ../src/guestfs-actions.pod:2171 ../fish/guestfish-actions.pod:1466
8678 msgid "If no paths match, then this returns an empty list (note: not an error)."
8679 msgstr ""
8680
8681 #. type: textblock
8682 #: ../src/guestfs-actions.pod:2174 ../fish/guestfish-actions.pod:1469
8683 msgid ""
8684 "It is just a wrapper around the C L<glob(3)> function with flags "
8685 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
8686 msgstr ""
8687
8688 #. type: textblock
8689 #: ../src/guestfs-actions.pod:2182 ../src/guestfs-actions.pod:5978 ../src/guestfs-actions.pod:5995
8690 msgid "(Added in 1.0.50)"
8691 msgstr ""
8692
8693 #. type: =head2
8694 #: ../src/guestfs-actions.pod:2184
8695 msgid "guestfs_grep"
8696 msgstr ""
8697
8698 #. type: verbatim
8699 #: ../src/guestfs-actions.pod:2186
8700 #, no-wrap
8701 msgid ""
8702 " char **\n"
8703 " guestfs_grep (guestfs_h *g,\n"
8704 "               const char *regex,\n"
8705 "               const char *path);\n"
8706 "\n"
8707 msgstr ""
8708
8709 #. type: textblock
8710 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1477
8711 msgid "This calls the external C<grep> program and returns the matching lines."
8712 msgstr ""
8713
8714 #. type: =head2
8715 #: ../src/guestfs-actions.pod:2203
8716 msgid "guestfs_grepi"
8717 msgstr ""
8718
8719 #. type: verbatim
8720 #: ../src/guestfs-actions.pod:2205
8721 #, no-wrap
8722 msgid ""
8723 " char **\n"
8724 " guestfs_grepi (guestfs_h *g,\n"
8725 "                const char *regex,\n"
8726 "                const char *path);\n"
8727 "\n"
8728 msgstr ""
8729
8730 #. type: textblock
8731 #: ../src/guestfs-actions.pod:2210 ../fish/guestfish-actions.pod:1487
8732 msgid "This calls the external C<grep -i> program and returns the matching lines."
8733 msgstr ""
8734
8735 #. type: =head2
8736 #: ../src/guestfs-actions.pod:2222
8737 msgid "guestfs_grub_install"
8738 msgstr ""
8739
8740 #. type: verbatim
8741 #: ../src/guestfs-actions.pod:2224
8742 #, no-wrap
8743 msgid ""
8744 " int\n"
8745 " guestfs_grub_install (guestfs_h *g,\n"
8746 "                       const char *root,\n"
8747 "                       const char *device);\n"
8748 "\n"
8749 msgstr ""
8750
8751 #. type: textblock
8752 #: ../src/guestfs-actions.pod:2229 ../fish/guestfish-actions.pod:1497
8753 msgid ""
8754 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
8755 "the root directory being C<root>."
8756 msgstr ""
8757
8758 #. type: textblock
8759 #: ../src/guestfs-actions.pod:2232 ../fish/guestfish-actions.pod:1500
8760 msgid ""
8761 "Note: If grub-install reports the error \"No suitable drive was found in the "
8762 "generated device map.\" it may be that you need to create a "
8763 "C</boot/grub/device.map> file first that contains the mapping between grub "
8764 "device names and Linux device names.  It is usually sufficient to create a "
8765 "file containing:"
8766 msgstr ""
8767
8768 #. type: verbatim
8769 #: ../src/guestfs-actions.pod:2239 ../fish/guestfish-actions.pod:1507
8770 #, no-wrap
8771 msgid ""
8772 " (hd0) /dev/vda\n"
8773 "\n"
8774 msgstr ""
8775
8776 #. type: textblock
8777 #: ../src/guestfs-actions.pod:2241 ../fish/guestfish-actions.pod:1509
8778 msgid "replacing C</dev/vda> with the name of the installation device."
8779 msgstr ""
8780
8781 #. type: textblock
8782 #: ../src/guestfs-actions.pod:2245
8783 msgid "(Added in 1.0.17)"
8784 msgstr ""
8785
8786 #. type: =head2
8787 #: ../src/guestfs-actions.pod:2247
8788 msgid "guestfs_head"
8789 msgstr ""
8790
8791 #. type: verbatim
8792 #: ../src/guestfs-actions.pod:2249
8793 #, no-wrap
8794 msgid ""
8795 " char **\n"
8796 " guestfs_head (guestfs_h *g,\n"
8797 "               const char *path);\n"
8798 "\n"
8799 msgstr ""
8800
8801 #. type: textblock
8802 #: ../src/guestfs-actions.pod:2253 ../fish/guestfish-actions.pod:1515
8803 msgid ""
8804 "This command returns up to the first 10 lines of a file as a list of "
8805 "strings."
8806 msgstr ""
8807
8808 #. type: =head2
8809 #: ../src/guestfs-actions.pod:2265
8810 msgid "guestfs_head_n"
8811 msgstr ""
8812
8813 #. type: verbatim
8814 #: ../src/guestfs-actions.pod:2267
8815 #, no-wrap
8816 msgid ""
8817 " char **\n"
8818 " guestfs_head_n (guestfs_h *g,\n"
8819 "                 int nrlines,\n"
8820 "                 const char *path);\n"
8821 "\n"
8822 msgstr ""
8823
8824 #. type: textblock
8825 #: ../src/guestfs-actions.pod:2272 ../fish/guestfish-actions.pod:1525
8826 msgid ""
8827 "If the parameter C<nrlines> is a positive number, this returns the first "
8828 "C<nrlines> lines of the file C<path>."
8829 msgstr ""
8830
8831 #. type: textblock
8832 #: ../src/guestfs-actions.pod:2275 ../fish/guestfish-actions.pod:1528
8833 msgid ""
8834 "If the parameter C<nrlines> is a negative number, this returns lines from "
8835 "the file C<path>, excluding the last C<nrlines> lines."
8836 msgstr ""
8837
8838 #. type: textblock
8839 #: ../src/guestfs-actions.pod:2278 ../src/guestfs-actions.pod:6275 ../fish/guestfish-actions.pod:1531 ../fish/guestfish-actions.pod:4188
8840 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
8841 msgstr ""
8842
8843 #. type: =head2
8844 #: ../src/guestfs-actions.pod:2289
8845 msgid "guestfs_hexdump"
8846 msgstr ""
8847
8848 #. type: verbatim
8849 #: ../src/guestfs-actions.pod:2291
8850 #, no-wrap
8851 msgid ""
8852 " char *\n"
8853 " guestfs_hexdump (guestfs_h *g,\n"
8854 "                  const char *path);\n"
8855 "\n"
8856 msgstr ""
8857
8858 #. type: textblock
8859 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1540
8860 msgid ""
8861 "This runs C<hexdump -C> on the given C<path>.  The result is the "
8862 "human-readable, canonical hex dump of the file."
8863 msgstr ""
8864
8865 #. type: textblock
8866 #: ../src/guestfs-actions.pod:2304 ../src/guestfs-actions.pod:6059 ../src/guestfs-actions.pod:6114
8867 msgid "(Added in 1.0.22)"
8868 msgstr ""
8869
8870 #. type: =head2
8871 #: ../src/guestfs-actions.pod:2306
8872 msgid "guestfs_initrd_cat"
8873 msgstr ""
8874
8875 #. type: verbatim
8876 #: ../src/guestfs-actions.pod:2308
8877 #, no-wrap
8878 msgid ""
8879 " char *\n"
8880 " guestfs_initrd_cat (guestfs_h *g,\n"
8881 "                     const char *initrdpath,\n"
8882 "                     const char *filename,\n"
8883 "                     size_t *size_r);\n"
8884 "\n"
8885 msgstr ""
8886
8887 #. type: textblock
8888 #: ../src/guestfs-actions.pod:2314 ../fish/guestfish-actions.pod:1550
8889 msgid ""
8890 "This command unpacks the file C<filename> from the initrd file called "
8891 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
8892 "character."
8893 msgstr ""
8894
8895 #. type: textblock
8896 #: ../src/guestfs-actions.pod:2318 ../fish/guestfish-actions.pod:1554
8897 msgid ""
8898 "For example, in guestfish you could use the following command to examine the "
8899 "boot script (usually called C</init>)  contained in a Linux initrd or "
8900 "initramfs image:"
8901 msgstr ""
8902
8903 #. type: verbatim
8904 #: ../src/guestfs-actions.pod:2322 ../fish/guestfish-actions.pod:1558
8905 #, no-wrap
8906 msgid ""
8907 " initrd-cat /boot/initrd-<version>.img init\n"
8908 "\n"
8909 msgstr ""
8910
8911 #. type: textblock
8912 #: ../src/guestfs-actions.pod:2324
8913 msgid "See also C<guestfs_initrd_list>."
8914 msgstr ""
8915
8916 #. type: =head2
8917 #: ../src/guestfs-actions.pod:2335
8918 msgid "guestfs_initrd_list"
8919 msgstr ""
8920
8921 #. type: verbatim
8922 #: ../src/guestfs-actions.pod:2337
8923 #, no-wrap
8924 msgid ""
8925 " char **\n"
8926 " guestfs_initrd_list (guestfs_h *g,\n"
8927 "                      const char *path);\n"
8928 "\n"
8929 msgstr ""
8930
8931 #. type: textblock
8932 #: ../src/guestfs-actions.pod:2341 ../fish/guestfish-actions.pod:1569
8933 msgid "This command lists out files contained in an initrd."
8934 msgstr ""
8935
8936 #. type: textblock
8937 #: ../src/guestfs-actions.pod:2343 ../fish/guestfish-actions.pod:1571
8938 msgid ""
8939 "The files are listed without any initial C</> character.  The files are "
8940 "listed in the order they appear (not necessarily alphabetical).  Directory "
8941 "names are listed as separate items."
8942 msgstr ""
8943
8944 #. type: textblock
8945 #: ../src/guestfs-actions.pod:2347 ../fish/guestfish-actions.pod:1575
8946 msgid ""
8947 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
8948 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
8949 "files)."
8950 msgstr ""
8951
8952 #. type: =head2
8953 #: ../src/guestfs-actions.pod:2357
8954 msgid "guestfs_inotify_add_watch"
8955 msgstr ""
8956
8957 #. type: verbatim
8958 #: ../src/guestfs-actions.pod:2359
8959 #, no-wrap
8960 msgid ""
8961 " int64_t\n"
8962 " guestfs_inotify_add_watch (guestfs_h *g,\n"
8963 "                            const char *path,\n"
8964 "                            int mask);\n"
8965 "\n"
8966 msgstr ""
8967
8968 #. type: textblock
8969 #: ../src/guestfs-actions.pod:2364 ../fish/guestfish-actions.pod:1583
8970 msgid "Watch C<path> for the events listed in C<mask>."
8971 msgstr ""
8972
8973 #. type: textblock
8974 #: ../src/guestfs-actions.pod:2366 ../fish/guestfish-actions.pod:1585
8975 msgid ""
8976 "Note that if C<path> is a directory then events within that directory are "
8977 "watched, but this does I<not> happen recursively (in subdirectories)."
8978 msgstr ""
8979
8980 #. type: textblock
8981 #: ../src/guestfs-actions.pod:2370 ../fish/guestfish-actions.pod:1589
8982 msgid ""
8983 "Note for non-C or non-Linux callers: the inotify events are defined by the "
8984 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
8985 msgstr ""
8986
8987 #. type: =head2
8988 #: ../src/guestfs-actions.pod:2378
8989 msgid "guestfs_inotify_close"
8990 msgstr ""
8991
8992 #. type: verbatim
8993 #: ../src/guestfs-actions.pod:2380
8994 #, no-wrap
8995 msgid ""
8996 " int\n"
8997 " guestfs_inotify_close (guestfs_h *g);\n"
8998 "\n"
8999 msgstr ""
9000
9001 #. type: textblock
9002 #: ../src/guestfs-actions.pod:2383 ../fish/guestfish-actions.pod:1597
9003 msgid ""
9004 "This closes the inotify handle which was previously opened by inotify_init.  "
9005 "It removes all watches, throws away any pending events, and deallocates all "
9006 "resources."
9007 msgstr ""
9008
9009 #. type: =head2
9010 #: ../src/guestfs-actions.pod:2391
9011 msgid "guestfs_inotify_files"
9012 msgstr ""
9013
9014 #. type: verbatim
9015 #: ../src/guestfs-actions.pod:2393
9016 #, no-wrap
9017 msgid ""
9018 " char **\n"
9019 " guestfs_inotify_files (guestfs_h *g);\n"
9020 "\n"
9021 msgstr ""
9022
9023 #. type: textblock
9024 #: ../src/guestfs-actions.pod:2396
9025 msgid ""
9026 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9027 "returns a list of pathnames of objects that were touched.  The returned "
9028 "pathnames are sorted and deduplicated."
9029 msgstr ""
9030
9031 #. type: =head2
9032 #: ../src/guestfs-actions.pod:2406
9033 msgid "guestfs_inotify_init"
9034 msgstr ""
9035
9036 #. type: verbatim
9037 #: ../src/guestfs-actions.pod:2408
9038 #, no-wrap
9039 msgid ""
9040 " int\n"
9041 " guestfs_inotify_init (guestfs_h *g,\n"
9042 "                       int maxevents);\n"
9043 "\n"
9044 msgstr ""
9045
9046 #. type: textblock
9047 #: ../src/guestfs-actions.pod:2412 ../fish/guestfish-actions.pod:1613
9048 msgid ""
9049 "This command creates a new inotify handle.  The inotify subsystem can be "
9050 "used to notify events which happen to objects in the guest filesystem."
9051 msgstr ""
9052
9053 #. type: textblock
9054 #: ../src/guestfs-actions.pod:2416
9055 msgid ""
9056 "C<maxevents> is the maximum number of events which will be queued up between "
9057 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9058 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9059 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9060 "throws away events, but records the fact that it threw them away by setting "
9061 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9062 "C<guestfs_inotify_read>)."
9063 msgstr ""
9064
9065 #. type: textblock
9066 #: ../src/guestfs-actions.pod:2426
9067 msgid ""
9068 "Before any events are generated, you have to add some watches to the "
9069 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9070 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9071 msgstr ""
9072
9073 #. type: textblock
9074 #: ../src/guestfs-actions.pod:2432
9075 msgid ""
9076 "Queued up events should be read periodically by calling "
9077 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9078 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9079 "often enough then you risk the internal queue overflowing."
9080 msgstr ""
9081
9082 #. type: textblock
9083 #: ../src/guestfs-actions.pod:2439
9084 msgid ""
9085 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9086 "This also removes any watches automatically."
9087 msgstr ""
9088
9089 #. type: textblock
9090 #: ../src/guestfs-actions.pod:2443 ../fish/guestfish-actions.pod:1644
9091 msgid ""
9092 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9093 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9094 "that there is one global inotify handle per libguestfs instance."
9095 msgstr ""
9096
9097 #. type: =head2
9098 #: ../src/guestfs-actions.pod:2452
9099 msgid "guestfs_inotify_read"
9100 msgstr ""
9101
9102 #. type: verbatim
9103 #: ../src/guestfs-actions.pod:2454
9104 #, no-wrap
9105 msgid ""
9106 " struct guestfs_inotify_event_list *\n"
9107 " guestfs_inotify_read (guestfs_h *g);\n"
9108 "\n"
9109 msgstr ""
9110
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:2457 ../fish/guestfish-actions.pod:1653
9113 msgid ""
9114 "Return the complete queue of events that have happened since the previous "
9115 "read call."
9116 msgstr ""
9117
9118 #. type: textblock
9119 #: ../src/guestfs-actions.pod:2460 ../fish/guestfish-actions.pod:1656
9120 msgid "If no events have happened, this returns an empty list."
9121 msgstr ""
9122
9123 #. type: textblock
9124 #: ../src/guestfs-actions.pod:2462 ../fish/guestfish-actions.pod:1658
9125 msgid ""
9126 "I<Note>: In order to make sure that all events have been read, you must call "
9127 "this function repeatedly until it returns an empty list.  The reason is that "
9128 "the call will read events up to the maximum appliance-to-host message size "
9129 "and leave remaining events in the queue."
9130 msgstr ""
9131
9132 #. type: textblock
9133 #: ../src/guestfs-actions.pod:2468
9134 msgid ""
9135 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9136 "there was an error.  I<The caller must call "
9137 "C<guestfs_free_inotify_event_list> after use>."
9138 msgstr ""
9139
9140 #. type: =head2
9141 #: ../src/guestfs-actions.pod:2474
9142 msgid "guestfs_inotify_rm_watch"
9143 msgstr ""
9144
9145 #. type: verbatim
9146 #: ../src/guestfs-actions.pod:2476
9147 #, no-wrap
9148 msgid ""
9149 " int\n"
9150 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9151 "                           int wd);\n"
9152 "\n"
9153 msgstr ""
9154
9155 #. type: textblock
9156 #: ../src/guestfs-actions.pod:2480
9157 msgid ""
9158 "Remove a previously defined inotify watch.  See "
9159 "C<guestfs_inotify_add_watch>."
9160 msgstr ""
9161
9162 #. type: =head2
9163 #: ../src/guestfs-actions.pod:2487
9164 msgid "guestfs_inspect_get_arch"
9165 msgstr ""
9166
9167 #. type: verbatim
9168 #: ../src/guestfs-actions.pod:2489
9169 #, no-wrap
9170 msgid ""
9171 " char *\n"
9172 " guestfs_inspect_get_arch (guestfs_h *g,\n"
9173 "                           const char *root);\n"
9174 "\n"
9175 msgstr ""
9176
9177 #. type: textblock
9178 #: ../src/guestfs-actions.pod:2493 ../src/guestfs-actions.pod:2516 ../src/guestfs-actions.pod:2597 ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2645 ../src/guestfs-actions.pod:2672 ../src/guestfs-actions.pod:2693 ../src/guestfs-actions.pod:2730 ../src/guestfs-actions.pod:2759 ../src/guestfs-actions.pod:2790 ../src/guestfs-actions.pod:2834 ../src/guestfs-actions.pod:2876 ../src/guestfs-actions.pod:2899
9179 msgid ""
9180 "This function should only be called with a root device string as returned by "
9181 "C<guestfs_inspect_os>."
9182 msgstr ""
9183
9184 #. type: textblock
9185 #: ../src/guestfs-actions.pod:2496
9186 msgid ""
9187 "This returns the architecture of the inspected operating system.  The "
9188 "possible return values are listed under C<guestfs_file_architecture>."
9189 msgstr ""
9190
9191 #. type: textblock
9192 #: ../src/guestfs-actions.pod:2500 ../fish/guestfish-actions.pod:1682
9193 msgid ""
9194 "If the architecture could not be determined, then the string C<unknown> is "
9195 "returned."
9196 msgstr ""
9197
9198 #. type: textblock
9199 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:2584 ../src/guestfs-actions.pod:2632 ../src/guestfs-actions.pod:2660 ../src/guestfs-actions.pod:2746 ../src/guestfs-actions.pod:2777 ../src/guestfs-actions.pod:2801 ../src/guestfs-actions.pod:2820 ../src/guestfs-actions.pod:2863 ../src/guestfs-actions.pod:2886 ../src/guestfs-actions.pod:2992 ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1759 ../fish/guestfish-actions.pod:1792 ../fish/guestfish-actions.pod:1813 ../fish/guestfish-actions.pod:1877 ../fish/guestfish-actions.pod:1901 ../fish/guestfish-actions.pod:1918 ../fish/guestfish-actions.pod:1931 ../fish/guestfish-actions.pod:1966 ../fish/guestfish-actions.pod:1982 ../fish/guestfish-actions.pod:2081 ../fish/guestfish-actions.pod:2115
9200 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
9201 msgstr ""
9202
9203 #. type: =head2
9204 #: ../src/guestfs-actions.pod:2510
9205 msgid "guestfs_inspect_get_distro"
9206 msgstr ""
9207
9208 #. type: verbatim
9209 #: ../src/guestfs-actions.pod:2512
9210 #, no-wrap
9211 msgid ""
9212 " char *\n"
9213 " guestfs_inspect_get_distro (guestfs_h *g,\n"
9214 "                             const char *root);\n"
9215 "\n"
9216 msgstr ""
9217
9218 #. type: textblock
9219 #: ../src/guestfs-actions.pod:2519 ../fish/guestfish-actions.pod:1694
9220 msgid "This returns the distro (distribution) of the inspected operating system."
9221 msgstr ""
9222
9223 #. type: textblock
9224 #: ../src/guestfs-actions.pod:2522 ../fish/guestfish-actions.pod:1697
9225 msgid "Currently defined distros are:"
9226 msgstr ""
9227
9228 #. type: =item
9229 #: ../src/guestfs-actions.pod:2526 ../fish/guestfish-actions.pod:1701
9230 msgid "\"archlinux\""
9231 msgstr ""
9232
9233 #. type: textblock
9234 #: ../src/guestfs-actions.pod:2528 ../fish/guestfish-actions.pod:1703
9235 msgid "Arch Linux."
9236 msgstr ""
9237
9238 #. type: =item
9239 #: ../src/guestfs-actions.pod:2530 ../fish/guestfish-actions.pod:1705
9240 msgid "\"debian\""
9241 msgstr ""
9242
9243 #. type: textblock
9244 #: ../src/guestfs-actions.pod:2532 ../fish/guestfish-actions.pod:1707
9245 msgid "Debian."
9246 msgstr ""
9247
9248 #. type: =item
9249 #: ../src/guestfs-actions.pod:2534 ../fish/guestfish-actions.pod:1709
9250 msgid "\"fedora\""
9251 msgstr ""
9252
9253 #. type: textblock
9254 #: ../src/guestfs-actions.pod:2536 ../fish/guestfish-actions.pod:1711
9255 msgid "Fedora."
9256 msgstr ""
9257
9258 #. type: =item
9259 #: ../src/guestfs-actions.pod:2538 ../fish/guestfish-actions.pod:1713
9260 msgid "\"gentoo\""
9261 msgstr ""
9262
9263 #. type: textblock
9264 #: ../src/guestfs-actions.pod:2540 ../fish/guestfish-actions.pod:1715
9265 msgid "Gentoo."
9266 msgstr ""
9267
9268 #. type: =item
9269 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1717
9270 msgid "\"linuxmint\""
9271 msgstr ""
9272
9273 #. type: textblock
9274 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1719
9275 msgid "Linux Mint."
9276 msgstr ""
9277
9278 #. type: =item
9279 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1721
9280 msgid "\"mandriva\""
9281 msgstr ""
9282
9283 #. type: textblock
9284 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1723
9285 msgid "Mandriva."
9286 msgstr ""
9287
9288 #. type: =item
9289 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1725
9290 msgid "\"meego\""
9291 msgstr ""
9292
9293 #. type: textblock
9294 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1727
9295 msgid "MeeGo."
9296 msgstr ""
9297
9298 #. type: =item
9299 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1729
9300 msgid "\"pardus\""
9301 msgstr ""
9302
9303 #. type: textblock
9304 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1731
9305 msgid "Pardus."
9306 msgstr ""
9307
9308 #. type: =item
9309 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1733
9310 msgid "\"redhat-based\""
9311 msgstr ""
9312
9313 #. type: textblock
9314 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1735
9315 msgid "Some Red Hat-derived distro."
9316 msgstr ""
9317
9318 #. type: =item
9319 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1737
9320 msgid "\"rhel\""
9321 msgstr ""
9322
9323 #. type: textblock
9324 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1739
9325 msgid "Red Hat Enterprise Linux and some derivatives."
9326 msgstr ""
9327
9328 #. type: =item
9329 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1741
9330 msgid "\"ubuntu\""
9331 msgstr ""
9332
9333 #. type: textblock
9334 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1743
9335 msgid "Ubuntu."
9336 msgstr ""
9337
9338 #. type: =item
9339 #: ../src/guestfs-actions.pod:2570 ../src/guestfs-actions.pod:2854 ../fish/guestfish-actions.pod:1745 ../fish/guestfish-actions.pod:1957
9340 msgid "\"unknown\""
9341 msgstr ""
9342
9343 #. type: textblock
9344 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1747
9345 msgid "The distro could not be determined."
9346 msgstr ""
9347
9348 #. type: =item
9349 #: ../src/guestfs-actions.pod:2574 ../src/guestfs-actions.pod:2846 ../fish/guestfish-actions.pod:1749 ../fish/guestfish-actions.pod:1949
9350 msgid "\"windows\""
9351 msgstr ""
9352
9353 #. type: textblock
9354 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1751
9355 msgid ""
9356 "Windows does not have distributions.  This string is returned if the OS type "
9357 "is Windows."
9358 msgstr ""
9359
9360 #. type: textblock
9361 #: ../src/guestfs-actions.pod:2581 ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1756 ../fish/guestfish-actions.pod:1963
9362 msgid ""
9363 "Future versions of libguestfs may return other strings here.  The caller "
9364 "should be prepared to handle any string."
9365 msgstr ""
9366
9367 #. type: =head2
9368 #: ../src/guestfs-actions.pod:2591
9369 msgid "guestfs_inspect_get_filesystems"
9370 msgstr ""
9371
9372 #. type: verbatim
9373 #: ../src/guestfs-actions.pod:2593
9374 #, no-wrap
9375 msgid ""
9376 " char **\n"
9377 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
9378 "                                  const char *root);\n"
9379 "\n"
9380 msgstr ""
9381
9382 #. type: textblock
9383 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1768
9384 msgid ""
9385 "This returns a list of all the filesystems that we think are associated with "
9386 "this operating system.  This includes the root filesystem, other ordinary "
9387 "filesystems, and non-mounted devices like swap partitions."
9388 msgstr ""
9389
9390 #. type: textblock
9391 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1773
9392 msgid ""
9393 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
9394 "to be shared between operating systems."
9395 msgstr ""
9396
9397 #. type: textblock
9398 #: ../src/guestfs-actions.pod:2608
9399 msgid ""
9400 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9401 "C<guestfs_inspect_get_mountpoints>."
9402 msgstr ""
9403
9404 #. type: =head2
9405 #: ../src/guestfs-actions.pod:2617
9406 msgid "guestfs_inspect_get_hostname"
9407 msgstr ""
9408
9409 #. type: verbatim
9410 #: ../src/guestfs-actions.pod:2619
9411 #, no-wrap
9412 msgid ""
9413 " char *\n"
9414 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
9415 "                               const char *root);\n"
9416 "\n"
9417 msgstr ""
9418
9419 #. type: textblock
9420 #: ../src/guestfs-actions.pod:2626 ../fish/guestfish-actions.pod:1786
9421 msgid ""
9422 "This function returns the hostname of the operating system as found by "
9423 "inspection of the guest's configuration files."
9424 msgstr ""
9425
9426 #. type: textblock
9427 #: ../src/guestfs-actions.pod:2629 ../fish/guestfish-actions.pod:1789
9428 msgid ""
9429 "If the hostname could not be determined, then the string C<unknown> is "
9430 "returned."
9431 msgstr ""
9432
9433 #. type: textblock
9434 #: ../src/guestfs-actions.pod:2637
9435 msgid "(Added in 1.7.9)"
9436 msgstr ""
9437
9438 #. type: =head2
9439 #: ../src/guestfs-actions.pod:2639
9440 msgid "guestfs_inspect_get_major_version"
9441 msgstr ""
9442
9443 #. type: verbatim
9444 #: ../src/guestfs-actions.pod:2641
9445 #, no-wrap
9446 msgid ""
9447 " int\n"
9448 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
9449 "                                    const char *root);\n"
9450 "\n"
9451 msgstr ""
9452
9453 #. type: textblock
9454 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1801
9455 msgid "This returns the major version number of the inspected operating system."
9456 msgstr ""
9457
9458 #. type: textblock
9459 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1804
9460 msgid ""
9461 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
9462 "popular public names used by the operating system.  Notably the operating "
9463 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
9464 "1).  You can find out the real versions corresponding to releases of Windows "
9465 "by consulting Wikipedia or MSDN."
9466 msgstr ""
9467
9468 #. type: textblock
9469 #: ../src/guestfs-actions.pod:2658 ../src/guestfs-actions.pod:2678 ../fish/guestfish-actions.pod:1811 ../fish/guestfish-actions.pod:1825
9470 msgid "If the version could not be determined, then C<0> is returned."
9471 msgstr ""
9472
9473 #. type: =head2
9474 #: ../src/guestfs-actions.pod:2666
9475 msgid "guestfs_inspect_get_minor_version"
9476 msgstr ""
9477
9478 #. type: verbatim
9479 #: ../src/guestfs-actions.pod:2668
9480 #, no-wrap
9481 msgid ""
9482 " int\n"
9483 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
9484 "                                    const char *root);\n"
9485 "\n"
9486 msgstr ""
9487
9488 #. type: textblock
9489 #: ../src/guestfs-actions.pod:2675 ../fish/guestfish-actions.pod:1822
9490 msgid "This returns the minor version number of the inspected operating system."
9491 msgstr ""
9492
9493 #. type: textblock
9494 #: ../src/guestfs-actions.pod:2680
9495 msgid ""
9496 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9497 "C<guestfs_inspect_get_major_version>."
9498 msgstr ""
9499
9500 #. type: =head2
9501 #: ../src/guestfs-actions.pod:2687
9502 msgid "guestfs_inspect_get_mountpoints"
9503 msgstr ""
9504
9505 #. type: verbatim
9506 #: ../src/guestfs-actions.pod:2689
9507 #, no-wrap
9508 msgid ""
9509 " char **\n"
9510 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
9511 "                                  const char *root);\n"
9512 "\n"
9513 msgstr ""
9514
9515 #. type: textblock
9516 #: ../src/guestfs-actions.pod:2696 ../fish/guestfish-actions.pod:1837
9517 msgid ""
9518 "This returns a hash of where we think the filesystems associated with this "
9519 "operating system should be mounted.  Callers should note that this is at "
9520 "best an educated guess made by reading configuration files such as "
9521 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
9522 "are non-existent or not mountable and callers should be prepared to handle "
9523 "or ignore failures if they try to mount them."
9524 msgstr ""
9525
9526 #. type: textblock
9527 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1846
9528 msgid ""
9529 "Each element in the returned hashtable has a key which is the path of the "
9530 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
9531 "mounted there (eg. C</dev/sda1>)."
9532 msgstr ""
9533
9534 #. type: textblock
9535 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1851
9536 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
9537 msgstr ""
9538
9539 #. type: textblock
9540 #: ../src/guestfs-actions.pod:2713
9541 msgid ""
9542 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9543 "C<guestfs_inspect_get_filesystems>."
9544 msgstr ""
9545
9546 #. type: textblock
9547 #: ../src/guestfs-actions.pod:2716 ../src/guestfs-actions.pod:3362 ../src/guestfs-actions.pod:4560 ../src/guestfs-actions.pod:6416
9548 msgid ""
9549 "This function returns a NULL-terminated array of strings, or NULL if there "
9550 "was an error.  The array of strings will always have length C<2n+1>, where "
9551 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
9552 "caller must free the strings and the array after use>."
9553 msgstr ""
9554
9555 #. type: =head2
9556 #: ../src/guestfs-actions.pod:2724
9557 msgid "guestfs_inspect_get_package_format"
9558 msgstr ""
9559
9560 #. type: verbatim
9561 #: ../src/guestfs-actions.pod:2726
9562 #, no-wrap
9563 msgid ""
9564 " char *\n"
9565 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
9566 "                                     const char *root);\n"
9567 "\n"
9568 msgstr ""
9569
9570 #. type: textblock
9571 #: ../src/guestfs-actions.pod:2733
9572 msgid ""
9573 "This function and C<guestfs_inspect_get_package_management> return the "
9574 "package format and package management tool used by the inspected operating "
9575 "system.  For example for Fedora these functions would return C<rpm> (package "
9576 "format) and C<yum> (package management)."
9577 msgstr ""
9578
9579 #. type: textblock
9580 #: ../src/guestfs-actions.pod:2739 ../fish/guestfish-actions.pod:1870
9581 msgid ""
9582 "This returns the string C<unknown> if we could not determine the package "
9583 "format I<or> if the operating system does not have a real packaging system "
9584 "(eg. Windows)."
9585 msgstr ""
9586
9587 #. type: textblock
9588 #: ../src/guestfs-actions.pod:2743 ../fish/guestfish-actions.pod:1874
9589 msgid ""
9590 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
9591 "Future versions of libguestfs may return other strings."
9592 msgstr ""
9593
9594 #. type: textblock
9595 #: ../src/guestfs-actions.pod:2751 ../src/guestfs-actions.pod:2782
9596 msgid "(Added in 1.7.5)"
9597 msgstr ""
9598
9599 #. type: =head2
9600 #: ../src/guestfs-actions.pod:2753
9601 msgid "guestfs_inspect_get_package_management"
9602 msgstr ""
9603
9604 #. type: verbatim
9605 #: ../src/guestfs-actions.pod:2755
9606 #, no-wrap
9607 msgid ""
9608 " char *\n"
9609 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
9610 "                                         const char *root);\n"
9611 "\n"
9612 msgstr ""
9613
9614 #. type: textblock
9615 #: ../src/guestfs-actions.pod:2762
9616 msgid ""
9617 "C<guestfs_inspect_get_package_format> and this function return the package "
9618 "format and package management tool used by the inspected operating system.  "
9619 "For example for Fedora these functions would return C<rpm> (package format) "
9620 "and C<yum> (package management)."
9621 msgstr ""
9622
9623 #. type: textblock
9624 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1892
9625 msgid ""
9626 "This returns the string C<unknown> if we could not determine the package "
9627 "management tool I<or> if the operating system does not have a real packaging "
9628 "system (eg. Windows)."
9629 msgstr ""
9630
9631 #. type: textblock
9632 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1896
9633 msgid ""
9634 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
9635 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
9636 "libguestfs may return other strings."
9637 msgstr ""
9638
9639 #. type: =head2
9640 #: ../src/guestfs-actions.pod:2784
9641 msgid "guestfs_inspect_get_product_name"
9642 msgstr ""
9643
9644 #. type: verbatim
9645 #: ../src/guestfs-actions.pod:2786
9646 #, no-wrap
9647 msgid ""
9648 " char *\n"
9649 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
9650 "                                   const char *root);\n"
9651 "\n"
9652 msgstr ""
9653
9654 #. type: textblock
9655 #: ../src/guestfs-actions.pod:2793 ../fish/guestfish-actions.pod:1910
9656 msgid ""
9657 "This returns the product name of the inspected operating system.  The "
9658 "product name is generally some freeform string which can be displayed to the "
9659 "user, but should not be parsed by programs."
9660 msgstr ""
9661
9662 #. type: textblock
9663 #: ../src/guestfs-actions.pod:2798 ../fish/guestfish-actions.pod:1915
9664 msgid ""
9665 "If the product name could not be determined, then the string C<unknown> is "
9666 "returned."
9667 msgstr ""
9668
9669 #. type: =head2
9670 #: ../src/guestfs-actions.pod:2808
9671 msgid "guestfs_inspect_get_roots"
9672 msgstr ""
9673
9674 #. type: verbatim
9675 #: ../src/guestfs-actions.pod:2810
9676 #, no-wrap
9677 msgid ""
9678 " char **\n"
9679 " guestfs_inspect_get_roots (guestfs_h *g);\n"
9680 "\n"
9681 msgstr ""
9682
9683 #. type: textblock
9684 #: ../src/guestfs-actions.pod:2813
9685 msgid ""
9686 "This function is a convenient way to get the list of root devices, as "
9687 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
9688 "the whole inspection process."
9689 msgstr ""
9690
9691 #. type: textblock
9692 #: ../src/guestfs-actions.pod:2817
9693 msgid ""
9694 "This returns an empty list if either no root devices were found or the "
9695 "caller has not called C<guestfs_inspect_os>."
9696 msgstr ""
9697
9698 #. type: textblock
9699 #: ../src/guestfs-actions.pod:2826
9700 msgid "(Added in 1.7.3)"
9701 msgstr ""
9702
9703 #. type: =head2
9704 #: ../src/guestfs-actions.pod:2828
9705 msgid "guestfs_inspect_get_type"
9706 msgstr ""
9707
9708 #. type: verbatim
9709 #: ../src/guestfs-actions.pod:2830
9710 #, no-wrap
9711 msgid ""
9712 " char *\n"
9713 " guestfs_inspect_get_type (guestfs_h *g,\n"
9714 "                           const char *root);\n"
9715 "\n"
9716 msgstr ""
9717
9718 #. type: textblock
9719 #: ../src/guestfs-actions.pod:2837 ../fish/guestfish-actions.pod:1940
9720 msgid ""
9721 "This returns the type of the inspected operating system.  Currently defined "
9722 "types are:"
9723 msgstr ""
9724
9725 #. type: =item
9726 #: ../src/guestfs-actions.pod:2842 ../fish/guestfish-actions.pod:1945
9727 msgid "\"linux\""
9728 msgstr ""
9729
9730 #. type: textblock
9731 #: ../src/guestfs-actions.pod:2844 ../fish/guestfish-actions.pod:1947
9732 msgid "Any Linux-based operating system."
9733 msgstr ""
9734
9735 #. type: textblock
9736 #: ../src/guestfs-actions.pod:2848 ../fish/guestfish-actions.pod:1951
9737 msgid "Any Microsoft Windows operating system."
9738 msgstr ""
9739
9740 #. type: =item
9741 #: ../src/guestfs-actions.pod:2850 ../fish/guestfish-actions.pod:1953
9742 msgid "\"freebsd\""
9743 msgstr ""
9744
9745 #. type: textblock
9746 #: ../src/guestfs-actions.pod:2852 ../fish/guestfish-actions.pod:1955
9747 msgid "FreeBSD."
9748 msgstr ""
9749
9750 #. type: textblock
9751 #: ../src/guestfs-actions.pod:2856 ../fish/guestfish-actions.pod:1959
9752 msgid "The operating system type could not be determined."
9753 msgstr ""
9754
9755 #. type: =head2
9756 #: ../src/guestfs-actions.pod:2870
9757 msgid "guestfs_inspect_get_windows_systemroot"
9758 msgstr ""
9759
9760 #. type: verbatim
9761 #: ../src/guestfs-actions.pod:2872
9762 #, no-wrap
9763 msgid ""
9764 " char *\n"
9765 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
9766 "                                         const char *root);\n"
9767 "\n"
9768 msgstr ""
9769
9770 #. type: textblock
9771 #: ../src/guestfs-actions.pod:2879 ../fish/guestfish-actions.pod:1975
9772 msgid ""
9773 "This returns the Windows systemroot of the inspected guest.  The systemroot "
9774 "is a directory path such as C</WINDOWS>."
9775 msgstr ""
9776
9777 #. type: textblock
9778 #: ../src/guestfs-actions.pod:2882 ../fish/guestfish-actions.pod:1978
9779 msgid ""
9780 "This call assumes that the guest is Windows and that the systemroot could be "
9781 "determined by inspection.  If this is not the case then an error is "
9782 "returned."
9783 msgstr ""
9784
9785 #. type: textblock
9786 #: ../src/guestfs-actions.pod:2891
9787 msgid "(Added in 1.5.25)"
9788 msgstr ""
9789
9790 #. type: =head2
9791 #: ../src/guestfs-actions.pod:2893
9792 msgid "guestfs_inspect_list_applications"
9793 msgstr ""
9794
9795 #. type: verbatim
9796 #: ../src/guestfs-actions.pod:2895
9797 #, no-wrap
9798 msgid ""
9799 " struct guestfs_application_list *\n"
9800 " guestfs_inspect_list_applications (guestfs_h *g,\n"
9801 "                                    const char *root);\n"
9802 "\n"
9803 msgstr ""
9804
9805 #. type: textblock
9806 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:1991
9807 msgid "Return the list of applications installed in the operating system."
9808 msgstr ""
9809
9810 #. type: textblock
9811 #: ../src/guestfs-actions.pod:2904
9812 msgid ""
9813 "I<Note:> This call works differently from other parts of the inspection "
9814 "API.  You have to call C<guestfs_inspect_os>, then "
9815 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
9816 "this.  Listing applications is a significantly more difficult operation "
9817 "which requires access to the full filesystem.  Also note that unlike the "
9818 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
9819 "the libguestfs handle, this call actually reads parts of the mounted "
9820 "filesystems during the call."
9821 msgstr ""
9822
9823 #. type: textblock
9824 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2003
9825 msgid ""
9826 "This returns an empty list if the inspection code was not able to determine "
9827 "the list of applications."
9828 msgstr ""
9829
9830 #. type: textblock
9831 #: ../src/guestfs-actions.pod:2917 ../fish/guestfish-actions.pod:2006
9832 msgid "The application structure contains the following fields:"
9833 msgstr ""
9834
9835 #. type: =item
9836 #: ../src/guestfs-actions.pod:2921 ../fish/guestfish-actions.pod:2010
9837 msgid "C<app_name>"
9838 msgstr ""
9839
9840 #. type: textblock
9841 #: ../src/guestfs-actions.pod:2923 ../fish/guestfish-actions.pod:2012
9842 msgid ""
9843 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
9844 "guests, this is the package name."
9845 msgstr ""
9846
9847 #. type: =item
9848 #: ../src/guestfs-actions.pod:2926 ../fish/guestfish-actions.pod:2015
9849 msgid "C<app_display_name>"
9850 msgstr ""
9851
9852 #. type: textblock
9853 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:2017
9854 msgid ""
9855 "The display name of the application, sometimes localized to the install "
9856 "language of the guest operating system."
9857 msgstr ""
9858
9859 #. type: textblock
9860 #: ../src/guestfs-actions.pod:2931 ../fish/guestfish-actions.pod:2020
9861 msgid ""
9862 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
9863 "to display something can use C<app_name> instead."
9864 msgstr ""
9865
9866 #. type: =item
9867 #: ../src/guestfs-actions.pod:2934 ../fish/guestfish-actions.pod:2023
9868 msgid "C<app_epoch>"
9869 msgstr ""
9870
9871 #. type: textblock
9872 #: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2025
9873 msgid ""
9874 "For package managers which use epochs, this contains the epoch of the "
9875 "package (an integer).  If unavailable, this is returned as C<0>."
9876 msgstr ""
9877
9878 #. type: =item
9879 #: ../src/guestfs-actions.pod:2939 ../fish/guestfish-actions.pod:2028
9880 msgid "C<app_version>"
9881 msgstr ""
9882
9883 #. type: textblock
9884 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2030
9885 msgid ""
9886 "The version string of the application or package.  If unavailable this is "
9887 "returned as an empty string C<\"\">."
9888 msgstr ""
9889
9890 #. type: =item
9891 #: ../src/guestfs-actions.pod:2944 ../fish/guestfish-actions.pod:2033
9892 msgid "C<app_release>"
9893 msgstr ""
9894
9895 #. type: textblock
9896 #: ../src/guestfs-actions.pod:2946 ../fish/guestfish-actions.pod:2035
9897 msgid ""
9898 "The release string of the application or package, for package managers that "
9899 "use this.  If unavailable this is returned as an empty string C<\"\">."
9900 msgstr ""
9901
9902 #. type: =item
9903 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2039
9904 msgid "C<app_install_path>"
9905 msgstr ""
9906
9907 #. type: textblock
9908 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:2041
9909 msgid ""
9910 "The installation path of the application (on operating systems such as "
9911 "Windows which use installation paths).  This path is in the format used by "
9912 "the guest operating system, it is not a libguestfs path."
9913 msgstr ""
9914
9915 #. type: textblock
9916 #: ../src/guestfs-actions.pod:2957 ../fish/guestfish-actions.pod:2046
9917 msgid "If unavailable this is returned as an empty string C<\"\">."
9918 msgstr ""
9919
9920 #. type: =item
9921 #: ../src/guestfs-actions.pod:2959 ../fish/guestfish-actions.pod:2048
9922 msgid "C<app_trans_path>"
9923 msgstr ""
9924
9925 #. type: textblock
9926 #: ../src/guestfs-actions.pod:2961 ../fish/guestfish-actions.pod:2050
9927 msgid ""
9928 "The install path translated into a libguestfs path.  If unavailable this is "
9929 "returned as an empty string C<\"\">."
9930 msgstr ""
9931
9932 #. type: =item
9933 #: ../src/guestfs-actions.pod:2964 ../fish/guestfish-actions.pod:2053
9934 msgid "C<app_publisher>"
9935 msgstr ""
9936
9937 #. type: textblock
9938 #: ../src/guestfs-actions.pod:2966 ../fish/guestfish-actions.pod:2055
9939 msgid ""
9940 "The name of the publisher of the application, for package managers that use "
9941 "this.  If unavailable this is returned as an empty string C<\"\">."
9942 msgstr ""
9943
9944 #. type: =item
9945 #: ../src/guestfs-actions.pod:2970 ../fish/guestfish-actions.pod:2059
9946 msgid "C<app_url>"
9947 msgstr ""
9948
9949 #. type: textblock
9950 #: ../src/guestfs-actions.pod:2972 ../fish/guestfish-actions.pod:2061
9951 msgid ""
9952 "The URL (eg. upstream URL) of the application.  If unavailable this is "
9953 "returned as an empty string C<\"\">."
9954 msgstr ""
9955
9956 #. type: =item
9957 #: ../src/guestfs-actions.pod:2975 ../fish/guestfish-actions.pod:2064
9958 msgid "C<app_source_package>"
9959 msgstr ""
9960
9961 #. type: textblock
9962 #: ../src/guestfs-actions.pod:2977 ../fish/guestfish-actions.pod:2066
9963 msgid ""
9964 "For packaging systems which support this, the name of the source package.  "
9965 "If unavailable this is returned as an empty string C<\"\">."
9966 msgstr ""
9967
9968 #. type: =item
9969 #: ../src/guestfs-actions.pod:2980 ../fish/guestfish-actions.pod:2069
9970 msgid "C<app_summary>"
9971 msgstr ""
9972
9973 #. type: textblock
9974 #: ../src/guestfs-actions.pod:2982 ../fish/guestfish-actions.pod:2071
9975 msgid ""
9976 "A short (usually one line) description of the application or package.  If "
9977 "unavailable this is returned as an empty string C<\"\">."
9978 msgstr ""
9979
9980 #. type: =item
9981 #: ../src/guestfs-actions.pod:2985 ../fish/guestfish-actions.pod:2074
9982 msgid "C<app_description>"
9983 msgstr ""
9984
9985 #. type: textblock
9986 #: ../src/guestfs-actions.pod:2987 ../fish/guestfish-actions.pod:2076
9987 msgid ""
9988 "A longer description of the application or package.  If unavailable this is "
9989 "returned as an empty string C<\"\">."
9990 msgstr ""
9991
9992 #. type: textblock
9993 #: ../src/guestfs-actions.pod:2994
9994 msgid ""
9995 "This function returns a C<struct guestfs_application_list *>, or NULL if "
9996 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
9997 "after use>."
9998 msgstr ""
9999
10000 #. type: textblock
10001 #: ../src/guestfs-actions.pod:2998
10002 msgid "(Added in 1.7.8)"
10003 msgstr ""
10004
10005 #. type: =head2
10006 #: ../src/guestfs-actions.pod:3000
10007 msgid "guestfs_inspect_os"
10008 msgstr ""
10009
10010 #. type: verbatim
10011 #: ../src/guestfs-actions.pod:3002
10012 #, no-wrap
10013 msgid ""
10014 " char **\n"
10015 " guestfs_inspect_os (guestfs_h *g);\n"
10016 "\n"
10017 msgstr ""
10018
10019 #. type: textblock
10020 #: ../src/guestfs-actions.pod:3005 ../fish/guestfish-actions.pod:2087
10021 msgid ""
10022 "This function uses other libguestfs functions and certain heuristics to "
10023 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
10024 "for operating systems."
10025 msgstr ""
10026
10027 #. type: textblock
10028 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2091
10029 msgid "The list returned is empty if no operating systems were found."
10030 msgstr ""
10031
10032 #. type: textblock
10033 #: ../src/guestfs-actions.pod:3011 ../fish/guestfish-actions.pod:2093
10034 msgid ""
10035 "If one operating system was found, then this returns a list with a single "
10036 "element, which is the name of the root filesystem of this operating system.  "
10037 "It is also possible for this function to return a list containing more than "
10038 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
10039 "element being the root filesystem of one of the operating systems."
10040 msgstr ""
10041
10042 #. type: textblock
10043 #: ../src/guestfs-actions.pod:3018
10044 msgid ""
10045 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
10046 "functions in order to query further information about each operating system, "
10047 "such as the name and version."
10048 msgstr ""
10049
10050 #. type: textblock
10051 #: ../src/guestfs-actions.pod:3023
10052 msgid ""
10053 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
10054 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
10055 "the contents.  This should be called with no disks currently mounted.  The "
10056 "function may also use Augeas, so any existing Augeas handle will be closed."
10057 msgstr ""
10058
10059 #. type: textblock
10060 #: ../src/guestfs-actions.pod:3029 ../fish/guestfish-actions.pod:2111
10061 msgid ""
10062 "This function cannot decrypt encrypted disks.  The caller must do that first "
10063 "(supplying the necessary keys) if the disk is encrypted."
10064 msgstr ""
10065
10066 #. type: textblock
10067 #: ../src/guestfs-actions.pod:3035 ../src/guestfs-actions.pod:3320 ../src/guestfs-actions.pod:3382
10068 msgid "See also C<guestfs_list_filesystems>."
10069 msgstr ""
10070
10071 #. type: =head2
10072 #: ../src/guestfs-actions.pod:3043
10073 msgid "guestfs_is_blockdev"
10074 msgstr ""
10075
10076 #. type: verbatim
10077 #: ../src/guestfs-actions.pod:3045
10078 #, no-wrap
10079 msgid ""
10080 " int\n"
10081 " guestfs_is_blockdev (guestfs_h *g,\n"
10082 "                      const char *path);\n"
10083 "\n"
10084 msgstr ""
10085
10086 #. type: textblock
10087 #: ../src/guestfs-actions.pod:3049 ../fish/guestfish-actions.pod:2123
10088 msgid ""
10089 "This returns C<true> if and only if there is a block device with the given "
10090 "C<path> name."
10091 msgstr ""
10092
10093 #. type: textblock
10094 #: ../src/guestfs-actions.pod:3052 ../src/guestfs-actions.pod:3081 ../src/guestfs-actions.pod:3111 ../src/guestfs-actions.pod:3126 ../src/guestfs-actions.pod:3142 ../src/guestfs-actions.pod:3198 ../src/guestfs-actions.pod:3213
10095 msgid "See also C<guestfs_stat>."
10096 msgstr ""
10097
10098 #. type: textblock
10099 #: ../src/guestfs-actions.pod:3056 ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3130 ../src/guestfs-actions.pod:3202 ../src/guestfs-actions.pod:3217
10100 msgid "(Added in 1.5.10)"
10101 msgstr ""
10102
10103 #. type: =head2
10104 #: ../src/guestfs-actions.pod:3058
10105 msgid "guestfs_is_busy"
10106 msgstr ""
10107
10108 #. type: verbatim
10109 #: ../src/guestfs-actions.pod:3060
10110 #, no-wrap
10111 msgid ""
10112 " int\n"
10113 " guestfs_is_busy (guestfs_h *g);\n"
10114 "\n"
10115 msgstr ""
10116
10117 #. type: textblock
10118 #: ../src/guestfs-actions.pod:3063 ../fish/guestfish-actions.pod:2132
10119 msgid ""
10120 "This returns true iff this handle is busy processing a command (in the "
10121 "C<BUSY> state)."
10122 msgstr ""
10123
10124 #. type: =head2
10125 #: ../src/guestfs-actions.pod:3072
10126 msgid "guestfs_is_chardev"
10127 msgstr ""
10128
10129 #. type: verbatim
10130 #: ../src/guestfs-actions.pod:3074
10131 #, no-wrap
10132 msgid ""
10133 " int\n"
10134 " guestfs_is_chardev (guestfs_h *g,\n"
10135 "                     const char *path);\n"
10136 "\n"
10137 msgstr ""
10138
10139 #. type: textblock
10140 #: ../src/guestfs-actions.pod:3078 ../fish/guestfish-actions.pod:2141
10141 msgid ""
10142 "This returns C<true> if and only if there is a character device with the "
10143 "given C<path> name."
10144 msgstr ""
10145
10146 #. type: =head2
10147 #: ../src/guestfs-actions.pod:3087
10148 msgid "guestfs_is_config"
10149 msgstr ""
10150
10151 #. type: verbatim
10152 #: ../src/guestfs-actions.pod:3089
10153 #, no-wrap
10154 msgid ""
10155 " int\n"
10156 " guestfs_is_config (guestfs_h *g);\n"
10157 "\n"
10158 msgstr ""
10159
10160 #. type: textblock
10161 #: ../src/guestfs-actions.pod:3092 ../fish/guestfish-actions.pod:2150
10162 msgid ""
10163 "This returns true iff this handle is being configured (in the C<CONFIG> "
10164 "state)."
10165 msgstr ""
10166
10167 #. type: =head2
10168 #: ../src/guestfs-actions.pod:3101
10169 msgid "guestfs_is_dir"
10170 msgstr ""
10171
10172 #. type: verbatim
10173 #: ../src/guestfs-actions.pod:3103
10174 #, no-wrap
10175 msgid ""
10176 " int\n"
10177 " guestfs_is_dir (guestfs_h *g,\n"
10178 "                 const char *path);\n"
10179 "\n"
10180 msgstr ""
10181
10182 #. type: textblock
10183 #: ../src/guestfs-actions.pod:3107 ../fish/guestfish-actions.pod:2159
10184 msgid ""
10185 "This returns C<true> if and only if there is a directory with the given "
10186 "C<path> name.  Note that it returns false for other objects like files."
10187 msgstr ""
10188
10189 #. type: =head2
10190 #: ../src/guestfs-actions.pod:3117
10191 msgid "guestfs_is_fifo"
10192 msgstr ""
10193
10194 #. type: verbatim
10195 #: ../src/guestfs-actions.pod:3119
10196 #, no-wrap
10197 msgid ""
10198 " int\n"
10199 " guestfs_is_fifo (guestfs_h *g,\n"
10200 "                  const char *path);\n"
10201 "\n"
10202 msgstr ""
10203
10204 #. type: textblock
10205 #: ../src/guestfs-actions.pod:3123 ../fish/guestfish-actions.pod:2169
10206 msgid ""
10207 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
10208 "given C<path> name."
10209 msgstr ""
10210
10211 #. type: =head2
10212 #: ../src/guestfs-actions.pod:3132
10213 msgid "guestfs_is_file"
10214 msgstr ""
10215
10216 #. type: verbatim
10217 #: ../src/guestfs-actions.pod:3134
10218 #, no-wrap
10219 msgid ""
10220 " int\n"
10221 " guestfs_is_file (guestfs_h *g,\n"
10222 "                  const char *path);\n"
10223 "\n"
10224 msgstr ""
10225
10226 #. type: textblock
10227 #: ../src/guestfs-actions.pod:3138 ../fish/guestfish-actions.pod:2178
10228 msgid ""
10229 "This returns C<true> if and only if there is a regular file with the given "
10230 "C<path> name.  Note that it returns false for other objects like "
10231 "directories."
10232 msgstr ""
10233
10234 #. type: =head2
10235 #: ../src/guestfs-actions.pod:3148
10236 msgid "guestfs_is_launching"
10237 msgstr ""
10238
10239 #. type: verbatim
10240 #: ../src/guestfs-actions.pod:3150
10241 #, no-wrap
10242 msgid ""
10243 " int\n"
10244 " guestfs_is_launching (guestfs_h *g);\n"
10245 "\n"
10246 msgstr ""
10247
10248 #. type: textblock
10249 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2188
10250 msgid ""
10251 "This returns true iff this handle is launching the subprocess (in the "
10252 "C<LAUNCHING> state)."
10253 msgstr ""
10254
10255 #. type: =head2
10256 #: ../src/guestfs-actions.pod:3162
10257 msgid "guestfs_is_lv"
10258 msgstr ""
10259
10260 #. type: verbatim
10261 #: ../src/guestfs-actions.pod:3164
10262 #, no-wrap
10263 msgid ""
10264 " int\n"
10265 " guestfs_is_lv (guestfs_h *g,\n"
10266 "                const char *device);\n"
10267 "\n"
10268 msgstr ""
10269
10270 #. type: textblock
10271 #: ../src/guestfs-actions.pod:3168 ../fish/guestfish-actions.pod:2197
10272 msgid ""
10273 "This command tests whether C<device> is a logical volume, and returns true "
10274 "iff this is the case."
10275 msgstr ""
10276
10277 #. type: =head2
10278 #: ../src/guestfs-actions.pod:3175
10279 msgid "guestfs_is_ready"
10280 msgstr ""
10281
10282 #. type: verbatim
10283 #: ../src/guestfs-actions.pod:3177
10284 #, no-wrap
10285 msgid ""
10286 " int\n"
10287 " guestfs_is_ready (guestfs_h *g);\n"
10288 "\n"
10289 msgstr ""
10290
10291 #. type: textblock
10292 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2204
10293 msgid ""
10294 "This returns true iff this handle is ready to accept commands (in the "
10295 "C<READY> state)."
10296 msgstr ""
10297
10298 #. type: =head2
10299 #: ../src/guestfs-actions.pod:3189
10300 msgid "guestfs_is_socket"
10301 msgstr ""
10302
10303 #. type: verbatim
10304 #: ../src/guestfs-actions.pod:3191
10305 #, no-wrap
10306 msgid ""
10307 " int\n"
10308 " guestfs_is_socket (guestfs_h *g,\n"
10309 "                    const char *path);\n"
10310 "\n"
10311 msgstr ""
10312
10313 #. type: textblock
10314 #: ../src/guestfs-actions.pod:3195 ../fish/guestfish-actions.pod:2213
10315 msgid ""
10316 "This returns C<true> if and only if there is a Unix domain socket with the "
10317 "given C<path> name."
10318 msgstr ""
10319
10320 #. type: =head2
10321 #: ../src/guestfs-actions.pod:3204
10322 msgid "guestfs_is_symlink"
10323 msgstr ""
10324
10325 #. type: verbatim
10326 #: ../src/guestfs-actions.pod:3206
10327 #, no-wrap
10328 msgid ""
10329 " int\n"
10330 " guestfs_is_symlink (guestfs_h *g,\n"
10331 "                     const char *path);\n"
10332 "\n"
10333 msgstr ""
10334
10335 #. type: textblock
10336 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2222
10337 msgid ""
10338 "This returns C<true> if and only if there is a symbolic link with the given "
10339 "C<path> name."
10340 msgstr ""
10341
10342 #. type: =head2
10343 #: ../src/guestfs-actions.pod:3219
10344 msgid "guestfs_kill_subprocess"
10345 msgstr ""
10346
10347 #. type: verbatim
10348 #: ../src/guestfs-actions.pod:3221
10349 #, no-wrap
10350 msgid ""
10351 " int\n"
10352 " guestfs_kill_subprocess (guestfs_h *g);\n"
10353 "\n"
10354 msgstr ""
10355
10356 #. type: textblock
10357 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2231
10358 msgid "This kills the qemu subprocess.  You should never need to call this."
10359 msgstr ""
10360
10361 #. type: =head2
10362 #: ../src/guestfs-actions.pod:3230
10363 msgid "guestfs_launch"
10364 msgstr ""
10365
10366 #. type: verbatim
10367 #: ../src/guestfs-actions.pod:3232
10368 #, no-wrap
10369 msgid ""
10370 " int\n"
10371 " guestfs_launch (guestfs_h *g);\n"
10372 "\n"
10373 msgstr ""
10374
10375 #. type: textblock
10376 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2239
10377 msgid ""
10378 "Internally libguestfs is implemented by running a virtual machine using "
10379 "L<qemu(1)>."
10380 msgstr ""
10381
10382 #. type: textblock
10383 #: ../src/guestfs-actions.pod:3238 ../fish/guestfish-actions.pod:2242
10384 msgid ""
10385 "You should call this after configuring the handle (eg. adding drives) but "
10386 "before performing any actions."
10387 msgstr ""
10388
10389 #. type: =head2
10390 #: ../src/guestfs-actions.pod:3245
10391 msgid "guestfs_lchown"
10392 msgstr ""
10393
10394 #. type: verbatim
10395 #: ../src/guestfs-actions.pod:3247
10396 #, no-wrap
10397 msgid ""
10398 " int\n"
10399 " guestfs_lchown (guestfs_h *g,\n"
10400 "                 int owner,\n"
10401 "                 int group,\n"
10402 "                 const char *path);\n"
10403 "\n"
10404 msgstr ""
10405
10406 #. type: textblock
10407 #: ../src/guestfs-actions.pod:3253
10408 msgid ""
10409 "Change the file owner to C<owner> and group to C<group>.  This is like "
10410 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
10411 "changed, not the target."
10412 msgstr ""
10413
10414 #. type: =head2
10415 #: ../src/guestfs-actions.pod:3265
10416 msgid "guestfs_lgetxattr"
10417 msgstr ""
10418
10419 #. type: verbatim
10420 #: ../src/guestfs-actions.pod:3267
10421 #, no-wrap
10422 msgid ""
10423 " char *\n"
10424 " guestfs_lgetxattr (guestfs_h *g,\n"
10425 "                    const char *path,\n"
10426 "                    const char *name,\n"
10427 "                    size_t *size_r);\n"
10428 "\n"
10429 msgstr ""
10430
10431 #. type: textblock
10432 #: ../src/guestfs-actions.pod:3273 ../fish/guestfish-actions.pod:2261
10433 msgid ""
10434 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
10435 "is a symlink, then this call returns an extended attribute from the symlink."
10436 msgstr ""
10437
10438 #. type: textblock
10439 #: ../src/guestfs-actions.pod:3287
10440 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
10441 msgstr ""
10442
10443 #. type: =head2
10444 #: ../src/guestfs-actions.pod:3295
10445 msgid "guestfs_lgetxattrs"
10446 msgstr ""
10447
10448 #. type: verbatim
10449 #: ../src/guestfs-actions.pod:3297
10450 #, no-wrap
10451 msgid ""
10452 " struct guestfs_xattr_list *\n"
10453 " guestfs_lgetxattrs (guestfs_h *g,\n"
10454 "                     const char *path);\n"
10455 "\n"
10456 msgstr ""
10457
10458 #. type: textblock
10459 #: ../src/guestfs-actions.pod:3301
10460 msgid ""
10461 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
10462 "then it returns the extended attributes of the link itself."
10463 msgstr ""
10464
10465 #. type: =head2
10466 #: ../src/guestfs-actions.pod:3311
10467 msgid "guestfs_list_devices"
10468 msgstr ""
10469
10470 #. type: verbatim
10471 #: ../src/guestfs-actions.pod:3313
10472 #, no-wrap
10473 msgid ""
10474 " char **\n"
10475 " guestfs_list_devices (guestfs_h *g);\n"
10476 "\n"
10477 msgstr ""
10478
10479 #. type: textblock
10480 #: ../src/guestfs-actions.pod:3316 ../fish/guestfish-actions.pod:2289
10481 msgid "List all the block devices."
10482 msgstr ""
10483
10484 #. type: textblock
10485 #: ../src/guestfs-actions.pod:3318 ../fish/guestfish-actions.pod:2291
10486 msgid "The full block device names are returned, eg. C</dev/sda>."
10487 msgstr ""
10488
10489 #. type: =head2
10490 #: ../src/guestfs-actions.pod:3328
10491 msgid "guestfs_list_filesystems"
10492 msgstr ""
10493
10494 #. type: verbatim
10495 #: ../src/guestfs-actions.pod:3330
10496 #, no-wrap
10497 msgid ""
10498 " char **\n"
10499 " guestfs_list_filesystems (guestfs_h *g);\n"
10500 "\n"
10501 msgstr ""
10502
10503 #. type: textblock
10504 #: ../src/guestfs-actions.pod:3333 ../fish/guestfish-actions.pod:2299
10505 msgid ""
10506 "This inspection command looks for filesystems on partitions, block devices "
10507 "and logical volumes, returning a list of devices containing filesystems and "
10508 "their type."
10509 msgstr ""
10510
10511 #. type: textblock
10512 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2303
10513 msgid ""
10514 "The return value is a hash, where the keys are the devices containing "
10515 "filesystems, and the values are the filesystem types.  For example:"
10516 msgstr ""
10517
10518 #. type: verbatim
10519 #: ../src/guestfs-actions.pod:3341 ../fish/guestfish-actions.pod:2307
10520 #, no-wrap
10521 msgid ""
10522 " \"/dev/sda1\" => \"ntfs\"\n"
10523 " \"/dev/sda2\" => \"ext2\"\n"
10524 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
10525 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
10526 "\n"
10527 msgstr ""
10528
10529 #. type: textblock
10530 #: ../src/guestfs-actions.pod:3346 ../fish/guestfish-actions.pod:2312
10531 msgid ""
10532 "The value can have the special value \"unknown\", meaning the content of the "
10533 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
10534 msgstr ""
10535
10536 #. type: textblock
10537 #: ../src/guestfs-actions.pod:3350
10538 msgid ""
10539 "This command runs other libguestfs commands, which might include "
10540 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
10541 "soon after launch and only when nothing is mounted."
10542 msgstr ""
10543
10544 #. type: textblock
10545 #: ../src/guestfs-actions.pod:3354
10546 msgid ""
10547 "Not all of the filesystems returned will be mountable.  In particular, swap "
10548 "partitions are returned in the list.  Also this command does not check that "
10549 "each filesystem found is valid and mountable, and some filesystems might be "
10550 "mountable but require special options.  Filesystems may not all belong to a "
10551 "single logical operating system (use C<guestfs_inspect_os> to look for "
10552 "OSes)."
10553 msgstr ""
10554
10555 #. type: textblock
10556 #: ../src/guestfs-actions.pod:3368 ../src/guestfs-actions.pod:4961
10557 msgid "(Added in 1.5.15)"
10558 msgstr ""
10559
10560 #. type: =head2
10561 #: ../src/guestfs-actions.pod:3370
10562 msgid "guestfs_list_partitions"
10563 msgstr ""
10564
10565 #. type: verbatim
10566 #: ../src/guestfs-actions.pod:3372
10567 #, no-wrap
10568 msgid ""
10569 " char **\n"
10570 " guestfs_list_partitions (guestfs_h *g);\n"
10571 "\n"
10572 msgstr ""
10573
10574 #. type: textblock
10575 #: ../src/guestfs-actions.pod:3375 ../fish/guestfish-actions.pod:2332
10576 msgid "List all the partitions detected on all block devices."
10577 msgstr ""
10578
10579 #. type: textblock
10580 #: ../src/guestfs-actions.pod:3377 ../fish/guestfish-actions.pod:2334
10581 msgid "The full partition device names are returned, eg. C</dev/sda1>"
10582 msgstr ""
10583
10584 #. type: textblock
10585 #: ../src/guestfs-actions.pod:3379
10586 msgid ""
10587 "This does not return logical volumes.  For that you will need to call "
10588 "C<guestfs_lvs>."
10589 msgstr ""
10590
10591 #. type: =head2
10592 #: ../src/guestfs-actions.pod:3390
10593 msgid "guestfs_ll"
10594 msgstr ""
10595
10596 #. type: verbatim
10597 #: ../src/guestfs-actions.pod:3392
10598 #, no-wrap
10599 msgid ""
10600 " char *\n"
10601 " guestfs_ll (guestfs_h *g,\n"
10602 "             const char *directory);\n"
10603 "\n"
10604 msgstr ""
10605
10606 #. type: textblock
10607 #: ../src/guestfs-actions.pod:3396 ../fish/guestfish-actions.pod:2345
10608 msgid ""
10609 "List the files in C<directory> (relative to the root directory, there is no "
10610 "cwd) in the format of 'ls -la'."
10611 msgstr ""
10612
10613 #. type: textblock
10614 #: ../src/guestfs-actions.pod:3399 ../fish/guestfish-actions.pod:2348
10615 msgid ""
10616 "This command is mostly useful for interactive sessions.  It is I<not> "
10617 "intended that you try to parse the output string."
10618 msgstr ""
10619
10620 #. type: =head2
10621 #: ../src/guestfs-actions.pod:3407
10622 msgid "guestfs_ln"
10623 msgstr ""
10624
10625 #. type: verbatim
10626 #: ../src/guestfs-actions.pod:3409
10627 #, no-wrap
10628 msgid ""
10629 " int\n"
10630 " guestfs_ln (guestfs_h *g,\n"
10631 "             const char *target,\n"
10632 "             const char *linkname);\n"
10633 "\n"
10634 msgstr ""
10635
10636 #. type: textblock
10637 #: ../src/guestfs-actions.pod:3414 ../fish/guestfish-actions.pod:2355
10638 msgid "This command creates a hard link using the C<ln> command."
10639 msgstr ""
10640
10641 #. type: =head2
10642 #: ../src/guestfs-actions.pod:3420
10643 msgid "guestfs_ln_f"
10644 msgstr ""
10645
10646 #. type: verbatim
10647 #: ../src/guestfs-actions.pod:3422
10648 #, no-wrap
10649 msgid ""
10650 " int\n"
10651 " guestfs_ln_f (guestfs_h *g,\n"
10652 "               const char *target,\n"
10653 "               const char *linkname);\n"
10654 "\n"
10655 msgstr ""
10656
10657 #. type: textblock
10658 #: ../src/guestfs-actions.pod:3427 ../fish/guestfish-actions.pod:2361
10659 msgid ""
10660 "This command creates a hard link using the C<ln -f> command.  The C<-f> "
10661 "option removes the link (C<linkname>) if it exists already."
10662 msgstr ""
10663
10664 #. type: =head2
10665 #: ../src/guestfs-actions.pod:3434
10666 msgid "guestfs_ln_s"
10667 msgstr ""
10668
10669 #. type: verbatim
10670 #: ../src/guestfs-actions.pod:3436
10671 #, no-wrap
10672 msgid ""
10673 " int\n"
10674 " guestfs_ln_s (guestfs_h *g,\n"
10675 "               const char *target,\n"
10676 "               const char *linkname);\n"
10677 "\n"
10678 msgstr ""
10679
10680 #. type: textblock
10681 #: ../src/guestfs-actions.pod:3441 ../fish/guestfish-actions.pod:2368
10682 msgid "This command creates a symbolic link using the C<ln -s> command."
10683 msgstr ""
10684
10685 #. type: =head2
10686 #: ../src/guestfs-actions.pod:3447
10687 msgid "guestfs_ln_sf"
10688 msgstr ""
10689
10690 #. type: verbatim
10691 #: ../src/guestfs-actions.pod:3449
10692 #, no-wrap
10693 msgid ""
10694 " int\n"
10695 " guestfs_ln_sf (guestfs_h *g,\n"
10696 "                const char *target,\n"
10697 "                const char *linkname);\n"
10698 "\n"
10699 msgstr ""
10700
10701 #. type: textblock
10702 #: ../src/guestfs-actions.pod:3454 ../fish/guestfish-actions.pod:2374
10703 msgid ""
10704 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
10705 "option removes the link (C<linkname>) if it exists already."
10706 msgstr ""
10707
10708 #. type: =head2
10709 #: ../src/guestfs-actions.pod:3461
10710 msgid "guestfs_lremovexattr"
10711 msgstr ""
10712
10713 #. type: verbatim
10714 #: ../src/guestfs-actions.pod:3463
10715 #, no-wrap
10716 msgid ""
10717 " int\n"
10718 " guestfs_lremovexattr (guestfs_h *g,\n"
10719 "                       const char *xattr,\n"
10720 "                       const char *path);\n"
10721 "\n"
10722 msgstr ""
10723
10724 #. type: textblock
10725 #: ../src/guestfs-actions.pod:3468
10726 msgid ""
10727 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
10728 "link, then it removes an extended attribute of the link itself."
10729 msgstr ""
10730
10731 #. type: =head2
10732 #: ../src/guestfs-actions.pod:3476
10733 msgid "guestfs_ls"
10734 msgstr ""
10735
10736 #. type: verbatim
10737 #: ../src/guestfs-actions.pod:3478
10738 #, no-wrap
10739 msgid ""
10740 " char **\n"
10741 " guestfs_ls (guestfs_h *g,\n"
10742 "             const char *directory);\n"
10743 "\n"
10744 msgstr ""
10745
10746 #. type: textblock
10747 #: ../src/guestfs-actions.pod:3482 ../fish/guestfish-actions.pod:2389
10748 msgid ""
10749 "List the files in C<directory> (relative to the root directory, there is no "
10750 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
10751 "shown."
10752 msgstr ""
10753
10754 #. type: textblock
10755 #: ../src/guestfs-actions.pod:3486
10756 msgid ""
10757 "This command is mostly useful for interactive sessions.  Programs should "
10758 "probably use C<guestfs_readdir> instead."
10759 msgstr ""
10760
10761 #. type: =head2
10762 #: ../src/guestfs-actions.pod:3495
10763 msgid "guestfs_lsetxattr"
10764 msgstr ""
10765
10766 #. type: verbatim
10767 #: ../src/guestfs-actions.pod:3497
10768 #, no-wrap
10769 msgid ""
10770 " int\n"
10771 " guestfs_lsetxattr (guestfs_h *g,\n"
10772 "                    const char *xattr,\n"
10773 "                    const char *val,\n"
10774 "                    int vallen,\n"
10775 "                    const char *path);\n"
10776 "\n"
10777 msgstr ""
10778
10779 #. type: textblock
10780 #: ../src/guestfs-actions.pod:3504
10781 msgid ""
10782 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
10783 "then it sets an extended attribute of the link itself."
10784 msgstr ""
10785
10786 #. type: =head2
10787 #: ../src/guestfs-actions.pod:3512
10788 msgid "guestfs_lstat"
10789 msgstr ""
10790
10791 #. type: verbatim
10792 #: ../src/guestfs-actions.pod:3514
10793 #, no-wrap
10794 msgid ""
10795 " struct guestfs_stat *\n"
10796 " guestfs_lstat (guestfs_h *g,\n"
10797 "                const char *path);\n"
10798 "\n"
10799 msgstr ""
10800
10801 #. type: textblock
10802 #: ../src/guestfs-actions.pod:3518 ../src/guestfs-actions.pod:6015 ../fish/guestfish-actions.pod:2408 ../fish/guestfish-actions.pod:4023
10803 msgid "Returns file information for the given C<path>."
10804 msgstr ""
10805
10806 #. type: textblock
10807 #: ../src/guestfs-actions.pod:3520
10808 msgid ""
10809 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
10810 "link, then the link is stat-ed, not the file it refers to."
10811 msgstr ""
10812
10813 #. type: textblock
10814 #: ../src/guestfs-actions.pod:3524 ../fish/guestfish-actions.pod:2414
10815 msgid "This is the same as the C<lstat(2)> system call."
10816 msgstr ""
10817
10818 #. type: textblock
10819 #: ../src/guestfs-actions.pod:3526 ../src/guestfs-actions.pod:6019
10820 msgid ""
10821 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
10822 "error.  I<The caller must call C<guestfs_free_stat> after use>."
10823 msgstr ""
10824
10825 #. type: textblock
10826 #: ../src/guestfs-actions.pod:3530 ../src/guestfs-actions.pod:6023 ../src/guestfs-actions.pod:6041 ../src/guestfs-actions.pod:6422
10827 msgid "(Added in 0.9.2)"
10828 msgstr ""
10829
10830 #. type: =head2
10831 #: ../src/guestfs-actions.pod:3532
10832 msgid "guestfs_lstatlist"
10833 msgstr ""
10834
10835 #. type: verbatim
10836 #: ../src/guestfs-actions.pod:3534
10837 #, no-wrap
10838 msgid ""
10839 " struct guestfs_stat_list *\n"
10840 " guestfs_lstatlist (guestfs_h *g,\n"
10841 "                    const char *path,\n"
10842 "                    char *const *names);\n"
10843 "\n"
10844 msgstr ""
10845
10846 #. type: textblock
10847 #: ../src/guestfs-actions.pod:3539
10848 msgid ""
10849 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
10850 "files, where all files are in the directory C<path>.  C<names> is the list "
10851 "of files from this directory."
10852 msgstr ""
10853
10854 #. type: textblock
10855 #: ../src/guestfs-actions.pod:3543 ../fish/guestfish-actions.pod:2424
10856 msgid ""
10857 "On return you get a list of stat structs, with a one-to-one correspondence "
10858 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
10859 "then the C<ino> field of that structure is set to C<-1>."
10860 msgstr ""
10861
10862 #. type: textblock
10863 #: ../src/guestfs-actions.pod:3548
10864 msgid ""
10865 "This call is intended for programs that want to efficiently list a directory "
10866 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
10867 "for a similarly efficient call for getting extended attributes.  Very long "
10868 "directory listings might cause the protocol message size to be exceeded, "
10869 "causing this call to fail.  The caller must split up such requests into "
10870 "smaller groups of names."
10871 msgstr ""
10872
10873 #. type: textblock
10874 #: ../src/guestfs-actions.pod:3556
10875 msgid ""
10876 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
10877 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
10878 msgstr ""
10879
10880 #. type: =head2
10881 #: ../src/guestfs-actions.pod:3562
10882 msgid "guestfs_luks_add_key"
10883 msgstr ""
10884
10885 #. type: verbatim
10886 #: ../src/guestfs-actions.pod:3564
10887 #, no-wrap
10888 msgid ""
10889 " int\n"
10890 " guestfs_luks_add_key (guestfs_h *g,\n"
10891 "                       const char *device,\n"
10892 "                       const char *key,\n"
10893 "                       const char *newkey,\n"
10894 "                       int keyslot);\n"
10895 "\n"
10896 msgstr ""
10897
10898 #. type: textblock
10899 #: ../src/guestfs-actions.pod:3571 ../fish/guestfish-actions.pod:2441
10900 msgid ""
10901 "This command adds a new key on LUKS device C<device>.  C<key> is any "
10902 "existing key, and is used to access the device.  C<newkey> is the new key to "
10903 "add.  C<keyslot> is the key slot that will be replaced."
10904 msgstr ""
10905
10906 #. type: textblock
10907 #: ../src/guestfs-actions.pod:3576
10908 msgid ""
10909 "Note that if C<keyslot> already contains a key, then this command will "
10910 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
10911 msgstr ""
10912
10913 #. type: textblock
10914 #: ../src/guestfs-actions.pod:3582 ../src/guestfs-actions.pod:3622 ../src/guestfs-actions.pod:3645 ../src/guestfs-actions.pod:3665 ../src/guestfs-actions.pod:3697 ../src/guestfs-actions.pod:3716
10915 msgid ""
10916 "This function takes a key or passphrase parameter which could contain "
10917 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
10918 "information."
10919 msgstr ""
10920
10921 #. type: textblock
10922 #: ../src/guestfs-actions.pod:3586 ../src/guestfs-actions.pod:3626 ../src/guestfs-actions.pod:3649 ../src/guestfs-actions.pod:3669
10923 msgid "(Added in 1.5.2)"
10924 msgstr ""
10925
10926 #. type: =head2
10927 #: ../src/guestfs-actions.pod:3588
10928 msgid "guestfs_luks_close"
10929 msgstr ""
10930
10931 #. type: verbatim
10932 #: ../src/guestfs-actions.pod:3590
10933 #, no-wrap
10934 msgid ""
10935 " int\n"
10936 " guestfs_luks_close (guestfs_h *g,\n"
10937 "                     const char *device);\n"
10938 "\n"
10939 msgstr ""
10940
10941 #. type: textblock
10942 #: ../src/guestfs-actions.pod:3594
10943 msgid ""
10944 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
10945 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
10946 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
10947 "underlying block device."
10948 msgstr ""
10949
10950 #. type: textblock
10951 #: ../src/guestfs-actions.pod:3602 ../src/guestfs-actions.pod:3701 ../src/guestfs-actions.pod:3720 ../src/guestfs-actions.pod:3770 ../src/guestfs-actions.pod:3818
10952 msgid "(Added in 1.5.1)"
10953 msgstr ""
10954
10955 #. type: =head2
10956 #: ../src/guestfs-actions.pod:3604
10957 msgid "guestfs_luks_format"
10958 msgstr ""
10959
10960 #. type: verbatim
10961 #: ../src/guestfs-actions.pod:3606
10962 #, no-wrap
10963 msgid ""
10964 " int\n"
10965 " guestfs_luks_format (guestfs_h *g,\n"
10966 "                      const char *device,\n"
10967 "                      const char *key,\n"
10968 "                      int keyslot);\n"
10969 "\n"
10970 msgstr ""
10971
10972 #. type: textblock
10973 #: ../src/guestfs-actions.pod:3612 ../fish/guestfish-actions.pod:2467
10974 msgid ""
10975 "This command erases existing data on C<device> and formats the device as a "
10976 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
10977 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
10978 msgstr ""
10979
10980 #. type: textblock
10981 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3642 ../src/guestfs-actions.pod:3782 ../src/guestfs-actions.pod:4712 ../src/guestfs-actions.pod:5475 ../src/guestfs-actions.pod:5850 ../src/guestfs-actions.pod:5873 ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:2475 ../fish/guestfish-actions.pod:2488 ../fish/guestfish-actions.pod:2572 ../fish/guestfish-actions.pod:3135 ../fish/guestfish-actions.pod:3642 ../fish/guestfish-actions.pod:3922 ../fish/guestfish-actions.pod:3938 ../fish/guestfish-actions.pod:3953 ../fish/guestfish-actions.pod:4668
10982 msgid ""
10983 "B<This command is dangerous.  Without careful use you can easily destroy all "
10984 "your data>."
10985 msgstr ""
10986
10987 #. type: =head2
10988 #: ../src/guestfs-actions.pod:3628
10989 msgid "guestfs_luks_format_cipher"
10990 msgstr ""
10991
10992 #. type: verbatim
10993 #: ../src/guestfs-actions.pod:3630
10994 #, no-wrap
10995 msgid ""
10996 " int\n"
10997 " guestfs_luks_format_cipher (guestfs_h *g,\n"
10998 "                             const char *device,\n"
10999 "                             const char *key,\n"
11000 "                             int keyslot,\n"
11001 "                             const char *cipher);\n"
11002 "\n"
11003 msgstr ""
11004
11005 #. type: textblock
11006 #: ../src/guestfs-actions.pod:3637
11007 msgid ""
11008 "This command is the same as C<guestfs_luks_format> but it also allows you to "
11009 "set the C<cipher> used."
11010 msgstr ""
11011
11012 #. type: =head2
11013 #: ../src/guestfs-actions.pod:3651
11014 msgid "guestfs_luks_kill_slot"
11015 msgstr ""
11016
11017 #. type: verbatim
11018 #: ../src/guestfs-actions.pod:3653
11019 #, no-wrap
11020 msgid ""
11021 " int\n"
11022 " guestfs_luks_kill_slot (guestfs_h *g,\n"
11023 "                         const char *device,\n"
11024 "                         const char *key,\n"
11025 "                         int keyslot);\n"
11026 "\n"
11027 msgstr ""
11028
11029 #. type: textblock
11030 #: ../src/guestfs-actions.pod:3659 ../fish/guestfish-actions.pod:2495
11031 msgid ""
11032 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
11033 "device C<device>.  C<key> must be one of the I<other> keys."
11034 msgstr ""
11035
11036 #. type: =head2
11037 #: ../src/guestfs-actions.pod:3671
11038 msgid "guestfs_luks_open"
11039 msgstr ""
11040
11041 #. type: verbatim
11042 #: ../src/guestfs-actions.pod:3673
11043 #, no-wrap
11044 msgid ""
11045 " int\n"
11046 " guestfs_luks_open (guestfs_h *g,\n"
11047 "                    const char *device,\n"
11048 "                    const char *key,\n"
11049 "                    const char *mapname);\n"
11050 "\n"
11051 msgstr ""
11052
11053 #. type: textblock
11054 #: ../src/guestfs-actions.pod:3679 ../fish/guestfish-actions.pod:2506
11055 msgid ""
11056 "This command opens a block device which has been encrypted according to the "
11057 "Linux Unified Key Setup (LUKS) standard."
11058 msgstr ""
11059
11060 #. type: textblock
11061 #: ../src/guestfs-actions.pod:3682 ../fish/guestfish-actions.pod:2509
11062 msgid "C<device> is the encrypted block device or partition."
11063 msgstr ""
11064
11065 #. type: textblock
11066 #: ../src/guestfs-actions.pod:3684 ../fish/guestfish-actions.pod:2511
11067 msgid ""
11068 "The caller must supply one of the keys associated with the LUKS block "
11069 "device, in the C<key> parameter."
11070 msgstr ""
11071
11072 #. type: textblock
11073 #: ../src/guestfs-actions.pod:3687 ../fish/guestfish-actions.pod:2514
11074 msgid ""
11075 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
11076 "writes to this block device are decrypted from and encrypted to the "
11077 "underlying C<device> respectively."
11078 msgstr ""
11079
11080 #. type: textblock
11081 #: ../src/guestfs-actions.pod:3691
11082 msgid ""
11083 "If this block device contains LVM volume groups, then calling "
11084 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
11085 "visible."
11086 msgstr ""
11087
11088 #. type: =head2
11089 #: ../src/guestfs-actions.pod:3703
11090 msgid "guestfs_luks_open_ro"
11091 msgstr ""
11092
11093 #. type: verbatim
11094 #: ../src/guestfs-actions.pod:3705
11095 #, no-wrap
11096 msgid ""
11097 " int\n"
11098 " guestfs_luks_open_ro (guestfs_h *g,\n"
11099 "                       const char *device,\n"
11100 "                       const char *key,\n"
11101 "                       const char *mapname);\n"
11102 "\n"
11103 msgstr ""
11104
11105 #. type: textblock
11106 #: ../src/guestfs-actions.pod:3711
11107 msgid ""
11108 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
11109 "created."
11110 msgstr ""
11111
11112 #. type: =head2
11113 #: ../src/guestfs-actions.pod:3722
11114 msgid "guestfs_lvcreate"
11115 msgstr ""
11116
11117 #. type: verbatim
11118 #: ../src/guestfs-actions.pod:3724
11119 #, no-wrap
11120 msgid ""
11121 " int\n"
11122 " guestfs_lvcreate (guestfs_h *g,\n"
11123 "                   const char *logvol,\n"
11124 "                   const char *volgroup,\n"
11125 "                   int mbytes);\n"
11126 "\n"
11127 msgstr ""
11128
11129 #. type: textblock
11130 #: ../src/guestfs-actions.pod:3730 ../fish/guestfish-actions.pod:2539
11131 msgid ""
11132 "This creates an LVM logical volume called C<logvol> on the volume group "
11133 "C<volgroup>, with C<size> megabytes."
11134 msgstr ""
11135
11136 #. type: =head2
11137 #: ../src/guestfs-actions.pod:3737
11138 msgid "guestfs_lvm_canonical_lv_name"
11139 msgstr ""
11140
11141 #. type: verbatim
11142 #: ../src/guestfs-actions.pod:3739
11143 #, no-wrap
11144 msgid ""
11145 " char *\n"
11146 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
11147 "                                const char *lvname);\n"
11148 "\n"
11149 msgstr ""
11150
11151 #. type: textblock
11152 #: ../src/guestfs-actions.pod:3743 ../fish/guestfish-actions.pod:2546
11153 msgid ""
11154 "This converts alternative naming schemes for LVs that you might find to the "
11155 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
11156 "C</dev/VG/LV>."
11157 msgstr ""
11158
11159 #. type: textblock
11160 #: ../src/guestfs-actions.pod:3747 ../fish/guestfish-actions.pod:2550
11161 msgid ""
11162 "This command returns an error if the C<lvname> parameter does not refer to a "
11163 "logical volume."
11164 msgstr ""
11165
11166 #. type: textblock
11167 #: ../src/guestfs-actions.pod:3750
11168 msgid "See also C<guestfs_is_lv>."
11169 msgstr ""
11170
11171 #. type: textblock
11172 #: ../src/guestfs-actions.pod:3755
11173 msgid "(Added in 1.5.24)"
11174 msgstr ""
11175
11176 #. type: =head2
11177 #: ../src/guestfs-actions.pod:3757
11178 msgid "guestfs_lvm_clear_filter"
11179 msgstr ""
11180
11181 #. type: verbatim
11182 #: ../src/guestfs-actions.pod:3759
11183 #, no-wrap
11184 msgid ""
11185 " int\n"
11186 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
11187 "\n"
11188 msgstr ""
11189
11190 #. type: textblock
11191 #: ../src/guestfs-actions.pod:3762
11192 msgid ""
11193 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
11194 "see every block device."
11195 msgstr ""
11196
11197 #. type: textblock
11198 #: ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2562 ../fish/guestfish-actions.pod:2593
11199 msgid "This command also clears the LVM cache and performs a volume group scan."
11200 msgstr ""
11201
11202 #. type: =head2
11203 #: ../src/guestfs-actions.pod:3772
11204 msgid "guestfs_lvm_remove_all"
11205 msgstr ""
11206
11207 #. type: verbatim
11208 #: ../src/guestfs-actions.pod:3774
11209 #, no-wrap
11210 msgid ""
11211 " int\n"
11212 " guestfs_lvm_remove_all (guestfs_h *g);\n"
11213 "\n"
11214 msgstr ""
11215
11216 #. type: textblock
11217 #: ../src/guestfs-actions.pod:3777 ../fish/guestfish-actions.pod:2569
11218 msgid ""
11219 "This command removes all LVM logical volumes, volume groups and physical "
11220 "volumes."
11221 msgstr ""
11222
11223 #. type: =head2
11224 #: ../src/guestfs-actions.pod:3787
11225 msgid "guestfs_lvm_set_filter"
11226 msgstr ""
11227
11228 #. type: verbatim
11229 #: ../src/guestfs-actions.pod:3789
11230 #, no-wrap
11231 msgid ""
11232 " int\n"
11233 " guestfs_lvm_set_filter (guestfs_h *g,\n"
11234 "                         char *const *devices);\n"
11235 "\n"
11236 msgstr ""
11237
11238 #. type: textblock
11239 #: ../src/guestfs-actions.pod:3793 ../fish/guestfish-actions.pod:2579
11240 msgid ""
11241 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
11242 "block devices in the list C<devices>, and will ignore all other attached "
11243 "block devices."
11244 msgstr ""
11245
11246 #. type: textblock
11247 #: ../src/guestfs-actions.pod:3797 ../fish/guestfish-actions.pod:2583
11248 msgid ""
11249 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
11250 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
11251 "there are two types of duplication possible: either cloned PVs/VGs which "
11252 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
11253 "same name.  In normal operation you cannot create this situation, but you "
11254 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
11255 "inside the LVM metadata."
11256 msgstr ""
11257
11258 #. type: textblock
11259 #: ../src/guestfs-actions.pod:3810 ../fish/guestfish-actions.pod:2596
11260 msgid "You can filter whole block devices or individual partitions."
11261 msgstr ""
11262
11263 #. type: textblock
11264 #: ../src/guestfs-actions.pod:3812 ../fish/guestfish-actions.pod:2598
11265 msgid ""
11266 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
11267 "filesystem), even if you are not filtering out that VG."
11268 msgstr ""
11269
11270 #. type: =head2
11271 #: ../src/guestfs-actions.pod:3820
11272 msgid "guestfs_lvremove"
11273 msgstr ""
11274
11275 #. type: verbatim
11276 #: ../src/guestfs-actions.pod:3822
11277 #, no-wrap
11278 msgid ""
11279 " int\n"
11280 " guestfs_lvremove (guestfs_h *g,\n"
11281 "                   const char *device);\n"
11282 "\n"
11283 msgstr ""
11284
11285 #. type: textblock
11286 #: ../src/guestfs-actions.pod:3826 ../fish/guestfish-actions.pod:2606
11287 msgid ""
11288 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
11289 "LV, such as C</dev/VG/LV>."
11290 msgstr ""
11291
11292 #. type: textblock
11293 #: ../src/guestfs-actions.pod:3829 ../fish/guestfish-actions.pod:2609
11294 msgid ""
11295 "You can also remove all LVs in a volume group by specifying the VG name, "
11296 "C</dev/VG>."
11297 msgstr ""
11298
11299 #. type: textblock
11300 #: ../src/guestfs-actions.pod:3834 ../src/guestfs-actions.pod:5058 ../src/guestfs-actions.pod:6798
11301 msgid "(Added in 1.0.13)"
11302 msgstr ""
11303
11304 #. type: =head2
11305 #: ../src/guestfs-actions.pod:3836
11306 msgid "guestfs_lvrename"
11307 msgstr ""
11308
11309 #. type: verbatim
11310 #: ../src/guestfs-actions.pod:3838
11311 #, no-wrap
11312 msgid ""
11313 " int\n"
11314 " guestfs_lvrename (guestfs_h *g,\n"
11315 "                   const char *logvol,\n"
11316 "                   const char *newlogvol);\n"
11317 "\n"
11318 msgstr ""
11319
11320 #. type: textblock
11321 #: ../src/guestfs-actions.pod:3843 ../fish/guestfish-actions.pod:2616
11322 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
11323 msgstr ""
11324
11325 #. type: textblock
11326 #: ../src/guestfs-actions.pod:3847 ../src/guestfs-actions.pod:6811
11327 msgid "(Added in 1.0.83)"
11328 msgstr ""
11329
11330 #. type: =head2
11331 #: ../src/guestfs-actions.pod:3849
11332 msgid "guestfs_lvresize"
11333 msgstr ""
11334
11335 #. type: verbatim
11336 #: ../src/guestfs-actions.pod:3851
11337 #, no-wrap
11338 msgid ""
11339 " int\n"
11340 " guestfs_lvresize (guestfs_h *g,\n"
11341 "                   const char *device,\n"
11342 "                   int mbytes);\n"
11343 "\n"
11344 msgstr ""
11345
11346 #. type: textblock
11347 #: ../src/guestfs-actions.pod:3856 ../fish/guestfish-actions.pod:2622
11348 msgid ""
11349 "This resizes (expands or shrinks) an existing LVM logical volume to "
11350 "C<mbytes>.  When reducing, data in the reduced part is lost."
11351 msgstr ""
11352
11353 #. type: =head2
11354 #: ../src/guestfs-actions.pod:3864
11355 msgid "guestfs_lvresize_free"
11356 msgstr ""
11357
11358 #. type: verbatim
11359 #: ../src/guestfs-actions.pod:3866
11360 #, no-wrap
11361 msgid ""
11362 " int\n"
11363 " guestfs_lvresize_free (guestfs_h *g,\n"
11364 "                        const char *lv,\n"
11365 "                        int percent);\n"
11366 "\n"
11367 msgstr ""
11368
11369 #. type: textblock
11370 #: ../src/guestfs-actions.pod:3871 ../fish/guestfish-actions.pod:2630
11371 msgid ""
11372 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
11373 "remaining free space in the volume group.  Commonly you would call this with "
11374 "pc = 100 which expands the logical volume as much as possible, using all "
11375 "remaining free space in the volume group."
11376 msgstr ""
11377
11378 #. type: textblock
11379 #: ../src/guestfs-actions.pod:3879
11380 msgid "(Added in 1.3.3)"
11381 msgstr ""
11382
11383 #. type: =head2
11384 #: ../src/guestfs-actions.pod:3881
11385 msgid "guestfs_lvs"
11386 msgstr ""
11387
11388 #. type: verbatim
11389 #: ../src/guestfs-actions.pod:3883
11390 #, no-wrap
11391 msgid ""
11392 " char **\n"
11393 " guestfs_lvs (guestfs_h *g);\n"
11394 "\n"
11395 msgstr ""
11396
11397 #. type: textblock
11398 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2640
11399 msgid ""
11400 "List all the logical volumes detected.  This is the equivalent of the "
11401 "L<lvs(8)> command."
11402 msgstr ""
11403
11404 #. type: textblock
11405 #: ../src/guestfs-actions.pod:3889 ../fish/guestfish-actions.pod:2643
11406 msgid ""
11407 "This returns a list of the logical volume device names "
11408 "(eg. C</dev/VolGroup00/LogVol00>)."
11409 msgstr ""
11410
11411 #. type: textblock
11412 #: ../src/guestfs-actions.pod:3892
11413 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
11414 msgstr ""
11415
11416 #. type: =head2
11417 #: ../src/guestfs-actions.pod:3900
11418 msgid "guestfs_lvs_full"
11419 msgstr ""
11420
11421 #. type: verbatim
11422 #: ../src/guestfs-actions.pod:3902
11423 #, no-wrap
11424 msgid ""
11425 " struct guestfs_lvm_lv_list *\n"
11426 " guestfs_lvs_full (guestfs_h *g);\n"
11427 "\n"
11428 msgstr ""
11429
11430 #. type: textblock
11431 #: ../src/guestfs-actions.pod:3905 ../fish/guestfish-actions.pod:2652
11432 msgid ""
11433 "List all the logical volumes detected.  This is the equivalent of the "
11434 "L<lvs(8)> command.  The \"full\" version includes all fields."
11435 msgstr ""
11436
11437 #. type: textblock
11438 #: ../src/guestfs-actions.pod:3908
11439 msgid ""
11440 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
11441 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
11442 "use>."
11443 msgstr ""
11444
11445 #. type: =head2
11446 #: ../src/guestfs-actions.pod:3914
11447 msgid "guestfs_lvuuid"
11448 msgstr ""
11449
11450 #. type: verbatim
11451 #: ../src/guestfs-actions.pod:3916
11452 #, no-wrap
11453 msgid ""
11454 " char *\n"
11455 " guestfs_lvuuid (guestfs_h *g,\n"
11456 "                 const char *device);\n"
11457 "\n"
11458 msgstr ""
11459
11460 #. type: textblock
11461 #: ../src/guestfs-actions.pod:3920 ../fish/guestfish-actions.pod:2659
11462 msgid "This command returns the UUID of the LVM LV C<device>."
11463 msgstr ""
11464
11465 #. type: =head2
11466 #: ../src/guestfs-actions.pod:3927
11467 msgid "guestfs_lxattrlist"
11468 msgstr ""
11469
11470 #. type: verbatim
11471 #: ../src/guestfs-actions.pod:3929
11472 #, no-wrap
11473 msgid ""
11474 " struct guestfs_xattr_list *\n"
11475 " guestfs_lxattrlist (guestfs_h *g,\n"
11476 "                     const char *path,\n"
11477 "                     char *const *names);\n"
11478 "\n"
11479 msgstr ""
11480
11481 #. type: textblock
11482 #: ../src/guestfs-actions.pod:3934 ../fish/guestfish-actions.pod:2665
11483 msgid ""
11484 "This call allows you to get the extended attributes of multiple files, where "
11485 "all files are in the directory C<path>.  C<names> is the list of files from "
11486 "this directory."
11487 msgstr ""
11488
11489 #. type: textblock
11490 #: ../src/guestfs-actions.pod:3938 ../fish/guestfish-actions.pod:2669
11491 msgid ""
11492 "On return you get a flat list of xattr structs which must be interpreted "
11493 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
11494 "C<attrval> in this struct is zero-length to indicate there was an error "
11495 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
11496 "number (the number of following attributes for this file, which could be "
11497 "C<\"0\">).  Then after the first xattr struct are the zero or more "
11498 "attributes for the first named file.  This repeats for the second and "
11499 "subsequent files."
11500 msgstr ""
11501
11502 #. type: textblock
11503 #: ../src/guestfs-actions.pod:3948
11504 msgid ""
11505 "This call is intended for programs that want to efficiently list a directory "
11506 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
11507 "a similarly efficient call for getting standard stats.  Very long directory "
11508 "listings might cause the protocol message size to be exceeded, causing this "
11509 "call to fail.  The caller must split up such requests into smaller groups of "
11510 "names."
11511 msgstr ""
11512
11513 #. type: =head2
11514 #: ../src/guestfs-actions.pod:3962
11515 msgid "guestfs_mkdir"
11516 msgstr ""
11517
11518 #. type: verbatim
11519 #: ../src/guestfs-actions.pod:3964
11520 #, no-wrap
11521 msgid ""
11522 " int\n"
11523 " guestfs_mkdir (guestfs_h *g,\n"
11524 "                const char *path);\n"
11525 "\n"
11526 msgstr ""
11527
11528 #. type: textblock
11529 #: ../src/guestfs-actions.pod:3968 ../fish/guestfish-actions.pod:2691
11530 msgid "Create a directory named C<path>."
11531 msgstr ""
11532
11533 #. type: =head2
11534 #: ../src/guestfs-actions.pod:3974
11535 msgid "guestfs_mkdir_mode"
11536 msgstr ""
11537
11538 #. type: verbatim
11539 #: ../src/guestfs-actions.pod:3976
11540 #, no-wrap
11541 msgid ""
11542 " int\n"
11543 " guestfs_mkdir_mode (guestfs_h *g,\n"
11544 "                     const char *path,\n"
11545 "                     int mode);\n"
11546 "\n"
11547 msgstr ""
11548
11549 #. type: textblock
11550 #: ../src/guestfs-actions.pod:3981 ../fish/guestfish-actions.pod:2697
11551 msgid ""
11552 "This command creates a directory, setting the initial permissions of the "
11553 "directory to C<mode>."
11554 msgstr ""
11555
11556 #. type: textblock
11557 #: ../src/guestfs-actions.pod:3984 ../fish/guestfish-actions.pod:2700
11558 msgid ""
11559 "For common Linux filesystems, the actual mode which is set will be C<mode & "
11560 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
11561 "other ways."
11562 msgstr ""
11563
11564 #. type: textblock
11565 #: ../src/guestfs-actions.pod:3988
11566 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
11567 msgstr ""
11568
11569 #. type: =head2
11570 #: ../src/guestfs-actions.pod:3994
11571 msgid "guestfs_mkdir_p"
11572 msgstr ""
11573
11574 #. type: verbatim
11575 #: ../src/guestfs-actions.pod:3996
11576 #, no-wrap
11577 msgid ""
11578 " int\n"
11579 " guestfs_mkdir_p (guestfs_h *g,\n"
11580 "                  const char *path);\n"
11581 "\n"
11582 msgstr ""
11583
11584 #. type: textblock
11585 #: ../src/guestfs-actions.pod:4000 ../fish/guestfish-actions.pod:2710
11586 msgid ""
11587 "Create a directory named C<path>, creating any parent directories as "
11588 "necessary.  This is like the C<mkdir -p> shell command."
11589 msgstr ""
11590
11591 #. type: =head2
11592 #: ../src/guestfs-actions.pod:4007
11593 msgid "guestfs_mkdtemp"
11594 msgstr ""
11595
11596 #. type: verbatim
11597 #: ../src/guestfs-actions.pod:4009
11598 #, no-wrap
11599 msgid ""
11600 " char *\n"
11601 " guestfs_mkdtemp (guestfs_h *g,\n"
11602 "                  const char *template);\n"
11603 "\n"
11604 msgstr ""
11605
11606 #. type: textblock
11607 #: ../src/guestfs-actions.pod:4013 ../fish/guestfish-actions.pod:2717
11608 msgid ""
11609 "This command creates a temporary directory.  The C<template> parameter "
11610 "should be a full pathname for the temporary directory name with the final "
11611 "six characters being \"XXXXXX\"."
11612 msgstr ""
11613
11614 #. type: textblock
11615 #: ../src/guestfs-actions.pod:4018 ../fish/guestfish-actions.pod:2722
11616 msgid ""
11617 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
11618 "being suitable for Windows filesystems."
11619 msgstr ""
11620
11621 #. type: textblock
11622 #: ../src/guestfs-actions.pod:4021 ../fish/guestfish-actions.pod:2725
11623 msgid "The name of the temporary directory that was created is returned."
11624 msgstr ""
11625
11626 #. type: textblock
11627 #: ../src/guestfs-actions.pod:4024 ../fish/guestfish-actions.pod:2728
11628 msgid "The temporary directory is created with mode 0700 and is owned by root."
11629 msgstr ""
11630
11631 #. type: textblock
11632 #: ../src/guestfs-actions.pod:4027 ../fish/guestfish-actions.pod:2731
11633 msgid ""
11634 "The caller is responsible for deleting the temporary directory and its "
11635 "contents after use."
11636 msgstr ""
11637
11638 #. type: textblock
11639 #: ../src/guestfs-actions.pod:4030 ../fish/guestfish-actions.pod:2734
11640 msgid "See also: L<mkdtemp(3)>"
11641 msgstr ""
11642
11643 #. type: =head2
11644 #: ../src/guestfs-actions.pod:4037
11645 msgid "guestfs_mke2fs_J"
11646 msgstr ""
11647
11648 #. type: verbatim
11649 #: ../src/guestfs-actions.pod:4039
11650 #, no-wrap
11651 msgid ""
11652 " int\n"
11653 " guestfs_mke2fs_J (guestfs_h *g,\n"
11654 "                   const char *fstype,\n"
11655 "                   int blocksize,\n"
11656 "                   const char *device,\n"
11657 "                   const char *journal);\n"
11658 "\n"
11659 msgstr ""
11660
11661 #. type: textblock
11662 #: ../src/guestfs-actions.pod:4046 ../fish/guestfish-actions.pod:2740
11663 msgid ""
11664 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11665 "C<journal>.  It is equivalent to the command:"
11666 msgstr ""
11667
11668 #. type: verbatim
11669 #: ../src/guestfs-actions.pod:4050 ../fish/guestfish-actions.pod:2744
11670 #, no-wrap
11671 msgid ""
11672 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
11673 "\n"
11674 msgstr ""
11675
11676 #. type: textblock
11677 #: ../src/guestfs-actions.pod:4052
11678 msgid "See also C<guestfs_mke2journal>."
11679 msgstr ""
11680
11681 #. type: textblock
11682 #: ../src/guestfs-actions.pod:4056 ../src/guestfs-actions.pod:4074 ../src/guestfs-actions.pod:4092 ../src/guestfs-actions.pod:4108 ../src/guestfs-actions.pod:4122 ../src/guestfs-actions.pod:4136 ../src/guestfs-actions.pod:4195 ../src/guestfs-actions.pod:4448
11683 msgid "(Added in 1.0.68)"
11684 msgstr ""
11685
11686 #. type: =head2
11687 #: ../src/guestfs-actions.pod:4058
11688 msgid "guestfs_mke2fs_JL"
11689 msgstr ""
11690
11691 #. type: verbatim
11692 #: ../src/guestfs-actions.pod:4060
11693 #, no-wrap
11694 msgid ""
11695 " int\n"
11696 " guestfs_mke2fs_JL (guestfs_h *g,\n"
11697 "                    const char *fstype,\n"
11698 "                    int blocksize,\n"
11699 "                    const char *device,\n"
11700 "                    const char *label);\n"
11701 "\n"
11702 msgstr ""
11703
11704 #. type: textblock
11705 #: ../src/guestfs-actions.pod:4067 ../fish/guestfish-actions.pod:2752
11706 msgid ""
11707 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11708 "the journal labeled C<label>."
11709 msgstr ""
11710
11711 #. type: textblock
11712 #: ../src/guestfs-actions.pod:4070
11713 msgid "See also C<guestfs_mke2journal_L>."
11714 msgstr ""
11715
11716 #. type: =head2
11717 #: ../src/guestfs-actions.pod:4076
11718 msgid "guestfs_mke2fs_JU"
11719 msgstr ""
11720
11721 #. type: verbatim
11722 #: ../src/guestfs-actions.pod:4078
11723 #, no-wrap
11724 msgid ""
11725 " int\n"
11726 " guestfs_mke2fs_JU (guestfs_h *g,\n"
11727 "                    const char *fstype,\n"
11728 "                    int blocksize,\n"
11729 "                    const char *device,\n"
11730 "                    const char *uuid);\n"
11731 "\n"
11732 msgstr ""
11733
11734 #. type: textblock
11735 #: ../src/guestfs-actions.pod:4085 ../fish/guestfish-actions.pod:2761
11736 msgid ""
11737 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11738 "the journal with UUID C<uuid>."
11739 msgstr ""
11740
11741 #. type: textblock
11742 #: ../src/guestfs-actions.pod:4088
11743 msgid "See also C<guestfs_mke2journal_U>."
11744 msgstr ""
11745
11746 #. type: =head2
11747 #: ../src/guestfs-actions.pod:4094
11748 msgid "guestfs_mke2journal"
11749 msgstr ""
11750
11751 #. type: verbatim
11752 #: ../src/guestfs-actions.pod:4096
11753 #, no-wrap
11754 msgid ""
11755 " int\n"
11756 " guestfs_mke2journal (guestfs_h *g,\n"
11757 "                      int blocksize,\n"
11758 "                      const char *device);\n"
11759 "\n"
11760 msgstr ""
11761
11762 #. type: textblock
11763 #: ../src/guestfs-actions.pod:4101 ../fish/guestfish-actions.pod:2770
11764 msgid ""
11765 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
11766 "command:"
11767 msgstr ""
11768
11769 #. type: verbatim
11770 #: ../src/guestfs-actions.pod:4104 ../fish/guestfish-actions.pod:2773
11771 #, no-wrap
11772 msgid ""
11773 " mke2fs -O journal_dev -b blocksize device\n"
11774 "\n"
11775 msgstr ""
11776
11777 #. type: =head2
11778 #: ../src/guestfs-actions.pod:4110
11779 msgid "guestfs_mke2journal_L"
11780 msgstr ""
11781
11782 #. type: verbatim
11783 #: ../src/guestfs-actions.pod:4112
11784 #, no-wrap
11785 msgid ""
11786 " int\n"
11787 " guestfs_mke2journal_L (guestfs_h *g,\n"
11788 "                        int blocksize,\n"
11789 "                        const char *label,\n"
11790 "                        const char *device);\n"
11791 "\n"
11792 msgstr ""
11793
11794 #. type: textblock
11795 #: ../src/guestfs-actions.pod:4118 ../fish/guestfish-actions.pod:2779
11796 msgid "This creates an ext2 external journal on C<device> with label C<label>."
11797 msgstr ""
11798
11799 #. type: =head2
11800 #: ../src/guestfs-actions.pod:4124
11801 msgid "guestfs_mke2journal_U"
11802 msgstr ""
11803
11804 #. type: verbatim
11805 #: ../src/guestfs-actions.pod:4126
11806 #, no-wrap
11807 msgid ""
11808 " int\n"
11809 " guestfs_mke2journal_U (guestfs_h *g,\n"
11810 "                        int blocksize,\n"
11811 "                        const char *uuid,\n"
11812 "                        const char *device);\n"
11813 "\n"
11814 msgstr ""
11815
11816 #. type: textblock
11817 #: ../src/guestfs-actions.pod:4132 ../fish/guestfish-actions.pod:2785
11818 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
11819 msgstr ""
11820
11821 #. type: =head2
11822 #: ../src/guestfs-actions.pod:4138
11823 msgid "guestfs_mkfifo"
11824 msgstr ""
11825
11826 #. type: verbatim
11827 #: ../src/guestfs-actions.pod:4140
11828 #, no-wrap
11829 msgid ""
11830 " int\n"
11831 " guestfs_mkfifo (guestfs_h *g,\n"
11832 "                 int mode,\n"
11833 "                 const char *path);\n"
11834 "\n"
11835 msgstr ""
11836
11837 #. type: textblock
11838 #: ../src/guestfs-actions.pod:4145
11839 msgid ""
11840 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
11841 "is just a convenient wrapper around C<guestfs_mknod>."
11842 msgstr ""
11843
11844 #. type: =head2
11845 #: ../src/guestfs-actions.pod:4155
11846 msgid "guestfs_mkfs"
11847 msgstr ""
11848
11849 #. type: verbatim
11850 #: ../src/guestfs-actions.pod:4157
11851 #, no-wrap
11852 msgid ""
11853 " int\n"
11854 " guestfs_mkfs (guestfs_h *g,\n"
11855 "               const char *fstype,\n"
11856 "               const char *device);\n"
11857 "\n"
11858 msgstr ""
11859
11860 #. type: textblock
11861 #: ../src/guestfs-actions.pod:4162 ../fish/guestfish-actions.pod:2801
11862 msgid ""
11863 "This creates a filesystem on C<device> (usually a partition or LVM logical "
11864 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
11865 msgstr ""
11866
11867 #. type: =head2
11868 #: ../src/guestfs-actions.pod:4170
11869 msgid "guestfs_mkfs_b"
11870 msgstr ""
11871
11872 #. type: verbatim
11873 #: ../src/guestfs-actions.pod:4172
11874 #, no-wrap
11875 msgid ""
11876 " int\n"
11877 " guestfs_mkfs_b (guestfs_h *g,\n"
11878 "                 const char *fstype,\n"
11879 "                 int blocksize,\n"
11880 "                 const char *device);\n"
11881 "\n"
11882 msgstr ""
11883
11884 #. type: textblock
11885 #: ../src/guestfs-actions.pod:4178
11886 msgid ""
11887 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
11888 "block size of the resulting filesystem.  Supported block sizes depend on the "
11889 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
11890 msgstr ""
11891
11892 #. type: textblock
11893 #: ../src/guestfs-actions.pod:4183 ../src/guestfs-actions.pod:4225 ../fish/guestfish-actions.pod:2814 ../fish/guestfish-actions.pod:2841
11894 msgid ""
11895 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
11896 "cluster size."
11897 msgstr ""
11898
11899 #. type: textblock
11900 #: ../src/guestfs-actions.pod:4188 ../fish/guestfish-actions.pod:2817
11901 msgid ""
11902 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
11903 "instead."
11904 msgstr ""
11905
11906 #. type: =head2
11907 #: ../src/guestfs-actions.pod:4197
11908 msgid "guestfs_mkfs_opts"
11909 msgstr ""
11910
11911 #. type: verbatim
11912 #: ../src/guestfs-actions.pod:4199
11913 #, no-wrap
11914 msgid ""
11915 " int\n"
11916 " guestfs_mkfs_opts (guestfs_h *g,\n"
11917 "                    const char *fstype,\n"
11918 "                    const char *device,\n"
11919 "                    ...);\n"
11920 "\n"
11921 msgstr ""
11922
11923 #. type: verbatim
11924 #: ../src/guestfs-actions.pod:4210
11925 #, no-wrap
11926 msgid ""
11927 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
11928 "\n"
11929 msgstr ""
11930
11931 #. type: textblock
11932 #: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2828
11933 msgid ""
11934 "This function creates a filesystem on C<device>.  The filesystem type is "
11935 "C<fstype>, for example C<ext3>."
11936 msgstr ""
11937
11938 #. type: =item
11939 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2835
11940 msgid "C<blocksize>"
11941 msgstr ""
11942
11943 #. type: textblock
11944 #: ../src/guestfs-actions.pod:4221 ../fish/guestfish-actions.pod:2837
11945 msgid ""
11946 "The filesystem block size.  Supported block sizes depend on the filesystem "
11947 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
11948 "filesystems."
11949 msgstr ""
11950
11951 #. type: textblock
11952 #: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2844
11953 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
11954 msgstr ""
11955
11956 #. type: textblock
11957 #: ../src/guestfs-actions.pod:4234
11958 msgid "(Added in 1.7.19)"
11959 msgstr ""
11960
11961 #. type: =head2
11962 #: ../src/guestfs-actions.pod:4236
11963 msgid "guestfs_mkfs_opts_va"
11964 msgstr ""
11965
11966 #. type: verbatim
11967 #: ../src/guestfs-actions.pod:4238
11968 #, no-wrap
11969 msgid ""
11970 " int\n"
11971 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
11972 "                       const char *fstype,\n"
11973 "                       const char *device,\n"
11974 "                       va_list args);\n"
11975 "\n"
11976 msgstr ""
11977
11978 #. type: textblock
11979 #: ../src/guestfs-actions.pod:4244
11980 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
11981 msgstr ""
11982
11983 #. type: =head2
11984 #: ../src/guestfs-actions.pod:4248
11985 msgid "guestfs_mkfs_opts_argv"
11986 msgstr ""
11987
11988 #. type: verbatim
11989 #: ../src/guestfs-actions.pod:4250
11990 #, no-wrap
11991 msgid ""
11992 " int\n"
11993 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
11994 "                         const char *fstype,\n"
11995 "                         const char *device,\n"
11996 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
11997 "\n"
11998 msgstr ""
11999
12000 #. type: textblock
12001 #: ../src/guestfs-actions.pod:4256
12002 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
12003 msgstr ""
12004
12005 #. type: =head2
12006 #: ../src/guestfs-actions.pod:4260
12007 msgid "guestfs_mkmountpoint"
12008 msgstr ""
12009
12010 #. type: verbatim
12011 #: ../src/guestfs-actions.pod:4262
12012 #, no-wrap
12013 msgid ""
12014 " int\n"
12015 " guestfs_mkmountpoint (guestfs_h *g,\n"
12016 "                       const char *exemptpath);\n"
12017 "\n"
12018 msgstr ""
12019
12020 #. type: textblock
12021 #: ../src/guestfs-actions.pod:4266
12022 msgid ""
12023 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
12024 "that can be used to create extra mountpoints before mounting the first "
12025 "filesystem."
12026 msgstr ""
12027
12028 #. type: textblock
12029 #: ../src/guestfs-actions.pod:4270 ../fish/guestfish-actions.pod:2858
12030 msgid ""
12031 "These calls are I<only> necessary in some very limited circumstances, mainly "
12032 "the case where you want to mount a mix of unrelated and/or read-only "
12033 "filesystems together."
12034 msgstr ""
12035
12036 #. type: textblock
12037 #: ../src/guestfs-actions.pod:4274 ../fish/guestfish-actions.pod:2862
12038 msgid ""
12039 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
12040 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
12041 "inside that.  You can unpack this as follows in guestfish:"
12042 msgstr ""
12043
12044 #. type: verbatim
12045 #: ../src/guestfs-actions.pod:4279 ../fish/guestfish-actions.pod:2867
12046 #, no-wrap
12047 msgid ""
12048 " add-ro Fedora-11-i686-Live.iso\n"
12049 " run\n"
12050 " mkmountpoint /cd\n"
12051 " mkmountpoint /sqsh\n"
12052 " mkmountpoint /ext3fs\n"
12053 " mount /dev/sda /cd\n"
12054 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
12055 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
12056 "\n"
12057 msgstr ""
12058
12059 #. type: textblock
12060 #: ../src/guestfs-actions.pod:4288 ../fish/guestfish-actions.pod:2876
12061 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
12062 msgstr ""
12063
12064 #. type: textblock
12065 #: ../src/guestfs-actions.pod:4290
12066 msgid ""
12067 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
12068 "may get unexpected errors if you try to mix these calls.  It is safest to "
12069 "manually unmount filesystems and remove mountpoints after use."
12070 msgstr ""
12071
12072 #. type: textblock
12073 #: ../src/guestfs-actions.pod:4294
12074 msgid ""
12075 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
12076 "first, so for this to work for manual mountpoints, you must ensure that the "
12077 "innermost mountpoints have the longest pathnames, as in the example code "
12078 "above."
12079 msgstr ""
12080
12081 #. type: textblock
12082 #: ../src/guestfs-actions.pod:4299 ../fish/guestfish-actions.pod:2887
12083 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
12084 msgstr ""
12085
12086 #. type: textblock
12087 #: ../src/guestfs-actions.pod:4301
12088 msgid ""
12089 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
12090 "means that C<guestfs_umount_all> is called when the handle is closed which "
12091 "can also trigger these issues."
12092 msgstr ""
12093
12094 #. type: textblock
12095 #: ../src/guestfs-actions.pod:4307 ../src/guestfs-actions.pod:4566 ../src/guestfs-actions.pod:5459
12096 msgid "(Added in 1.0.62)"
12097 msgstr ""
12098
12099 #. type: =head2
12100 #: ../src/guestfs-actions.pod:4309
12101 msgid "guestfs_mknod"
12102 msgstr ""
12103
12104 #. type: verbatim
12105 #: ../src/guestfs-actions.pod:4311
12106 #, no-wrap
12107 msgid ""
12108 " int\n"
12109 " guestfs_mknod (guestfs_h *g,\n"
12110 "                int mode,\n"
12111 "                int devmajor,\n"
12112 "                int devminor,\n"
12113 "                const char *path);\n"
12114 "\n"
12115 msgstr ""
12116
12117 #. type: textblock
12118 #: ../src/guestfs-actions.pod:4318 ../fish/guestfish-actions.pod:2897
12119 msgid ""
12120 "This call creates block or character special devices, or named pipes "
12121 "(FIFOs)."
12122 msgstr ""
12123
12124 #. type: textblock
12125 #: ../src/guestfs-actions.pod:4321 ../fish/guestfish-actions.pod:2900
12126 msgid ""
12127 "The C<mode> parameter should be the mode, using the standard constants.  "
12128 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
12129 "used when creating block and character special devices."
12130 msgstr ""
12131
12132 #. type: textblock
12133 #: ../src/guestfs-actions.pod:4326
12134 msgid ""
12135 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
12136 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
12137 "regular file).  These constants are available in the standard Linux header "
12138 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
12139 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
12140 "the appropriate constant for you."
12141 msgstr ""
12142
12143 #. type: =head2
12144 #: ../src/guestfs-actions.pod:4340
12145 msgid "guestfs_mknod_b"
12146 msgstr ""
12147
12148 #. type: verbatim
12149 #: ../src/guestfs-actions.pod:4342
12150 #, no-wrap
12151 msgid ""
12152 " int\n"
12153 " guestfs_mknod_b (guestfs_h *g,\n"
12154 "                  int mode,\n"
12155 "                  int devmajor,\n"
12156 "                  int devminor,\n"
12157 "                  const char *path);\n"
12158 "\n"
12159 msgstr ""
12160
12161 #. type: textblock
12162 #: ../src/guestfs-actions.pod:4349
12163 msgid ""
12164 "This call creates a block device node called C<path> with mode C<mode> and "
12165 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12166 "wrapper around C<guestfs_mknod>."
12167 msgstr ""
12168
12169 #. type: =head2
12170 #: ../src/guestfs-actions.pod:4359
12171 msgid "guestfs_mknod_c"
12172 msgstr ""
12173
12174 #. type: verbatim
12175 #: ../src/guestfs-actions.pod:4361
12176 #, no-wrap
12177 msgid ""
12178 " int\n"
12179 " guestfs_mknod_c (guestfs_h *g,\n"
12180 "                  int mode,\n"
12181 "                  int devmajor,\n"
12182 "                  int devminor,\n"
12183 "                  const char *path);\n"
12184 "\n"
12185 msgstr ""
12186
12187 #. type: textblock
12188 #: ../src/guestfs-actions.pod:4368
12189 msgid ""
12190 "This call creates a char device node called C<path> with mode C<mode> and "
12191 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12192 "wrapper around C<guestfs_mknod>."
12193 msgstr ""
12194
12195 #. type: =head2
12196 #: ../src/guestfs-actions.pod:4378
12197 msgid "guestfs_mkswap"
12198 msgstr ""
12199
12200 #. type: verbatim
12201 #: ../src/guestfs-actions.pod:4380
12202 #, no-wrap
12203 msgid ""
12204 " int\n"
12205 " guestfs_mkswap (guestfs_h *g,\n"
12206 "                 const char *device);\n"
12207 "\n"
12208 msgstr ""
12209
12210 #. type: textblock
12211 #: ../src/guestfs-actions.pod:4384 ../fish/guestfish-actions.pod:2939
12212 msgid "Create a swap partition on C<device>."
12213 msgstr ""
12214
12215 #. type: =head2
12216 #: ../src/guestfs-actions.pod:4390
12217 msgid "guestfs_mkswap_L"
12218 msgstr ""
12219
12220 #. type: verbatim
12221 #: ../src/guestfs-actions.pod:4392
12222 #, no-wrap
12223 msgid ""
12224 " int\n"
12225 " guestfs_mkswap_L (guestfs_h *g,\n"
12226 "                   const char *label,\n"
12227 "                   const char *device);\n"
12228 "\n"
12229 msgstr ""
12230
12231 #. type: textblock
12232 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2945
12233 msgid "Create a swap partition on C<device> with label C<label>."
12234 msgstr ""
12235
12236 #. type: textblock
12237 #: ../src/guestfs-actions.pod:4399 ../fish/guestfish-actions.pod:2947
12238 msgid ""
12239 "Note that you cannot attach a swap label to a block device "
12240 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
12241 "the kernel or swap tools."
12242 msgstr ""
12243
12244 #. type: =head2
12245 #: ../src/guestfs-actions.pod:4407
12246 msgid "guestfs_mkswap_U"
12247 msgstr ""
12248
12249 #. type: verbatim
12250 #: ../src/guestfs-actions.pod:4409
12251 #, no-wrap
12252 msgid ""
12253 " int\n"
12254 " guestfs_mkswap_U (guestfs_h *g,\n"
12255 "                   const char *uuid,\n"
12256 "                   const char *device);\n"
12257 "\n"
12258 msgstr ""
12259
12260 #. type: textblock
12261 #: ../src/guestfs-actions.pod:4414 ../fish/guestfish-actions.pod:2955
12262 msgid "Create a swap partition on C<device> with UUID C<uuid>."
12263 msgstr ""
12264
12265 #. type: =head2
12266 #: ../src/guestfs-actions.pod:4420
12267 msgid "guestfs_mkswap_file"
12268 msgstr ""
12269
12270 #. type: verbatim
12271 #: ../src/guestfs-actions.pod:4422
12272 #, no-wrap
12273 msgid ""
12274 " int\n"
12275 " guestfs_mkswap_file (guestfs_h *g,\n"
12276 "                      const char *path);\n"
12277 "\n"
12278 msgstr ""
12279
12280 #. type: textblock
12281 #: ../src/guestfs-actions.pod:4426 ../fish/guestfish-actions.pod:2961
12282 msgid "Create a swap file."
12283 msgstr ""
12284
12285 #. type: textblock
12286 #: ../src/guestfs-actions.pod:4428
12287 msgid ""
12288 "This command just writes a swap file signature to an existing file.  To "
12289 "create the file itself, use something like C<guestfs_fallocate>."
12290 msgstr ""
12291
12292 #. type: =head2
12293 #: ../src/guestfs-actions.pod:4435
12294 msgid "guestfs_modprobe"
12295 msgstr ""
12296
12297 #. type: verbatim
12298 #: ../src/guestfs-actions.pod:4437
12299 #, no-wrap
12300 msgid ""
12301 " int\n"
12302 " guestfs_modprobe (guestfs_h *g,\n"
12303 "                   const char *modulename);\n"
12304 "\n"
12305 msgstr ""
12306
12307 #. type: textblock
12308 #: ../src/guestfs-actions.pod:4441 ../fish/guestfish-actions.pod:2970
12309 msgid "This loads a kernel module in the appliance."
12310 msgstr ""
12311
12312 #. type: textblock
12313 #: ../src/guestfs-actions.pod:4443 ../fish/guestfish-actions.pod:2972
12314 msgid ""
12315 "The kernel module must have been whitelisted when libguestfs was built (see "
12316 "C<appliance/kmod.whitelist.in> in the source)."
12317 msgstr ""
12318
12319 #. type: =head2
12320 #: ../src/guestfs-actions.pod:4450
12321 msgid "guestfs_mount"
12322 msgstr ""
12323
12324 #. type: verbatim
12325 #: ../src/guestfs-actions.pod:4452
12326 #, no-wrap
12327 msgid ""
12328 " int\n"
12329 " guestfs_mount (guestfs_h *g,\n"
12330 "                const char *device,\n"
12331 "                const char *mountpoint);\n"
12332 "\n"
12333 msgstr ""
12334
12335 #. type: textblock
12336 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:2979
12337 msgid ""
12338 "Mount a guest disk at a position in the filesystem.  Block devices are named "
12339 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
12340 "those block devices contain partitions, they will have the usual names "
12341 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
12342 msgstr ""
12343
12344 #. type: textblock
12345 #: ../src/guestfs-actions.pod:4463 ../fish/guestfish-actions.pod:2985
12346 msgid ""
12347 "The rules are the same as for L<mount(2)>: A filesystem must first be "
12348 "mounted on C</> before others can be mounted.  Other filesystems can only be "
12349 "mounted on directories which already exist."
12350 msgstr ""
12351
12352 #. type: textblock
12353 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:2990
12354 msgid ""
12355 "The mounted filesystem is writable, if we have sufficient permissions on the "
12356 "underlying device."
12357 msgstr ""
12358
12359 #. type: textblock
12360 #: ../src/guestfs-actions.pod:4471
12361 msgid ""
12362 "B<Important note:> When you use this call, the filesystem options C<sync> "
12363 "and C<noatime> are set implicitly.  This was originally done because we "
12364 "thought it would improve reliability, but it turns out that I<-o sync> has a "
12365 "very large negative performance impact and negligible effect on "
12366 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
12367 "in any code that needs performance, and instead use C<guestfs_mount_options> "
12368 "(use an empty string for the first parameter if you don't want any options)."
12369 msgstr ""
12370
12371 #. type: =head2
12372 #: ../src/guestfs-actions.pod:4485
12373 msgid "guestfs_mount_loop"
12374 msgstr ""
12375
12376 #. type: verbatim
12377 #: ../src/guestfs-actions.pod:4487
12378 #, no-wrap
12379 msgid ""
12380 " int\n"
12381 " guestfs_mount_loop (guestfs_h *g,\n"
12382 "                     const char *file,\n"
12383 "                     const char *mountpoint);\n"
12384 "\n"
12385 msgstr ""
12386
12387 #. type: textblock
12388 #: ../src/guestfs-actions.pod:4492 ../fish/guestfish-actions.pod:3007
12389 msgid ""
12390 "This command lets you mount C<file> (a filesystem image in a file) on a "
12391 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
12392 "mountpoint>."
12393 msgstr ""
12394
12395 #. type: =head2
12396 #: ../src/guestfs-actions.pod:4500
12397 msgid "guestfs_mount_options"
12398 msgstr ""
12399
12400 #. type: verbatim
12401 #: ../src/guestfs-actions.pod:4502
12402 #, no-wrap
12403 msgid ""
12404 " int\n"
12405 " guestfs_mount_options (guestfs_h *g,\n"
12406 "                        const char *options,\n"
12407 "                        const char *device,\n"
12408 "                        const char *mountpoint);\n"
12409 "\n"
12410 msgstr ""
12411
12412 #. type: textblock
12413 #: ../src/guestfs-actions.pod:4508
12414 msgid ""
12415 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12416 "the mount options as for the L<mount(8)> I<-o> flag."
12417 msgstr ""
12418
12419 #. type: textblock
12420 #: ../src/guestfs-actions.pod:4512 ../fish/guestfish-actions.pod:3019
12421 msgid ""
12422 "If the C<options> parameter is an empty string, then no options are passed "
12423 "(all options default to whatever the filesystem uses)."
12424 msgstr ""
12425
12426 #. type: textblock
12427 #: ../src/guestfs-actions.pod:4518 ../src/guestfs-actions.pod:4532 ../src/guestfs-actions.pod:4549
12428 msgid "(Added in 1.0.10)"
12429 msgstr ""
12430
12431 #. type: =head2
12432 #: ../src/guestfs-actions.pod:4520
12433 msgid "guestfs_mount_ro"
12434 msgstr ""
12435
12436 #. type: verbatim
12437 #: ../src/guestfs-actions.pod:4522
12438 #, no-wrap
12439 msgid ""
12440 " int\n"
12441 " guestfs_mount_ro (guestfs_h *g,\n"
12442 "                   const char *device,\n"
12443 "                   const char *mountpoint);\n"
12444 "\n"
12445 msgstr ""
12446
12447 #. type: textblock
12448 #: ../src/guestfs-actions.pod:4527
12449 msgid ""
12450 "This is the same as the C<guestfs_mount> command, but it mounts the "
12451 "filesystem with the read-only (I<-o ro>) flag."
12452 msgstr ""
12453
12454 #. type: =head2
12455 #: ../src/guestfs-actions.pod:4534
12456 msgid "guestfs_mount_vfs"
12457 msgstr ""
12458
12459 #. type: verbatim
12460 #: ../src/guestfs-actions.pod:4536
12461 #, no-wrap
12462 msgid ""
12463 " int\n"
12464 " guestfs_mount_vfs (guestfs_h *g,\n"
12465 "                    const char *options,\n"
12466 "                    const char *vfstype,\n"
12467 "                    const char *device,\n"
12468 "                    const char *mountpoint);\n"
12469 "\n"
12470 msgstr ""
12471
12472 #. type: textblock
12473 #: ../src/guestfs-actions.pod:4543
12474 msgid ""
12475 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12476 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
12477 "I<-t> flags."
12478 msgstr ""
12479
12480 #. type: =head2
12481 #: ../src/guestfs-actions.pod:4551
12482 msgid "guestfs_mountpoints"
12483 msgstr ""
12484
12485 #. type: verbatim
12486 #: ../src/guestfs-actions.pod:4553
12487 #, no-wrap
12488 msgid ""
12489 " char **\n"
12490 " guestfs_mountpoints (guestfs_h *g);\n"
12491 "\n"
12492 msgstr ""
12493
12494 #. type: textblock
12495 #: ../src/guestfs-actions.pod:4556
12496 msgid ""
12497 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
12498 "devices.  This one returns a hash table (map) of device name to directory "
12499 "where the device is mounted."
12500 msgstr ""
12501
12502 #. type: =head2
12503 #: ../src/guestfs-actions.pod:4568
12504 msgid "guestfs_mounts"
12505 msgstr ""
12506
12507 #. type: verbatim
12508 #: ../src/guestfs-actions.pod:4570
12509 #, no-wrap
12510 msgid ""
12511 " char **\n"
12512 " guestfs_mounts (guestfs_h *g);\n"
12513 "\n"
12514 msgstr ""
12515
12516 #. type: textblock
12517 #: ../src/guestfs-actions.pod:4573 ../fish/guestfish-actions.pod:3050
12518 msgid ""
12519 "This returns the list of currently mounted filesystems.  It returns the list "
12520 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
12521 msgstr ""
12522
12523 #. type: textblock
12524 #: ../src/guestfs-actions.pod:4576 ../fish/guestfish-actions.pod:3053
12525 msgid "Some internal mounts are not shown."
12526 msgstr ""
12527
12528 #. type: textblock
12529 #: ../src/guestfs-actions.pod:4578
12530 msgid "See also: C<guestfs_mountpoints>"
12531 msgstr ""
12532
12533 #. type: =head2
12534 #: ../src/guestfs-actions.pod:4586
12535 msgid "guestfs_mv"
12536 msgstr ""
12537
12538 #. type: verbatim
12539 #: ../src/guestfs-actions.pod:4588
12540 #, no-wrap
12541 msgid ""
12542 " int\n"
12543 " guestfs_mv (guestfs_h *g,\n"
12544 "             const char *src,\n"
12545 "             const char *dest);\n"
12546 "\n"
12547 msgstr ""
12548
12549 #. type: textblock
12550 #: ../src/guestfs-actions.pod:4593 ../fish/guestfish-actions.pod:3061
12551 msgid ""
12552 "This moves a file from C<src> to C<dest> where C<dest> is either a "
12553 "destination filename or destination directory."
12554 msgstr ""
12555
12556 #. type: =head2
12557 #: ../src/guestfs-actions.pod:4600
12558 msgid "guestfs_ntfs_3g_probe"
12559 msgstr ""
12560
12561 #. type: verbatim
12562 #: ../src/guestfs-actions.pod:4602
12563 #, no-wrap
12564 msgid ""
12565 " int\n"
12566 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
12567 "                        int rw,\n"
12568 "                        const char *device);\n"
12569 "\n"
12570 msgstr ""
12571
12572 #. type: textblock
12573 #: ../src/guestfs-actions.pod:4607 ../fish/guestfish-actions.pod:3068
12574 msgid ""
12575 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
12576 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
12577 "read-write, and some cannot be mounted at all)."
12578 msgstr ""
12579
12580 #. type: textblock
12581 #: ../src/guestfs-actions.pod:4611 ../fish/guestfish-actions.pod:3072
12582 msgid ""
12583 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
12584 "can be mounted read-write.  Set it to false if you want to test if the "
12585 "volume can be mounted read-only."
12586 msgstr ""
12587
12588 #. type: textblock
12589 #: ../src/guestfs-actions.pod:4615 ../fish/guestfish-actions.pod:3076
12590 msgid ""
12591 "The return value is an integer which C<0> if the operation would succeed, or "
12592 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
12593 msgstr ""
12594
12595 #. type: textblock
12596 #: ../src/guestfs-actions.pod:4621
12597 msgid "(Added in 1.0.43)"
12598 msgstr ""
12599
12600 #. type: =head2
12601 #: ../src/guestfs-actions.pod:4623
12602 msgid "guestfs_ntfsresize"
12603 msgstr ""
12604
12605 #. type: verbatim
12606 #: ../src/guestfs-actions.pod:4625
12607 #, no-wrap
12608 msgid ""
12609 " int\n"
12610 " guestfs_ntfsresize (guestfs_h *g,\n"
12611 "                     const char *device);\n"
12612 "\n"
12613 msgstr ""
12614
12615 #. type: textblock
12616 #: ../src/guestfs-actions.pod:4629 ../fish/guestfish-actions.pod:3084
12617 msgid ""
12618 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
12619 "size of the underlying device.  See also L<ntfsresize(8)>."
12620 msgstr ""
12621
12622 #. type: =head2
12623 #: ../src/guestfs-actions.pod:4637
12624 msgid "guestfs_ntfsresize_size"
12625 msgstr ""
12626
12627 #. type: verbatim
12628 #: ../src/guestfs-actions.pod:4639
12629 #, no-wrap
12630 msgid ""
12631 " int\n"
12632 " guestfs_ntfsresize_size (guestfs_h *g,\n"
12633 "                          const char *device,\n"
12634 "                          int64_t size);\n"
12635 "\n"
12636 msgstr ""
12637
12638 #. type: textblock
12639 #: ../src/guestfs-actions.pod:4644
12640 msgid ""
12641 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
12642 "to specify the new size (in bytes) explicitly."
12643 msgstr ""
12644
12645 #. type: textblock
12646 #: ../src/guestfs-actions.pod:4649 ../src/guestfs-actions.pod:5085 ../src/guestfs-actions.pod:5158 ../src/guestfs-actions.pod:5407 ../src/guestfs-actions.pod:6946
12647 msgid "(Added in 1.3.14)"
12648 msgstr ""
12649
12650 #. type: =head2
12651 #: ../src/guestfs-actions.pod:4651
12652 msgid "guestfs_part_add"
12653 msgstr ""
12654
12655 #. type: verbatim
12656 #: ../src/guestfs-actions.pod:4653
12657 #, no-wrap
12658 msgid ""
12659 " int\n"
12660 " guestfs_part_add (guestfs_h *g,\n"
12661 "                   const char *device,\n"
12662 "                   const char *prlogex,\n"
12663 "                   int64_t startsect,\n"
12664 "                   int64_t endsect);\n"
12665 "\n"
12666 msgstr ""
12667
12668 #. type: textblock
12669 #: ../src/guestfs-actions.pod:4660
12670 msgid ""
12671 "This command adds a partition to C<device>.  If there is no partition table "
12672 "on the device, call C<guestfs_part_init> first."
12673 msgstr ""
12674
12675 #. type: textblock
12676 #: ../src/guestfs-actions.pod:4663 ../fish/guestfish-actions.pod:3102
12677 msgid ""
12678 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
12679 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
12680 "C<logical>) and C<e> (or C<extended>) partition types."
12681 msgstr ""
12682
12683 #. type: textblock
12684 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3107
12685 msgid ""
12686 "C<startsect> and C<endsect> are the start and end of the partition in "
12687 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
12688 "from the end of the disk (C<-1> is the last sector)."
12689 msgstr ""
12690
12691 #. type: textblock
12692 #: ../src/guestfs-actions.pod:4672
12693 msgid ""
12694 "Creating a partition which covers the whole disk is not so easy.  Use "
12695 "C<guestfs_part_disk> to do that."
12696 msgstr ""
12697
12698 #. type: textblock
12699 #: ../src/guestfs-actions.pod:4677 ../src/guestfs-actions.pod:4715 ../src/guestfs-actions.pod:4768 ../src/guestfs-actions.pod:4846 ../src/guestfs-actions.pod:4884 ../src/guestfs-actions.pod:4903 ../src/guestfs-actions.pod:4943
12700 msgid "(Added in 1.0.78)"
12701 msgstr ""
12702
12703 #. type: =head2
12704 #: ../src/guestfs-actions.pod:4679
12705 msgid "guestfs_part_del"
12706 msgstr ""
12707
12708 #. type: verbatim
12709 #: ../src/guestfs-actions.pod:4681
12710 #, no-wrap
12711 msgid ""
12712 " int\n"
12713 " guestfs_part_del (guestfs_h *g,\n"
12714 "                   const char *device,\n"
12715 "                   int partnum);\n"
12716 "\n"
12717 msgstr ""
12718
12719 #. type: textblock
12720 #: ../src/guestfs-actions.pod:4686 ../fish/guestfish-actions.pod:3118
12721 msgid "This command deletes the partition numbered C<partnum> on C<device>."
12722 msgstr ""
12723
12724 #. type: textblock
12725 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3120
12726 msgid ""
12727 "Note that in the case of MBR partitioning, deleting an extended partition "
12728 "also deletes any logical partitions it contains."
12729 msgstr ""
12730
12731 #. type: =head2
12732 #: ../src/guestfs-actions.pod:4696
12733 msgid "guestfs_part_disk"
12734 msgstr ""
12735
12736 #. type: verbatim
12737 #: ../src/guestfs-actions.pod:4698
12738 #, no-wrap
12739 msgid ""
12740 " int\n"
12741 " guestfs_part_disk (guestfs_h *g,\n"
12742 "                    const char *device,\n"
12743 "                    const char *parttype);\n"
12744 "\n"
12745 msgstr ""
12746
12747 #. type: textblock
12748 #: ../src/guestfs-actions.pod:4703
12749 msgid ""
12750 "This command is simply a combination of C<guestfs_part_init> followed by "
12751 "C<guestfs_part_add> to create a single primary partition covering the whole "
12752 "disk."
12753 msgstr ""
12754
12755 #. type: textblock
12756 #: ../src/guestfs-actions.pod:4707
12757 msgid ""
12758 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
12759 "possible values are described in C<guestfs_part_init>."
12760 msgstr ""
12761
12762 #. type: =head2
12763 #: ../src/guestfs-actions.pod:4717
12764 msgid "guestfs_part_get_bootable"
12765 msgstr ""
12766
12767 #. type: verbatim
12768 #: ../src/guestfs-actions.pod:4719
12769 #, no-wrap
12770 msgid ""
12771 " int\n"
12772 " guestfs_part_get_bootable (guestfs_h *g,\n"
12773 "                            const char *device,\n"
12774 "                            int partnum);\n"
12775 "\n"
12776 msgstr ""
12777
12778 #. type: textblock
12779 #: ../src/guestfs-actions.pod:4724 ../fish/guestfish-actions.pod:3142
12780 msgid ""
12781 "This command returns true if the partition C<partnum> on C<device> has the "
12782 "bootable flag set."
12783 msgstr ""
12784
12785 #. type: textblock
12786 #: ../src/guestfs-actions.pod:4727
12787 msgid "See also C<guestfs_part_set_bootable>."
12788 msgstr ""
12789
12790 #. type: =head2
12791 #: ../src/guestfs-actions.pod:4733
12792 msgid "guestfs_part_get_mbr_id"
12793 msgstr ""
12794
12795 #. type: verbatim
12796 #: ../src/guestfs-actions.pod:4735
12797 #, no-wrap
12798 msgid ""
12799 " int\n"
12800 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
12801 "                          const char *device,\n"
12802 "                          int partnum);\n"
12803 "\n"
12804 msgstr ""
12805
12806 #. type: textblock
12807 #: ../src/guestfs-actions.pod:4740 ../fish/guestfish-actions.pod:3151
12808 msgid ""
12809 "Returns the MBR type byte (also known as the ID byte) from the numbered "
12810 "partition C<partnum>."
12811 msgstr ""
12812
12813 #. type: textblock
12814 #: ../src/guestfs-actions.pod:4743 ../src/guestfs-actions.pod:4919
12815 msgid ""
12816 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
12817 "undefined results for other partition table types (see "
12818 "C<guestfs_part_get_parttype>)."
12819 msgstr ""
12820
12821 #. type: =head2
12822 #: ../src/guestfs-actions.pod:4751
12823 msgid "guestfs_part_get_parttype"
12824 msgstr ""
12825
12826 #. type: verbatim
12827 #: ../src/guestfs-actions.pod:4753
12828 #, no-wrap
12829 msgid ""
12830 " char *\n"
12831 " guestfs_part_get_parttype (guestfs_h *g,\n"
12832 "                            const char *device);\n"
12833 "\n"
12834 msgstr ""
12835
12836 #. type: textblock
12837 #: ../src/guestfs-actions.pod:4757 ../fish/guestfish-actions.pod:3162
12838 msgid ""
12839 "This command examines the partition table on C<device> and returns the "
12840 "partition table type (format) being used."
12841 msgstr ""
12842
12843 #. type: textblock
12844 #: ../src/guestfs-actions.pod:4760
12845 msgid ""
12846 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
12847 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
12848 "possible, although unusual.  See C<guestfs_part_init> for a full list."
12849 msgstr ""
12850
12851 #. type: =head2
12852 #: ../src/guestfs-actions.pod:4770
12853 msgid "guestfs_part_init"
12854 msgstr ""
12855
12856 #. type: verbatim
12857 #: ../src/guestfs-actions.pod:4772
12858 #, no-wrap
12859 msgid ""
12860 " int\n"
12861 " guestfs_part_init (guestfs_h *g,\n"
12862 "                    const char *device,\n"
12863 "                    const char *parttype);\n"
12864 "\n"
12865 msgstr ""
12866
12867 #. type: textblock
12868 #: ../src/guestfs-actions.pod:4777 ../fish/guestfish-actions.pod:3174
12869 msgid ""
12870 "This creates an empty partition table on C<device> of one of the partition "
12871 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
12872 "(for large disks)."
12873 msgstr ""
12874
12875 #. type: textblock
12876 #: ../src/guestfs-actions.pod:4781
12877 msgid ""
12878 "Initially there are no partitions.  Following this, you should call "
12879 "C<guestfs_part_add> for each partition required."
12880 msgstr ""
12881
12882 #. type: textblock
12883 #: ../src/guestfs-actions.pod:4784 ../fish/guestfish-actions.pod:3181
12884 msgid "Possible values for C<parttype> are:"
12885 msgstr ""
12886
12887 #. type: =item
12888 #: ../src/guestfs-actions.pod:4788 ../fish/guestfish-actions.pod:3185
12889 msgid "B<efi> | B<gpt>"
12890 msgstr ""
12891
12892 #. type: textblock
12893 #: ../src/guestfs-actions.pod:4790 ../fish/guestfish-actions.pod:3187
12894 msgid "Intel EFI / GPT partition table."
12895 msgstr ""
12896
12897 #. type: textblock
12898 #: ../src/guestfs-actions.pod:4792 ../fish/guestfish-actions.pod:3189
12899 msgid ""
12900 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
12901 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
12902 "the C<mbr> format."
12903 msgstr ""
12904
12905 #. type: =item
12906 #: ../src/guestfs-actions.pod:4796 ../fish/guestfish-actions.pod:3193
12907 msgid "B<mbr> | B<msdos>"
12908 msgstr ""
12909
12910 #. type: textblock
12911 #: ../src/guestfs-actions.pod:4798 ../fish/guestfish-actions.pod:3195
12912 msgid ""
12913 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
12914 "Windows.  This partition type will B<only> work for device sizes up to 2 "
12915 "TB.  For large disks we recommend using C<gpt>."
12916 msgstr ""
12917
12918 #. type: textblock
12919 #: ../src/guestfs-actions.pod:4805 ../fish/guestfish-actions.pod:3202
12920 msgid "Other partition table types that may work but are not supported include:"
12921 msgstr ""
12922
12923 #. type: =item
12924 #: ../src/guestfs-actions.pod:4810 ../fish/guestfish-actions.pod:3207
12925 msgid "B<aix>"
12926 msgstr ""
12927
12928 #. type: textblock
12929 #: ../src/guestfs-actions.pod:4812 ../fish/guestfish-actions.pod:3209
12930 msgid "AIX disk labels."
12931 msgstr ""
12932
12933 #. type: =item
12934 #: ../src/guestfs-actions.pod:4814 ../fish/guestfish-actions.pod:3211
12935 msgid "B<amiga> | B<rdb>"
12936 msgstr ""
12937
12938 #. type: textblock
12939 #: ../src/guestfs-actions.pod:4816 ../fish/guestfish-actions.pod:3213
12940 msgid "Amiga \"Rigid Disk Block\" format."
12941 msgstr ""
12942
12943 #. type: =item
12944 #: ../src/guestfs-actions.pod:4818 ../fish/guestfish-actions.pod:3215
12945 msgid "B<bsd>"
12946 msgstr ""
12947
12948 #. type: textblock
12949 #: ../src/guestfs-actions.pod:4820 ../fish/guestfish-actions.pod:3217
12950 msgid "BSD disk labels."
12951 msgstr ""
12952
12953 #. type: =item
12954 #: ../src/guestfs-actions.pod:4822 ../fish/guestfish-actions.pod:3219
12955 msgid "B<dasd>"
12956 msgstr ""
12957
12958 #. type: textblock
12959 #: ../src/guestfs-actions.pod:4824 ../fish/guestfish-actions.pod:3221
12960 msgid "DASD, used on IBM mainframes."
12961 msgstr ""
12962
12963 #. type: =item
12964 #: ../src/guestfs-actions.pod:4826 ../fish/guestfish-actions.pod:3223
12965 msgid "B<dvh>"
12966 msgstr ""
12967
12968 #. type: textblock
12969 #: ../src/guestfs-actions.pod:4828 ../fish/guestfish-actions.pod:3225
12970 msgid "MIPS/SGI volumes."
12971 msgstr ""
12972
12973 #. type: =item
12974 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3227
12975 msgid "B<mac>"
12976 msgstr ""
12977
12978 #. type: textblock
12979 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3229
12980 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
12981 msgstr ""
12982
12983 #. type: =item
12984 #: ../src/guestfs-actions.pod:4834 ../fish/guestfish-actions.pod:3231
12985 msgid "B<pc98>"
12986 msgstr ""
12987
12988 #. type: textblock
12989 #: ../src/guestfs-actions.pod:4836 ../fish/guestfish-actions.pod:3233
12990 msgid "NEC PC-98 format, common in Japan apparently."
12991 msgstr ""
12992
12993 #. type: =item
12994 #: ../src/guestfs-actions.pod:4838 ../fish/guestfish-actions.pod:3235
12995 msgid "B<sun>"
12996 msgstr ""
12997
12998 #. type: textblock
12999 #: ../src/guestfs-actions.pod:4840 ../fish/guestfish-actions.pod:3237
13000 msgid "Sun disk labels."
13001 msgstr ""
13002
13003 #. type: =head2
13004 #: ../src/guestfs-actions.pod:4848
13005 msgid "guestfs_part_list"
13006 msgstr ""
13007
13008 #. type: verbatim
13009 #: ../src/guestfs-actions.pod:4850
13010 #, no-wrap
13011 msgid ""
13012 " struct guestfs_partition_list *\n"
13013 " guestfs_part_list (guestfs_h *g,\n"
13014 "                    const char *device);\n"
13015 "\n"
13016 msgstr ""
13017
13018 #. type: textblock
13019 #: ../src/guestfs-actions.pod:4854 ../fish/guestfish-actions.pod:3245
13020 msgid ""
13021 "This command parses the partition table on C<device> and returns the list of "
13022 "partitions found."
13023 msgstr ""
13024
13025 #. type: textblock
13026 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3248
13027 msgid "The fields in the returned structure are:"
13028 msgstr ""
13029
13030 #. type: =item
13031 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3252
13032 msgid "B<part_num>"
13033 msgstr ""
13034
13035 #. type: textblock
13036 #: ../src/guestfs-actions.pod:4863 ../fish/guestfish-actions.pod:3254
13037 msgid "Partition number, counting from 1."
13038 msgstr ""
13039
13040 #. type: =item
13041 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3256
13042 msgid "B<part_start>"
13043 msgstr ""
13044
13045 #. type: textblock
13046 #: ../src/guestfs-actions.pod:4867
13047 msgid ""
13048 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
13049 "the device's sector size, see C<guestfs_blockdev_getss>."
13050 msgstr ""
13051
13052 #. type: =item
13053 #: ../src/guestfs-actions.pod:4870 ../fish/guestfish-actions.pod:3261
13054 msgid "B<part_end>"
13055 msgstr ""
13056
13057 #. type: textblock
13058 #: ../src/guestfs-actions.pod:4872 ../fish/guestfish-actions.pod:3263
13059 msgid "End of the partition in bytes."
13060 msgstr ""
13061
13062 #. type: =item
13063 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3265
13064 msgid "B<part_size>"
13065 msgstr ""
13066
13067 #. type: textblock
13068 #: ../src/guestfs-actions.pod:4876 ../fish/guestfish-actions.pod:3267
13069 msgid "Size of the partition in bytes."
13070 msgstr ""
13071
13072 #. type: textblock
13073 #: ../src/guestfs-actions.pod:4880
13074 msgid ""
13075 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
13076 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
13077 "use>."
13078 msgstr ""
13079
13080 #. type: =head2
13081 #: ../src/guestfs-actions.pod:4886
13082 msgid "guestfs_part_set_bootable"
13083 msgstr ""
13084
13085 #. type: verbatim
13086 #: ../src/guestfs-actions.pod:4888
13087 #, no-wrap
13088 msgid ""
13089 " int\n"
13090 " guestfs_part_set_bootable (guestfs_h *g,\n"
13091 "                            const char *device,\n"
13092 "                            int partnum,\n"
13093 "                            int bootable);\n"
13094 "\n"
13095 msgstr ""
13096
13097 #. type: textblock
13098 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3275
13099 msgid ""
13100 "This sets the bootable flag on partition numbered C<partnum> on device "
13101 "C<device>.  Note that partitions are numbered from 1."
13102 msgstr ""
13103
13104 #. type: textblock
13105 #: ../src/guestfs-actions.pod:4897 ../fish/guestfish-actions.pod:3278
13106 msgid ""
13107 "The bootable flag is used by some operating systems (notably Windows) to "
13108 "determine which partition to boot from.  It is by no means universally "
13109 "recognized."
13110 msgstr ""
13111
13112 #. type: =head2
13113 #: ../src/guestfs-actions.pod:4905
13114 msgid "guestfs_part_set_mbr_id"
13115 msgstr ""
13116
13117 #. type: verbatim
13118 #: ../src/guestfs-actions.pod:4907
13119 #, no-wrap
13120 msgid ""
13121 " int\n"
13122 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
13123 "                          const char *device,\n"
13124 "                          int partnum,\n"
13125 "                          int idbyte);\n"
13126 "\n"
13127 msgstr ""
13128
13129 #. type: textblock
13130 #: ../src/guestfs-actions.pod:4913 ../fish/guestfish-actions.pod:3286
13131 msgid ""
13132 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
13133 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
13134 "documentation are in fact hexadecimal numbers, but usually documented "
13135 "without any leading \"0x\" which might be confusing."
13136 msgstr ""
13137
13138 #. type: =head2
13139 #: ../src/guestfs-actions.pod:4927
13140 msgid "guestfs_part_set_name"
13141 msgstr ""
13142
13143 #. type: verbatim
13144 #: ../src/guestfs-actions.pod:4929
13145 #, no-wrap
13146 msgid ""
13147 " int\n"
13148 " guestfs_part_set_name (guestfs_h *g,\n"
13149 "                        const char *device,\n"
13150 "                        int partnum,\n"
13151 "                        const char *name);\n"
13152 "\n"
13153 msgstr ""
13154
13155 #. type: textblock
13156 #: ../src/guestfs-actions.pod:4935 ../fish/guestfish-actions.pod:3300
13157 msgid ""
13158 "This sets the partition name on partition numbered C<partnum> on device "
13159 "C<device>.  Note that partitions are numbered from 1."
13160 msgstr ""
13161
13162 #. type: textblock
13163 #: ../src/guestfs-actions.pod:4938 ../fish/guestfish-actions.pod:3303
13164 msgid ""
13165 "The partition name can only be set on certain types of partition table.  "
13166 "This works on C<gpt> but not on C<mbr> partitions."
13167 msgstr ""
13168
13169 #. type: =head2
13170 #: ../src/guestfs-actions.pod:4945
13171 msgid "guestfs_part_to_dev"
13172 msgstr ""
13173
13174 #. type: verbatim
13175 #: ../src/guestfs-actions.pod:4947
13176 #, no-wrap
13177 msgid ""
13178 " char *\n"
13179 " guestfs_part_to_dev (guestfs_h *g,\n"
13180 "                      const char *partition);\n"
13181 "\n"
13182 msgstr ""
13183
13184 #. type: textblock
13185 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3310
13186 msgid ""
13187 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
13188 "partition number, returning the device name (eg. \"/dev/sdb\")."
13189 msgstr ""
13190
13191 #. type: textblock
13192 #: ../src/guestfs-actions.pod:4955
13193 msgid ""
13194 "The named partition must exist, for example as a string returned from "
13195 "C<guestfs_list_partitions>."
13196 msgstr ""
13197
13198 #. type: =head2
13199 #: ../src/guestfs-actions.pod:4963
13200 msgid "guestfs_ping_daemon"
13201 msgstr ""
13202
13203 #. type: verbatim
13204 #: ../src/guestfs-actions.pod:4965
13205 #, no-wrap
13206 msgid ""
13207 " int\n"
13208 " guestfs_ping_daemon (guestfs_h *g);\n"
13209 "\n"
13210 msgstr ""
13211
13212 #. type: textblock
13213 #: ../src/guestfs-actions.pod:4968 ../fish/guestfish-actions.pod:3321
13214 msgid ""
13215 "This is a test probe into the guestfs daemon running inside the qemu "
13216 "subprocess.  Calling this function checks that the daemon responds to the "
13217 "ping message, without affecting the daemon or attached block device(s) in "
13218 "any other way."
13219 msgstr ""
13220
13221 #. type: =head2
13222 #: ../src/guestfs-actions.pod:4977
13223 msgid "guestfs_pread"
13224 msgstr ""
13225
13226 #. type: verbatim
13227 #: ../src/guestfs-actions.pod:4979
13228 #, no-wrap
13229 msgid ""
13230 " char *\n"
13231 " guestfs_pread (guestfs_h *g,\n"
13232 "                const char *path,\n"
13233 "                int count,\n"
13234 "                int64_t offset,\n"
13235 "                size_t *size_r);\n"
13236 "\n"
13237 msgstr ""
13238
13239 #. type: textblock
13240 #: ../src/guestfs-actions.pod:4986 ../fish/guestfish-actions.pod:3330
13241 msgid ""
13242 "This command lets you read part of a file.  It reads C<count> bytes of the "
13243 "file, starting at C<offset>, from file C<path>."
13244 msgstr ""
13245
13246 #. type: textblock
13247 #: ../src/guestfs-actions.pod:4989 ../src/guestfs-actions.pod:5015 ../fish/guestfish-actions.pod:3333 ../fish/guestfish-actions.pod:3348
13248 msgid ""
13249 "This may read fewer bytes than requested.  For further details see the "
13250 "L<pread(2)> system call."
13251 msgstr ""
13252
13253 #. type: textblock
13254 #: ../src/guestfs-actions.pod:4992
13255 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
13256 msgstr ""
13257
13258 #. type: =head2
13259 #: ../src/guestfs-actions.pod:5003
13260 msgid "guestfs_pread_device"
13261 msgstr ""
13262
13263 #. type: verbatim
13264 #: ../src/guestfs-actions.pod:5005
13265 #, no-wrap
13266 msgid ""
13267 " char *\n"
13268 " guestfs_pread_device (guestfs_h *g,\n"
13269 "                       const char *device,\n"
13270 "                       int count,\n"
13271 "                       int64_t offset,\n"
13272 "                       size_t *size_r);\n"
13273 "\n"
13274 msgstr ""
13275
13276 #. type: textblock
13277 #: ../src/guestfs-actions.pod:5012 ../fish/guestfish-actions.pod:3345
13278 msgid ""
13279 "This command lets you read part of a file.  It reads C<count> bytes of "
13280 "C<device>, starting at C<offset>."
13281 msgstr ""
13282
13283 #. type: textblock
13284 #: ../src/guestfs-actions.pod:5018
13285 msgid "See also C<guestfs_pread>."
13286 msgstr ""
13287
13288 #. type: textblock
13289 #: ../src/guestfs-actions.pod:5027
13290 msgid "(Added in 1.5.21)"
13291 msgstr ""
13292
13293 #. type: =head2
13294 #: ../src/guestfs-actions.pod:5029
13295 msgid "guestfs_pvcreate"
13296 msgstr ""
13297
13298 #. type: verbatim
13299 #: ../src/guestfs-actions.pod:5031
13300 #, no-wrap
13301 msgid ""
13302 " int\n"
13303 " guestfs_pvcreate (guestfs_h *g,\n"
13304 "                   const char *device);\n"
13305 "\n"
13306 msgstr ""
13307
13308 #. type: textblock
13309 #: ../src/guestfs-actions.pod:5035 ../fish/guestfish-actions.pod:3360
13310 msgid ""
13311 "This creates an LVM physical volume on the named C<device>, where C<device> "
13312 "should usually be a partition name such as C</dev/sda1>."
13313 msgstr ""
13314
13315 #. type: =head2
13316 #: ../src/guestfs-actions.pod:5043
13317 msgid "guestfs_pvremove"
13318 msgstr ""
13319
13320 #. type: verbatim
13321 #: ../src/guestfs-actions.pod:5045
13322 #, no-wrap
13323 msgid ""
13324 " int\n"
13325 " guestfs_pvremove (guestfs_h *g,\n"
13326 "                   const char *device);\n"
13327 "\n"
13328 msgstr ""
13329
13330 #. type: textblock
13331 #: ../src/guestfs-actions.pod:5049 ../fish/guestfish-actions.pod:3368
13332 msgid ""
13333 "This wipes a physical volume C<device> so that LVM will no longer recognise "
13334 "it."
13335 msgstr ""
13336
13337 #. type: textblock
13338 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3371
13339 msgid ""
13340 "The implementation uses the C<pvremove> command which refuses to wipe "
13341 "physical volumes that contain any volume groups, so you have to remove those "
13342 "first."
13343 msgstr ""
13344
13345 #. type: =head2
13346 #: ../src/guestfs-actions.pod:5060
13347 msgid "guestfs_pvresize"
13348 msgstr ""
13349
13350 #. type: verbatim
13351 #: ../src/guestfs-actions.pod:5062
13352 #, no-wrap
13353 msgid ""
13354 " int\n"
13355 " guestfs_pvresize (guestfs_h *g,\n"
13356 "                   const char *device);\n"
13357 "\n"
13358 msgstr ""
13359
13360 #. type: textblock
13361 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3379
13362 msgid ""
13363 "This resizes (expands or shrinks) an existing LVM physical volume to match "
13364 "the new size of the underlying device."
13365 msgstr ""
13366
13367 #. type: =head2
13368 #: ../src/guestfs-actions.pod:5073
13369 msgid "guestfs_pvresize_size"
13370 msgstr ""
13371
13372 #. type: verbatim
13373 #: ../src/guestfs-actions.pod:5075
13374 #, no-wrap
13375 msgid ""
13376 " int\n"
13377 " guestfs_pvresize_size (guestfs_h *g,\n"
13378 "                        const char *device,\n"
13379 "                        int64_t size);\n"
13380 "\n"
13381 msgstr ""
13382
13383 #. type: textblock
13384 #: ../src/guestfs-actions.pod:5080
13385 msgid ""
13386 "This command is the same as C<guestfs_pvresize> except that it allows you to "
13387 "specify the new size (in bytes) explicitly."
13388 msgstr ""
13389
13390 #. type: =head2
13391 #: ../src/guestfs-actions.pod:5087
13392 msgid "guestfs_pvs"
13393 msgstr ""
13394
13395 #. type: verbatim
13396 #: ../src/guestfs-actions.pod:5089
13397 #, no-wrap
13398 msgid ""
13399 " char **\n"
13400 " guestfs_pvs (guestfs_h *g);\n"
13401 "\n"
13402 msgstr ""
13403
13404 #. type: textblock
13405 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3393
13406 msgid ""
13407 "List all the physical volumes detected.  This is the equivalent of the "
13408 "L<pvs(8)> command."
13409 msgstr ""
13410
13411 #. type: textblock
13412 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3396
13413 msgid ""
13414 "This returns a list of just the device names that contain PVs "
13415 "(eg. C</dev/sda2>)."
13416 msgstr ""
13417
13418 #. type: textblock
13419 #: ../src/guestfs-actions.pod:5098
13420 msgid "See also C<guestfs_pvs_full>."
13421 msgstr ""
13422
13423 #. type: =head2
13424 #: ../src/guestfs-actions.pod:5106
13425 msgid "guestfs_pvs_full"
13426 msgstr ""
13427
13428 #. type: verbatim
13429 #: ../src/guestfs-actions.pod:5108
13430 #, no-wrap
13431 msgid ""
13432 " struct guestfs_lvm_pv_list *\n"
13433 " guestfs_pvs_full (guestfs_h *g);\n"
13434 "\n"
13435 msgstr ""
13436
13437 #. type: textblock
13438 #: ../src/guestfs-actions.pod:5111 ../fish/guestfish-actions.pod:3405
13439 msgid ""
13440 "List all the physical volumes detected.  This is the equivalent of the "
13441 "L<pvs(8)> command.  The \"full\" version includes all fields."
13442 msgstr ""
13443
13444 #. type: textblock
13445 #: ../src/guestfs-actions.pod:5114
13446 msgid ""
13447 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
13448 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
13449 "use>."
13450 msgstr ""
13451
13452 #. type: =head2
13453 #: ../src/guestfs-actions.pod:5120
13454 msgid "guestfs_pvuuid"
13455 msgstr ""
13456
13457 #. type: verbatim
13458 #: ../src/guestfs-actions.pod:5122
13459 #, no-wrap
13460 msgid ""
13461 " char *\n"
13462 " guestfs_pvuuid (guestfs_h *g,\n"
13463 "                 const char *device);\n"
13464 "\n"
13465 msgstr ""
13466
13467 #. type: textblock
13468 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3412
13469 msgid "This command returns the UUID of the LVM PV C<device>."
13470 msgstr ""
13471
13472 #. type: =head2
13473 #: ../src/guestfs-actions.pod:5133
13474 msgid "guestfs_pwrite"
13475 msgstr ""
13476
13477 #. type: verbatim
13478 #: ../src/guestfs-actions.pod:5135
13479 #, no-wrap
13480 msgid ""
13481 " int\n"
13482 " guestfs_pwrite (guestfs_h *g,\n"
13483 "                 const char *path,\n"
13484 "                 const char *content,\n"
13485 "                 size_t content_size,\n"
13486 "                 int64_t offset);\n"
13487 "\n"
13488 msgstr ""
13489
13490 #. type: textblock
13491 #: ../src/guestfs-actions.pod:5142 ../fish/guestfish-actions.pod:3418
13492 msgid ""
13493 "This command writes to part of a file.  It writes the data buffer C<content> "
13494 "to the file C<path> starting at offset C<offset>."
13495 msgstr ""
13496
13497 #. type: textblock
13498 #: ../src/guestfs-actions.pod:5145 ../fish/guestfish-actions.pod:3421
13499 msgid ""
13500 "This command implements the L<pwrite(2)> system call, and like that system "
13501 "call it may not write the full data requested.  The return value is the "
13502 "number of bytes that were actually written to the file.  This could even be "
13503 "0, although short writes are unlikely for regular files in ordinary "
13504 "circumstances."
13505 msgstr ""
13506
13507 #. type: textblock
13508 #: ../src/guestfs-actions.pod:5151
13509 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
13510 msgstr ""
13511
13512 #. type: =head2
13513 #: ../src/guestfs-actions.pod:5160
13514 msgid "guestfs_pwrite_device"
13515 msgstr ""
13516
13517 #. type: verbatim
13518 #: ../src/guestfs-actions.pod:5162
13519 #, no-wrap
13520 msgid ""
13521 " int\n"
13522 " guestfs_pwrite_device (guestfs_h *g,\n"
13523 "                        const char *device,\n"
13524 "                        const char *content,\n"
13525 "                        size_t content_size,\n"
13526 "                        int64_t offset);\n"
13527 "\n"
13528 msgstr ""
13529
13530 #. type: textblock
13531 #: ../src/guestfs-actions.pod:5169 ../fish/guestfish-actions.pod:3436
13532 msgid ""
13533 "This command writes to part of a device.  It writes the data buffer "
13534 "C<content> to C<device> starting at offset C<offset>."
13535 msgstr ""
13536
13537 #. type: textblock
13538 #: ../src/guestfs-actions.pod:5172 ../fish/guestfish-actions.pod:3439
13539 msgid ""
13540 "This command implements the L<pwrite(2)> system call, and like that system "
13541 "call it may not write the full data requested (although short writes to disk "
13542 "devices and partitions are probably impossible with standard Linux kernels)."
13543 msgstr ""
13544
13545 #. type: textblock
13546 #: ../src/guestfs-actions.pod:5177
13547 msgid "See also C<guestfs_pwrite>."
13548 msgstr ""
13549
13550 #. type: textblock
13551 #: ../src/guestfs-actions.pod:5184
13552 msgid "(Added in 1.5.20)"
13553 msgstr ""
13554
13555 #. type: =head2
13556 #: ../src/guestfs-actions.pod:5186
13557 msgid "guestfs_read_file"
13558 msgstr ""
13559
13560 #. type: verbatim
13561 #: ../src/guestfs-actions.pod:5188
13562 #, no-wrap
13563 msgid ""
13564 " char *\n"
13565 " guestfs_read_file (guestfs_h *g,\n"
13566 "                    const char *path,\n"
13567 "                    size_t *size_r);\n"
13568 "\n"
13569 msgstr ""
13570
13571 #. type: textblock
13572 #: ../src/guestfs-actions.pod:5193 ../fish/guestfish-actions.pod:3453
13573 msgid "This calls returns the contents of the file C<path> as a buffer."
13574 msgstr ""
13575
13576 #. type: textblock
13577 #: ../src/guestfs-actions.pod:5196
13578 msgid ""
13579 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
13580 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
13581 "function is limited in the total size of file that can be handled."
13582 msgstr ""
13583
13584 #. type: textblock
13585 #: ../src/guestfs-actions.pod:5208
13586 msgid "(Added in 1.0.63)"
13587 msgstr ""
13588
13589 #. type: =head2
13590 #: ../src/guestfs-actions.pod:5210
13591 msgid "guestfs_read_lines"
13592 msgstr ""
13593
13594 #. type: verbatim
13595 #: ../src/guestfs-actions.pod:5212
13596 #, no-wrap
13597 msgid ""
13598 " char **\n"
13599 " guestfs_read_lines (guestfs_h *g,\n"
13600 "                     const char *path);\n"
13601 "\n"
13602 msgstr ""
13603
13604 #. type: textblock
13605 #: ../src/guestfs-actions.pod:5218 ../fish/guestfish-actions.pod:3470
13606 msgid ""
13607 "The file contents are returned as a list of lines.  Trailing C<LF> and "
13608 "C<CRLF> character sequences are I<not> returned."
13609 msgstr ""
13610
13611 #. type: textblock
13612 #: ../src/guestfs-actions.pod:5221
13613 msgid ""
13614 "Note that this function cannot correctly handle binary files (specifically, "
13615 "files containing C<\\0> character which is treated as end of line).  For "
13616 "those you need to use the C<guestfs_read_file> function which has a more "
13617 "complex interface."
13618 msgstr ""
13619
13620 #. type: =head2
13621 #: ../src/guestfs-actions.pod:5232
13622 msgid "guestfs_readdir"
13623 msgstr ""
13624
13625 #. type: verbatim
13626 #: ../src/guestfs-actions.pod:5234
13627 #, no-wrap
13628 msgid ""
13629 " struct guestfs_dirent_list *\n"
13630 " guestfs_readdir (guestfs_h *g,\n"
13631 "                  const char *dir);\n"
13632 "\n"
13633 msgstr ""
13634
13635 #. type: textblock
13636 #: ../src/guestfs-actions.pod:5238 ../fish/guestfish-actions.pod:3482
13637 msgid "This returns the list of directory entries in directory C<dir>."
13638 msgstr ""
13639
13640 #. type: textblock
13641 #: ../src/guestfs-actions.pod:5240 ../fish/guestfish-actions.pod:3484
13642 msgid ""
13643 "All entries in the directory are returned, including C<.> and C<..>.  The "
13644 "entries are I<not> sorted, but returned in the same order as the underlying "
13645 "filesystem."
13646 msgstr ""
13647
13648 #. type: textblock
13649 #: ../src/guestfs-actions.pod:5244 ../fish/guestfish-actions.pod:3488
13650 msgid ""
13651 "Also this call returns basic file type information about each file.  The "
13652 "C<ftyp> field will contain one of the following characters:"
13653 msgstr ""
13654
13655 #. type: =item
13656 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3493
13657 msgid "'b'"
13658 msgstr ""
13659
13660 #. type: textblock
13661 #: ../src/guestfs-actions.pod:5251 ../fish/guestfish-actions.pod:3495
13662 msgid "Block special"
13663 msgstr ""
13664
13665 #. type: =item
13666 #: ../src/guestfs-actions.pod:5253 ../fish/guestfish-actions.pod:3497
13667 msgid "'c'"
13668 msgstr ""
13669
13670 #. type: textblock
13671 #: ../src/guestfs-actions.pod:5255 ../fish/guestfish-actions.pod:3499
13672 msgid "Char special"
13673 msgstr ""
13674
13675 #. type: =item
13676 #: ../src/guestfs-actions.pod:5257 ../fish/guestfish-actions.pod:3501
13677 msgid "'d'"
13678 msgstr ""
13679
13680 #. type: textblock
13681 #: ../src/guestfs-actions.pod:5259 ../fish/guestfish-actions.pod:3503
13682 msgid "Directory"
13683 msgstr ""
13684
13685 #. type: =item
13686 #: ../src/guestfs-actions.pod:5261 ../fish/guestfish-actions.pod:3505
13687 msgid "'f'"
13688 msgstr ""
13689
13690 #. type: textblock
13691 #: ../src/guestfs-actions.pod:5263 ../fish/guestfish-actions.pod:3507
13692 msgid "FIFO (named pipe)"
13693 msgstr ""
13694
13695 #. type: =item
13696 #: ../src/guestfs-actions.pod:5265 ../fish/guestfish-actions.pod:3509
13697 msgid "'l'"
13698 msgstr ""
13699
13700 #. type: textblock
13701 #: ../src/guestfs-actions.pod:5267 ../fish/guestfish-actions.pod:3511
13702 msgid "Symbolic link"
13703 msgstr ""
13704
13705 #. type: =item
13706 #: ../src/guestfs-actions.pod:5269 ../fish/guestfish-actions.pod:3513
13707 msgid "'r'"
13708 msgstr ""
13709
13710 #. type: textblock
13711 #: ../src/guestfs-actions.pod:5271 ../fish/guestfish-actions.pod:3515
13712 msgid "Regular file"
13713 msgstr ""
13714
13715 #. type: =item
13716 #: ../src/guestfs-actions.pod:5273 ../fish/guestfish-actions.pod:3517
13717 msgid "'s'"
13718 msgstr ""
13719
13720 #. type: textblock
13721 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3519
13722 msgid "Socket"
13723 msgstr ""
13724
13725 #. type: =item
13726 #: ../src/guestfs-actions.pod:5277 ../fish/guestfish-actions.pod:3521
13727 msgid "'u'"
13728 msgstr ""
13729
13730 #. type: textblock
13731 #: ../src/guestfs-actions.pod:5279 ../fish/guestfish-actions.pod:3523
13732 msgid "Unknown file type"
13733 msgstr ""
13734
13735 #. type: =item
13736 #: ../src/guestfs-actions.pod:5281 ../fish/guestfish-actions.pod:3525
13737 msgid "'?'"
13738 msgstr ""
13739
13740 #. type: textblock
13741 #: ../src/guestfs-actions.pod:5283 ../fish/guestfish-actions.pod:3527
13742 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
13743 msgstr ""
13744
13745 #. type: textblock
13746 #: ../src/guestfs-actions.pod:5288
13747 msgid ""
13748 "This function is primarily intended for use by programs.  To get a simple "
13749 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
13750 "consumption, use C<guestfs_ll>."
13751 msgstr ""
13752
13753 #. type: textblock
13754 #: ../src/guestfs-actions.pod:5292
13755 msgid ""
13756 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
13757 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
13758 "use>."
13759 msgstr ""
13760
13761 #. type: =head2
13762 #: ../src/guestfs-actions.pod:5298
13763 msgid "guestfs_readlink"
13764 msgstr ""
13765
13766 #. type: verbatim
13767 #: ../src/guestfs-actions.pod:5300
13768 #, no-wrap
13769 msgid ""
13770 " char *\n"
13771 " guestfs_readlink (guestfs_h *g,\n"
13772 "                   const char *path);\n"
13773 "\n"
13774 msgstr ""
13775
13776 #. type: textblock
13777 #: ../src/guestfs-actions.pod:5304 ../fish/guestfish-actions.pod:3540
13778 msgid "This command reads the target of a symbolic link."
13779 msgstr ""
13780
13781 #. type: =head2
13782 #: ../src/guestfs-actions.pod:5311
13783 msgid "guestfs_readlinklist"
13784 msgstr ""
13785
13786 #. type: verbatim
13787 #: ../src/guestfs-actions.pod:5313
13788 #, no-wrap
13789 msgid ""
13790 " char **\n"
13791 " guestfs_readlinklist (guestfs_h *g,\n"
13792 "                       const char *path,\n"
13793 "                       char *const *names);\n"
13794 "\n"
13795 msgstr ""
13796
13797 #. type: textblock
13798 #: ../src/guestfs-actions.pod:5318 ../fish/guestfish-actions.pod:3546
13799 msgid ""
13800 "This call allows you to do a C<readlink> operation on multiple files, where "
13801 "all files are in the directory C<path>.  C<names> is the list of files from "
13802 "this directory."
13803 msgstr ""
13804
13805 #. type: textblock
13806 #: ../src/guestfs-actions.pod:5322 ../fish/guestfish-actions.pod:3550
13807 msgid ""
13808 "On return you get a list of strings, with a one-to-one correspondence to the "
13809 "C<names> list.  Each string is the value of the symbolic link."
13810 msgstr ""
13811
13812 #. type: textblock
13813 #: ../src/guestfs-actions.pod:5326 ../fish/guestfish-actions.pod:3554
13814 msgid ""
13815 "If the C<readlink(2)> operation fails on any name, then the corresponding "
13816 "result string is the empty string C<\"\">.  However the whole operation is "
13817 "completed even if there were C<readlink(2)> errors, and so you can call this "
13818 "function with names where you don't know if they are symbolic links already "
13819 "(albeit slightly less efficient)."
13820 msgstr ""
13821
13822 #. type: textblock
13823 #: ../src/guestfs-actions.pod:5333 ../fish/guestfish-actions.pod:3561
13824 msgid ""
13825 "This call is intended for programs that want to efficiently list a directory "
13826 "contents without making many round-trips.  Very long directory listings "
13827 "might cause the protocol message size to be exceeded, causing this call to "
13828 "fail.  The caller must split up such requests into smaller groups of names."
13829 msgstr ""
13830
13831 #. type: =head2
13832 #: ../src/guestfs-actions.pod:5346
13833 msgid "guestfs_realpath"
13834 msgstr ""
13835
13836 #. type: verbatim
13837 #: ../src/guestfs-actions.pod:5348
13838 #, no-wrap
13839 msgid ""
13840 " char *\n"
13841 " guestfs_realpath (guestfs_h *g,\n"
13842 "                   const char *path);\n"
13843 "\n"
13844 msgstr ""
13845
13846 #. type: textblock
13847 #: ../src/guestfs-actions.pod:5352 ../fish/guestfish-actions.pod:3572
13848 msgid ""
13849 "Return the canonicalized absolute pathname of C<path>.  The returned path "
13850 "has no C<.>, C<..> or symbolic link path elements."
13851 msgstr ""
13852
13853 #. type: =head2
13854 #: ../src/guestfs-actions.pod:5360
13855 msgid "guestfs_removexattr"
13856 msgstr ""
13857
13858 #. type: verbatim
13859 #: ../src/guestfs-actions.pod:5362
13860 #, no-wrap
13861 msgid ""
13862 " int\n"
13863 " guestfs_removexattr (guestfs_h *g,\n"
13864 "                      const char *xattr,\n"
13865 "                      const char *path);\n"
13866 "\n"
13867 msgstr ""
13868
13869 #. type: textblock
13870 #: ../src/guestfs-actions.pod:5367 ../fish/guestfish-actions.pod:3579
13871 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
13872 msgstr ""
13873
13874 #. type: textblock
13875 #: ../src/guestfs-actions.pod:5370
13876 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
13877 msgstr ""
13878
13879 #. type: =head2
13880 #: ../src/guestfs-actions.pod:5376
13881 msgid "guestfs_resize2fs"
13882 msgstr ""
13883
13884 #. type: verbatim
13885 #: ../src/guestfs-actions.pod:5378
13886 #, no-wrap
13887 msgid ""
13888 " int\n"
13889 " guestfs_resize2fs (guestfs_h *g,\n"
13890 "                    const char *device);\n"
13891 "\n"
13892 msgstr ""
13893
13894 #. type: textblock
13895 #: ../src/guestfs-actions.pod:5382 ../fish/guestfish-actions.pod:3588
13896 msgid ""
13897 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
13898 "underlying device."
13899 msgstr ""
13900
13901 #. type: textblock
13902 #: ../src/guestfs-actions.pod:5385
13903 msgid ""
13904 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
13905 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
13906 "sometimes gives an error about this and sometimes not.  In any case, it is "
13907 "always safe to call C<guestfs_e2fsck_f> before calling this function."
13908 msgstr ""
13909
13910 #. type: =head2
13911 #: ../src/guestfs-actions.pod:5395
13912 msgid "guestfs_resize2fs_size"
13913 msgstr ""
13914
13915 #. type: verbatim
13916 #: ../src/guestfs-actions.pod:5397
13917 #, no-wrap
13918 msgid ""
13919 " int\n"
13920 " guestfs_resize2fs_size (guestfs_h *g,\n"
13921 "                         const char *device,\n"
13922 "                         int64_t size);\n"
13923 "\n"
13924 msgstr ""
13925
13926 #. type: textblock
13927 #: ../src/guestfs-actions.pod:5402
13928 msgid ""
13929 "This command is the same as C<guestfs_resize2fs> except that it allows you "
13930 "to specify the new size (in bytes) explicitly."
13931 msgstr ""
13932
13933 #. type: =head2
13934 #: ../src/guestfs-actions.pod:5409
13935 msgid "guestfs_rm"
13936 msgstr ""
13937
13938 #. type: verbatim
13939 #: ../src/guestfs-actions.pod:5411
13940 #, no-wrap
13941 msgid ""
13942 " int\n"
13943 " guestfs_rm (guestfs_h *g,\n"
13944 "             const char *path);\n"
13945 "\n"
13946 msgstr ""
13947
13948 #. type: textblock
13949 #: ../src/guestfs-actions.pod:5415 ../fish/guestfish-actions.pod:3608
13950 msgid "Remove the single file C<path>."
13951 msgstr ""
13952
13953 #. type: =head2
13954 #: ../src/guestfs-actions.pod:5421
13955 msgid "guestfs_rm_rf"
13956 msgstr ""
13957
13958 #. type: verbatim
13959 #: ../src/guestfs-actions.pod:5423
13960 #, no-wrap
13961 msgid ""
13962 " int\n"
13963 " guestfs_rm_rf (guestfs_h *g,\n"
13964 "                const char *path);\n"
13965 "\n"
13966 msgstr ""
13967
13968 #. type: textblock
13969 #: ../src/guestfs-actions.pod:5427 ../fish/guestfish-actions.pod:3614
13970 msgid ""
13971 "Remove the file or directory C<path>, recursively removing the contents if "
13972 "its a directory.  This is like the C<rm -rf> shell command."
13973 msgstr ""
13974
13975 #. type: =head2
13976 #: ../src/guestfs-actions.pod:5435
13977 msgid "guestfs_rmdir"
13978 msgstr ""
13979
13980 #. type: verbatim
13981 #: ../src/guestfs-actions.pod:5437
13982 #, no-wrap
13983 msgid ""
13984 " int\n"
13985 " guestfs_rmdir (guestfs_h *g,\n"
13986 "                const char *path);\n"
13987 "\n"
13988 msgstr ""
13989
13990 #. type: textblock
13991 #: ../src/guestfs-actions.pod:5441 ../fish/guestfish-actions.pod:3622
13992 msgid "Remove the single directory C<path>."
13993 msgstr ""
13994
13995 #. type: =head2
13996 #: ../src/guestfs-actions.pod:5447
13997 msgid "guestfs_rmmountpoint"
13998 msgstr ""
13999
14000 #. type: verbatim
14001 #: ../src/guestfs-actions.pod:5449
14002 #, no-wrap
14003 msgid ""
14004 " int\n"
14005 " guestfs_rmmountpoint (guestfs_h *g,\n"
14006 "                       const char *exemptpath);\n"
14007 "\n"
14008 msgstr ""
14009
14010 #. type: textblock
14011 #: ../src/guestfs-actions.pod:5453
14012 msgid ""
14013 "This calls removes a mountpoint that was previously created with "
14014 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
14015 msgstr ""
14016
14017 #. type: =head2
14018 #: ../src/guestfs-actions.pod:5461
14019 msgid "guestfs_scrub_device"
14020 msgstr ""
14021
14022 #. type: verbatim
14023 #: ../src/guestfs-actions.pod:5463
14024 #, no-wrap
14025 msgid ""
14026 " int\n"
14027 " guestfs_scrub_device (guestfs_h *g,\n"
14028 "                       const char *device);\n"
14029 "\n"
14030 msgstr ""
14031
14032 #. type: textblock
14033 #: ../src/guestfs-actions.pod:5467 ../fish/guestfish-actions.pod:3636
14034 msgid ""
14035 "This command writes patterns over C<device> to make data retrieval more "
14036 "difficult."
14037 msgstr ""
14038
14039 #. type: textblock
14040 #: ../src/guestfs-actions.pod:5470 ../src/guestfs-actions.pod:5491 ../src/guestfs-actions.pod:5510 ../fish/guestfish-actions.pod:3639 ../fish/guestfish-actions.pod:3654 ../fish/guestfish-actions.pod:3667
14041 msgid ""
14042 "It is an interface to the L<scrub(1)> program.  See that manual page for "
14043 "more details."
14044 msgstr ""
14045
14046 #. type: textblock
14047 #: ../src/guestfs-actions.pod:5478 ../src/guestfs-actions.pod:5496 ../src/guestfs-actions.pod:5515
14048 msgid "(Added in 1.0.52)"
14049 msgstr ""
14050
14051 #. type: =head2
14052 #: ../src/guestfs-actions.pod:5480
14053 msgid "guestfs_scrub_file"
14054 msgstr ""
14055
14056 #. type: verbatim
14057 #: ../src/guestfs-actions.pod:5482
14058 #, no-wrap
14059 msgid ""
14060 " int\n"
14061 " guestfs_scrub_file (guestfs_h *g,\n"
14062 "                     const char *file);\n"
14063 "\n"
14064 msgstr ""
14065
14066 #. type: textblock
14067 #: ../src/guestfs-actions.pod:5486 ../fish/guestfish-actions.pod:3649
14068 msgid ""
14069 "This command writes patterns over a file to make data retrieval more "
14070 "difficult."
14071 msgstr ""
14072
14073 #. type: textblock
14074 #: ../src/guestfs-actions.pod:5489 ../fish/guestfish-actions.pod:3652
14075 msgid "The file is I<removed> after scrubbing."
14076 msgstr ""
14077
14078 #. type: =head2
14079 #: ../src/guestfs-actions.pod:5498
14080 msgid "guestfs_scrub_freespace"
14081 msgstr ""
14082
14083 #. type: verbatim
14084 #: ../src/guestfs-actions.pod:5500
14085 #, no-wrap
14086 msgid ""
14087 " int\n"
14088 " guestfs_scrub_freespace (guestfs_h *g,\n"
14089 "                          const char *dir);\n"
14090 "\n"
14091 msgstr ""
14092
14093 #. type: textblock
14094 #: ../src/guestfs-actions.pod:5504
14095 msgid ""
14096 "This command creates the directory C<dir> and then fills it with files until "
14097 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
14098 "and deletes them.  The intention is to scrub any free space on the partition "
14099 "containing C<dir>."
14100 msgstr ""
14101
14102 #. type: =head2
14103 #: ../src/guestfs-actions.pod:5517
14104 msgid "guestfs_set_append"
14105 msgstr ""
14106
14107 #. type: verbatim
14108 #: ../src/guestfs-actions.pod:5519
14109 #, no-wrap
14110 msgid ""
14111 " int\n"
14112 " guestfs_set_append (guestfs_h *g,\n"
14113 "                     const char *append);\n"
14114 "\n"
14115 msgstr ""
14116
14117 #. type: textblock
14118 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3676
14119 msgid ""
14120 "This function is used to add additional options to the guest kernel command "
14121 "line."
14122 msgstr ""
14123
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3679
14126 msgid ""
14127 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
14128 "environment variable."
14129 msgstr ""
14130
14131 #. type: textblock
14132 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3682
14133 msgid ""
14134 "Setting C<append> to C<NULL> means I<no> additional options are passed "
14135 "(libguestfs always adds a few of its own)."
14136 msgstr ""
14137
14138 #. type: =head2
14139 #: ../src/guestfs-actions.pod:5536
14140 msgid "guestfs_set_autosync"
14141 msgstr ""
14142
14143 #. type: verbatim
14144 #: ../src/guestfs-actions.pod:5538
14145 #, no-wrap
14146 msgid ""
14147 " int\n"
14148 " guestfs_set_autosync (guestfs_h *g,\n"
14149 "                       int autosync);\n"
14150 "\n"
14151 msgstr ""
14152
14153 #. type: textblock
14154 #: ../src/guestfs-actions.pod:5542
14155 msgid ""
14156 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
14157 "effort attempt to run C<guestfs_umount_all> followed by C<guestfs_sync> when "
14158 "the handle is closed (also if the program exits without closing handles)."
14159 msgstr ""
14160
14161 #. type: textblock
14162 #: ../src/guestfs-actions.pod:5547 ../fish/guestfish-actions.pod:3696
14163 msgid ""
14164 "This is enabled by default (since libguestfs 1.5.24, previously it was "
14165 "disabled by default)."
14166 msgstr ""
14167
14168 #. type: =head2
14169 #: ../src/guestfs-actions.pod:5554
14170 msgid "guestfs_set_direct"
14171 msgstr ""
14172
14173 #. type: verbatim
14174 #: ../src/guestfs-actions.pod:5556
14175 #, no-wrap
14176 msgid ""
14177 " int\n"
14178 " guestfs_set_direct (guestfs_h *g,\n"
14179 "                     int direct);\n"
14180 "\n"
14181 msgstr ""
14182
14183 #. type: textblock
14184 #: ../src/guestfs-actions.pod:5560 ../fish/guestfish-actions.pod:3705
14185 msgid ""
14186 "If the direct appliance mode flag is enabled, then stdin and stdout are "
14187 "passed directly through to the appliance once it is launched."
14188 msgstr ""
14189
14190 #. type: textblock
14191 #: ../src/guestfs-actions.pod:5564
14192 msgid ""
14193 "One consequence of this is that log messages aren't caught by the library "
14194 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
14195 "stdout."
14196 msgstr ""
14197
14198 #. type: textblock
14199 #: ../src/guestfs-actions.pod:5568 ../fish/guestfish-actions.pod:3713
14200 msgid "You probably don't want to use this unless you know what you are doing."
14201 msgstr ""
14202
14203 #. type: textblock
14204 #: ../src/guestfs-actions.pod:5571 ../fish/guestfish-actions.pod:3716
14205 msgid "The default is disabled."
14206 msgstr ""
14207
14208 #. type: =head2
14209 #: ../src/guestfs-actions.pod:5577
14210 msgid "guestfs_set_e2label"
14211 msgstr ""
14212
14213 #. type: verbatim
14214 #: ../src/guestfs-actions.pod:5579
14215 #, no-wrap
14216 msgid ""
14217 " int\n"
14218 " guestfs_set_e2label (guestfs_h *g,\n"
14219 "                      const char *device,\n"
14220 "                      const char *label);\n"
14221 "\n"
14222 msgstr ""
14223
14224 #. type: textblock
14225 #: ../src/guestfs-actions.pod:5584 ../fish/guestfish-actions.pod:3722
14226 msgid ""
14227 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
14228 "C<label>.  Filesystem labels are limited to 16 characters."
14229 msgstr ""
14230
14231 #. type: textblock
14232 #: ../src/guestfs-actions.pod:5588
14233 msgid ""
14234 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
14235 "the existing label on a filesystem."
14236 msgstr ""
14237
14238 #. type: =head2
14239 #: ../src/guestfs-actions.pod:5595
14240 msgid "guestfs_set_e2uuid"
14241 msgstr ""
14242
14243 #. type: verbatim
14244 #: ../src/guestfs-actions.pod:5597
14245 #, no-wrap
14246 msgid ""
14247 " int\n"
14248 " guestfs_set_e2uuid (guestfs_h *g,\n"
14249 "                     const char *device,\n"
14250 "                     const char *uuid);\n"
14251 "\n"
14252 msgstr ""
14253
14254 #. type: textblock
14255 #: ../src/guestfs-actions.pod:5602 ../fish/guestfish-actions.pod:3733
14256 msgid ""
14257 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
14258 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
14259 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
14260 msgstr ""
14261
14262 #. type: textblock
14263 #: ../src/guestfs-actions.pod:5607
14264 msgid ""
14265 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
14266 "the existing UUID of a filesystem."
14267 msgstr ""
14268
14269 #. type: =head2
14270 #: ../src/guestfs-actions.pod:5614
14271 msgid "guestfs_set_memsize"
14272 msgstr ""
14273
14274 #. type: verbatim
14275 #: ../src/guestfs-actions.pod:5616
14276 #, no-wrap
14277 msgid ""
14278 " int\n"
14279 " guestfs_set_memsize (guestfs_h *g,\n"
14280 "                      int memsize);\n"
14281 "\n"
14282 msgstr ""
14283
14284 #. type: textblock
14285 #: ../src/guestfs-actions.pod:5620
14286 msgid ""
14287 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
14288 "This only has any effect if called before C<guestfs_launch>."
14289 msgstr ""
14290
14291 #. type: textblock
14292 #: ../src/guestfs-actions.pod:5624 ../fish/guestfish-actions.pod:3751
14293 msgid ""
14294 "You can also change this by setting the environment variable "
14295 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
14296 msgstr ""
14297
14298 #. type: =head2
14299 #: ../src/guestfs-actions.pod:5635
14300 msgid "guestfs_set_network"
14301 msgstr ""
14302
14303 #. type: verbatim
14304 #: ../src/guestfs-actions.pod:5637
14305 #, no-wrap
14306 msgid ""
14307 " int\n"
14308 " guestfs_set_network (guestfs_h *g,\n"
14309 "                      int network);\n"
14310 "\n"
14311 msgstr ""
14312
14313 #. type: textblock
14314 #: ../src/guestfs-actions.pod:5641 ../fish/guestfish-actions.pod:3764
14315 msgid ""
14316 "If C<network> is true, then the network is enabled in the libguestfs "
14317 "appliance.  The default is false."
14318 msgstr ""
14319
14320 #. type: textblock
14321 #: ../src/guestfs-actions.pod:5644 ../fish/guestfish-actions.pod:3767
14322 msgid ""
14323 "This affects whether commands are able to access the network (see "
14324 "L<guestfs(3)/RUNNING COMMANDS>)."
14325 msgstr ""
14326
14327 #. type: textblock
14328 #: ../src/guestfs-actions.pod:5647
14329 msgid ""
14330 "You must call this before calling C<guestfs_launch>, otherwise it has no "
14331 "effect."
14332 msgstr ""
14333
14334 #. type: =head2
14335 #: ../src/guestfs-actions.pod:5654
14336 msgid "guestfs_set_path"
14337 msgstr ""
14338
14339 #. type: verbatim
14340 #: ../src/guestfs-actions.pod:5656
14341 #, no-wrap
14342 msgid ""
14343 " int\n"
14344 " guestfs_set_path (guestfs_h *g,\n"
14345 "                   const char *searchpath);\n"
14346 "\n"
14347 msgstr ""
14348
14349 #. type: textblock
14350 #: ../src/guestfs-actions.pod:5660 ../fish/guestfish-actions.pod:3779
14351 msgid "Set the path that libguestfs searches for kernel and initrd.img."
14352 msgstr ""
14353
14354 #. type: textblock
14355 #: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3781
14356 msgid ""
14357 "The default is C<$libdir/guestfs> unless overridden by setting "
14358 "C<LIBGUESTFS_PATH> environment variable."
14359 msgstr ""
14360
14361 #. type: textblock
14362 #: ../src/guestfs-actions.pod:5665 ../fish/guestfish-actions.pod:3784
14363 msgid "Setting C<path> to C<NULL> restores the default path."
14364 msgstr ""
14365
14366 #. type: =head2
14367 #: ../src/guestfs-actions.pod:5671
14368 msgid "guestfs_set_qemu"
14369 msgstr ""
14370
14371 #. type: verbatim
14372 #: ../src/guestfs-actions.pod:5673
14373 #, no-wrap
14374 msgid ""
14375 " int\n"
14376 " guestfs_set_qemu (guestfs_h *g,\n"
14377 "                   const char *qemu);\n"
14378 "\n"
14379 msgstr ""
14380
14381 #. type: textblock
14382 #: ../src/guestfs-actions.pod:5677 ../fish/guestfish-actions.pod:3792
14383 msgid "Set the qemu binary that we will use."
14384 msgstr ""
14385
14386 #. type: textblock
14387 #: ../src/guestfs-actions.pod:5679 ../fish/guestfish-actions.pod:3794
14388 msgid "The default is chosen when the library was compiled by the configure script."
14389 msgstr ""
14390
14391 #. type: textblock
14392 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3797
14393 msgid ""
14394 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
14395 "variable."
14396 msgstr ""
14397
14398 #. type: textblock
14399 #: ../src/guestfs-actions.pod:5685 ../fish/guestfish-actions.pod:3800
14400 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
14401 msgstr ""
14402
14403 #. type: textblock
14404 #: ../src/guestfs-actions.pod:5687 ../fish/guestfish-actions.pod:3802
14405 msgid ""
14406 "Note that you should call this function as early as possible after creating "
14407 "the handle.  This is because some pre-launch operations depend on testing "
14408 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
14409 "don't retest features, and so you might see inconsistent results.  Using the "
14410 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
14411 "the qemu binary at the same time as the handle is created."
14412 msgstr ""
14413
14414 #. type: =head2
14415 #: ../src/guestfs-actions.pod:5699
14416 msgid "guestfs_set_recovery_proc"
14417 msgstr ""
14418
14419 #. type: verbatim
14420 #: ../src/guestfs-actions.pod:5701
14421 #, no-wrap
14422 msgid ""
14423 " int\n"
14424 " guestfs_set_recovery_proc (guestfs_h *g,\n"
14425 "                            int recoveryproc);\n"
14426 "\n"
14427 msgstr ""
14428
14429 #. type: textblock
14430 #: ../src/guestfs-actions.pod:5705
14431 msgid ""
14432 "If this is called with the parameter C<false> then C<guestfs_launch> does "
14433 "not create a recovery process.  The purpose of the recovery process is to "
14434 "stop runaway qemu processes in the case where the main program aborts "
14435 "abruptly."
14436 msgstr ""
14437
14438 #. type: textblock
14439 #: ../src/guestfs-actions.pod:5710
14440 msgid ""
14441 "This only has any effect if called before C<guestfs_launch>, and the default "
14442 "is true."
14443 msgstr ""
14444
14445 #. type: textblock
14446 #: ../src/guestfs-actions.pod:5713 ../fish/guestfish-actions.pod:3824
14447 msgid ""
14448 "About the only time when you would want to disable this is if the main "
14449 "process will fork itself into the background (\"daemonize\" itself).  In "
14450 "this case the recovery process thinks that the main program has disappeared "
14451 "and so kills qemu, which is not very helpful."
14452 msgstr ""
14453
14454 #. type: =head2
14455 #: ../src/guestfs-actions.pod:5723
14456 msgid "guestfs_set_selinux"
14457 msgstr ""
14458
14459 #. type: verbatim
14460 #: ../src/guestfs-actions.pod:5725
14461 #, no-wrap
14462 msgid ""
14463 " int\n"
14464 " guestfs_set_selinux (guestfs_h *g,\n"
14465 "                      int selinux);\n"
14466 "\n"
14467 msgstr ""
14468
14469 #. type: textblock
14470 #: ../src/guestfs-actions.pod:5729 ../fish/guestfish-actions.pod:3836
14471 msgid ""
14472 "This sets the selinux flag that is passed to the appliance at boot time.  "
14473 "The default is C<selinux=0> (disabled)."
14474 msgstr ""
14475
14476 #. type: textblock
14477 #: ../src/guestfs-actions.pod:5732 ../fish/guestfish-actions.pod:3839
14478 msgid ""
14479 "Note that if SELinux is enabled, it is always in Permissive mode "
14480 "(C<enforcing=0>)."
14481 msgstr ""
14482
14483 #. type: =head2
14484 #: ../src/guestfs-actions.pod:5742
14485 msgid "guestfs_set_trace"
14486 msgstr ""
14487
14488 #. type: verbatim
14489 #: ../src/guestfs-actions.pod:5744
14490 #, no-wrap
14491 msgid ""
14492 " int\n"
14493 " guestfs_set_trace (guestfs_h *g,\n"
14494 "                    int trace);\n"
14495 "\n"
14496 msgstr ""
14497
14498 #. type: textblock
14499 #: ../src/guestfs-actions.pod:5748 ../fish/guestfish-actions.pod:3851
14500 msgid ""
14501 "If the command trace flag is set to 1, then commands are printed on stderr "
14502 "before they are executed in a format which is very similar to the one used "
14503 "by guestfish.  In other words, you can run a program with this enabled, and "
14504 "you will get out a script which you can feed to guestfish to perform the "
14505 "same set of actions."
14506 msgstr ""
14507
14508 #. type: textblock
14509 #: ../src/guestfs-actions.pod:5755 ../fish/guestfish-actions.pod:3858
14510 msgid ""
14511 "If you want to trace C API calls into libguestfs (and other libraries) then "
14512 "possibly a better way is to use the external ltrace(1) command."
14513 msgstr ""
14514
14515 #. type: textblock
14516 #: ../src/guestfs-actions.pod:5759 ../fish/guestfish-actions.pod:3862
14517 msgid ""
14518 "Command traces are disabled unless the environment variable "
14519 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
14520 msgstr ""
14521
14522 #. type: =head2
14523 #: ../src/guestfs-actions.pod:5766
14524 msgid "guestfs_set_verbose"
14525 msgstr ""
14526
14527 #. type: verbatim
14528 #: ../src/guestfs-actions.pod:5768
14529 #, no-wrap
14530 msgid ""
14531 " int\n"
14532 " guestfs_set_verbose (guestfs_h *g,\n"
14533 "                      int verbose);\n"
14534 "\n"
14535 msgstr ""
14536
14537 #. type: textblock
14538 #: ../src/guestfs-actions.pod:5772 ../fish/guestfish-actions.pod:3871
14539 msgid "If C<verbose> is true, this turns on verbose messages (to C<stderr>)."
14540 msgstr ""
14541
14542 #. type: textblock
14543 #: ../src/guestfs-actions.pod:5774 ../fish/guestfish-actions.pod:3873
14544 msgid ""
14545 "Verbose messages are disabled unless the environment variable "
14546 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
14547 msgstr ""
14548
14549 #. type: =head2
14550 #: ../src/guestfs-actions.pod:5781
14551 msgid "guestfs_setcon"
14552 msgstr ""
14553
14554 #. type: verbatim
14555 #: ../src/guestfs-actions.pod:5783
14556 #, no-wrap
14557 msgid ""
14558 " int\n"
14559 " guestfs_setcon (guestfs_h *g,\n"
14560 "                 const char *context);\n"
14561 "\n"
14562 msgstr ""
14563
14564 #. type: textblock
14565 #: ../src/guestfs-actions.pod:5787 ../fish/guestfish-actions.pod:3880
14566 msgid ""
14567 "This sets the SELinux security context of the daemon to the string "
14568 "C<context>."
14569 msgstr ""
14570
14571 #. type: textblock
14572 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3883
14573 msgid "See the documentation about SELINUX in L<guestfs(3)>."
14574 msgstr ""
14575
14576 #. type: =head2
14577 #: ../src/guestfs-actions.pod:5796
14578 msgid "guestfs_setxattr"
14579 msgstr ""
14580
14581 #. type: verbatim
14582 #: ../src/guestfs-actions.pod:5798
14583 #, no-wrap
14584 msgid ""
14585 " int\n"
14586 " guestfs_setxattr (guestfs_h *g,\n"
14587 "                   const char *xattr,\n"
14588 "                   const char *val,\n"
14589 "                   int vallen,\n"
14590 "                   const char *path);\n"
14591 "\n"
14592 msgstr ""
14593
14594 #. type: textblock
14595 #: ../src/guestfs-actions.pod:5805 ../fish/guestfish-actions.pod:3889
14596 msgid ""
14597 "This call sets the extended attribute named C<xattr> of the file C<path> to "
14598 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
14599 msgstr ""
14600
14601 #. type: textblock
14602 #: ../src/guestfs-actions.pod:5809
14603 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
14604 msgstr ""
14605
14606 #. type: =head2
14607 #: ../src/guestfs-actions.pod:5815
14608 msgid "guestfs_sfdisk"
14609 msgstr ""
14610
14611 #. type: verbatim
14612 #: ../src/guestfs-actions.pod:5817
14613 #, no-wrap
14614 msgid ""
14615 " int\n"
14616 " guestfs_sfdisk (guestfs_h *g,\n"
14617 "                 const char *device,\n"
14618 "                 int cyls,\n"
14619 "                 int heads,\n"
14620 "                 int sectors,\n"
14621 "                 char *const *lines);\n"
14622 "\n"
14623 msgstr ""
14624
14625 #. type: textblock
14626 #: ../src/guestfs-actions.pod:5825 ../fish/guestfish-actions.pod:3899
14627 msgid ""
14628 "This is a direct interface to the L<sfdisk(8)> program for creating "
14629 "partitions on block devices."
14630 msgstr ""
14631
14632 #. type: textblock
14633 #: ../src/guestfs-actions.pod:5828 ../fish/guestfish-actions.pod:3902
14634 msgid "C<device> should be a block device, for example C</dev/sda>."
14635 msgstr ""
14636
14637 #. type: textblock
14638 #: ../src/guestfs-actions.pod:5830 ../fish/guestfish-actions.pod:3904
14639 msgid ""
14640 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
14641 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
14642 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
14643 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
14644 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
14645 "the kernel) cannot work out the right geometry and you will need to tell it."
14646 msgstr ""
14647
14648 #. type: textblock
14649 #: ../src/guestfs-actions.pod:5838 ../fish/guestfish-actions.pod:3912
14650 msgid ""
14651 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
14652 "refer to the L<sfdisk(8)> manpage."
14653 msgstr ""
14654
14655 #. type: textblock
14656 #: ../src/guestfs-actions.pod:5841 ../fish/guestfish-actions.pod:3915
14657 msgid ""
14658 "To create a single partition occupying the whole disk, you would pass "
14659 "C<lines> as a single element list, when the single element being the string "
14660 "C<,> (comma)."
14661 msgstr ""
14662
14663 #. type: textblock
14664 #: ../src/guestfs-actions.pod:5845
14665 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
14666 msgstr ""
14667
14668 #. type: =head2
14669 #: ../src/guestfs-actions.pod:5855
14670 msgid "guestfs_sfdiskM"
14671 msgstr ""
14672
14673 #. type: verbatim
14674 #: ../src/guestfs-actions.pod:5857
14675 #, no-wrap
14676 msgid ""
14677 " int\n"
14678 " guestfs_sfdiskM (guestfs_h *g,\n"
14679 "                  const char *device,\n"
14680 "                  char *const *lines);\n"
14681 "\n"
14682 msgstr ""
14683
14684 #. type: textblock
14685 #: ../src/guestfs-actions.pod:5862
14686 msgid ""
14687 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
14688 "partition sizes are specified in megabytes only (rounded to the nearest "
14689 "cylinder) and you don't need to specify the cyls, heads and sectors "
14690 "parameters which were rarely if ever used anyway."
14691 msgstr ""
14692
14693 #. type: textblock
14694 #: ../src/guestfs-actions.pod:5868
14695 msgid ""
14696 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
14697 "C<guestfs_part_disk>"
14698 msgstr ""
14699
14700 #. type: =head2
14701 #: ../src/guestfs-actions.pod:5878
14702 msgid "guestfs_sfdisk_N"
14703 msgstr ""
14704
14705 #. type: verbatim
14706 #: ../src/guestfs-actions.pod:5880
14707 #, no-wrap
14708 msgid ""
14709 " int\n"
14710 " guestfs_sfdisk_N (guestfs_h *g,\n"
14711 "                   const char *device,\n"
14712 "                   int partnum,\n"
14713 "                   int cyls,\n"
14714 "                   int heads,\n"
14715 "                   int sectors,\n"
14716 "                   const char *line);\n"
14717 "\n"
14718 msgstr ""
14719
14720 #. type: textblock
14721 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3945
14722 msgid ""
14723 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
14724 "(note: C<n> counts from 1)."
14725 msgstr ""
14726
14727 #. type: textblock
14728 #: ../src/guestfs-actions.pod:5892
14729 msgid ""
14730 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
14731 "for the cyls/heads/sectors parameters."
14732 msgstr ""
14733
14734 #. type: textblock
14735 #: ../src/guestfs-actions.pod:5895
14736 msgid "See also: C<guestfs_part_add>"
14737 msgstr ""
14738
14739 #. type: =head2
14740 #: ../src/guestfs-actions.pod:5904
14741 msgid "guestfs_sfdisk_disk_geometry"
14742 msgstr ""
14743
14744 #. type: verbatim
14745 #: ../src/guestfs-actions.pod:5906
14746 #, no-wrap
14747 msgid ""
14748 " char *\n"
14749 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
14750 "                               const char *device);\n"
14751 "\n"
14752 msgstr ""
14753
14754 #. type: textblock
14755 #: ../src/guestfs-actions.pod:5910
14756 msgid ""
14757 "This displays the disk geometry of C<device> read from the partition table.  "
14758 "Especially in the case where the underlying block device has been resized, "
14759 "this can be different from the kernel's idea of the geometry (see "
14760 "C<guestfs_sfdisk_kernel_geometry>)."
14761 msgstr ""
14762
14763 #. type: textblock
14764 #: ../src/guestfs-actions.pod:5915 ../src/guestfs-actions.pod:5931 ../fish/guestfish-actions.pod:3965 ../fish/guestfish-actions.pod:3974
14765 msgid "The result is in human-readable format, and not designed to be parsed."
14766 msgstr ""
14767
14768 #. type: =head2
14769 #: ../src/guestfs-actions.pod:5923
14770 msgid "guestfs_sfdisk_kernel_geometry"
14771 msgstr ""
14772
14773 #. type: verbatim
14774 #: ../src/guestfs-actions.pod:5925
14775 #, no-wrap
14776 msgid ""
14777 " char *\n"
14778 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
14779 "                                 const char *device);\n"
14780 "\n"
14781 msgstr ""
14782
14783 #. type: textblock
14784 #: ../src/guestfs-actions.pod:5929 ../fish/guestfish-actions.pod:3972
14785 msgid "This displays the kernel's idea of the geometry of C<device>."
14786 msgstr ""
14787
14788 #. type: =head2
14789 #: ../src/guestfs-actions.pod:5939
14790 msgid "guestfs_sfdisk_l"
14791 msgstr ""
14792
14793 #. type: verbatim
14794 #: ../src/guestfs-actions.pod:5941
14795 #, no-wrap
14796 msgid ""
14797 " char *\n"
14798 " guestfs_sfdisk_l (guestfs_h *g,\n"
14799 "                   const char *device);\n"
14800 "\n"
14801 msgstr ""
14802
14803 #. type: textblock
14804 #: ../src/guestfs-actions.pod:5945 ../fish/guestfish-actions.pod:3981
14805 msgid ""
14806 "This displays the partition table on C<device>, in the human-readable output "
14807 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
14808 msgstr ""
14809
14810 #. type: textblock
14811 #: ../src/guestfs-actions.pod:5949
14812 msgid "See also: C<guestfs_part_list>"
14813 msgstr ""
14814
14815 #. type: =head2
14816 #: ../src/guestfs-actions.pod:5956
14817 msgid "guestfs_sh"
14818 msgstr ""
14819
14820 #. type: verbatim
14821 #: ../src/guestfs-actions.pod:5958
14822 #, no-wrap
14823 msgid ""
14824 " char *\n"
14825 " guestfs_sh (guestfs_h *g,\n"
14826 "             const char *command);\n"
14827 "\n"
14828 msgstr ""
14829
14830 #. type: textblock
14831 #: ../src/guestfs-actions.pod:5962 ../fish/guestfish-actions.pod:3991
14832 msgid ""
14833 "This call runs a command from the guest filesystem via the guest's "
14834 "C</bin/sh>."
14835 msgstr ""
14836
14837 #. type: textblock
14838 #: ../src/guestfs-actions.pod:5965
14839 msgid "This is like C<guestfs_command>, but passes the command to:"
14840 msgstr ""
14841
14842 #. type: verbatim
14843 #: ../src/guestfs-actions.pod:5967 ../fish/guestfish-actions.pod:3996
14844 #, no-wrap
14845 msgid ""
14846 " /bin/sh -c \"command\"\n"
14847 "\n"
14848 msgstr ""
14849
14850 #. type: textblock
14851 #: ../src/guestfs-actions.pod:5969 ../fish/guestfish-actions.pod:3998
14852 msgid ""
14853 "Depending on the guest's shell, this usually results in wildcards being "
14854 "expanded, shell expressions being interpolated and so on."
14855 msgstr ""
14856
14857 #. type: textblock
14858 #: ../src/guestfs-actions.pod:5973
14859 msgid "All the provisos about C<guestfs_command> apply to this call."
14860 msgstr ""
14861
14862 #. type: =head2
14863 #: ../src/guestfs-actions.pod:5980
14864 msgid "guestfs_sh_lines"
14865 msgstr ""
14866
14867 #. type: verbatim
14868 #: ../src/guestfs-actions.pod:5982
14869 #, no-wrap
14870 msgid ""
14871 " char **\n"
14872 " guestfs_sh_lines (guestfs_h *g,\n"
14873 "                   const char *command);\n"
14874 "\n"
14875 msgstr ""
14876
14877 #. type: textblock
14878 #: ../src/guestfs-actions.pod:5986
14879 msgid ""
14880 "This is the same as C<guestfs_sh>, but splits the result into a list of "
14881 "lines."
14882 msgstr ""
14883
14884 #. type: textblock
14885 #: ../src/guestfs-actions.pod:5989
14886 msgid "See also: C<guestfs_command_lines>"
14887 msgstr ""
14888
14889 #. type: =head2
14890 #: ../src/guestfs-actions.pod:5997
14891 msgid "guestfs_sleep"
14892 msgstr ""
14893
14894 #. type: verbatim
14895 #: ../src/guestfs-actions.pod:5999
14896 #, no-wrap
14897 msgid ""
14898 " int\n"
14899 " guestfs_sleep (guestfs_h *g,\n"
14900 "                int secs);\n"
14901 "\n"
14902 msgstr ""
14903
14904 #. type: textblock
14905 #: ../src/guestfs-actions.pod:6003 ../fish/guestfish-actions.pod:4017
14906 msgid "Sleep for C<secs> seconds."
14907 msgstr ""
14908
14909 #. type: textblock
14910 #: ../src/guestfs-actions.pod:6007
14911 msgid "(Added in 1.0.41)"
14912 msgstr ""
14913
14914 #. type: =head2
14915 #: ../src/guestfs-actions.pod:6009 ../src/guestfs-structs.pod:109
14916 msgid "guestfs_stat"
14917 msgstr ""
14918
14919 #. type: verbatim
14920 #: ../src/guestfs-actions.pod:6011
14921 #, no-wrap
14922 msgid ""
14923 " struct guestfs_stat *\n"
14924 " guestfs_stat (guestfs_h *g,\n"
14925 "               const char *path);\n"
14926 "\n"
14927 msgstr ""
14928
14929 #. type: textblock
14930 #: ../src/guestfs-actions.pod:6017 ../fish/guestfish-actions.pod:4025
14931 msgid "This is the same as the C<stat(2)> system call."
14932 msgstr ""
14933
14934 #. type: =head2
14935 #: ../src/guestfs-actions.pod:6025 ../src/guestfs-structs.pod:135
14936 msgid "guestfs_statvfs"
14937 msgstr ""
14938
14939 #. type: verbatim
14940 #: ../src/guestfs-actions.pod:6027
14941 #, no-wrap
14942 msgid ""
14943 " struct guestfs_statvfs *\n"
14944 " guestfs_statvfs (guestfs_h *g,\n"
14945 "                  const char *path);\n"
14946 "\n"
14947 msgstr ""
14948
14949 #. type: textblock
14950 #: ../src/guestfs-actions.pod:6031 ../fish/guestfish-actions.pod:4031
14951 msgid ""
14952 "Returns file system statistics for any mounted file system.  C<path> should "
14953 "be a file or directory in the mounted file system (typically it is the mount "
14954 "point itself, but it doesn't need to be)."
14955 msgstr ""
14956
14957 #. type: textblock
14958 #: ../src/guestfs-actions.pod:6035 ../fish/guestfish-actions.pod:4035
14959 msgid "This is the same as the C<statvfs(2)> system call."
14960 msgstr ""
14961
14962 #. type: textblock
14963 #: ../src/guestfs-actions.pod:6037
14964 msgid ""
14965 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
14966 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
14967 msgstr ""
14968
14969 #. type: =head2
14970 #: ../src/guestfs-actions.pod:6043
14971 msgid "guestfs_strings"
14972 msgstr ""
14973
14974 #. type: verbatim
14975 #: ../src/guestfs-actions.pod:6045
14976 #, no-wrap
14977 msgid ""
14978 " char **\n"
14979 " guestfs_strings (guestfs_h *g,\n"
14980 "                  const char *path);\n"
14981 "\n"
14982 msgstr ""
14983
14984 #. type: textblock
14985 #: ../src/guestfs-actions.pod:6049 ../fish/guestfish-actions.pod:4041
14986 msgid ""
14987 "This runs the L<strings(1)> command on a file and returns the list of "
14988 "printable strings found."
14989 msgstr ""
14990
14991 #. type: =head2
14992 #: ../src/guestfs-actions.pod:6061
14993 msgid "guestfs_strings_e"
14994 msgstr ""
14995
14996 #. type: verbatim
14997 #: ../src/guestfs-actions.pod:6063
14998 #, no-wrap
14999 msgid ""
15000 " char **\n"
15001 " guestfs_strings_e (guestfs_h *g,\n"
15002 "                    const char *encoding,\n"
15003 "                    const char *path);\n"
15004 "\n"
15005 msgstr ""
15006
15007 #. type: textblock
15008 #: ../src/guestfs-actions.pod:6068
15009 msgid ""
15010 "This is like the C<guestfs_strings> command, but allows you to specify the "
15011 "encoding of strings that are looked for in the source file C<path>."
15012 msgstr ""
15013
15014 #. type: textblock
15015 #: ../src/guestfs-actions.pod:6072 ../fish/guestfish-actions.pod:4055
15016 msgid "Allowed encodings are:"
15017 msgstr ""
15018
15019 #. type: =item
15020 #: ../src/guestfs-actions.pod:6076 ../fish/guestfish-actions.pod:4059
15021 msgid "s"
15022 msgstr ""
15023
15024 #. type: textblock
15025 #: ../src/guestfs-actions.pod:6078
15026 msgid ""
15027 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
15028 "ISO-8859-X (this is what C<guestfs_strings> uses)."
15029 msgstr ""
15030
15031 #. type: =item
15032 #: ../src/guestfs-actions.pod:6081 ../fish/guestfish-actions.pod:4064
15033 msgid "S"
15034 msgstr ""
15035
15036 #. type: textblock
15037 #: ../src/guestfs-actions.pod:6083 ../fish/guestfish-actions.pod:4066
15038 msgid "Single 8-bit-byte characters."
15039 msgstr ""
15040
15041 #. type: =item
15042 #: ../src/guestfs-actions.pod:6085 ../fish/guestfish-actions.pod:4068
15043 msgid "b"
15044 msgstr ""
15045
15046 #. type: textblock
15047 #: ../src/guestfs-actions.pod:6087 ../fish/guestfish-actions.pod:4070
15048 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
15049 msgstr ""
15050
15051 #. type: =item
15052 #: ../src/guestfs-actions.pod:6090 ../fish/guestfish-actions.pod:4073
15053 msgid "l (lower case letter L)"
15054 msgstr ""
15055
15056 #. type: textblock
15057 #: ../src/guestfs-actions.pod:6092 ../fish/guestfish-actions.pod:4075
15058 msgid ""
15059 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
15060 "examining binaries in Windows guests."
15061 msgstr ""
15062
15063 #. type: =item
15064 #: ../src/guestfs-actions.pod:6095 ../fish/guestfish-actions.pod:4078
15065 msgid "B"
15066 msgstr ""
15067
15068 #. type: textblock
15069 #: ../src/guestfs-actions.pod:6097 ../fish/guestfish-actions.pod:4080
15070 msgid "32-bit big endian such as UCS-4BE."
15071 msgstr ""
15072
15073 #. type: =item
15074 #: ../src/guestfs-actions.pod:6099 ../fish/guestfish-actions.pod:4082
15075 msgid "L"
15076 msgstr ""
15077
15078 #. type: textblock
15079 #: ../src/guestfs-actions.pod:6101 ../fish/guestfish-actions.pod:4084
15080 msgid "32-bit little endian such as UCS-4LE."
15081 msgstr ""
15082
15083 #. type: textblock
15084 #: ../src/guestfs-actions.pod:6105 ../fish/guestfish-actions.pod:4088
15085 msgid "The returned strings are transcoded to UTF-8."
15086 msgstr ""
15087
15088 #. type: =head2
15089 #: ../src/guestfs-actions.pod:6116
15090 msgid "guestfs_swapoff_device"
15091 msgstr ""
15092
15093 #. type: verbatim
15094 #: ../src/guestfs-actions.pod:6118
15095 #, no-wrap
15096 msgid ""
15097 " int\n"
15098 " guestfs_swapoff_device (guestfs_h *g,\n"
15099 "                         const char *device);\n"
15100 "\n"
15101 msgstr ""
15102
15103 #. type: textblock
15104 #: ../src/guestfs-actions.pod:6122
15105 msgid ""
15106 "This command disables the libguestfs appliance swap device or partition "
15107 "named C<device>.  See C<guestfs_swapon_device>."
15108 msgstr ""
15109
15110 #. type: =head2
15111 #: ../src/guestfs-actions.pod:6130
15112 msgid "guestfs_swapoff_file"
15113 msgstr ""
15114
15115 #. type: verbatim
15116 #: ../src/guestfs-actions.pod:6132
15117 #, no-wrap
15118 msgid ""
15119 " int\n"
15120 " guestfs_swapoff_file (guestfs_h *g,\n"
15121 "                       const char *file);\n"
15122 "\n"
15123 msgstr ""
15124
15125 #. type: textblock
15126 #: ../src/guestfs-actions.pod:6136 ../fish/guestfish-actions.pod:4105
15127 msgid "This command disables the libguestfs appliance swap on file."
15128 msgstr ""
15129
15130 #. type: =head2
15131 #: ../src/guestfs-actions.pod:6142
15132 msgid "guestfs_swapoff_label"
15133 msgstr ""
15134
15135 #. type: verbatim
15136 #: ../src/guestfs-actions.pod:6144
15137 #, no-wrap
15138 msgid ""
15139 " int\n"
15140 " guestfs_swapoff_label (guestfs_h *g,\n"
15141 "                        const char *label);\n"
15142 "\n"
15143 msgstr ""
15144
15145 #. type: textblock
15146 #: ../src/guestfs-actions.pod:6148 ../fish/guestfish-actions.pod:4111
15147 msgid ""
15148 "This command disables the libguestfs appliance swap on labeled swap "
15149 "partition."
15150 msgstr ""
15151
15152 #. type: =head2
15153 #: ../src/guestfs-actions.pod:6155
15154 msgid "guestfs_swapoff_uuid"
15155 msgstr ""
15156
15157 #. type: verbatim
15158 #: ../src/guestfs-actions.pod:6157
15159 #, no-wrap
15160 msgid ""
15161 " int\n"
15162 " guestfs_swapoff_uuid (guestfs_h *g,\n"
15163 "                       const char *uuid);\n"
15164 "\n"
15165 msgstr ""
15166
15167 #. type: textblock
15168 #: ../src/guestfs-actions.pod:6161 ../fish/guestfish-actions.pod:4118
15169 msgid ""
15170 "This command disables the libguestfs appliance swap partition with the given "
15171 "UUID."
15172 msgstr ""
15173
15174 #. type: =head2
15175 #: ../src/guestfs-actions.pod:6168
15176 msgid "guestfs_swapon_device"
15177 msgstr ""
15178
15179 #. type: verbatim
15180 #: ../src/guestfs-actions.pod:6170
15181 #, no-wrap
15182 msgid ""
15183 " int\n"
15184 " guestfs_swapon_device (guestfs_h *g,\n"
15185 "                        const char *device);\n"
15186 "\n"
15187 msgstr ""
15188
15189 #. type: textblock
15190 #: ../src/guestfs-actions.pod:6174
15191 msgid ""
15192 "This command enables the libguestfs appliance to use the swap device or "
15193 "partition named C<device>.  The increased memory is made available for all "
15194 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
15195 msgstr ""
15196
15197 #. type: textblock
15198 #: ../src/guestfs-actions.pod:6179 ../fish/guestfish-actions.pod:4130
15199 msgid ""
15200 "Note that you should not swap to existing guest swap partitions unless you "
15201 "know what you are doing.  They may contain hibernation information, or other "
15202 "information that the guest doesn't want you to trash.  You also risk leaking "
15203 "information about the host to the guest this way.  Instead, attach a new "
15204 "host device to the guest and swap on that."
15205 msgstr ""
15206
15207 #. type: =head2
15208 #: ../src/guestfs-actions.pod:6190
15209 msgid "guestfs_swapon_file"
15210 msgstr ""
15211
15212 #. type: verbatim
15213 #: ../src/guestfs-actions.pod:6192
15214 #, no-wrap
15215 msgid ""
15216 " int\n"
15217 " guestfs_swapon_file (guestfs_h *g,\n"
15218 "                      const char *file);\n"
15219 "\n"
15220 msgstr ""
15221
15222 #. type: textblock
15223 #: ../src/guestfs-actions.pod:6196
15224 msgid ""
15225 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
15226 "notes."
15227 msgstr ""
15228
15229 #. type: =head2
15230 #: ../src/guestfs-actions.pod:6203
15231 msgid "guestfs_swapon_label"
15232 msgstr ""
15233
15234 #. type: verbatim
15235 #: ../src/guestfs-actions.pod:6205
15236 #, no-wrap
15237 msgid ""
15238 " int\n"
15239 " guestfs_swapon_label (guestfs_h *g,\n"
15240 "                       const char *label);\n"
15241 "\n"
15242 msgstr ""
15243
15244 #. type: textblock
15245 #: ../src/guestfs-actions.pod:6209
15246 msgid ""
15247 "This command enables swap to a labeled swap partition.  See "
15248 "C<guestfs_swapon_device> for other notes."
15249 msgstr ""
15250
15251 #. type: =head2
15252 #: ../src/guestfs-actions.pod:6216
15253 msgid "guestfs_swapon_uuid"
15254 msgstr ""
15255
15256 #. type: verbatim
15257 #: ../src/guestfs-actions.pod:6218
15258 #, no-wrap
15259 msgid ""
15260 " int\n"
15261 " guestfs_swapon_uuid (guestfs_h *g,\n"
15262 "                      const char *uuid);\n"
15263 "\n"
15264 msgstr ""
15265
15266 #. type: textblock
15267 #: ../src/guestfs-actions.pod:6222
15268 msgid ""
15269 "This command enables swap to a swap partition with the given UUID.  See "
15270 "C<guestfs_swapon_device> for other notes."
15271 msgstr ""
15272
15273 #. type: =head2
15274 #: ../src/guestfs-actions.pod:6229
15275 msgid "guestfs_sync"
15276 msgstr ""
15277
15278 #. type: verbatim
15279 #: ../src/guestfs-actions.pod:6231
15280 #, no-wrap
15281 msgid ""
15282 " int\n"
15283 " guestfs_sync (guestfs_h *g);\n"
15284 "\n"
15285 msgstr ""
15286
15287 #. type: textblock
15288 #: ../src/guestfs-actions.pod:6234 ../fish/guestfish-actions.pod:4162
15289 msgid ""
15290 "This syncs the disk, so that any writes are flushed through to the "
15291 "underlying disk image."
15292 msgstr ""
15293
15294 #. type: textblock
15295 #: ../src/guestfs-actions.pod:6237 ../fish/guestfish-actions.pod:4165
15296 msgid ""
15297 "You should always call this if you have modified a disk image, before "
15298 "closing the handle."
15299 msgstr ""
15300
15301 #. type: =head2
15302 #: ../src/guestfs-actions.pod:6244
15303 msgid "guestfs_tail"
15304 msgstr ""
15305
15306 #. type: verbatim
15307 #: ../src/guestfs-actions.pod:6246
15308 #, no-wrap
15309 msgid ""
15310 " char **\n"
15311 " guestfs_tail (guestfs_h *g,\n"
15312 "               const char *path);\n"
15313 "\n"
15314 msgstr ""
15315
15316 #. type: textblock
15317 #: ../src/guestfs-actions.pod:6250 ../fish/guestfish-actions.pod:4172
15318 msgid "This command returns up to the last 10 lines of a file as a list of strings."
15319 msgstr ""
15320
15321 #. type: =head2
15322 #: ../src/guestfs-actions.pod:6262
15323 msgid "guestfs_tail_n"
15324 msgstr ""
15325
15326 #. type: verbatim
15327 #: ../src/guestfs-actions.pod:6264
15328 #, no-wrap
15329 msgid ""
15330 " char **\n"
15331 " guestfs_tail_n (guestfs_h *g,\n"
15332 "                 int nrlines,\n"
15333 "                 const char *path);\n"
15334 "\n"
15335 msgstr ""
15336
15337 #. type: textblock
15338 #: ../src/guestfs-actions.pod:6269 ../fish/guestfish-actions.pod:4182
15339 msgid ""
15340 "If the parameter C<nrlines> is a positive number, this returns the last "
15341 "C<nrlines> lines of the file C<path>."
15342 msgstr ""
15343
15344 #. type: textblock
15345 #: ../src/guestfs-actions.pod:6272 ../fish/guestfish-actions.pod:4185
15346 msgid ""
15347 "If the parameter C<nrlines> is a negative number, this returns lines from "
15348 "the file C<path>, starting with the C<-nrlines>th line."
15349 msgstr ""
15350
15351 #. type: =head2
15352 #: ../src/guestfs-actions.pod:6286
15353 msgid "guestfs_tar_in"
15354 msgstr ""
15355
15356 #. type: verbatim
15357 #: ../src/guestfs-actions.pod:6288
15358 #, no-wrap
15359 msgid ""
15360 " int\n"
15361 " guestfs_tar_in (guestfs_h *g,\n"
15362 "                 const char *tarfile,\n"
15363 "                 const char *directory);\n"
15364 "\n"
15365 msgstr ""
15366
15367 #. type: textblock
15368 #: ../src/guestfs-actions.pod:6293 ../fish/guestfish-actions.pod:4197
15369 msgid ""
15370 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
15371 "tar file) into C<directory>."
15372 msgstr ""
15373
15374 #. type: textblock
15375 #: ../src/guestfs-actions.pod:6296
15376 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
15377 msgstr ""
15378
15379 #. type: textblock
15380 #: ../src/guestfs-actions.pod:6301 ../src/guestfs-actions.pod:6318 ../src/guestfs-actions.pod:6334 ../src/guestfs-actions.pod:6350
15381 msgid "(Added in 1.0.3)"
15382 msgstr ""
15383
15384 #. type: =head2
15385 #: ../src/guestfs-actions.pod:6303
15386 msgid "guestfs_tar_out"
15387 msgstr ""
15388
15389 #. type: verbatim
15390 #: ../src/guestfs-actions.pod:6305
15391 #, no-wrap
15392 msgid ""
15393 " int\n"
15394 " guestfs_tar_out (guestfs_h *g,\n"
15395 "                  const char *directory,\n"
15396 "                  const char *tarfile);\n"
15397 "\n"
15398 msgstr ""
15399
15400 #. type: textblock
15401 #: ../src/guestfs-actions.pod:6310 ../fish/guestfish-actions.pod:4209
15402 msgid ""
15403 "This command packs the contents of C<directory> and downloads it to local "
15404 "file C<tarfile>."
15405 msgstr ""
15406
15407 #. type: textblock
15408 #: ../src/guestfs-actions.pod:6313
15409 msgid ""
15410 "To download a compressed tarball, use C<guestfs_tgz_out> or "
15411 "C<guestfs_txz_out>."
15412 msgstr ""
15413
15414 #. type: =head2
15415 #: ../src/guestfs-actions.pod:6320
15416 msgid "guestfs_tgz_in"
15417 msgstr ""
15418
15419 #. type: verbatim
15420 #: ../src/guestfs-actions.pod:6322
15421 #, no-wrap
15422 msgid ""
15423 " int\n"
15424 " guestfs_tgz_in (guestfs_h *g,\n"
15425 "                 const char *tarball,\n"
15426 "                 const char *directory);\n"
15427 "\n"
15428 msgstr ""
15429
15430 #. type: textblock
15431 #: ../src/guestfs-actions.pod:6327 ../fish/guestfish-actions.pod:4221
15432 msgid ""
15433 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
15434 "tar file) into C<directory>."
15435 msgstr ""
15436
15437 #. type: textblock
15438 #: ../src/guestfs-actions.pod:6330
15439 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
15440 msgstr ""
15441
15442 #. type: =head2
15443 #: ../src/guestfs-actions.pod:6336
15444 msgid "guestfs_tgz_out"
15445 msgstr ""
15446
15447 #. type: verbatim
15448 #: ../src/guestfs-actions.pod:6338
15449 #, no-wrap
15450 msgid ""
15451 " int\n"
15452 " guestfs_tgz_out (guestfs_h *g,\n"
15453 "                  const char *directory,\n"
15454 "                  const char *tarball);\n"
15455 "\n"
15456 msgstr ""
15457
15458 #. type: textblock
15459 #: ../src/guestfs-actions.pod:6343 ../fish/guestfish-actions.pod:4232
15460 msgid ""
15461 "This command packs the contents of C<directory> and downloads it to local "
15462 "file C<tarball>."
15463 msgstr ""
15464
15465 #. type: textblock
15466 #: ../src/guestfs-actions.pod:6346
15467 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
15468 msgstr ""
15469
15470 #. type: =head2
15471 #: ../src/guestfs-actions.pod:6352
15472 msgid "guestfs_touch"
15473 msgstr ""
15474
15475 #. type: verbatim
15476 #: ../src/guestfs-actions.pod:6354
15477 #, no-wrap
15478 msgid ""
15479 " int\n"
15480 " guestfs_touch (guestfs_h *g,\n"
15481 "                const char *path);\n"
15482 "\n"
15483 msgstr ""
15484
15485 #. type: textblock
15486 #: ../src/guestfs-actions.pod:6358 ../fish/guestfish-actions.pod:4243
15487 msgid ""
15488 "Touch acts like the L<touch(1)> command.  It can be used to update the "
15489 "timestamps on a file, or, if the file does not exist, to create a new "
15490 "zero-length file."
15491 msgstr ""
15492
15493 #. type: textblock
15494 #: ../src/guestfs-actions.pod:6362 ../fish/guestfish-actions.pod:4247
15495 msgid ""
15496 "This command only works on regular files, and will fail on other file types "
15497 "such as directories, symbolic links, block special etc."
15498 msgstr ""
15499
15500 #. type: =head2
15501 #: ../src/guestfs-actions.pod:6369
15502 msgid "guestfs_truncate"
15503 msgstr ""
15504
15505 #. type: verbatim
15506 #: ../src/guestfs-actions.pod:6371
15507 #, no-wrap
15508 msgid ""
15509 " int\n"
15510 " guestfs_truncate (guestfs_h *g,\n"
15511 "                   const char *path);\n"
15512 "\n"
15513 msgstr ""
15514
15515 #. type: textblock
15516 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4254
15517 msgid ""
15518 "This command truncates C<path> to a zero-length file.  The file must exist "
15519 "already."
15520 msgstr ""
15521
15522 #. type: =head2
15523 #: ../src/guestfs-actions.pod:6382
15524 msgid "guestfs_truncate_size"
15525 msgstr ""
15526
15527 #. type: verbatim
15528 #: ../src/guestfs-actions.pod:6384
15529 #, no-wrap
15530 msgid ""
15531 " int\n"
15532 " guestfs_truncate_size (guestfs_h *g,\n"
15533 "                        const char *path,\n"
15534 "                        int64_t size);\n"
15535 "\n"
15536 msgstr ""
15537
15538 #. type: textblock
15539 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4261
15540 msgid ""
15541 "This command truncates C<path> to size C<size> bytes.  The file must exist "
15542 "already."
15543 msgstr ""
15544
15545 #. type: textblock
15546 #: ../src/guestfs-actions.pod:6392
15547 msgid ""
15548 "If the current file size is less than C<size> then the file is extended to "
15549 "the required size with zero bytes.  This creates a sparse file (ie. disk "
15550 "blocks are not allocated for the file until you write to it).  To create a "
15551 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
15552 msgstr ""
15553
15554 #. type: =head2
15555 #: ../src/guestfs-actions.pod:6402
15556 msgid "guestfs_tune2fs_l"
15557 msgstr ""
15558
15559 #. type: verbatim
15560 #: ../src/guestfs-actions.pod:6404
15561 #, no-wrap
15562 msgid ""
15563 " char **\n"
15564 " guestfs_tune2fs_l (guestfs_h *g,\n"
15565 "                    const char *device);\n"
15566 "\n"
15567 msgstr ""
15568
15569 #. type: textblock
15570 #: ../src/guestfs-actions.pod:6408 ../fish/guestfish-actions.pod:4274
15571 msgid ""
15572 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
15573 "C<device>."
15574 msgstr ""
15575
15576 #. type: textblock
15577 #: ../src/guestfs-actions.pod:6411 ../fish/guestfish-actions.pod:4277
15578 msgid ""
15579 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
15580 "for more details.  The list of fields returned isn't clearly defined, and "
15581 "depends on both the version of C<tune2fs> that libguestfs was built against, "
15582 "and the filesystem itself."
15583 msgstr ""
15584
15585 #. type: =head2
15586 #: ../src/guestfs-actions.pod:6424
15587 msgid "guestfs_txz_in"
15588 msgstr ""
15589
15590 #. type: verbatim
15591 #: ../src/guestfs-actions.pod:6426
15592 #, no-wrap
15593 msgid ""
15594 " int\n"
15595 " guestfs_txz_in (guestfs_h *g,\n"
15596 "                 const char *tarball,\n"
15597 "                 const char *directory);\n"
15598 "\n"
15599 msgstr ""
15600
15601 #. type: textblock
15602 #: ../src/guestfs-actions.pod:6431 ../fish/guestfish-actions.pod:4286
15603 msgid ""
15604 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
15605 "tar file) into C<directory>."
15606 msgstr ""
15607
15608 #. type: =head2
15609 #: ../src/guestfs-actions.pod:6438
15610 msgid "guestfs_txz_out"
15611 msgstr ""
15612
15613 #. type: verbatim
15614 #: ../src/guestfs-actions.pod:6440
15615 #, no-wrap
15616 msgid ""
15617 " int\n"
15618 " guestfs_txz_out (guestfs_h *g,\n"
15619 "                  const char *directory,\n"
15620 "                  const char *tarball);\n"
15621 "\n"
15622 msgstr ""
15623
15624 #. type: textblock
15625 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4295
15626 msgid ""
15627 "This command packs the contents of C<directory> and downloads it to local "
15628 "file C<tarball> (as an xz compressed tar archive)."
15629 msgstr ""
15630
15631 #. type: =head2
15632 #: ../src/guestfs-actions.pod:6452
15633 msgid "guestfs_umask"
15634 msgstr ""
15635
15636 #. type: verbatim
15637 #: ../src/guestfs-actions.pod:6454
15638 #, no-wrap
15639 msgid ""
15640 " int\n"
15641 " guestfs_umask (guestfs_h *g,\n"
15642 "                int mask);\n"
15643 "\n"
15644 msgstr ""
15645
15646 #. type: textblock
15647 #: ../src/guestfs-actions.pod:6458 ../fish/guestfish-actions.pod:4304
15648 msgid ""
15649 "This function sets the mask used for creating new files and device nodes to "
15650 "C<mask & 0777>."
15651 msgstr ""
15652
15653 #. type: textblock
15654 #: ../src/guestfs-actions.pod:6461 ../fish/guestfish-actions.pod:4307
15655 msgid ""
15656 "Typical umask values would be C<022> which creates new files with "
15657 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
15658 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
15659 msgstr ""
15660
15661 #. type: textblock
15662 #: ../src/guestfs-actions.pod:6466 ../fish/guestfish-actions.pod:4312
15663 msgid ""
15664 "The default umask is C<022>.  This is important because it means that "
15665 "directories and device nodes will be created with C<0644> or C<0755> mode "
15666 "even if you specify C<0777>."
15667 msgstr ""
15668
15669 #. type: textblock
15670 #: ../src/guestfs-actions.pod:6470
15671 msgid ""
15672 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
15673 "C<guestfs_mkdir>."
15674 msgstr ""
15675
15676 #. type: textblock
15677 #: ../src/guestfs-actions.pod:6473 ../fish/guestfish-actions.pod:4319
15678 msgid "This call returns the previous umask."
15679 msgstr ""
15680
15681 #. type: =head2
15682 #: ../src/guestfs-actions.pod:6479
15683 msgid "guestfs_umount"
15684 msgstr ""
15685
15686 #. type: verbatim
15687 #: ../src/guestfs-actions.pod:6481
15688 #, no-wrap
15689 msgid ""
15690 " int\n"
15691 " guestfs_umount (guestfs_h *g,\n"
15692 "                 const char *pathordevice);\n"
15693 "\n"
15694 msgstr ""
15695
15696 #. type: textblock
15697 #: ../src/guestfs-actions.pod:6485 ../fish/guestfish-actions.pod:4327
15698 msgid ""
15699 "This unmounts the given filesystem.  The filesystem may be specified either "
15700 "by its mountpoint (path) or the device which contains the filesystem."
15701 msgstr ""
15702
15703 #. type: =head2
15704 #: ../src/guestfs-actions.pod:6493
15705 msgid "guestfs_umount_all"
15706 msgstr ""
15707
15708 #. type: verbatim
15709 #: ../src/guestfs-actions.pod:6495
15710 #, no-wrap
15711 msgid ""
15712 " int\n"
15713 " guestfs_umount_all (guestfs_h *g);\n"
15714 "\n"
15715 msgstr ""
15716
15717 #. type: textblock
15718 #: ../src/guestfs-actions.pod:6498 ../fish/guestfish-actions.pod:4337
15719 msgid "This unmounts all mounted filesystems."
15720 msgstr ""
15721
15722 #. type: textblock
15723 #: ../src/guestfs-actions.pod:6500 ../fish/guestfish-actions.pod:4339
15724 msgid "Some internal mounts are not unmounted by this call."
15725 msgstr ""
15726
15727 #. type: =head2
15728 #: ../src/guestfs-actions.pod:6506
15729 msgid "guestfs_upload"
15730 msgstr ""
15731
15732 #. type: verbatim
15733 #: ../src/guestfs-actions.pod:6508
15734 #, no-wrap
15735 msgid ""
15736 " int\n"
15737 " guestfs_upload (guestfs_h *g,\n"
15738 "                 const char *filename,\n"
15739 "                 const char *remotefilename);\n"
15740 "\n"
15741 msgstr ""
15742
15743 #. type: textblock
15744 #: ../src/guestfs-actions.pod:6513 ../src/guestfs-actions.pod:6537 ../fish/guestfish-actions.pod:4345 ../fish/guestfish-actions.pod:4358
15745 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
15746 msgstr ""
15747
15748 #. type: textblock
15749 #: ../src/guestfs-actions.pod:6518
15750 msgid "See also C<guestfs_download>."
15751 msgstr ""
15752
15753 #. type: =head2
15754 #: ../src/guestfs-actions.pod:6529
15755 msgid "guestfs_upload_offset"
15756 msgstr ""
15757
15758 #. type: verbatim
15759 #: ../src/guestfs-actions.pod:6531
15760 #, no-wrap
15761 msgid ""
15762 " int\n"
15763 " guestfs_upload_offset (guestfs_h *g,\n"
15764 "                        const char *filename,\n"
15765 "                        const char *remotefilename,\n"
15766 "                        int64_t offset);\n"
15767 "\n"
15768 msgstr ""
15769
15770 #. type: textblock
15771 #: ../src/guestfs-actions.pod:6540 ../fish/guestfish-actions.pod:4361
15772 msgid ""
15773 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
15774 "The intention is to overwrite parts of existing files or devices, although "
15775 "if a non-existant file is specified then it is created with a \"hole\" "
15776 "before C<offset>.  The size of the data written is implicit in the size of "
15777 "the source C<filename>."
15778 msgstr ""
15779
15780 #. type: textblock
15781 #: ../src/guestfs-actions.pod:6547
15782 msgid ""
15783 "Note that there is no limit on the amount of data that can be uploaded with "
15784 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
15785 "full amount unless an error occurs."
15786 msgstr ""
15787
15788 #. type: textblock
15789 #: ../src/guestfs-actions.pod:6552
15790 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
15791 msgstr ""
15792
15793 #. type: =head2
15794 #: ../src/guestfs-actions.pod:6563
15795 msgid "guestfs_utimens"
15796 msgstr ""
15797
15798 #. type: verbatim
15799 #: ../src/guestfs-actions.pod:6565
15800 #, no-wrap
15801 msgid ""
15802 " int\n"
15803 " guestfs_utimens (guestfs_h *g,\n"
15804 "                  const char *path,\n"
15805 "                  int64_t atsecs,\n"
15806 "                  int64_t atnsecs,\n"
15807 "                  int64_t mtsecs,\n"
15808 "                  int64_t mtnsecs);\n"
15809 "\n"
15810 msgstr ""
15811
15812 #. type: textblock
15813 #: ../src/guestfs-actions.pod:6573 ../fish/guestfish-actions.pod:4381
15814 msgid "This command sets the timestamps of a file with nanosecond precision."
15815 msgstr ""
15816
15817 #. type: textblock
15818 #: ../src/guestfs-actions.pod:6576 ../fish/guestfish-actions.pod:4384
15819 msgid ""
15820 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
15821 "from the epoch."
15822 msgstr ""
15823
15824 #. type: textblock
15825 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4387
15826 msgid ""
15827 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
15828 "nanoseconds from the epoch."
15829 msgstr ""
15830
15831 #. type: textblock
15832 #: ../src/guestfs-actions.pod:6582 ../fish/guestfish-actions.pod:4390
15833 msgid ""
15834 "If the C<*nsecs> field contains the special value C<-1> then the "
15835 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
15836 "ignored in this case)."
15837 msgstr ""
15838
15839 #. type: textblock
15840 #: ../src/guestfs-actions.pod:6586 ../fish/guestfish-actions.pod:4394
15841 msgid ""
15842 "If the C<*nsecs> field contains the special value C<-2> then the "
15843 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
15844 "in this case)."
15845 msgstr ""
15846
15847 #. type: =head2
15848 #: ../src/guestfs-actions.pod:6594 ../src/guestfs-structs.pod:175
15849 msgid "guestfs_version"
15850 msgstr ""
15851
15852 #. type: verbatim
15853 #: ../src/guestfs-actions.pod:6596
15854 #, no-wrap
15855 msgid ""
15856 " struct guestfs_version *\n"
15857 " guestfs_version (guestfs_h *g);\n"
15858 "\n"
15859 msgstr ""
15860
15861 #. type: textblock
15862 #: ../src/guestfs-actions.pod:6599 ../fish/guestfish-actions.pod:4402
15863 msgid "Return the libguestfs version number that the program is linked against."
15864 msgstr ""
15865
15866 #. type: textblock
15867 #: ../src/guestfs-actions.pod:6602 ../fish/guestfish-actions.pod:4405
15868 msgid ""
15869 "Note that because of dynamic linking this is not necessarily the version of "
15870 "libguestfs that you compiled against.  You can compile the program, and then "
15871 "at runtime dynamically link against a completely different C<libguestfs.so> "
15872 "library."
15873 msgstr ""
15874
15875 #. type: textblock
15876 #: ../src/guestfs-actions.pod:6607 ../fish/guestfish-actions.pod:4410
15877 msgid ""
15878 "This call was added in version C<1.0.58>.  In previous versions of "
15879 "libguestfs there was no way to get the version number.  From C code you can "
15880 "use dynamic linker functions to find out if this symbol exists (if it "
15881 "doesn't, then it's an earlier version)."
15882 msgstr ""
15883
15884 #. type: textblock
15885 #: ../src/guestfs-actions.pod:6613 ../fish/guestfish-actions.pod:4416
15886 msgid ""
15887 "The call returns a structure with four elements.  The first three (C<major>, "
15888 "C<minor> and C<release>) are numbers and correspond to the usual version "
15889 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
15890 "but may be used for distro-specific information."
15891 msgstr ""
15892
15893 #. type: textblock
15894 #: ../src/guestfs-actions.pod:6619 ../fish/guestfish-actions.pod:4422
15895 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
15896 msgstr ""
15897
15898 #. type: textblock
15899 #: ../src/guestfs-actions.pod:6622 ../fish/guestfish-actions.pod:4425
15900 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
15901 msgstr ""
15902
15903 #. type: textblock
15904 #: ../src/guestfs-actions.pod:6624
15905 msgid ""
15906 "I<Note:> Don't use this call to test for availability of features.  In "
15907 "enterprise distributions we backport features from later versions into "
15908 "earlier versions, making this an unreliable way to test for features.  Use "
15909 "C<guestfs_available> instead."
15910 msgstr ""
15911
15912 #. type: textblock
15913 #: ../src/guestfs-actions.pod:6630
15914 msgid ""
15915 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
15916 "error.  I<The caller must call C<guestfs_free_version> after use>."
15917 msgstr ""
15918
15919 #. type: textblock
15920 #: ../src/guestfs-actions.pod:6634
15921 msgid "(Added in 1.0.58)"
15922 msgstr ""
15923
15924 #. type: =head2
15925 #: ../src/guestfs-actions.pod:6636
15926 msgid "guestfs_vfs_label"
15927 msgstr ""
15928
15929 #. type: verbatim
15930 #: ../src/guestfs-actions.pod:6638
15931 #, no-wrap
15932 msgid ""
15933 " char *\n"
15934 " guestfs_vfs_label (guestfs_h *g,\n"
15935 "                    const char *device);\n"
15936 "\n"
15937 msgstr ""
15938
15939 #. type: textblock
15940 #: ../src/guestfs-actions.pod:6642 ../fish/guestfish-actions.pod:4437
15941 msgid "This returns the filesystem label of the filesystem on C<device>."
15942 msgstr ""
15943
15944 #. type: textblock
15945 #: ../src/guestfs-actions.pod:6645 ../fish/guestfish-actions.pod:4440
15946 msgid "If the filesystem is unlabeled, this returns the empty string."
15947 msgstr ""
15948
15949 #. type: textblock
15950 #: ../src/guestfs-actions.pod:6647
15951 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
15952 msgstr ""
15953
15954 #. type: textblock
15955 #: ../src/guestfs-actions.pod:6652 ../src/guestfs-actions.pod:6689
15956 msgid "(Added in 1.3.18)"
15957 msgstr ""
15958
15959 #. type: =head2
15960 #: ../src/guestfs-actions.pod:6654
15961 msgid "guestfs_vfs_type"
15962 msgstr ""
15963
15964 #. type: verbatim
15965 #: ../src/guestfs-actions.pod:6656
15966 #, no-wrap
15967 msgid ""
15968 " char *\n"
15969 " guestfs_vfs_type (guestfs_h *g,\n"
15970 "                   const char *device);\n"
15971 "\n"
15972 msgstr ""
15973
15974 #. type: textblock
15975 #: ../src/guestfs-actions.pod:6660 ../fish/guestfish-actions.pod:4448
15976 msgid ""
15977 "This command gets the filesystem type corresponding to the filesystem on "
15978 "C<device>."
15979 msgstr ""
15980
15981 #. type: textblock
15982 #: ../src/guestfs-actions.pod:6663 ../fish/guestfish-actions.pod:4451
15983 msgid ""
15984 "For most filesystems, the result is the name of the Linux VFS module which "
15985 "would be used to mount this filesystem if you mounted it without specifying "
15986 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
15987 msgstr ""
15988
15989 #. type: =head2
15990 #: ../src/guestfs-actions.pod:6673
15991 msgid "guestfs_vfs_uuid"
15992 msgstr ""
15993
15994 #. type: verbatim
15995 #: ../src/guestfs-actions.pod:6675
15996 #, no-wrap
15997 msgid ""
15998 " char *\n"
15999 " guestfs_vfs_uuid (guestfs_h *g,\n"
16000 "                   const char *device);\n"
16001 "\n"
16002 msgstr ""
16003
16004 #. type: textblock
16005 #: ../src/guestfs-actions.pod:6679 ../fish/guestfish-actions.pod:4460
16006 msgid "This returns the filesystem UUID of the filesystem on C<device>."
16007 msgstr ""
16008
16009 #. type: textblock
16010 #: ../src/guestfs-actions.pod:6682 ../fish/guestfish-actions.pod:4463
16011 msgid "If the filesystem does not have a UUID, this returns the empty string."
16012 msgstr ""
16013
16014 #. type: textblock
16015 #: ../src/guestfs-actions.pod:6684
16016 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
16017 msgstr ""
16018
16019 #. type: =head2
16020 #: ../src/guestfs-actions.pod:6691
16021 msgid "guestfs_vg_activate"
16022 msgstr ""
16023
16024 #. type: verbatim
16025 #: ../src/guestfs-actions.pod:6693
16026 #, no-wrap
16027 msgid ""
16028 " int\n"
16029 " guestfs_vg_activate (guestfs_h *g,\n"
16030 "                      int activate,\n"
16031 "                      char *const *volgroups);\n"
16032 "\n"
16033 msgstr ""
16034
16035 #. type: textblock
16036 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4471
16037 msgid ""
16038 "This command activates or (if C<activate> is false) deactivates all logical "
16039 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
16040 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
16041 "deactivated, then those devices disappear."
16042 msgstr ""
16043
16044 #. type: textblock
16045 #: ../src/guestfs-actions.pod:6704 ../fish/guestfish-actions.pod:4477
16046 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
16047 msgstr ""
16048
16049 #. type: textblock
16050 #: ../src/guestfs-actions.pod:6706 ../fish/guestfish-actions.pod:4479
16051 msgid ""
16052 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
16053 "activated or deactivated."
16054 msgstr ""
16055
16056 #. type: =head2
16057 #: ../src/guestfs-actions.pod:6713
16058 msgid "guestfs_vg_activate_all"
16059 msgstr ""
16060
16061 #. type: verbatim
16062 #: ../src/guestfs-actions.pod:6715
16063 #, no-wrap
16064 msgid ""
16065 " int\n"
16066 " guestfs_vg_activate_all (guestfs_h *g,\n"
16067 "                          int activate);\n"
16068 "\n"
16069 msgstr ""
16070
16071 #. type: textblock
16072 #: ../src/guestfs-actions.pod:6719 ../fish/guestfish-actions.pod:4486
16073 msgid ""
16074 "This command activates or (if C<activate> is false) deactivates all logical "
16075 "volumes in all volume groups.  If activated, then they are made known to the "
16076 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
16077 "those devices disappear."
16078 msgstr ""
16079
16080 #. type: textblock
16081 #: ../src/guestfs-actions.pod:6725 ../fish/guestfish-actions.pod:4492
16082 msgid "This command is the same as running C<vgchange -a y|n>"
16083 msgstr ""
16084
16085 #. type: =head2
16086 #: ../src/guestfs-actions.pod:6731
16087 msgid "guestfs_vgcreate"
16088 msgstr ""
16089
16090 #. type: verbatim
16091 #: ../src/guestfs-actions.pod:6733
16092 #, no-wrap
16093 msgid ""
16094 " int\n"
16095 " guestfs_vgcreate (guestfs_h *g,\n"
16096 "                   const char *volgroup,\n"
16097 "                   char *const *physvols);\n"
16098 "\n"
16099 msgstr ""
16100
16101 #. type: textblock
16102 #: ../src/guestfs-actions.pod:6738 ../fish/guestfish-actions.pod:4498
16103 msgid ""
16104 "This creates an LVM volume group called C<volgroup> from the non-empty list "
16105 "of physical volumes C<physvols>."
16106 msgstr ""
16107
16108 #. type: =head2
16109 #: ../src/guestfs-actions.pod:6745
16110 msgid "guestfs_vglvuuids"
16111 msgstr ""
16112
16113 #. type: verbatim
16114 #: ../src/guestfs-actions.pod:6747
16115 #, no-wrap
16116 msgid ""
16117 " char **\n"
16118 " guestfs_vglvuuids (guestfs_h *g,\n"
16119 "                    const char *vgname);\n"
16120 "\n"
16121 msgstr ""
16122
16123 #. type: textblock
16124 #: ../src/guestfs-actions.pod:6751 ../fish/guestfish-actions.pod:4505
16125 msgid ""
16126 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
16127 "volumes created in this volume group."
16128 msgstr ""
16129
16130 #. type: textblock
16131 #: ../src/guestfs-actions.pod:6754
16132 msgid ""
16133 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
16134 "associate logical volumes and volume groups."
16135 msgstr ""
16136
16137 #. type: textblock
16138 #: ../src/guestfs-actions.pod:6757
16139 msgid "See also C<guestfs_vgpvuuids>."
16140 msgstr ""
16141
16142 #. type: =head2
16143 #: ../src/guestfs-actions.pod:6765
16144 msgid "guestfs_vgpvuuids"
16145 msgstr ""
16146
16147 #. type: verbatim
16148 #: ../src/guestfs-actions.pod:6767
16149 #, no-wrap
16150 msgid ""
16151 " char **\n"
16152 " guestfs_vgpvuuids (guestfs_h *g,\n"
16153 "                    const char *vgname);\n"
16154 "\n"
16155 msgstr ""
16156
16157 #. type: textblock
16158 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4517
16159 msgid ""
16160 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
16161 "volumes that this volume group resides on."
16162 msgstr ""
16163
16164 #. type: textblock
16165 #: ../src/guestfs-actions.pod:6774
16166 msgid ""
16167 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
16168 "associate physical volumes and volume groups."
16169 msgstr ""
16170
16171 #. type: textblock
16172 #: ../src/guestfs-actions.pod:6777
16173 msgid "See also C<guestfs_vglvuuids>."
16174 msgstr ""
16175
16176 #. type: =head2
16177 #: ../src/guestfs-actions.pod:6785
16178 msgid "guestfs_vgremove"
16179 msgstr ""
16180
16181 #. type: verbatim
16182 #: ../src/guestfs-actions.pod:6787
16183 #, no-wrap
16184 msgid ""
16185 " int\n"
16186 " guestfs_vgremove (guestfs_h *g,\n"
16187 "                   const char *vgname);\n"
16188 "\n"
16189 msgstr ""
16190
16191 #. type: textblock
16192 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4529
16193 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
16194 msgstr ""
16195
16196 #. type: textblock
16197 #: ../src/guestfs-actions.pod:6793 ../fish/guestfish-actions.pod:4531
16198 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
16199 msgstr ""
16200
16201 #. type: =head2
16202 #: ../src/guestfs-actions.pod:6800
16203 msgid "guestfs_vgrename"
16204 msgstr ""
16205
16206 #. type: verbatim
16207 #: ../src/guestfs-actions.pod:6802
16208 #, no-wrap
16209 msgid ""
16210 " int\n"
16211 " guestfs_vgrename (guestfs_h *g,\n"
16212 "                   const char *volgroup,\n"
16213 "                   const char *newvolgroup);\n"
16214 "\n"
16215 msgstr ""
16216
16217 #. type: textblock
16218 #: ../src/guestfs-actions.pod:6807 ../fish/guestfish-actions.pod:4538
16219 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
16220 msgstr ""
16221
16222 #. type: =head2
16223 #: ../src/guestfs-actions.pod:6813
16224 msgid "guestfs_vgs"
16225 msgstr ""
16226
16227 #. type: verbatim
16228 #: ../src/guestfs-actions.pod:6815
16229 #, no-wrap
16230 msgid ""
16231 " char **\n"
16232 " guestfs_vgs (guestfs_h *g);\n"
16233 "\n"
16234 msgstr ""
16235
16236 #. type: textblock
16237 #: ../src/guestfs-actions.pod:6818 ../fish/guestfish-actions.pod:4544
16238 msgid ""
16239 "List all the volumes groups detected.  This is the equivalent of the "
16240 "L<vgs(8)> command."
16241 msgstr ""
16242
16243 #. type: textblock
16244 #: ../src/guestfs-actions.pod:6821 ../fish/guestfish-actions.pod:4547
16245 msgid ""
16246 "This returns a list of just the volume group names that were detected "
16247 "(eg. C<VolGroup00>)."
16248 msgstr ""
16249
16250 #. type: textblock
16251 #: ../src/guestfs-actions.pod:6824
16252 msgid "See also C<guestfs_vgs_full>."
16253 msgstr ""
16254
16255 #. type: =head2
16256 #: ../src/guestfs-actions.pod:6832
16257 msgid "guestfs_vgs_full"
16258 msgstr ""
16259
16260 #. type: verbatim
16261 #: ../src/guestfs-actions.pod:6834
16262 #, no-wrap
16263 msgid ""
16264 " struct guestfs_lvm_vg_list *\n"
16265 " guestfs_vgs_full (guestfs_h *g);\n"
16266 "\n"
16267 msgstr ""
16268
16269 #. type: textblock
16270 #: ../src/guestfs-actions.pod:6837 ../fish/guestfish-actions.pod:4556
16271 msgid ""
16272 "List all the volumes groups detected.  This is the equivalent of the "
16273 "L<vgs(8)> command.  The \"full\" version includes all fields."
16274 msgstr ""
16275
16276 #. type: textblock
16277 #: ../src/guestfs-actions.pod:6840
16278 msgid ""
16279 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
16280 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
16281 "use>."
16282 msgstr ""
16283
16284 #. type: =head2
16285 #: ../src/guestfs-actions.pod:6846
16286 msgid "guestfs_vgscan"
16287 msgstr ""
16288
16289 #. type: verbatim
16290 #: ../src/guestfs-actions.pod:6848
16291 #, no-wrap
16292 msgid ""
16293 " int\n"
16294 " guestfs_vgscan (guestfs_h *g);\n"
16295 "\n"
16296 msgstr ""
16297
16298 #. type: textblock
16299 #: ../src/guestfs-actions.pod:6851 ../fish/guestfish-actions.pod:4563
16300 msgid ""
16301 "This rescans all block devices and rebuilds the list of LVM physical "
16302 "volumes, volume groups and logical volumes."
16303 msgstr ""
16304
16305 #. type: =head2
16306 #: ../src/guestfs-actions.pod:6858
16307 msgid "guestfs_vguuid"
16308 msgstr ""
16309
16310 #. type: verbatim
16311 #: ../src/guestfs-actions.pod:6860
16312 #, no-wrap
16313 msgid ""
16314 " char *\n"
16315 " guestfs_vguuid (guestfs_h *g,\n"
16316 "                 const char *vgname);\n"
16317 "\n"
16318 msgstr ""
16319
16320 #. type: textblock
16321 #: ../src/guestfs-actions.pod:6864 ../fish/guestfish-actions.pod:4570
16322 msgid "This command returns the UUID of the LVM VG named C<vgname>."
16323 msgstr ""
16324
16325 #. type: =head2
16326 #: ../src/guestfs-actions.pod:6871
16327 msgid "guestfs_wait_ready"
16328 msgstr ""
16329
16330 #. type: verbatim
16331 #: ../src/guestfs-actions.pod:6873
16332 #, no-wrap
16333 msgid ""
16334 " int\n"
16335 " guestfs_wait_ready (guestfs_h *g);\n"
16336 "\n"
16337 msgstr ""
16338
16339 #. type: textblock
16340 #: ../src/guestfs-actions.pod:6876
16341 msgid "This function is a no op."
16342 msgstr ""
16343
16344 #. type: textblock
16345 #: ../src/guestfs-actions.pod:6878
16346 msgid ""
16347 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
16348 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
16349 "is no longer necessary because C<guestfs_launch> now does the waiting."
16350 msgstr ""
16351
16352 #. type: textblock
16353 #: ../src/guestfs-actions.pod:6883
16354 msgid ""
16355 "If you see any calls to this function in code then you can just remove them, "
16356 "unless you want to retain compatibility with older versions of the API."
16357 msgstr ""
16358
16359 #. type: =head2
16360 #: ../src/guestfs-actions.pod:6891
16361 msgid "guestfs_wc_c"
16362 msgstr ""
16363
16364 #. type: verbatim
16365 #: ../src/guestfs-actions.pod:6893
16366 #, no-wrap
16367 msgid ""
16368 " int\n"
16369 " guestfs_wc_c (guestfs_h *g,\n"
16370 "               const char *path);\n"
16371 "\n"
16372 msgstr ""
16373
16374 #. type: textblock
16375 #: ../src/guestfs-actions.pod:6897 ../fish/guestfish-actions.pod:4576
16376 msgid ""
16377 "This command counts the characters in a file, using the C<wc -c> external "
16378 "command."
16379 msgstr ""
16380
16381 #. type: =head2
16382 #: ../src/guestfs-actions.pod:6904
16383 msgid "guestfs_wc_l"
16384 msgstr ""
16385
16386 #. type: verbatim
16387 #: ../src/guestfs-actions.pod:6906
16388 #, no-wrap
16389 msgid ""
16390 " int\n"
16391 " guestfs_wc_l (guestfs_h *g,\n"
16392 "               const char *path);\n"
16393 "\n"
16394 msgstr ""
16395
16396 #. type: textblock
16397 #: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4583
16398 msgid ""
16399 "This command counts the lines in a file, using the C<wc -l> external "
16400 "command."
16401 msgstr ""
16402
16403 #. type: =head2
16404 #: ../src/guestfs-actions.pod:6917
16405 msgid "guestfs_wc_w"
16406 msgstr ""
16407
16408 #. type: verbatim
16409 #: ../src/guestfs-actions.pod:6919
16410 #, no-wrap
16411 msgid ""
16412 " int\n"
16413 " guestfs_wc_w (guestfs_h *g,\n"
16414 "               const char *path);\n"
16415 "\n"
16416 msgstr ""
16417
16418 #. type: textblock
16419 #: ../src/guestfs-actions.pod:6923 ../fish/guestfish-actions.pod:4590
16420 msgid ""
16421 "This command counts the words in a file, using the C<wc -w> external "
16422 "command."
16423 msgstr ""
16424
16425 #. type: =head2
16426 #: ../src/guestfs-actions.pod:6930
16427 msgid "guestfs_write"
16428 msgstr ""
16429
16430 #. type: verbatim
16431 #: ../src/guestfs-actions.pod:6932
16432 #, no-wrap
16433 msgid ""
16434 " int\n"
16435 " guestfs_write (guestfs_h *g,\n"
16436 "                const char *path,\n"
16437 "                const char *content,\n"
16438 "                size_t content_size);\n"
16439 "\n"
16440 msgstr ""
16441
16442 #. type: textblock
16443 #: ../src/guestfs-actions.pod:6938 ../fish/guestfish-actions.pod:4597
16444 msgid ""
16445 "This call creates a file called C<path>.  The content of the file is the "
16446 "string C<content> (which can contain any 8 bit data)."
16447 msgstr ""
16448
16449 #. type: =head2
16450 #: ../src/guestfs-actions.pod:6948
16451 msgid "guestfs_write_file"
16452 msgstr ""
16453
16454 #. type: verbatim
16455 #: ../src/guestfs-actions.pod:6950
16456 #, no-wrap
16457 msgid ""
16458 " int\n"
16459 " guestfs_write_file (guestfs_h *g,\n"
16460 "                     const char *path,\n"
16461 "                     const char *content,\n"
16462 "                     int size);\n"
16463 "\n"
16464 msgstr ""
16465
16466 #. type: textblock
16467 #: ../src/guestfs-actions.pod:6956 ../fish/guestfish-actions.pod:4607
16468 msgid ""
16469 "This call creates a file called C<path>.  The contents of the file is the "
16470 "string C<content> (which can contain any 8 bit data), with length C<size>."
16471 msgstr ""
16472
16473 #. type: textblock
16474 #: ../src/guestfs-actions.pod:6960 ../fish/guestfish-actions.pod:4611
16475 msgid ""
16476 "As a special case, if C<size> is C<0> then the length is calculated using "
16477 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
16478 msgstr ""
16479
16480 #. type: textblock
16481 #: ../src/guestfs-actions.pod:6964 ../fish/guestfish-actions.pod:4615
16482 msgid ""
16483 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
16484 "I<not> work, even if the length is specified."
16485 msgstr ""
16486
16487 #. type: textblock
16488 #: ../src/guestfs-actions.pod:6972 ../fish/guestfish-actions.pod:4621
16489 msgid "This function is deprecated.  In new code, use the C<write> call instead."
16490 msgstr ""
16491
16492 #. type: =head2
16493 #: ../src/guestfs-actions.pod:6981
16494 msgid "guestfs_zegrep"
16495 msgstr ""
16496
16497 #. type: verbatim
16498 #: ../src/guestfs-actions.pod:6983
16499 #, no-wrap
16500 msgid ""
16501 " char **\n"
16502 " guestfs_zegrep (guestfs_h *g,\n"
16503 "                 const char *regex,\n"
16504 "                 const char *path);\n"
16505 "\n"
16506 msgstr ""
16507
16508 #. type: textblock
16509 #: ../src/guestfs-actions.pod:6988 ../fish/guestfish-actions.pod:4632
16510 msgid "This calls the external C<zegrep> program and returns the matching lines."
16511 msgstr ""
16512
16513 #. type: =head2
16514 #: ../src/guestfs-actions.pod:7000
16515 msgid "guestfs_zegrepi"
16516 msgstr ""
16517
16518 #. type: verbatim
16519 #: ../src/guestfs-actions.pod:7002
16520 #, no-wrap
16521 msgid ""
16522 " char **\n"
16523 " guestfs_zegrepi (guestfs_h *g,\n"
16524 "                  const char *regex,\n"
16525 "                  const char *path);\n"
16526 "\n"
16527 msgstr ""
16528
16529 #. type: textblock
16530 #: ../src/guestfs-actions.pod:7007 ../fish/guestfish-actions.pod:4642
16531 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
16532 msgstr ""
16533
16534 #. type: =head2
16535 #: ../src/guestfs-actions.pod:7019
16536 msgid "guestfs_zero"
16537 msgstr ""
16538
16539 #. type: verbatim
16540 #: ../src/guestfs-actions.pod:7021
16541 #, no-wrap
16542 msgid ""
16543 " int\n"
16544 " guestfs_zero (guestfs_h *g,\n"
16545 "               const char *device);\n"
16546 "\n"
16547 msgstr ""
16548
16549 #. type: textblock
16550 #: ../src/guestfs-actions.pod:7025 ../fish/guestfish-actions.pod:4652
16551 msgid "This command writes zeroes over the first few blocks of C<device>."
16552 msgstr ""
16553
16554 #. type: textblock
16555 #: ../src/guestfs-actions.pod:7027 ../fish/guestfish-actions.pod:4654
16556 msgid ""
16557 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
16558 "securely wipe the device).  It should be sufficient to remove any partition "
16559 "tables, filesystem superblocks and so on."
16560 msgstr ""
16561
16562 #. type: textblock
16563 #: ../src/guestfs-actions.pod:7031
16564 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
16565 msgstr ""
16566
16567 #. type: =head2
16568 #: ../src/guestfs-actions.pod:7042
16569 msgid "guestfs_zero_device"
16570 msgstr ""
16571
16572 #. type: verbatim
16573 #: ../src/guestfs-actions.pod:7044
16574 #, no-wrap
16575 msgid ""
16576 " int\n"
16577 " guestfs_zero_device (guestfs_h *g,\n"
16578 "                      const char *device);\n"
16579 "\n"
16580 msgstr ""
16581
16582 #. type: textblock
16583 #: ../src/guestfs-actions.pod:7048
16584 msgid ""
16585 "This command writes zeroes over the entire C<device>.  Compare with "
16586 "C<guestfs_zero> which just zeroes the first few blocks of a device."
16587 msgstr ""
16588
16589 #. type: textblock
16590 #: ../src/guestfs-actions.pod:7062
16591 msgid "(Added in 1.3.1)"
16592 msgstr ""
16593
16594 #. type: =head2
16595 #: ../src/guestfs-actions.pod:7064
16596 msgid "guestfs_zerofree"
16597 msgstr ""
16598
16599 #. type: verbatim
16600 #: ../src/guestfs-actions.pod:7066
16601 #, no-wrap
16602 msgid ""
16603 " int\n"
16604 " guestfs_zerofree (guestfs_h *g,\n"
16605 "                   const char *device);\n"
16606 "\n"
16607 msgstr ""
16608
16609 #. type: textblock
16610 #: ../src/guestfs-actions.pod:7070 ../fish/guestfish-actions.pod:4675
16611 msgid ""
16612 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
16613 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
16614 "possible to compress the filesystem more effectively."
16615 msgstr ""
16616
16617 #. type: textblock
16618 #: ../src/guestfs-actions.pod:7075 ../fish/guestfish-actions.pod:4680
16619 msgid "You should B<not> run this program if the filesystem is mounted."
16620 msgstr ""
16621
16622 #. type: textblock
16623 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4683
16624 msgid ""
16625 "It is possible that using this program can damage the filesystem or data on "
16626 "the filesystem."
16627 msgstr ""
16628
16629 #. type: =head2
16630 #: ../src/guestfs-actions.pod:7085
16631 msgid "guestfs_zfgrep"
16632 msgstr ""
16633
16634 #. type: verbatim
16635 #: ../src/guestfs-actions.pod:7087
16636 #, no-wrap
16637 msgid ""
16638 " char **\n"
16639 " guestfs_zfgrep (guestfs_h *g,\n"
16640 "                 const char *pattern,\n"
16641 "                 const char *path);\n"
16642 "\n"
16643 msgstr ""
16644
16645 #. type: textblock
16646 #: ../src/guestfs-actions.pod:7092 ../fish/guestfish-actions.pod:4690
16647 msgid "This calls the external C<zfgrep> program and returns the matching lines."
16648 msgstr ""
16649
16650 #. type: =head2
16651 #: ../src/guestfs-actions.pod:7104
16652 msgid "guestfs_zfgrepi"
16653 msgstr ""
16654
16655 #. type: verbatim
16656 #: ../src/guestfs-actions.pod:7106
16657 #, no-wrap
16658 msgid ""
16659 " char **\n"
16660 " guestfs_zfgrepi (guestfs_h *g,\n"
16661 "                  const char *pattern,\n"
16662 "                  const char *path);\n"
16663 "\n"
16664 msgstr ""
16665
16666 #. type: textblock
16667 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4700
16668 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
16669 msgstr ""
16670
16671 #. type: =head2
16672 #: ../src/guestfs-actions.pod:7123
16673 msgid "guestfs_zfile"
16674 msgstr ""
16675
16676 #. type: verbatim
16677 #: ../src/guestfs-actions.pod:7125
16678 #, no-wrap
16679 msgid ""
16680 " char *\n"
16681 " guestfs_zfile (guestfs_h *g,\n"
16682 "                const char *meth,\n"
16683 "                const char *path);\n"
16684 "\n"
16685 msgstr ""
16686
16687 #. type: textblock
16688 #: ../src/guestfs-actions.pod:7130 ../fish/guestfish-actions.pod:4710
16689 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
16690 msgstr ""
16691
16692 #. type: textblock
16693 #: ../src/guestfs-actions.pod:7133 ../fish/guestfish-actions.pod:4713
16694 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
16695 msgstr ""
16696
16697 #. type: textblock
16698 #: ../src/guestfs-actions.pod:7135
16699 msgid ""
16700 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
16701 "files."
16702 msgstr ""
16703
16704 #. type: textblock
16705 #: ../src/guestfs-actions.pod:7141 ../fish/guestfish-actions.pod:4718
16706 msgid "This function is deprecated.  In new code, use the C<file> call instead."
16707 msgstr ""
16708
16709 #. type: =head2
16710 #: ../src/guestfs-actions.pod:7150
16711 msgid "guestfs_zgrep"
16712 msgstr ""
16713
16714 #. type: verbatim
16715 #: ../src/guestfs-actions.pod:7152
16716 #, no-wrap
16717 msgid ""
16718 " char **\n"
16719 " guestfs_zgrep (guestfs_h *g,\n"
16720 "                const char *regex,\n"
16721 "                const char *path);\n"
16722 "\n"
16723 msgstr ""
16724
16725 #. type: textblock
16726 #: ../src/guestfs-actions.pod:7157 ../fish/guestfish-actions.pod:4729
16727 msgid "This calls the external C<zgrep> program and returns the matching lines."
16728 msgstr ""
16729
16730 #. type: =head2
16731 #: ../src/guestfs-actions.pod:7169
16732 msgid "guestfs_zgrepi"
16733 msgstr ""
16734
16735 #. type: verbatim
16736 #: ../src/guestfs-actions.pod:7171
16737 #, no-wrap
16738 msgid ""
16739 " char **\n"
16740 " guestfs_zgrepi (guestfs_h *g,\n"
16741 "                 const char *regex,\n"
16742 "                 const char *path);\n"
16743 "\n"
16744 msgstr ""
16745
16746 #. type: textblock
16747 #: ../src/guestfs-actions.pod:7176 ../fish/guestfish-actions.pod:4739
16748 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
16749 msgstr ""
16750
16751 #. type: =item
16752 #: ../src/guestfs-availability.pod:3
16753 msgid "B<augeas>"
16754 msgstr ""
16755
16756 #. type: textblock
16757 #: ../src/guestfs-availability.pod:5
16758 msgid ""
16759 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
16760 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
16761 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
16762 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
16763 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
16764 msgstr ""
16765
16766 #. type: =item
16767 #: ../src/guestfs-availability.pod:21
16768 msgid "B<inotify>"
16769 msgstr ""
16770
16771 #. type: textblock
16772 #: ../src/guestfs-availability.pod:23
16773 msgid ""
16774 "The following functions: L</guestfs_inotify_add_watch> "
16775 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
16776 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
16777 msgstr ""
16778
16779 #. type: =item
16780 #: ../src/guestfs-availability.pod:31
16781 msgid "B<linuxfsuuid>"
16782 msgstr ""
16783
16784 #. type: textblock
16785 #: ../src/guestfs-availability.pod:33
16786 msgid ""
16787 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
16788 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
16789 msgstr ""
16790
16791 #. type: =item
16792 #: ../src/guestfs-availability.pod:40
16793 msgid "B<linuxmodules>"
16794 msgstr ""
16795
16796 #. type: textblock
16797 #: ../src/guestfs-availability.pod:42
16798 msgid "The following functions: L</guestfs_modprobe>"
16799 msgstr ""
16800
16801 #. type: =item
16802 #: ../src/guestfs-availability.pod:45
16803 msgid "B<linuxxattrs>"
16804 msgstr ""
16805
16806 #. type: textblock
16807 #: ../src/guestfs-availability.pod:47
16808 msgid ""
16809 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
16810 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
16811 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
16812 "L</guestfs_setxattr>"
16813 msgstr ""
16814
16815 #. type: =item
16816 #: ../src/guestfs-availability.pod:58
16817 msgid "B<luks>"
16818 msgstr ""
16819
16820 #. type: textblock
16821 #: ../src/guestfs-availability.pod:60
16822 msgid ""
16823 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
16824 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
16825 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
16826 msgstr ""
16827
16828 #. type: =item
16829 #: ../src/guestfs-availability.pod:69
16830 msgid "B<lvm2>"
16831 msgstr ""
16832
16833 #. type: textblock
16834 #: ../src/guestfs-availability.pod:71
16835 msgid ""
16836 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
16837 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
16838 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
16839 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
16840 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
16841 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
16842 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
16843 "L</guestfs_vgs_full>"
16844 msgstr ""
16845
16846 #. type: =item
16847 #: ../src/guestfs-availability.pod:94
16848 msgid "B<mknod>"
16849 msgstr ""
16850
16851 #. type: textblock
16852 #: ../src/guestfs-availability.pod:96
16853 msgid ""
16854 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
16855 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
16856 msgstr ""
16857
16858 #. type: =item
16859 #: ../src/guestfs-availability.pod:102
16860 msgid "B<ntfs3g>"
16861 msgstr ""
16862
16863 #. type: textblock
16864 #: ../src/guestfs-availability.pod:104
16865 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
16866 msgstr ""
16867
16868 #. type: =item
16869 #: ../src/guestfs-availability.pod:107
16870 msgid "B<ntfsprogs>"
16871 msgstr ""
16872
16873 #. type: textblock
16874 #: ../src/guestfs-availability.pod:109
16875 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
16876 msgstr ""
16877
16878 #. type: =item
16879 #: ../src/guestfs-availability.pod:113
16880 msgid "B<realpath>"
16881 msgstr ""
16882
16883 #. type: textblock
16884 #: ../src/guestfs-availability.pod:115
16885 msgid "The following functions: L</guestfs_realpath>"
16886 msgstr ""
16887
16888 #. type: =item
16889 #: ../src/guestfs-availability.pod:118
16890 msgid "B<scrub>"
16891 msgstr ""
16892
16893 #. type: textblock
16894 #: ../src/guestfs-availability.pod:120
16895 msgid ""
16896 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
16897 "L</guestfs_scrub_freespace>"
16898 msgstr ""
16899
16900 #. type: =item
16901 #: ../src/guestfs-availability.pod:125
16902 msgid "B<selinux>"
16903 msgstr ""
16904
16905 #. type: textblock
16906 #: ../src/guestfs-availability.pod:127
16907 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
16908 msgstr ""
16909
16910 #. type: =item
16911 #: ../src/guestfs-availability.pod:131
16912 msgid "B<xz>"
16913 msgstr ""
16914
16915 #. type: textblock
16916 #: ../src/guestfs-availability.pod:133
16917 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
16918 msgstr ""
16919
16920 #. type: =item
16921 #: ../src/guestfs-availability.pod:137
16922 msgid "B<zerofree>"
16923 msgstr ""
16924
16925 #. type: textblock
16926 #: ../src/guestfs-availability.pod:139
16927 msgid "The following functions: L</guestfs_zerofree>"
16928 msgstr ""
16929
16930 #. type: =head2
16931 #: ../src/guestfs-structs.pod:1
16932 msgid "guestfs_int_bool"
16933 msgstr ""
16934
16935 #. type: verbatim
16936 #: ../src/guestfs-structs.pod:3
16937 #, no-wrap
16938 msgid ""
16939 " struct guestfs_int_bool {\n"
16940 "   int32_t i;\n"
16941 "   int32_t b;\n"
16942 " };\n"
16943 " \n"
16944 msgstr ""
16945
16946 #. type: verbatim
16947 #: ../src/guestfs-structs.pod:8
16948 #, no-wrap
16949 msgid ""
16950 " struct guestfs_int_bool_list {\n"
16951 "   uint32_t len; /* Number of elements in list. */\n"
16952 "   struct guestfs_int_bool *val; /* Elements. */\n"
16953 " };\n"
16954 " \n"
16955 msgstr ""
16956
16957 #. type: verbatim
16958 #: ../src/guestfs-structs.pod:13
16959 #, no-wrap
16960 msgid ""
16961 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
16962 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
16963 "\n"
16964 msgstr ""
16965
16966 #. type: =head2
16967 #: ../src/guestfs-structs.pod:16
16968 msgid "guestfs_lvm_pv"
16969 msgstr ""
16970
16971 #. type: verbatim
16972 #: ../src/guestfs-structs.pod:18
16973 #, no-wrap
16974 msgid ""
16975 " struct guestfs_lvm_pv {\n"
16976 "   char *pv_name;\n"
16977 "   /* The next field is NOT nul-terminated, be careful when printing it: "
16978 "*/\n"
16979 "   char pv_uuid[32];\n"
16980 "   char *pv_fmt;\n"
16981 "   uint64_t pv_size;\n"
16982 "   uint64_t dev_size;\n"
16983 "   uint64_t pv_free;\n"
16984 "   uint64_t pv_used;\n"
16985 "   char *pv_attr;\n"
16986 "   int64_t pv_pe_count;\n"
16987 "   int64_t pv_pe_alloc_count;\n"
16988 "   char *pv_tags;\n"
16989 "   uint64_t pe_start;\n"
16990 "   int64_t pv_mda_count;\n"
16991 "   uint64_t pv_mda_free;\n"
16992 " };\n"
16993 " \n"
16994 msgstr ""
16995
16996 #. type: verbatim
16997 #: ../src/guestfs-structs.pod:36
16998 #, no-wrap
16999 msgid ""
17000 " struct guestfs_lvm_pv_list {\n"
17001 "   uint32_t len; /* Number of elements in list. */\n"
17002 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
17003 " };\n"
17004 " \n"
17005 msgstr ""
17006
17007 #. type: verbatim
17008 #: ../src/guestfs-structs.pod:41
17009 #, no-wrap
17010 msgid ""
17011 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
17012 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
17013 "\n"
17014 msgstr ""
17015
17016 #. type: =head2
17017 #: ../src/guestfs-structs.pod:44
17018 msgid "guestfs_lvm_vg"
17019 msgstr ""
17020
17021 #. type: verbatim
17022 #: ../src/guestfs-structs.pod:46
17023 #, no-wrap
17024 msgid ""
17025 " struct guestfs_lvm_vg {\n"
17026 "   char *vg_name;\n"
17027 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17028 "*/\n"
17029 "   char vg_uuid[32];\n"
17030 "   char *vg_fmt;\n"
17031 "   char *vg_attr;\n"
17032 "   uint64_t vg_size;\n"
17033 "   uint64_t vg_free;\n"
17034 "   char *vg_sysid;\n"
17035 "   uint64_t vg_extent_size;\n"
17036 "   int64_t vg_extent_count;\n"
17037 "   int64_t vg_free_count;\n"
17038 "   int64_t max_lv;\n"
17039 "   int64_t max_pv;\n"
17040 "   int64_t pv_count;\n"
17041 "   int64_t lv_count;\n"
17042 "   int64_t snap_count;\n"
17043 "   int64_t vg_seqno;\n"
17044 "   char *vg_tags;\n"
17045 "   int64_t vg_mda_count;\n"
17046 "   uint64_t vg_mda_free;\n"
17047 " };\n"
17048 " \n"
17049 msgstr ""
17050
17051 #. type: verbatim
17052 #: ../src/guestfs-structs.pod:69
17053 #, no-wrap
17054 msgid ""
17055 " struct guestfs_lvm_vg_list {\n"
17056 "   uint32_t len; /* Number of elements in list. */\n"
17057 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
17058 " };\n"
17059 " \n"
17060 msgstr ""
17061
17062 #. type: verbatim
17063 #: ../src/guestfs-structs.pod:74
17064 #, no-wrap
17065 msgid ""
17066 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
17067 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
17068 "\n"
17069 msgstr ""
17070
17071 #. type: =head2
17072 #: ../src/guestfs-structs.pod:77
17073 msgid "guestfs_lvm_lv"
17074 msgstr ""
17075
17076 #. type: verbatim
17077 #: ../src/guestfs-structs.pod:79
17078 #, no-wrap
17079 msgid ""
17080 " struct guestfs_lvm_lv {\n"
17081 "   char *lv_name;\n"
17082 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17083 "*/\n"
17084 "   char lv_uuid[32];\n"
17085 "   char *lv_attr;\n"
17086 "   int64_t lv_major;\n"
17087 "   int64_t lv_minor;\n"
17088 "   int64_t lv_kernel_major;\n"
17089 "   int64_t lv_kernel_minor;\n"
17090 "   uint64_t lv_size;\n"
17091 "   int64_t seg_count;\n"
17092 "   char *origin;\n"
17093 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17094 "   float snap_percent;\n"
17095 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17096 "   float copy_percent;\n"
17097 "   char *move_pv;\n"
17098 "   char *lv_tags;\n"
17099 "   char *mirror_log;\n"
17100 "   char *modules;\n"
17101 " };\n"
17102 " \n"
17103 msgstr ""
17104
17105 #. type: verbatim
17106 #: ../src/guestfs-structs.pod:101
17107 #, no-wrap
17108 msgid ""
17109 " struct guestfs_lvm_lv_list {\n"
17110 "   uint32_t len; /* Number of elements in list. */\n"
17111 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
17112 " };\n"
17113 " \n"
17114 msgstr ""
17115
17116 #. type: verbatim
17117 #: ../src/guestfs-structs.pod:106
17118 #, no-wrap
17119 msgid ""
17120 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
17121 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
17122 "\n"
17123 msgstr ""
17124
17125 #. type: verbatim
17126 #: ../src/guestfs-structs.pod:111
17127 #, no-wrap
17128 msgid ""
17129 " struct guestfs_stat {\n"
17130 "   int64_t dev;\n"
17131 "   int64_t ino;\n"
17132 "   int64_t mode;\n"
17133 "   int64_t nlink;\n"
17134 "   int64_t uid;\n"
17135 "   int64_t gid;\n"
17136 "   int64_t rdev;\n"
17137 "   int64_t size;\n"
17138 "   int64_t blksize;\n"
17139 "   int64_t blocks;\n"
17140 "   int64_t atime;\n"
17141 "   int64_t mtime;\n"
17142 "   int64_t ctime;\n"
17143 " };\n"
17144 " \n"
17145 msgstr ""
17146
17147 #. type: verbatim
17148 #: ../src/guestfs-structs.pod:127
17149 #, no-wrap
17150 msgid ""
17151 " struct guestfs_stat_list {\n"
17152 "   uint32_t len; /* Number of elements in list. */\n"
17153 "   struct guestfs_stat *val; /* Elements. */\n"
17154 " };\n"
17155 " \n"
17156 msgstr ""
17157
17158 #. type: verbatim
17159 #: ../src/guestfs-structs.pod:132
17160 #, no-wrap
17161 msgid ""
17162 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
17163 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
17164 "\n"
17165 msgstr ""
17166
17167 #. type: verbatim
17168 #: ../src/guestfs-structs.pod:137
17169 #, no-wrap
17170 msgid ""
17171 " struct guestfs_statvfs {\n"
17172 "   int64_t bsize;\n"
17173 "   int64_t frsize;\n"
17174 "   int64_t blocks;\n"
17175 "   int64_t bfree;\n"
17176 "   int64_t bavail;\n"
17177 "   int64_t files;\n"
17178 "   int64_t ffree;\n"
17179 "   int64_t favail;\n"
17180 "   int64_t fsid;\n"
17181 "   int64_t flag;\n"
17182 "   int64_t namemax;\n"
17183 " };\n"
17184 " \n"
17185 msgstr ""
17186
17187 #. type: verbatim
17188 #: ../src/guestfs-structs.pod:151
17189 #, no-wrap
17190 msgid ""
17191 " struct guestfs_statvfs_list {\n"
17192 "   uint32_t len; /* Number of elements in list. */\n"
17193 "   struct guestfs_statvfs *val; /* Elements. */\n"
17194 " };\n"
17195 " \n"
17196 msgstr ""
17197
17198 #. type: verbatim
17199 #: ../src/guestfs-structs.pod:156
17200 #, no-wrap
17201 msgid ""
17202 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
17203 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
17204 "\n"
17205 msgstr ""
17206
17207 #. type: =head2
17208 #: ../src/guestfs-structs.pod:159
17209 msgid "guestfs_dirent"
17210 msgstr ""
17211
17212 #. type: verbatim
17213 #: ../src/guestfs-structs.pod:161
17214 #, no-wrap
17215 msgid ""
17216 " struct guestfs_dirent {\n"
17217 "   int64_t ino;\n"
17218 "   char ftyp;\n"
17219 "   char *name;\n"
17220 " };\n"
17221 " \n"
17222 msgstr ""
17223
17224 #. type: verbatim
17225 #: ../src/guestfs-structs.pod:167
17226 #, no-wrap
17227 msgid ""
17228 " struct guestfs_dirent_list {\n"
17229 "   uint32_t len; /* Number of elements in list. */\n"
17230 "   struct guestfs_dirent *val; /* Elements. */\n"
17231 " };\n"
17232 " \n"
17233 msgstr ""
17234
17235 #. type: verbatim
17236 #: ../src/guestfs-structs.pod:172
17237 #, no-wrap
17238 msgid ""
17239 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
17240 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
17241 "\n"
17242 msgstr ""
17243
17244 #. type: verbatim
17245 #: ../src/guestfs-structs.pod:177
17246 #, no-wrap
17247 msgid ""
17248 " struct guestfs_version {\n"
17249 "   int64_t major;\n"
17250 "   int64_t minor;\n"
17251 "   int64_t release;\n"
17252 "   char *extra;\n"
17253 " };\n"
17254 " \n"
17255 msgstr ""
17256
17257 #. type: verbatim
17258 #: ../src/guestfs-structs.pod:184
17259 #, no-wrap
17260 msgid ""
17261 " struct guestfs_version_list {\n"
17262 "   uint32_t len; /* Number of elements in list. */\n"
17263 "   struct guestfs_version *val; /* Elements. */\n"
17264 " };\n"
17265 " \n"
17266 msgstr ""
17267
17268 #. type: verbatim
17269 #: ../src/guestfs-structs.pod:189
17270 #, no-wrap
17271 msgid ""
17272 " void guestfs_free_version (struct guestfs_free_version *);\n"
17273 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
17274 "\n"
17275 msgstr ""
17276
17277 #. type: =head2
17278 #: ../src/guestfs-structs.pod:192
17279 msgid "guestfs_xattr"
17280 msgstr ""
17281
17282 #. type: verbatim
17283 #: ../src/guestfs-structs.pod:194
17284 #, no-wrap
17285 msgid ""
17286 " struct guestfs_xattr {\n"
17287 "   char *attrname;\n"
17288 "   /* The next two fields describe a byte array. */\n"
17289 "   uint32_t attrval_len;\n"
17290 "   char *attrval;\n"
17291 " };\n"
17292 " \n"
17293 msgstr ""
17294
17295 #. type: verbatim
17296 #: ../src/guestfs-structs.pod:201
17297 #, no-wrap
17298 msgid ""
17299 " struct guestfs_xattr_list {\n"
17300 "   uint32_t len; /* Number of elements in list. */\n"
17301 "   struct guestfs_xattr *val; /* Elements. */\n"
17302 " };\n"
17303 " \n"
17304 msgstr ""
17305
17306 #. type: verbatim
17307 #: ../src/guestfs-structs.pod:206
17308 #, no-wrap
17309 msgid ""
17310 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
17311 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
17312 "\n"
17313 msgstr ""
17314
17315 #. type: =head2
17316 #: ../src/guestfs-structs.pod:209
17317 msgid "guestfs_inotify_event"
17318 msgstr ""
17319
17320 #. type: verbatim
17321 #: ../src/guestfs-structs.pod:211
17322 #, no-wrap
17323 msgid ""
17324 " struct guestfs_inotify_event {\n"
17325 "   int64_t in_wd;\n"
17326 "   uint32_t in_mask;\n"
17327 "   uint32_t in_cookie;\n"
17328 "   char *in_name;\n"
17329 " };\n"
17330 " \n"
17331 msgstr ""
17332
17333 #. type: verbatim
17334 #: ../src/guestfs-structs.pod:218
17335 #, no-wrap
17336 msgid ""
17337 " struct guestfs_inotify_event_list {\n"
17338 "   uint32_t len; /* Number of elements in list. */\n"
17339 "   struct guestfs_inotify_event *val; /* Elements. */\n"
17340 " };\n"
17341 " \n"
17342 msgstr ""
17343
17344 #. type: verbatim
17345 #: ../src/guestfs-structs.pod:223
17346 #, no-wrap
17347 msgid ""
17348 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
17349 " void guestfs_free_inotify_event_list (struct "
17350 "guestfs_free_inotify_event_list *);\n"
17351 "\n"
17352 msgstr ""
17353
17354 #. type: =head2
17355 #: ../src/guestfs-structs.pod:226
17356 msgid "guestfs_partition"
17357 msgstr ""
17358
17359 #. type: verbatim
17360 #: ../src/guestfs-structs.pod:228
17361 #, no-wrap
17362 msgid ""
17363 " struct guestfs_partition {\n"
17364 "   int32_t part_num;\n"
17365 "   uint64_t part_start;\n"
17366 "   uint64_t part_end;\n"
17367 "   uint64_t part_size;\n"
17368 " };\n"
17369 " \n"
17370 msgstr ""
17371
17372 #. type: verbatim
17373 #: ../src/guestfs-structs.pod:235
17374 #, no-wrap
17375 msgid ""
17376 " struct guestfs_partition_list {\n"
17377 "   uint32_t len; /* Number of elements in list. */\n"
17378 "   struct guestfs_partition *val; /* Elements. */\n"
17379 " };\n"
17380 " \n"
17381 msgstr ""
17382
17383 #. type: verbatim
17384 #: ../src/guestfs-structs.pod:240
17385 #, no-wrap
17386 msgid ""
17387 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
17388 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
17389 "\n"
17390 msgstr ""
17391
17392 #. type: =head2
17393 #: ../src/guestfs-structs.pod:243
17394 msgid "guestfs_application"
17395 msgstr ""
17396
17397 #. type: verbatim
17398 #: ../src/guestfs-structs.pod:245
17399 #, no-wrap
17400 msgid ""
17401 " struct guestfs_application {\n"
17402 "   char *app_name;\n"
17403 "   char *app_display_name;\n"
17404 "   int32_t app_epoch;\n"
17405 "   char *app_version;\n"
17406 "   char *app_release;\n"
17407 "   char *app_install_path;\n"
17408 "   char *app_trans_path;\n"
17409 "   char *app_publisher;\n"
17410 "   char *app_url;\n"
17411 "   char *app_source_package;\n"
17412 "   char *app_summary;\n"
17413 "   char *app_description;\n"
17414 " };\n"
17415 " \n"
17416 msgstr ""
17417
17418 #. type: verbatim
17419 #: ../src/guestfs-structs.pod:260
17420 #, no-wrap
17421 msgid ""
17422 " struct guestfs_application_list {\n"
17423 "   uint32_t len; /* Number of elements in list. */\n"
17424 "   struct guestfs_application *val; /* Elements. */\n"
17425 " };\n"
17426 " \n"
17427 msgstr ""
17428
17429 #. type: verbatim
17430 #: ../src/guestfs-structs.pod:265
17431 #, no-wrap
17432 msgid ""
17433 " void guestfs_free_application (struct guestfs_free_application *);\n"
17434 " void guestfs_free_application_list (struct guestfs_free_application_list "
17435 "*);\n"
17436 "\n"
17437 msgstr ""
17438
17439 #. type: textblock
17440 #: ../fish/guestfish.pod:5
17441 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
17442 msgstr ""
17443
17444 #. type: verbatim
17445 #: ../fish/guestfish.pod:9
17446 #, no-wrap
17447 msgid ""
17448 " guestfish [--options] [commands]\n"
17449 "\n"
17450 msgstr ""
17451
17452 #. type: verbatim
17453 #: ../fish/guestfish.pod:11
17454 #, no-wrap
17455 msgid ""
17456 " guestfish\n"
17457 "\n"
17458 msgstr ""
17459
17460 #. type: verbatim
17461 #: ../fish/guestfish.pod:13
17462 #, no-wrap
17463 msgid ""
17464 " guestfish [--ro|--rw] -a disk.img\n"
17465 "\n"
17466 msgstr ""
17467
17468 #. type: verbatim
17469 #: ../fish/guestfish.pod:15
17470 #, no-wrap
17471 msgid ""
17472 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
17473 "\n"
17474 msgstr ""
17475
17476 #. type: verbatim
17477 #: ../fish/guestfish.pod:17
17478 #, no-wrap
17479 msgid ""
17480 " guestfish -d libvirt-domain\n"
17481 "\n"
17482 msgstr ""
17483
17484 #. type: verbatim
17485 #: ../fish/guestfish.pod:19
17486 #, no-wrap
17487 msgid ""
17488 " guestfish [--ro|--rw] -a disk.img -i\n"
17489 "\n"
17490 msgstr ""
17491
17492 #. type: verbatim
17493 #: ../fish/guestfish.pod:21
17494 #, no-wrap
17495 msgid ""
17496 " guestfish -d libvirt-domain -i\n"
17497 "\n"
17498 msgstr ""
17499
17500 #. type: =head1
17501 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:59
17502 msgid "WARNING"
17503 msgstr ""
17504
17505 #. type: textblock
17506 #: ../fish/guestfish.pod:25
17507 msgid ""
17508 "Using guestfish in read/write mode on live virtual machines can be "
17509 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
17510 "option to use guestfish safely if the disk image or virtual machine might be "
17511 "live."
17512 msgstr ""
17513
17514 #. type: textblock
17515 #: ../fish/guestfish.pod:32
17516 msgid ""
17517 "Guestfish is a shell and command-line tool for examining and modifying "
17518 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
17519 "functionality of the guestfs API, see L<guestfs(3)>."
17520 msgstr ""
17521
17522 #. type: textblock
17523 #: ../fish/guestfish.pod:36
17524 msgid ""
17525 "Guestfish gives you structured access to the libguestfs API, from shell "
17526 "scripts or the command line or interactively.  If you want to rescue a "
17527 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
17528 "command."
17529 msgstr ""
17530
17531 #. type: =head1
17532 #: ../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
17533 msgid "EXAMPLES"
17534 msgstr ""
17535
17536 #. type: =head2
17537 #: ../fish/guestfish.pod:43
17538 msgid "As an interactive shell"
17539 msgstr ""
17540
17541 #. type: verbatim
17542 #: ../fish/guestfish.pod:45
17543 #, no-wrap
17544 msgid ""
17545 " $ guestfish\n"
17546 " \n"
17547 msgstr ""
17548
17549 #. type: verbatim
17550 #: ../fish/guestfish.pod:47
17551 #, no-wrap
17552 msgid ""
17553 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
17554 " editing virtual machine filesystems.\n"
17555 " \n"
17556 msgstr ""
17557
17558 #. type: verbatim
17559 #: ../fish/guestfish.pod:50
17560 #, no-wrap
17561 msgid ""
17562 " Type: 'help' for a list of commands\n"
17563 "       'man' to read the manual\n"
17564 "       'quit' to quit the shell\n"
17565 " \n"
17566 msgstr ""
17567
17568 #. type: verbatim
17569 #: ../fish/guestfish.pod:54
17570 #, no-wrap
17571 msgid ""
17572 " ><fs> add-ro disk.img\n"
17573 " ><fs> run\n"
17574 " ><fs> list-filesystems\n"
17575 " /dev/sda1: ext4\n"
17576 " /dev/vg_guest/lv_root: ext4\n"
17577 " /dev/vg_guest/lv_swap: swap\n"
17578 " ><fs> mount /dev/vg_guest/lv_root /\n"
17579 " ><fs> cat /etc/fstab\n"
17580 " # /etc/fstab\n"
17581 " # Created by anaconda\n"
17582 " [...]\n"
17583 " ><fs> exit\n"
17584 "\n"
17585 msgstr ""
17586
17587 #. type: =head2
17588 #: ../fish/guestfish.pod:67
17589 msgid "From shell scripts"
17590 msgstr ""
17591
17592 #. type: textblock
17593 #: ../fish/guestfish.pod:69
17594 msgid "Create a new C</etc/motd> file in a guest or disk image:"
17595 msgstr ""
17596
17597 #. type: verbatim
17598 #: ../fish/guestfish.pod:71
17599 #, no-wrap
17600 msgid ""
17601 " guestfish <<_EOF_\n"
17602 " add disk.img\n"
17603 " run\n"
17604 " mount /dev/vg_guest/lv_root /\n"
17605 " write /etc/motd \"Welcome, new users\"\n"
17606 " _EOF_\n"
17607 "\n"
17608 msgstr ""
17609
17610 #. type: textblock
17611 #: ../fish/guestfish.pod:78
17612 msgid "List the LVM logical volumes in a disk image:"
17613 msgstr ""
17614
17615 #. type: verbatim
17616 #: ../fish/guestfish.pod:80
17617 #, no-wrap
17618 msgid ""
17619 " guestfish -a disk.img --ro <<_EOF_\n"
17620 " run\n"
17621 " lvs\n"
17622 " _EOF_\n"
17623 "\n"
17624 msgstr ""
17625
17626 #. type: textblock
17627 #: ../fish/guestfish.pod:85
17628 msgid "List all the filesystems in a disk image:"
17629 msgstr ""
17630
17631 #. type: verbatim
17632 #: ../fish/guestfish.pod:87
17633 #, no-wrap
17634 msgid ""
17635 " guestfish -a disk.img --ro <<_EOF_\n"
17636 " run\n"
17637 " list-filesystems\n"
17638 " _EOF_\n"
17639 "\n"
17640 msgstr ""
17641
17642 #. type: =head2
17643 #: ../fish/guestfish.pod:92
17644 msgid "On one command line"
17645 msgstr ""
17646
17647 #. type: textblock
17648 #: ../fish/guestfish.pod:94
17649 msgid "Update C</etc/resolv.conf> in a guest:"
17650 msgstr ""
17651
17652 #. type: verbatim
17653 #: ../fish/guestfish.pod:96
17654 #, no-wrap
17655 msgid ""
17656 " guestfish \\\n"
17657 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
17658 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
17659 "\n"
17660 msgstr ""
17661
17662 #. type: textblock
17663 #: ../fish/guestfish.pod:100
17664 msgid "Edit C</boot/grub/grub.conf> interactively:"
17665 msgstr ""
17666
17667 #. type: verbatim
17668 #: ../fish/guestfish.pod:102
17669 #, no-wrap
17670 msgid ""
17671 " guestfish --rw --add disk.img \\\n"
17672 "   --mount /dev/vg_guest/lv_root \\\n"
17673 "   --mount /dev/sda1:/boot \\\n"
17674 "   edit /boot/grub/grub.conf\n"
17675 "\n"
17676 msgstr ""
17677
17678 #. type: =head2
17679 #: ../fish/guestfish.pod:107
17680 msgid "Mount disks automatically"
17681 msgstr ""
17682
17683 #. type: textblock
17684 #: ../fish/guestfish.pod:109
17685 msgid ""
17686 "Use the I<-i> option to automatically mount the disks from a virtual "
17687 "machine:"
17688 msgstr ""
17689
17690 #. type: verbatim
17691 #: ../fish/guestfish.pod:112
17692 #, no-wrap
17693 msgid ""
17694 " guestfish --ro -a disk.img -i cat /etc/group\n"
17695 "\n"
17696 msgstr ""
17697
17698 #. type: verbatim
17699 #: ../fish/guestfish.pod:114
17700 #, no-wrap
17701 msgid ""
17702 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
17703 "\n"
17704 msgstr ""
17705
17706 #. type: textblock
17707 #: ../fish/guestfish.pod:116
17708 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
17709 msgstr ""
17710
17711 #. type: verbatim
17712 #: ../fish/guestfish.pod:118
17713 #, no-wrap
17714 msgid ""
17715 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
17716 "\n"
17717 msgstr ""
17718
17719 #. type: =head2
17720 #: ../fish/guestfish.pod:120
17721 msgid "As a script interpreter"
17722 msgstr ""
17723
17724 #. type: textblock
17725 #: ../fish/guestfish.pod:122
17726 msgid "Create a 100MB disk containing an ext2-formatted partition:"
17727 msgstr ""
17728
17729 #. type: verbatim
17730 #: ../fish/guestfish.pod:124
17731 #, no-wrap
17732 msgid ""
17733 " #!/usr/bin/guestfish -f\n"
17734 " sparse test1.img 100M\n"
17735 " run\n"
17736 " part-disk /dev/sda mbr\n"
17737 " mkfs ext2 /dev/sda1\n"
17738 "\n"
17739 msgstr ""
17740
17741 #. type: =head2
17742 #: ../fish/guestfish.pod:130
17743 msgid "Start with a prepared disk"
17744 msgstr ""
17745
17746 #. type: textblock
17747 #: ../fish/guestfish.pod:132
17748 msgid ""
17749 "An alternate way to create a 100MB disk called C<test1.img> containing a "
17750 "single ext2-formatted partition:"
17751 msgstr ""
17752
17753 #. type: verbatim
17754 #: ../fish/guestfish.pod:135
17755 #, no-wrap
17756 msgid ""
17757 " guestfish -N fs\n"
17758 "\n"
17759 msgstr ""
17760
17761 #. type: textblock
17762 #: ../fish/guestfish.pod:137
17763 msgid "To list what is available do:"
17764 msgstr ""
17765
17766 #. type: verbatim
17767 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:888
17768 #, no-wrap
17769 msgid ""
17770 " guestfish -N help | less\n"
17771 "\n"
17772 msgstr ""
17773
17774 #. type: =head2
17775 #: ../fish/guestfish.pod:141
17776 msgid "Remote control"
17777 msgstr ""
17778
17779 #. type: verbatim
17780 #: ../fish/guestfish.pod:143
17781 #, no-wrap
17782 msgid ""
17783 " eval \"`guestfish --listen`\"\n"
17784 " guestfish --remote add-ro disk.img\n"
17785 " guestfish --remote run\n"
17786 " guestfish --remote lvs\n"
17787 "\n"
17788 msgstr ""
17789
17790 #. type: =head1
17791 #: ../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
17792 msgid "OPTIONS"
17793 msgstr ""
17794
17795 #. type: =item
17796 #: ../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
17797 msgid "B<--help>"
17798 msgstr ""
17799
17800 #. type: textblock
17801 #: ../fish/guestfish.pod:154
17802 msgid "Displays general help on options."
17803 msgstr ""
17804
17805 #. type: =item
17806 #: ../fish/guestfish.pod:156
17807 msgid "B<-h>"
17808 msgstr ""
17809
17810 #. type: =item
17811 #: ../fish/guestfish.pod:158
17812 msgid "B<--cmd-help>"
17813 msgstr ""
17814
17815 #. type: textblock
17816 #: ../fish/guestfish.pod:160
17817 msgid "Lists all available guestfish commands."
17818 msgstr ""
17819
17820 #. type: =item
17821 #: ../fish/guestfish.pod:162
17822 msgid "B<-h cmd>"
17823 msgstr ""
17824
17825 #. type: =item
17826 #: ../fish/guestfish.pod:164
17827 msgid "B<--cmd-help cmd>"
17828 msgstr ""
17829
17830 #. type: textblock
17831 #: ../fish/guestfish.pod:166
17832 msgid "Displays detailed help on a single command C<cmd>."
17833 msgstr ""
17834
17835 #. type: =item
17836 #: ../fish/guestfish.pod:168
17837 msgid "B<-a image>"
17838 msgstr ""
17839
17840 #. type: =item
17841 #: ../fish/guestfish.pod:170
17842 msgid "B<--add image>"
17843 msgstr ""
17844
17845 #. type: textblock
17846 #: ../fish/guestfish.pod:172
17847 msgid "Add a block device or virtual machine image to the shell."
17848 msgstr ""
17849
17850 #. type: textblock
17851 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
17852 msgid ""
17853 "The format of the disk image is auto-detected.  To override this and force a "
17854 "particular format use the I<--format=..> option."
17855 msgstr ""
17856
17857 #. type: textblock
17858 #: ../fish/guestfish.pod:177
17859 msgid ""
17860 "Using this flag is mostly equivalent to using the C<add> command, with "
17861 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
17862 "the I<--format:...> flag was given."
17863 msgstr ""
17864
17865 #. type: =item
17866 #: ../fish/guestfish.pod:181
17867 msgid "B<-c URI>"
17868 msgstr ""
17869
17870 #. type: =item
17871 #: ../fish/guestfish.pod:183
17872 msgid "B<--connect URI>"
17873 msgstr ""
17874
17875 #. type: textblock
17876 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
17877 msgid ""
17878 "When used in conjunction with the I<-d> option, this specifies the libvirt "
17879 "URI to use.  The default is to use the default libvirt connection."
17880 msgstr ""
17881
17882 #. type: =item
17883 #: ../fish/guestfish.pod:189
17884 msgid "B<--csh>"
17885 msgstr ""
17886
17887 #. type: textblock
17888 #: ../fish/guestfish.pod:191
17889 msgid ""
17890 "If using the I<--listen> option and a csh-like shell, use this option.  See "
17891 "section L</REMOTE CONTROL AND CSH> below."
17892 msgstr ""
17893
17894 #. type: =item
17895 #: ../fish/guestfish.pod:194
17896 msgid "B<-d libvirt-domain>"
17897 msgstr ""
17898
17899 #. type: =item
17900 #: ../fish/guestfish.pod:196
17901 msgid "B<--domain libvirt-domain>"
17902 msgstr ""
17903
17904 #. type: textblock
17905 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
17906 msgid ""
17907 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
17908 "used, then any libvirt domain can be used.  However in write mode, only "
17909 "libvirt domains which are shut down can be named here."
17910 msgstr ""
17911
17912 #. type: textblock
17913 #: ../fish/guestfish.pod:202
17914 msgid ""
17915 "Using this flag is mostly equivalent to using the C<add-domain> command, "
17916 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
17917 "if the I<--format:...> flag was given."
17918 msgstr ""
17919
17920 #. type: =item
17921 #: ../fish/guestfish.pod:206
17922 msgid "B<-D>"
17923 msgstr ""
17924
17925 #. type: =item
17926 #: ../fish/guestfish.pod:208
17927 msgid "B<--no-dest-paths>"
17928 msgstr ""
17929
17930 #. type: textblock
17931 #: ../fish/guestfish.pod:210
17932 msgid ""
17933 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
17934 "to hit the tab key to complete paths on the guest filesystem, but this "
17935 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
17936 "allow this feature to be disabled."
17937 msgstr ""
17938
17939 #. type: =item
17940 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
17941 msgid "B<--echo-keys>"
17942 msgstr ""
17943
17944 #. type: textblock
17945 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
17946 msgid ""
17947 "When prompting for keys and passphrases, guestfish normally turns echoing "
17948 "off so you cannot see what you are typing.  If you are not worried about "
17949 "Tempest attacks and there is no one else in the room you can specify this "
17950 "flag to see what you are typing."
17951 msgstr ""
17952
17953 #. type: =item
17954 #: ../fish/guestfish.pod:222
17955 msgid "B<-f file>"
17956 msgstr ""
17957
17958 #. type: =item
17959 #: ../fish/guestfish.pod:224
17960 msgid "B<--file file>"
17961 msgstr ""
17962
17963 #. type: textblock
17964 #: ../fish/guestfish.pod:226
17965 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
17966 msgstr ""
17967
17968 #. type: verbatim
17969 #: ../fish/guestfish.pod:229
17970 #, no-wrap
17971 msgid ""
17972 " #!/usr/bin/guestfish -f\n"
17973 "\n"
17974 msgstr ""
17975
17976 #. type: =item
17977 #: ../fish/guestfish.pod:231
17978 msgid "B<--format=raw|qcow2|..>"
17979 msgstr ""
17980
17981 #. type: =item
17982 #: ../fish/guestfish.pod:233
17983 msgid "B<--format>"
17984 msgstr ""
17985
17986 #. type: textblock
17987 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
17988 msgid ""
17989 "The default for the I<-a> option is to auto-detect the format of the disk "
17990 "image.  Using this forces the disk format for I<-a> options which follow on "
17991 "the command line.  Using I<--format> with no argument switches back to "
17992 "auto-detection for subsequent I<-a> options."
17993 msgstr ""
17994
17995 #. type: verbatim
17996 #: ../fish/guestfish.pod:242
17997 #, no-wrap
17998 msgid ""
17999 " guestfish --format=raw -a disk.img\n"
18000 "\n"
18001 msgstr ""
18002
18003 #. type: textblock
18004 #: ../fish/guestfish.pod:244
18005 msgid "forces raw format (no auto-detection) for C<disk.img>."
18006 msgstr ""
18007
18008 #. type: verbatim
18009 #: ../fish/guestfish.pod:246
18010 #, no-wrap
18011 msgid ""
18012 " guestfish --format=raw -a disk.img --format -a another.img\n"
18013 "\n"
18014 msgstr ""
18015
18016 #. type: textblock
18017 #: ../fish/guestfish.pod:248
18018 msgid ""
18019 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
18020 "auto-detection for C<another.img>."
18021 msgstr ""
18022
18023 #. type: textblock
18024 #: ../fish/guestfish.pod:251
18025 msgid ""
18026 "If you have untrusted raw-format guest disk images, you should use this "
18027 "option to specify the disk format.  This avoids a possible security problem "
18028 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
18029 msgstr ""
18030
18031 #. type: =item
18032 #: ../fish/guestfish.pod:256
18033 msgid "B<-i>"
18034 msgstr ""
18035
18036 #. type: =item
18037 #: ../fish/guestfish.pod:258
18038 msgid "B<--inspector>"
18039 msgstr ""
18040
18041 #. type: textblock
18042 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
18043 msgid ""
18044 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
18045 "system and mount filesystems as they would be mounted on the real virtual "
18046 "machine."
18047 msgstr ""
18048
18049 #. type: textblock
18050 #: ../fish/guestfish.pod:264
18051 msgid "Typical usage is either:"
18052 msgstr ""
18053
18054 #. type: verbatim
18055 #: ../fish/guestfish.pod:266
18056 #, no-wrap
18057 msgid ""
18058 " guestfish -d myguest -i\n"
18059 "\n"
18060 msgstr ""
18061
18062 #. type: textblock
18063 #: ../fish/guestfish.pod:268
18064 msgid "(for an inactive libvirt domain called I<myguest>), or:"
18065 msgstr ""
18066
18067 #. type: verbatim
18068 #: ../fish/guestfish.pod:270
18069 #, no-wrap
18070 msgid ""
18071 " guestfish --ro -d myguest -i\n"
18072 "\n"
18073 msgstr ""
18074
18075 #. type: textblock
18076 #: ../fish/guestfish.pod:272
18077 msgid "(for active domains, readonly), or specify the block device directly:"
18078 msgstr ""
18079
18080 #. type: verbatim
18081 #: ../fish/guestfish.pod:274
18082 #, no-wrap
18083 msgid ""
18084 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
18085 "\n"
18086 msgstr ""
18087
18088 #. type: textblock
18089 #: ../fish/guestfish.pod:276
18090 msgid ""
18091 "Note that the command line syntax changed slightly over older versions of "
18092 "guestfish.  You can still use the old syntax:"
18093 msgstr ""
18094
18095 #. type: verbatim
18096 #: ../fish/guestfish.pod:279
18097 #, no-wrap
18098 msgid ""
18099 " guestfish [--ro] -i disk.img\n"
18100 "\n"
18101 msgstr ""
18102
18103 #. type: verbatim
18104 #: ../fish/guestfish.pod:281
18105 #, no-wrap
18106 msgid ""
18107 " guestfish [--ro] -i libvirt-domain\n"
18108 "\n"
18109 msgstr ""
18110
18111 #. type: textblock
18112 #: ../fish/guestfish.pod:283
18113 msgid ""
18114 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
18115 "then using other commands to mount the filesystems that were found."
18116 msgstr ""
18117
18118 #. type: =item
18119 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
18120 msgid "B<--keys-from-stdin>"
18121 msgstr ""
18122
18123 #. type: textblock
18124 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
18125 msgid ""
18126 "Read key or passphrase parameters from stdin.  The default is to try to read "
18127 "passphrases from the user by opening C</dev/tty>."
18128 msgstr ""
18129
18130 #. type: =item
18131 #: ../fish/guestfish.pod:292
18132 msgid "B<--listen>"
18133 msgstr ""
18134
18135 #. type: textblock
18136 #: ../fish/guestfish.pod:294
18137 msgid ""
18138 "Fork into the background and listen for remote commands.  See section "
18139 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
18140 msgstr ""
18141
18142 #. type: =item
18143 #: ../fish/guestfish.pod:297
18144 msgid "B<-m dev[:mountpoint]>"
18145 msgstr ""
18146
18147 #. type: =item
18148 #: ../fish/guestfish.pod:299
18149 msgid "B<--mount dev[:mountpoint]>"
18150 msgstr ""
18151
18152 #. type: textblock
18153 #: ../fish/guestfish.pod:301
18154 msgid "Mount the named partition or logical volume on the given mountpoint."
18155 msgstr ""
18156
18157 #. type: textblock
18158 #: ../fish/guestfish.pod:303
18159 msgid "If the mountpoint is omitted, it defaults to C</>."
18160 msgstr ""
18161
18162 #. type: textblock
18163 #: ../fish/guestfish.pod:305
18164 msgid "You have to mount something on C</> before most commands will work."
18165 msgstr ""
18166
18167 #. type: textblock
18168 #: ../fish/guestfish.pod:307
18169 msgid ""
18170 "If any I<-m> or I<--mount> options are given, the guest is automatically "
18171 "launched."
18172 msgstr ""
18173
18174 #. type: textblock
18175 #: ../fish/guestfish.pod:310
18176 msgid ""
18177 "If you don't know what filesystems a disk image contains, you can either run "
18178 "guestfish without this option, then list the partitions, filesystems and LVs "
18179 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
18180 "commands), or you can use the L<virt-filesystems(1)> program."
18181 msgstr ""
18182
18183 #. type: textblock
18184 #: ../fish/guestfish.pod:316
18185 msgid ""
18186 "Using this flag is mostly equivalent to using the C<mount-options> command "
18187 "or the C<mount-ro> command if the I<--ro> flag was given."
18188 msgstr ""
18189
18190 #. type: =item
18191 #: ../fish/guestfish.pod:319
18192 msgid "B<-n>"
18193 msgstr ""
18194
18195 #. type: =item
18196 #: ../fish/guestfish.pod:321
18197 msgid "B<--no-sync>"
18198 msgstr ""
18199
18200 #. type: textblock
18201 #: ../fish/guestfish.pod:323
18202 msgid ""
18203 "Disable autosync.  This is enabled by default.  See the discussion of "
18204 "autosync in the L<guestfs(3)> manpage."
18205 msgstr ""
18206
18207 #. type: =item
18208 #: ../fish/guestfish.pod:326
18209 msgid "B<-N type>"
18210 msgstr ""
18211
18212 #. type: =item
18213 #: ../fish/guestfish.pod:328
18214 msgid "B<--new type>"
18215 msgstr ""
18216
18217 #. type: =item
18218 #: ../fish/guestfish.pod:330
18219 msgid "B<-N help>"
18220 msgstr ""
18221
18222 #. type: textblock
18223 #: ../fish/guestfish.pod:332
18224 msgid ""
18225 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
18226 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
18227 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
18228 "IMAGES> below."
18229 msgstr ""
18230
18231 #. type: =item
18232 #: ../fish/guestfish.pod:337
18233 msgid "B<--progress-bars>"
18234 msgstr ""
18235
18236 #. type: textblock
18237 #: ../fish/guestfish.pod:339
18238 msgid "Enable progress bars, even when guestfish is used non-interactively."
18239 msgstr ""
18240
18241 #. type: textblock
18242 #: ../fish/guestfish.pod:341
18243 msgid ""
18244 "Progress bars are enabled by default when guestfish is used as an "
18245 "interactive shell."
18246 msgstr ""
18247
18248 #. type: =item
18249 #: ../fish/guestfish.pod:344
18250 msgid "B<--no-progress-bars>"
18251 msgstr ""
18252
18253 #. type: textblock
18254 #: ../fish/guestfish.pod:346
18255 msgid "Disable progress bars."
18256 msgstr ""
18257
18258 #. type: =item
18259 #: ../fish/guestfish.pod:348
18260 msgid "B<--remote[=pid]>"
18261 msgstr ""
18262
18263 #. type: textblock
18264 #: ../fish/guestfish.pod:350
18265 msgid ""
18266 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
18267 "CONTROL GUESTFISH OVER A SOCKET> below."
18268 msgstr ""
18269
18270 #. type: =item
18271 #: ../fish/guestfish.pod:353
18272 msgid "B<-r>"
18273 msgstr ""
18274
18275 #. type: =item
18276 #: ../fish/guestfish.pod:355
18277 msgid "B<--ro>"
18278 msgstr ""
18279
18280 #. type: textblock
18281 #: ../fish/guestfish.pod:357
18282 msgid ""
18283 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
18284 "mounts are done read-only."
18285 msgstr ""
18286
18287 #. type: textblock
18288 #: ../fish/guestfish.pod:360
18289 msgid ""
18290 "The option must always be used if the disk image or virtual machine might be "
18291 "running, and is generally recommended in cases where you don't need write "
18292 "access to the disk."
18293 msgstr ""
18294
18295 #. type: textblock
18296 #: ../fish/guestfish.pod:364
18297 msgid ""
18298 "Note that prepared disk images created with I<-N> are not affected by this "
18299 "option.  Also commands like C<add> are not affected - you have to specify "
18300 "the C<readonly:true> option explicitly if you need it."
18301 msgstr ""
18302
18303 #. type: textblock
18304 #: ../fish/guestfish.pod:368
18305 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
18306 msgstr ""
18307
18308 #. type: =item
18309 #: ../fish/guestfish.pod:370 ../fuse/guestmount.pod:208
18310 msgid "B<--selinux>"
18311 msgstr ""
18312
18313 #. type: textblock
18314 #: ../fish/guestfish.pod:372
18315 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
18316 msgstr ""
18317
18318 #. type: =item
18319 #: ../fish/guestfish.pod:374
18320 msgid "B<-v>"
18321 msgstr ""
18322
18323 #. type: =item
18324 #: ../fish/guestfish.pod:376
18325 msgid "B<--verbose>"
18326 msgstr ""
18327
18328 #. type: textblock
18329 #: ../fish/guestfish.pod:378
18330 msgid ""
18331 "Enable very verbose messages.  This is particularly useful if you find a "
18332 "bug."
18333 msgstr ""
18334
18335 #. type: =item
18336 #: ../fish/guestfish.pod:381
18337 msgid "B<-V>"
18338 msgstr ""
18339
18340 #. type: =item
18341 #: ../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
18342 msgid "B<--version>"
18343 msgstr ""
18344
18345 #. type: textblock
18346 #: ../fish/guestfish.pod:385
18347 msgid "Display the guestfish / libguestfs version number and exit."
18348 msgstr ""
18349
18350 #. type: =item
18351 #: ../fish/guestfish.pod:387
18352 msgid "B<-w>"
18353 msgstr ""
18354
18355 #. type: =item
18356 #: ../fish/guestfish.pod:389
18357 msgid "B<--rw>"
18358 msgstr ""
18359
18360 #. type: textblock
18361 #: ../fish/guestfish.pod:391
18362 msgid ""
18363 "This option does nothing at the moment.  See L</OPENING DISKS FOR READ AND "
18364 "WRITE> below."
18365 msgstr ""
18366
18367 #. type: =item
18368 #: ../fish/guestfish.pod:394
18369 msgid "B<-x>"
18370 msgstr ""
18371
18372 #. type: textblock
18373 #: ../fish/guestfish.pod:396
18374 msgid "Echo each command before executing it."
18375 msgstr ""
18376
18377 #. type: =head1
18378 #: ../fish/guestfish.pod:400
18379 msgid "COMMANDS ON COMMAND LINE"
18380 msgstr ""
18381
18382 #. type: textblock
18383 #: ../fish/guestfish.pod:402
18384 msgid "Any additional (non-option) arguments are treated as commands to execute."
18385 msgstr ""
18386
18387 #. type: textblock
18388 #: ../fish/guestfish.pod:405
18389 msgid ""
18390 "Commands to execute should be separated by a colon (C<:>), where the colon "
18391 "is a separate parameter.  Thus:"
18392 msgstr ""
18393
18394 #. type: verbatim
18395 #: ../fish/guestfish.pod:408
18396 #, no-wrap
18397 msgid ""
18398 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
18399 "\n"
18400 msgstr ""
18401
18402 #. type: textblock
18403 #: ../fish/guestfish.pod:410
18404 msgid ""
18405 "If there are no additional arguments, then we enter a shell, either an "
18406 "interactive shell with a prompt (if the input is a terminal) or a "
18407 "non-interactive shell."
18408 msgstr ""
18409
18410 #. type: textblock
18411 #: ../fish/guestfish.pod:414
18412 msgid ""
18413 "In either command line mode or non-interactive shell, the first command that "
18414 "gives an error causes the whole shell to exit.  In interactive mode (with a "
18415 "prompt) if a command fails, you can continue to enter commands."
18416 msgstr ""
18417
18418 #. type: =head1
18419 #: ../fish/guestfish.pod:419
18420 msgid "USING launch (OR run)"
18421 msgstr ""
18422
18423 #. type: textblock
18424 #: ../fish/guestfish.pod:421
18425 msgid ""
18426 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
18427 "then launch it, then mount any disks you need, and finally issue "
18428 "actions/commands.  So the general order of the day is:"
18429 msgstr ""
18430
18431 #. type: textblock
18432 #: ../fish/guestfish.pod:429
18433 msgid "add or -a/--add"
18434 msgstr ""
18435
18436 #. type: textblock
18437 #: ../fish/guestfish.pod:433
18438 msgid "launch (aka run)"
18439 msgstr ""
18440
18441 #. type: textblock
18442 #: ../fish/guestfish.pod:437
18443 msgid "mount or -m/--mount"
18444 msgstr ""
18445
18446 #. type: textblock
18447 #: ../fish/guestfish.pod:441
18448 msgid "any other commands"
18449 msgstr ""
18450
18451 #. type: textblock
18452 #: ../fish/guestfish.pod:445
18453 msgid ""
18454 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
18455 "guest before mounting or performing any other commands."
18456 msgstr ""
18457
18458 #. type: textblock
18459 #: ../fish/guestfish.pod:448
18460 msgid ""
18461 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
18462 "I<--new> options were given then C<run> is done automatically, simply "
18463 "because guestfish can't perform the action you asked for without doing this."
18464 msgstr ""
18465
18466 #. type: =head1
18467 #: ../fish/guestfish.pod:453
18468 msgid "OPENING DISKS FOR READ AND WRITE"
18469 msgstr ""
18470
18471 #. type: textblock
18472 #: ../fish/guestfish.pod:455
18473 msgid ""
18474 "The guestfish (and L<guestmount(1)>) options I<--ro> and I<--rw> affect "
18475 "whether the other command line options I<-a>, I<-c>, I<-d>, I<-i> and I<-m> "
18476 "open disk images read-only or for writing."
18477 msgstr ""
18478
18479 #. type: textblock
18480 #: ../fish/guestfish.pod:459
18481 msgid ""
18482 "In libguestfs E<lt> 1.6.2, guestfish and guestmount defaulted to opening "
18483 "disk images supplied on the command line for write.  To open a disk image "
18484 "read-only you have to do I<-a image --ro>."
18485 msgstr ""
18486
18487 #. type: textblock
18488 #: ../fish/guestfish.pod:463
18489 msgid ""
18490 "This matters: If you accidentally open a live VM disk image writable then "
18491 "you will cause irreversible disk corruption."
18492 msgstr ""
18493
18494 #. type: textblock
18495 #: ../fish/guestfish.pod:466
18496 msgid ""
18497 "By libguestfs 1.10 we intend to change the default the other way.  Disk "
18498 "images will be opened read-only.  You will have to either specify "
18499 "I<guestfish --rw> or change a configuration file in order to get write "
18500 "access for disk images specified by those other command line options."
18501 msgstr ""
18502
18503 #. type: textblock
18504 #: ../fish/guestfish.pod:471
18505 msgid ""
18506 "This version of guestfish has a I<--rw> option which does nothing (it is "
18507 "already the default).  However it is highly recommended that you use this "
18508 "option to indicate that guestfish needs write access, and to prepare your "
18509 "scripts for the day when this option will be required for write access."
18510 msgstr ""
18511
18512 #. type: textblock
18513 #: ../fish/guestfish.pod:477
18514 msgid ""
18515 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
18516 "other libguestfs program apart from guestfish and guestmount."
18517 msgstr ""
18518
18519 #. type: =head1
18520 #: ../fish/guestfish.pod:480
18521 msgid "QUOTING"
18522 msgstr ""
18523
18524 #. type: textblock
18525 #: ../fish/guestfish.pod:482
18526 msgid ""
18527 "You can quote ordinary parameters using either single or double quotes.  For "
18528 "example:"
18529 msgstr ""
18530
18531 #. type: verbatim
18532 #: ../fish/guestfish.pod:485
18533 #, no-wrap
18534 msgid ""
18535 " add \"file with a space.img\"\n"
18536 "\n"
18537 msgstr ""
18538
18539 #. type: verbatim
18540 #: ../fish/guestfish.pod:487
18541 #, no-wrap
18542 msgid ""
18543 " rm '/file name'\n"
18544 "\n"
18545 msgstr ""
18546
18547 #. type: verbatim
18548 #: ../fish/guestfish.pod:489
18549 #, no-wrap
18550 msgid ""
18551 " rm '/\"'\n"
18552 "\n"
18553 msgstr ""
18554
18555 #. type: textblock
18556 #: ../fish/guestfish.pod:491
18557 msgid ""
18558 "A few commands require a list of strings to be passed.  For these, use a "
18559 "whitespace-separated list, enclosed in quotes.  Strings containing "
18560 "whitespace to be passed through must be enclosed in single quotes.  A "
18561 "literal single quote must be escaped with a backslash."
18562 msgstr ""
18563
18564 #. type: verbatim
18565 #: ../fish/guestfish.pod:496
18566 #, no-wrap
18567 msgid ""
18568 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
18569 " command \"/bin/echo 'foo      bar'\"\n"
18570 " command \"/bin/echo \\'foo\\'\"\n"
18571 "\n"
18572 msgstr ""
18573
18574 #. type: =head1
18575 #: ../fish/guestfish.pod:500
18576 msgid "OPTIONAL ARGUMENTS"
18577 msgstr ""
18578
18579 #. type: textblock
18580 #: ../fish/guestfish.pod:502
18581 msgid ""
18582 "Some commands take optional arguments.  These arguments appear in this "
18583 "documentation as C<[argname:..]>.  You can use them as in these examples:"
18584 msgstr ""
18585
18586 #. type: verbatim
18587 #: ../fish/guestfish.pod:506
18588 #, no-wrap
18589 msgid ""
18590 " add-drive-opts filename\n"
18591 "\n"
18592 msgstr ""
18593
18594 #. type: verbatim
18595 #: ../fish/guestfish.pod:508
18596 #, no-wrap
18597 msgid ""
18598 " add-drive-opts filename readonly:true\n"
18599 "\n"
18600 msgstr ""
18601
18602 #. type: verbatim
18603 #: ../fish/guestfish.pod:510
18604 #, no-wrap
18605 msgid ""
18606 " add-drive-opts filename format:qcow2 readonly:false\n"
18607 "\n"
18608 msgstr ""
18609
18610 #. type: textblock
18611 #: ../fish/guestfish.pod:512
18612 msgid ""
18613 "Each optional argument can appear at most once.  All optional arguments must "
18614 "appear after the required ones."
18615 msgstr ""
18616
18617 #. type: =head1
18618 #: ../fish/guestfish.pod:515
18619 msgid "NUMBERS"
18620 msgstr ""
18621
18622 #. type: textblock
18623 #: ../fish/guestfish.pod:517
18624 msgid "This section applies to all commands which can take integers as parameters."
18625 msgstr ""
18626
18627 #. type: =head2
18628 #: ../fish/guestfish.pod:520
18629 msgid "SIZE SUFFIX"
18630 msgstr ""
18631
18632 #. type: textblock
18633 #: ../fish/guestfish.pod:522
18634 msgid ""
18635 "When the command takes a parameter measured in bytes, you can use one of the "
18636 "following suffixes to specify kilobytes, megabytes and larger sizes:"
18637 msgstr ""
18638
18639 #. type: =item
18640 #: ../fish/guestfish.pod:528
18641 msgid "B<k> or B<K> or B<KiB>"
18642 msgstr ""
18643
18644 #. type: textblock
18645 #: ../fish/guestfish.pod:530
18646 msgid "The size in kilobytes (multiplied by 1024)."
18647 msgstr ""
18648
18649 #. type: =item
18650 #: ../fish/guestfish.pod:532
18651 msgid "B<KB>"
18652 msgstr ""
18653
18654 #. type: textblock
18655 #: ../fish/guestfish.pod:534
18656 msgid "The size in SI 1000 byte units."
18657 msgstr ""
18658
18659 #. type: =item
18660 #: ../fish/guestfish.pod:536
18661 msgid "B<M> or B<MiB>"
18662 msgstr ""
18663
18664 #. type: textblock
18665 #: ../fish/guestfish.pod:538
18666 msgid "The size in megabytes (multiplied by 1048576)."
18667 msgstr ""
18668
18669 #. type: =item
18670 #: ../fish/guestfish.pod:540
18671 msgid "B<MB>"
18672 msgstr ""
18673
18674 #. type: textblock
18675 #: ../fish/guestfish.pod:542
18676 msgid "The size in SI 1000000 byte units."
18677 msgstr ""
18678
18679 #. type: =item
18680 #: ../fish/guestfish.pod:544
18681 msgid "B<G> or B<GiB>"
18682 msgstr ""
18683
18684 #. type: textblock
18685 #: ../fish/guestfish.pod:546
18686 msgid "The size in gigabytes (multiplied by 2**30)."
18687 msgstr ""
18688
18689 #. type: =item
18690 #: ../fish/guestfish.pod:548
18691 msgid "B<GB>"
18692 msgstr ""
18693
18694 #. type: textblock
18695 #: ../fish/guestfish.pod:550
18696 msgid "The size in SI 10**9 byte units."
18697 msgstr ""
18698
18699 #. type: =item
18700 #: ../fish/guestfish.pod:552
18701 msgid "B<T> or B<TiB>"
18702 msgstr ""
18703
18704 #. type: textblock
18705 #: ../fish/guestfish.pod:554
18706 msgid "The size in terabytes (multiplied by 2**40)."
18707 msgstr ""
18708
18709 #. type: =item
18710 #: ../fish/guestfish.pod:556
18711 msgid "B<TB>"
18712 msgstr ""
18713
18714 #. type: textblock
18715 #: ../fish/guestfish.pod:558
18716 msgid "The size in SI 10**12 byte units."
18717 msgstr ""
18718
18719 #. type: =item
18720 #: ../fish/guestfish.pod:560
18721 msgid "B<P> or B<PiB>"
18722 msgstr ""
18723
18724 #. type: textblock
18725 #: ../fish/guestfish.pod:562
18726 msgid "The size in petabytes (multiplied by 2**50)."
18727 msgstr ""
18728
18729 #. type: =item
18730 #: ../fish/guestfish.pod:564
18731 msgid "B<PB>"
18732 msgstr ""
18733
18734 #. type: textblock
18735 #: ../fish/guestfish.pod:566
18736 msgid "The size in SI 10**15 byte units."
18737 msgstr ""
18738
18739 #. type: =item
18740 #: ../fish/guestfish.pod:568
18741 msgid "B<E> or B<EiB>"
18742 msgstr ""
18743
18744 #. type: textblock
18745 #: ../fish/guestfish.pod:570
18746 msgid "The size in exabytes (multiplied by 2**60)."
18747 msgstr ""
18748
18749 #. type: =item
18750 #: ../fish/guestfish.pod:572
18751 msgid "B<EB>"
18752 msgstr ""
18753
18754 #. type: textblock
18755 #: ../fish/guestfish.pod:574
18756 msgid "The size in SI 10**18 byte units."
18757 msgstr ""
18758
18759 #. type: =item
18760 #: ../fish/guestfish.pod:576
18761 msgid "B<Z> or B<ZiB>"
18762 msgstr ""
18763
18764 #. type: textblock
18765 #: ../fish/guestfish.pod:578
18766 msgid "The size in zettabytes (multiplied by 2**70)."
18767 msgstr ""
18768
18769 #. type: =item
18770 #: ../fish/guestfish.pod:580
18771 msgid "B<ZB>"
18772 msgstr ""
18773
18774 #. type: textblock
18775 #: ../fish/guestfish.pod:582
18776 msgid "The size in SI 10**21 byte units."
18777 msgstr ""
18778
18779 #. type: =item
18780 #: ../fish/guestfish.pod:584
18781 msgid "B<Y> or B<YiB>"
18782 msgstr ""
18783
18784 #. type: textblock
18785 #: ../fish/guestfish.pod:586
18786 msgid "The size in yottabytes (multiplied by 2**80)."
18787 msgstr ""
18788
18789 #. type: =item
18790 #: ../fish/guestfish.pod:588
18791 msgid "B<YB>"
18792 msgstr ""
18793
18794 #. type: textblock
18795 #: ../fish/guestfish.pod:590
18796 msgid "The size in SI 10**24 byte units."
18797 msgstr ""
18798
18799 #. type: verbatim
18800 #: ../fish/guestfish.pod:596
18801 #, no-wrap
18802 msgid ""
18803 " truncate-size /file 1G\n"
18804 "\n"
18805 msgstr ""
18806
18807 #. type: textblock
18808 #: ../fish/guestfish.pod:598
18809 msgid "would truncate the file to 1 gigabyte."
18810 msgstr ""
18811
18812 #. type: textblock
18813 #: ../fish/guestfish.pod:600
18814 msgid ""
18815 "Be careful because a few commands take sizes in kilobytes or megabytes "
18816 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
18817 "Adding a suffix will probably not do what you expect."
18818 msgstr ""
18819
18820 #. type: =head2
18821 #: ../fish/guestfish.pod:604
18822 msgid "OCTAL AND HEXADECIMAL NUMBERS"
18823 msgstr ""
18824
18825 #. type: textblock
18826 #: ../fish/guestfish.pod:606
18827 msgid ""
18828 "For specifying the radix (base) use the C convention: C<0> to prefix an "
18829 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
18830 msgstr ""
18831
18832 #. type: verbatim
18833 #: ../fish/guestfish.pod:609
18834 #, no-wrap
18835 msgid ""
18836 " 1234      decimal number 1234\n"
18837 " 02322     octal number, equivalent to decimal 1234\n"
18838 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
18839 "\n"
18840 msgstr ""
18841
18842 #. type: textblock
18843 #: ../fish/guestfish.pod:613
18844 msgid ""
18845 "When using the C<chmod> command, you almost always want to specify an octal "
18846 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
18847 "L<chmod(1)> program):"
18848 msgstr ""
18849
18850 #. type: verbatim
18851 #: ../fish/guestfish.pod:617
18852 #, no-wrap
18853 msgid ""
18854 " chmod 0777 /public  # OK\n"
18855 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
18856 "\n"
18857 msgstr ""
18858
18859 #. type: textblock
18860 #: ../fish/guestfish.pod:620
18861 msgid ""
18862 "Commands that return numbers usually print them in decimal, but some "
18863 "commands print numbers in other radices (eg. C<umask> prints the mode in "
18864 "octal, preceeded by C<0>)."
18865 msgstr ""
18866
18867 #. type: =head1
18868 #: ../fish/guestfish.pod:624
18869 msgid "WILDCARDS AND GLOBBING"
18870 msgstr ""
18871
18872 #. type: textblock
18873 #: ../fish/guestfish.pod:626
18874 msgid ""
18875 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
18876 "(globbing) by default.  So for example the following will not do what you "
18877 "expect:"
18878 msgstr ""
18879
18880 #. type: verbatim
18881 #: ../fish/guestfish.pod:630
18882 #, no-wrap
18883 msgid ""
18884 " rm-rf /home/*\n"
18885 "\n"
18886 msgstr ""
18887
18888 #. type: textblock
18889 #: ../fish/guestfish.pod:632
18890 msgid ""
18891 "Assuming you don't have a directory called literally C</home/*> then the "
18892 "above command will return an error."
18893 msgstr ""
18894
18895 #. type: textblock
18896 #: ../fish/guestfish.pod:635
18897 msgid "To perform wildcard expansion, use the C<glob> command."
18898 msgstr ""
18899
18900 #. type: verbatim
18901 #: ../fish/guestfish.pod:637
18902 #, no-wrap
18903 msgid ""
18904 " glob rm-rf /home/*\n"
18905 "\n"
18906 msgstr ""
18907
18908 #. type: textblock
18909 #: ../fish/guestfish.pod:639
18910 msgid ""
18911 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
18912 "many times), equivalent to:"
18913 msgstr ""
18914
18915 #. type: verbatim
18916 #: ../fish/guestfish.pod:642
18917 #, no-wrap
18918 msgid ""
18919 " rm-rf /home/jim\n"
18920 " rm-rf /home/joe\n"
18921 " rm-rf /home/mary\n"
18922 "\n"
18923 msgstr ""
18924
18925 #. type: textblock
18926 #: ../fish/guestfish.pod:646
18927 msgid "C<glob> only works on simple guest paths and not on device names."
18928 msgstr ""
18929
18930 #. type: textblock
18931 #: ../fish/guestfish.pod:648
18932 msgid ""
18933 "If you have several parameters, each containing a wildcard, then glob will "
18934 "perform a Cartesian product."
18935 msgstr ""
18936
18937 #. type: =head1
18938 #: ../fish/guestfish.pod:651
18939 msgid "COMMENTS"
18940 msgstr ""
18941
18942 #. type: textblock
18943 #: ../fish/guestfish.pod:653
18944 msgid ""
18945 "Any line which starts with a I<#> character is treated as a comment and "
18946 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
18947 "a command.  For example:"
18948 msgstr ""
18949
18950 #. type: verbatim
18951 #: ../fish/guestfish.pod:657
18952 #, no-wrap
18953 msgid ""
18954 " # this is a comment\n"
18955 "         # this is a comment\n"
18956 " foo # NOT a comment\n"
18957 "\n"
18958 msgstr ""
18959
18960 #. type: textblock
18961 #: ../fish/guestfish.pod:661
18962 msgid "Blank lines are also ignored."
18963 msgstr ""
18964
18965 #. type: =head1
18966 #: ../fish/guestfish.pod:663
18967 msgid "RUNNING COMMANDS LOCALLY"
18968 msgstr ""
18969
18970 #. type: textblock
18971 #: ../fish/guestfish.pod:665
18972 msgid ""
18973 "Any line which starts with a I<!> character is treated as a command sent to "
18974 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
18975 msgstr ""
18976
18977 #. type: verbatim
18978 #: ../fish/guestfish.pod:669
18979 #, no-wrap
18980 msgid ""
18981 " !mkdir local\n"
18982 " tgz-out /remote local/remote-data.tar.gz\n"
18983 "\n"
18984 msgstr ""
18985
18986 #. type: textblock
18987 #: ../fish/guestfish.pod:672
18988 msgid ""
18989 "will create a directory C<local> on the host, and then export the contents "
18990 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
18991 "(See C<tgz-out>)."
18992 msgstr ""
18993
18994 #. type: textblock
18995 #: ../fish/guestfish.pod:676
18996 msgid ""
18997 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
18998 "effect, due to the way that subprocesses work in Unix."
18999 msgstr ""
19000
19001 #. type: =head1
19002 #: ../fish/guestfish.pod:679
19003 msgid "PIPES"
19004 msgstr ""
19005
19006 #. type: textblock
19007 #: ../fish/guestfish.pod:681
19008 msgid ""
19009 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
19010 "command (a guestfish command) to the second command (any host command).  For "
19011 "example:"
19012 msgstr ""
19013
19014 #. type: verbatim
19015 #: ../fish/guestfish.pod:685
19016 #, no-wrap
19017 msgid ""
19018 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
19019 "\n"
19020 msgstr ""
19021
19022 #. type: textblock
19023 #: ../fish/guestfish.pod:687
19024 msgid ""
19025 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
19026 "program).  The above command would list all accounts in the guest filesystem "
19027 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
19028 msgstr ""
19029
19030 #. type: verbatim
19031 #: ../fish/guestfish.pod:692
19032 #, no-wrap
19033 msgid ""
19034 " hexdump /bin/ls | head\n"
19035 " list-devices | tail -1\n"
19036 " tgz-out / - | tar ztf -\n"
19037 "\n"
19038 msgstr ""
19039
19040 #. type: textblock
19041 #: ../fish/guestfish.pod:696
19042 msgid ""
19043 "The space before the pipe symbol is required, any space after the pipe "
19044 "symbol is optional.  Everything after the pipe symbol is just passed "
19045 "straight to the host shell, so it can contain redirections, globs and "
19046 "anything else that makes sense on the host side."
19047 msgstr ""
19048
19049 #. type: textblock
19050 #: ../fish/guestfish.pod:701
19051 msgid ""
19052 "To use a literal argument which begins with a pipe symbol, you have to quote "
19053 "it, eg:"
19054 msgstr ""
19055
19056 #. type: verbatim
19057 #: ../fish/guestfish.pod:704
19058 #, no-wrap
19059 msgid ""
19060 " echo \"|\"\n"
19061 "\n"
19062 msgstr ""
19063
19064 #. type: =head1
19065 #: ../fish/guestfish.pod:706
19066 msgid "HOME DIRECTORIES"
19067 msgstr ""
19068
19069 #. type: textblock
19070 #: ../fish/guestfish.pod:708
19071 msgid ""
19072 "If a parameter starts with the character C<~> then the tilde may be expanded "
19073 "as a home directory path (either C<~> for the current user's home directory, "
19074 "or C<~user> for another user)."
19075 msgstr ""
19076
19077 #. type: textblock
19078 #: ../fish/guestfish.pod:712
19079 msgid ""
19080 "Note that home directory expansion happens for users known I<on the host>, "
19081 "not in the guest filesystem."
19082 msgstr ""
19083
19084 #. type: textblock
19085 #: ../fish/guestfish.pod:715
19086 msgid ""
19087 "To use a literal argument which begins with a tilde, you have to quote it, "
19088 "eg:"
19089 msgstr ""
19090
19091 #. type: verbatim
19092 #: ../fish/guestfish.pod:718
19093 #, no-wrap
19094 msgid ""
19095 " echo \"~\"\n"
19096 "\n"
19097 msgstr ""
19098
19099 #. type: textblock
19100 #: ../fish/guestfish.pod:722
19101 msgid ""
19102 "Libguestfs has some support for Linux guests encrypted according to the "
19103 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
19104 "disk encryption systems used by modern Linux guests.  Currently only "
19105 "LVM-on-LUKS is supported."
19106 msgstr ""
19107
19108 #. type: textblock
19109 #: ../fish/guestfish.pod:727
19110 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
19111 msgstr ""
19112
19113 #. type: verbatim
19114 #: ../fish/guestfish.pod:729
19115 #, no-wrap
19116 msgid ""
19117 " ><fs> vfs-type /dev/sda2\n"
19118 " crypto_LUKS\n"
19119 "\n"
19120 msgstr ""
19121
19122 #. type: textblock
19123 #: ../fish/guestfish.pod:732
19124 msgid ""
19125 "Then open those devices using L</luks-open>.  This creates a device-mapper "
19126 "device called C</dev/mapper/luksdev>."
19127 msgstr ""
19128
19129 #. type: verbatim
19130 #: ../fish/guestfish.pod:735
19131 #, no-wrap
19132 msgid ""
19133 " ><fs> luks-open /dev/sda2 luksdev\n"
19134 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
19135 "\n"
19136 msgstr ""
19137
19138 #. type: textblock
19139 #: ../fish/guestfish.pod:738
19140 msgid ""
19141 "Finally you have to tell LVM to scan for volume groups on the newly created "
19142 "mapper device:"
19143 msgstr ""
19144
19145 #. type: verbatim
19146 #: ../fish/guestfish.pod:741
19147 #, no-wrap
19148 msgid ""
19149 " vgscan\n"
19150 " vg-activate-all true\n"
19151 "\n"
19152 msgstr ""
19153
19154 #. type: textblock
19155 #: ../fish/guestfish.pod:744
19156 msgid "The logical volume(s) can now be mounted in the usual way."
19157 msgstr ""
19158
19159 #. type: textblock
19160 #: ../fish/guestfish.pod:746
19161 msgid ""
19162 "Before closing a LUKS device you must unmount any logical volumes on it and "
19163 "deactivate the volume groups by calling C<vg-activate false VG> on each "
19164 "one.  Then you can close the mapper device:"
19165 msgstr ""
19166
19167 #. type: verbatim
19168 #: ../fish/guestfish.pod:750
19169 #, no-wrap
19170 msgid ""
19171 " vg-activate false /dev/VG\n"
19172 " luks-close /dev/mapper/luksdev\n"
19173 "\n"
19174 msgstr ""
19175
19176 #. type: =head1
19177 #: ../fish/guestfish.pod:753
19178 msgid "WINDOWS PATHS"
19179 msgstr ""
19180
19181 #. type: textblock
19182 #: ../fish/guestfish.pod:755
19183 msgid ""
19184 "If a path is prefixed with C<win:> then you can use Windows-style paths "
19185 "(with some limitations).  The following commands are equivalent:"
19186 msgstr ""
19187
19188 #. type: verbatim
19189 #: ../fish/guestfish.pod:758
19190 #, no-wrap
19191 msgid ""
19192 " file /WINDOWS/system32/config/system.LOG\n"
19193 "\n"
19194 msgstr ""
19195
19196 #. type: verbatim
19197 #: ../fish/guestfish.pod:760
19198 #, no-wrap
19199 msgid ""
19200 " file win:/windows/system32/config/system.log\n"
19201 "\n"
19202 msgstr ""
19203
19204 #. type: verbatim
19205 #: ../fish/guestfish.pod:762
19206 #, no-wrap
19207 msgid ""
19208 " file win:\\windows\\system32\\config\\system.log\n"
19209 "\n"
19210 msgstr ""
19211
19212 #. type: verbatim
19213 #: ../fish/guestfish.pod:764
19214 #, no-wrap
19215 msgid ""
19216 " file WIN:C:\\Windows\\SYSTEM32\\conFIG\\SYSTEM.LOG\n"
19217 "\n"
19218 msgstr ""
19219
19220 #. type: textblock
19221 #: ../fish/guestfish.pod:766
19222 msgid ""
19223 "This syntax implicitly calls C<case-sensitive-path> (q.v.) so it also "
19224 "handles case insensitivity like Windows would.  This only works in argument "
19225 "positions that expect a path."
19226 msgstr ""
19227
19228 #. type: =head1
19229 #: ../fish/guestfish.pod:770
19230 msgid "UPLOADING AND DOWNLOADING FILES"
19231 msgstr ""
19232
19233 #. type: textblock
19234 #: ../fish/guestfish.pod:772
19235 msgid ""
19236 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
19237 "others which upload from or download to a local file, you can use the "
19238 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
19239 msgstr ""
19240
19241 #. type: verbatim
19242 #: ../fish/guestfish.pod:776
19243 #, no-wrap
19244 msgid ""
19245 " upload - /foo\n"
19246 "\n"
19247 msgstr ""
19248
19249 #. type: textblock
19250 #: ../fish/guestfish.pod:778
19251 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
19252 msgstr ""
19253
19254 #. type: verbatim
19255 #: ../fish/guestfish.pod:781
19256 #, no-wrap
19257 msgid ""
19258 " tar-out /etc - | tar tf -\n"
19259 "\n"
19260 msgstr ""
19261
19262 #. type: textblock
19263 #: ../fish/guestfish.pod:783
19264 msgid ""
19265 "writes the tarball to stdout and then pipes that into the external \"tar\" "
19266 "command (see L</PIPES>)."
19267 msgstr ""
19268
19269 #. type: textblock
19270 #: ../fish/guestfish.pod:786
19271 msgid ""
19272 "When using C<-> to read from stdin, the input is read up to the end of "
19273 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
19274 "some arbitrary end marker:"
19275 msgstr ""
19276
19277 #. type: verbatim
19278 #: ../fish/guestfish.pod:790
19279 #, no-wrap
19280 msgid ""
19281 " upload -<<END /foo\n"
19282 " input line 1\n"
19283 " input line 2\n"
19284 " input line 3\n"
19285 " END\n"
19286 "\n"
19287 msgstr ""
19288
19289 #. type: textblock
19290 #: ../fish/guestfish.pod:796
19291 msgid ""
19292 "Any string of characters can be used instead of C<END>.  The end marker must "
19293 "appear on a line of its own, without any preceeding or following characters "
19294 "(not even spaces)."
19295 msgstr ""
19296
19297 #. type: textblock
19298 #: ../fish/guestfish.pod:800
19299 msgid ""
19300 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
19301 "upload local files (so-called \"FileIn\" parameters in the generator)."
19302 msgstr ""
19303
19304 #. type: =head1
19305 #: ../fish/guestfish.pod:803
19306 msgid "EXIT ON ERROR BEHAVIOUR"
19307 msgstr ""
19308
19309 #. type: textblock
19310 #: ../fish/guestfish.pod:805
19311 msgid ""
19312 "By default, guestfish will ignore any errors when in interactive mode "
19313 "(ie. taking commands from a human over a tty), and will exit on the first "
19314 "error in non-interactive mode (scripts, commands given on the command line)."
19315 msgstr ""
19316
19317 #. type: textblock
19318 #: ../fish/guestfish.pod:810
19319 msgid ""
19320 "If you prefix a command with a I<-> character, then that command will not "
19321 "cause guestfish to exit, even if that (one) command returns an error."
19322 msgstr ""
19323
19324 #. type: =head1
19325 #: ../fish/guestfish.pod:814
19326 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
19327 msgstr ""
19328
19329 #. type: textblock
19330 #: ../fish/guestfish.pod:816
19331 msgid ""
19332 "Guestfish can be remote-controlled over a socket.  This is useful "
19333 "particularly in shell scripts where you want to make several different "
19334 "changes to a filesystem, but you don't want the overhead of starting up a "
19335 "guestfish process each time."
19336 msgstr ""
19337
19338 #. type: textblock
19339 #: ../fish/guestfish.pod:821
19340 msgid "Start a guestfish server process using:"
19341 msgstr ""
19342
19343 #. type: verbatim
19344 #: ../fish/guestfish.pod:823
19345 #, no-wrap
19346 msgid ""
19347 " eval \"`guestfish --listen`\"\n"
19348 "\n"
19349 msgstr ""
19350
19351 #. type: textblock
19352 #: ../fish/guestfish.pod:825
19353 msgid "and then send it commands by doing:"
19354 msgstr ""
19355
19356 #. type: verbatim
19357 #: ../fish/guestfish.pod:827
19358 #, no-wrap
19359 msgid ""
19360 " guestfish --remote cmd [...]\n"
19361 "\n"
19362 msgstr ""
19363
19364 #. type: textblock
19365 #: ../fish/guestfish.pod:829
19366 msgid "To cause the server to exit, send it the exit command:"
19367 msgstr ""
19368
19369 #. type: verbatim
19370 #: ../fish/guestfish.pod:831
19371 #, no-wrap
19372 msgid ""
19373 " guestfish --remote exit\n"
19374 "\n"
19375 msgstr ""
19376
19377 #. type: textblock
19378 #: ../fish/guestfish.pod:833
19379 msgid ""
19380 "Note that the server will normally exit if there is an error in a command.  "
19381 "You can change this in the usual way.  See section L</EXIT ON ERROR "
19382 "BEHAVIOUR>."
19383 msgstr ""
19384
19385 #. type: =head2
19386 #: ../fish/guestfish.pod:837
19387 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
19388 msgstr ""
19389
19390 #. type: textblock
19391 #: ../fish/guestfish.pod:839
19392 msgid ""
19393 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
19394 "is how the I<--remote> option knows where to send the commands.  You can "
19395 "have several guestfish listener processes running using:"
19396 msgstr ""
19397
19398 #. type: verbatim
19399 #: ../fish/guestfish.pod:843
19400 #, no-wrap
19401 msgid ""
19402 " eval \"`guestfish --listen`\"\n"
19403 " pid1=$GUESTFISH_PID\n"
19404 " eval \"`guestfish --listen`\"\n"
19405 " pid2=$GUESTFISH_PID\n"
19406 " ...\n"
19407 " guestfish --remote=$pid1 cmd\n"
19408 " guestfish --remote=$pid2 cmd\n"
19409 "\n"
19410 msgstr ""
19411
19412 #. type: =head2
19413 #: ../fish/guestfish.pod:851
19414 msgid "REMOTE CONTROL AND CSH"
19415 msgstr ""
19416
19417 #. type: textblock
19418 #: ../fish/guestfish.pod:853
19419 msgid ""
19420 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
19421 "option:"
19422 msgstr ""
19423
19424 #. type: verbatim
19425 #: ../fish/guestfish.pod:856
19426 #, no-wrap
19427 msgid ""
19428 " eval \"`guestfish --listen --csh`\"\n"
19429 "\n"
19430 msgstr ""
19431
19432 #. type: =head2
19433 #: ../fish/guestfish.pod:858
19434 msgid "REMOTE CONTROL DETAILS"
19435 msgstr ""
19436
19437 #. type: textblock
19438 #: ../fish/guestfish.pod:860
19439 msgid ""
19440 "Remote control happens over a Unix domain socket called "
19441 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
19442 "of the process, and C<$PID> is the process ID of the server."
19443 msgstr ""
19444
19445 #. type: textblock
19446 #: ../fish/guestfish.pod:864
19447 msgid "Guestfish client and server versions must match exactly."
19448 msgstr ""
19449
19450 #. type: =head1
19451 #: ../fish/guestfish.pod:866
19452 msgid "PREPARED DISK IMAGES"
19453 msgstr ""
19454
19455 #. type: textblock
19456 #: ../fish/guestfish.pod:868
19457 msgid ""
19458 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
19459 "preformatted disk images that guestfish can make for you to save typing.  "
19460 "This is particularly useful for testing purposes.  This option is used "
19461 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
19462 "can be mixed with I<-a>)."
19463 msgstr ""
19464
19465 #. type: textblock
19466 #: ../fish/guestfish.pod:874
19467 msgid ""
19468 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
19469 "the second and so on.  Existing files in the current directory are "
19470 "I<overwritten>."
19471 msgstr ""
19472
19473 #. type: textblock
19474 #: ../fish/guestfish.pod:878
19475 msgid ""
19476 "The type briefly describes how the disk should be sized, partitioned, how "
19477 "filesystem(s) should be created, and how content should be added.  "
19478 "Optionally the type can be followed by extra parameters, separated by C<:> "
19479 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
19480 "sparsely-allocated disk, containing a single partition, with the partition "
19481 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
19482 "on a 1GB disk instead."
19483 msgstr ""
19484
19485 #. type: textblock
19486 #: ../fish/guestfish.pod:886
19487 msgid "To list the available types and any extra parameters they take, run:"
19488 msgstr ""
19489
19490 #. type: textblock
19491 #: ../fish/guestfish.pod:890
19492 msgid ""
19493 "Note that the prepared filesystem is not mounted.  You would usually have to "
19494 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
19495 msgstr ""
19496
19497 #. type: textblock
19498 #: ../fish/guestfish.pod:894
19499 msgid ""
19500 "If any I<-N> or I<--new> options are given, the guest is automatically "
19501 "launched."
19502 msgstr ""
19503
19504 #. type: textblock
19505 #: ../fish/guestfish.pod:899
19506 msgid "Create a 100MB disk with an ext4-formatted partition:"
19507 msgstr ""
19508
19509 #. type: verbatim
19510 #: ../fish/guestfish.pod:901
19511 #, no-wrap
19512 msgid ""
19513 " guestfish -N fs:ext4\n"
19514 "\n"
19515 msgstr ""
19516
19517 #. type: textblock
19518 #: ../fish/guestfish.pod:903
19519 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
19520 msgstr ""
19521
19522 #. type: verbatim
19523 #: ../fish/guestfish.pod:905
19524 #, no-wrap
19525 msgid ""
19526 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
19527 "\n"
19528 msgstr ""
19529
19530 #. type: textblock
19531 #: ../fish/guestfish.pod:907
19532 msgid "Create a blank 200MB disk:"
19533 msgstr ""
19534
19535 #. type: verbatim
19536 #: ../fish/guestfish.pod:909
19537 #, no-wrap
19538 msgid ""
19539 " guestfish -N disk:200M\n"
19540 "\n"
19541 msgstr ""
19542
19543 #. type: =head1
19544 #: ../fish/guestfish.pod:911
19545 msgid "PROGRESS BARS"
19546 msgstr ""
19547
19548 #. type: textblock
19549 #: ../fish/guestfish.pod:913
19550 msgid ""
19551 "Some (not all) long-running commands send progress notification messages as "
19552 "they are running.  Guestfish turns these messages into progress bars."
19553 msgstr ""
19554
19555 #. type: textblock
19556 #: ../fish/guestfish.pod:917
19557 msgid ""
19558 "When a command that supports progress bars takes longer than two seconds to "
19559 "run, and if progress bars are enabled, then you will see one appearing below "
19560 "the command:"
19561 msgstr ""
19562
19563 #. type: verbatim
19564 #: ../fish/guestfish.pod:921
19565 #, no-wrap
19566 msgid ""
19567 " ><fs> copy-size /large-file /another-file 2048M\n"
19568 " / 10% [#####-----------------------------------------] 00:30\n"
19569 "\n"
19570 msgstr ""
19571
19572 #. type: textblock
19573 #: ../fish/guestfish.pod:924
19574 msgid ""
19575 "The spinner on the left hand side moves round once for every progress "
19576 "notification received from the backend.  This is a (reasonably) golden "
19577 "assurance that the command is \"doing something\" even if the progress bar "
19578 "is not moving, because the command is able to send the progress "
19579 "notifications.  When the bar reaches 100% and the command finishes, the "
19580 "spinner disappears."
19581 msgstr ""
19582
19583 #. type: textblock
19584 #: ../fish/guestfish.pod:931
19585 msgid ""
19586 "Progress bars are enabled by default when guestfish is used interactively.  "
19587 "You can enable them even for non-interactive modes using I<--progress-bars>, "
19588 "and you can disable them completely using I<--no-progress-bars>."
19589 msgstr ""
19590
19591 #. type: =head1
19592 #: ../fish/guestfish.pod:936
19593 msgid "GUESTFISH COMMANDS"
19594 msgstr ""
19595
19596 #. type: textblock
19597 #: ../fish/guestfish.pod:938
19598 msgid ""
19599 "The commands in this section are guestfish convenience commands, in other "
19600 "words, they are not part of the L<guestfs(3)> API."
19601 msgstr ""
19602
19603 #. type: =head2
19604 #: ../fish/guestfish.pod:941
19605 msgid "help"
19606 msgstr ""
19607
19608 #. type: verbatim
19609 #: ../fish/guestfish.pod:943
19610 #, no-wrap
19611 msgid ""
19612 " help\n"
19613 " help cmd\n"
19614 "\n"
19615 msgstr ""
19616
19617 #. type: textblock
19618 #: ../fish/guestfish.pod:946
19619 msgid "Without any parameter, this provides general help."
19620 msgstr ""
19621
19622 #. type: textblock
19623 #: ../fish/guestfish.pod:948
19624 msgid "With a C<cmd> parameter, this displays detailed help for that command."
19625 msgstr ""
19626
19627 #. type: =head2
19628 #: ../fish/guestfish.pod:950
19629 msgid "quit | exit"
19630 msgstr ""
19631
19632 #. type: textblock
19633 #: ../fish/guestfish.pod:952
19634 msgid "This exits guestfish.  You can also use C<^D> key."
19635 msgstr ""
19636
19637 #. type: textblock
19638 #: ../fish/guestfish.pod:954
19639 msgid "@FISH_COMMANDS@"
19640 msgstr ""
19641
19642 #. type: =head1
19643 #: ../fish/guestfish.pod:956
19644 msgid "COMMANDS"
19645 msgstr ""
19646
19647 #. type: =head1
19648 #: ../fish/guestfish.pod:960 ../test-tool/libguestfs-test-tool.pod:83
19649 msgid "EXIT CODE"
19650 msgstr ""
19651
19652 #. type: textblock
19653 #: ../fish/guestfish.pod:962
19654 msgid ""
19655 "guestfish returns 0 if the commands completed without error, or 1 if there "
19656 "was an error."
19657 msgstr ""
19658
19659 #. type: =item
19660 #: ../fish/guestfish.pod:969
19661 msgid "EDITOR"
19662 msgstr ""
19663
19664 #. type: textblock
19665 #: ../fish/guestfish.pod:971
19666 msgid ""
19667 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
19668 "C<vi>."
19669 msgstr ""
19670
19671 #. type: =item
19672 #: ../fish/guestfish.pod:974
19673 msgid "GUESTFISH_PID"
19674 msgstr ""
19675
19676 #. type: textblock
19677 #: ../fish/guestfish.pod:976
19678 msgid ""
19679 "Used with the I<--remote> option to specify the remote guestfish process to "
19680 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
19681 msgstr ""
19682
19683 #. type: =item
19684 #: ../fish/guestfish.pod:980
19685 msgid "HEXEDITOR"
19686 msgstr ""
19687
19688 #. type: textblock
19689 #: ../fish/guestfish.pod:982
19690 msgid ""
19691 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
19692 "not specified, the external L<hexedit(1)> program is used."
19693 msgstr ""
19694
19695 #. type: =item
19696 #: ../fish/guestfish.pod:986
19697 msgid "HOME"
19698 msgstr ""
19699
19700 #. type: textblock
19701 #: ../fish/guestfish.pod:988
19702 msgid ""
19703 "If compiled with GNU readline support, various files in the home directory "
19704 "can be used.  See L</FILES>."
19705 msgstr ""
19706
19707 #. type: textblock
19708 #: ../fish/guestfish.pod:997
19709 msgid ""
19710 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
19711 "effect as using the B<-v> option."
19712 msgstr ""
19713
19714 #. type: textblock
19715 #: ../fish/guestfish.pod:1009
19716 msgid ""
19717 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
19718 "the discussion of paths in L<guestfs(3)>."
19719 msgstr ""
19720
19721 #. type: textblock
19722 #: ../fish/guestfish.pod:1020
19723 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
19724 msgstr ""
19725
19726 #. type: =item
19727 #: ../fish/guestfish.pod:1022
19728 msgid "PAGER"
19729 msgstr ""
19730
19731 #. type: textblock
19732 #: ../fish/guestfish.pod:1024
19733 msgid ""
19734 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
19735 "C<more>."
19736 msgstr ""
19737
19738 #. type: =head1
19739 #: ../fish/guestfish.pod:1039 ../test-tool/libguestfs-test-tool.pod:88
19740 msgid "FILES"
19741 msgstr ""
19742
19743 #. type: =item
19744 #: ../fish/guestfish.pod:1043
19745 msgid "$HOME/.guestfish"
19746 msgstr ""
19747
19748 #. type: textblock
19749 #: ../fish/guestfish.pod:1045
19750 msgid ""
19751 "If compiled with GNU readline support, then the command history is saved in "
19752 "this file."
19753 msgstr ""
19754
19755 #. type: =item
19756 #: ../fish/guestfish.pod:1048
19757 msgid "$HOME/.inputrc"
19758 msgstr ""
19759
19760 #. type: =item
19761 #: ../fish/guestfish.pod:1050
19762 msgid "/etc/inputrc"
19763 msgstr ""
19764
19765 #. type: textblock
19766 #: ../fish/guestfish.pod:1052
19767 msgid ""
19768 "If compiled with GNU readline support, then these files can be used to "
19769 "configure readline.  For further information, please see "
19770 "L<readline(3)/INITIALIZATION FILE>."
19771 msgstr ""
19772
19773 #. type: textblock
19774 #: ../fish/guestfish.pod:1056
19775 msgid "To write rules which only apply to guestfish, use:"
19776 msgstr ""
19777
19778 #. type: verbatim
19779 #: ../fish/guestfish.pod:1058
19780 #, no-wrap
19781 msgid ""
19782 " $if guestfish\n"
19783 " ...\n"
19784 " $endif\n"
19785 "\n"
19786 msgstr ""
19787
19788 #. type: textblock
19789 #: ../fish/guestfish.pod:1062
19790 msgid ""
19791 "Variables that you can set in inputrc that change the behaviour of guestfish "
19792 "in useful ways include:"
19793 msgstr ""
19794
19795 #. type: =item
19796 #: ../fish/guestfish.pod:1067
19797 msgid "completion-ignore-case (default: on)"
19798 msgstr ""
19799
19800 #. type: textblock
19801 #: ../fish/guestfish.pod:1069
19802 msgid ""
19803 "By default, guestfish will ignore case when tab-completing paths on the "
19804 "disk.  Use:"
19805 msgstr ""
19806
19807 #. type: verbatim
19808 #: ../fish/guestfish.pod:1072
19809 #, no-wrap
19810 msgid ""
19811 " set completion-ignore-case off\n"
19812 "\n"
19813 msgstr ""
19814
19815 #. type: textblock
19816 #: ../fish/guestfish.pod:1074
19817 msgid "to make guestfish case sensitive."
19818 msgstr ""
19819
19820 #. type: =item
19821 #: ../fish/guestfish.pod:1078
19822 msgid "test1.img"
19823 msgstr ""
19824
19825 #. type: =item
19826 #: ../fish/guestfish.pod:1080
19827 msgid "test2.img (etc)"
19828 msgstr ""
19829
19830 #. type: textblock
19831 #: ../fish/guestfish.pod:1082
19832 msgid ""
19833 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
19834 "will be created in the file C<test1.img> in the current directory.  The "
19835 "second use of C<-N> will use C<test2.img> and so on.  Any existing file with "
19836 "the same name will be overwritten."
19837 msgstr ""
19838
19839 #. type: textblock
19840 #: ../fish/guestfish.pod:1091
19841 msgid ""
19842 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-df(1)>, "
19843 "L<virt-edit(1)>, L<virt-filesystems(1)>, L<virt-inspector(1)>, "
19844 "L<virt-list-filesystems(1)>, L<virt-list-partitions(1)>, L<virt-ls(1)>, "
19845 "L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, "
19846 "L<virt-win-reg(1)>, L<hexedit(1)>."
19847 msgstr ""
19848
19849 #. type: textblock
19850 #: ../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
19851 msgid ""
19852 "This program is free software; you can redistribute it and/or modify it "
19853 "under the terms of the GNU General Public License as published by the Free "
19854 "Software Foundation; either version 2 of the License, or (at your option) "
19855 "any later version."
19856 msgstr ""
19857
19858 #. type: textblock
19859 #: ../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
19860 msgid ""
19861 "This program is distributed in the hope that it will be useful, but WITHOUT "
19862 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
19863 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
19864 "more details."
19865 msgstr ""
19866
19867 #. type: textblock
19868 #: ../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
19869 msgid ""
19870 "You should have received a copy of the GNU General Public License along with "
19871 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
19872 "Ave, Cambridge, MA 02139, USA."
19873 msgstr ""
19874
19875 #. type: =head2
19876 #: ../fish/guestfish-actions.pod:1
19877 msgid "add-cdrom"
19878 msgstr ""
19879
19880 #. type: verbatim
19881 #: ../fish/guestfish-actions.pod:3
19882 #, no-wrap
19883 msgid ""
19884 " add-cdrom filename\n"
19885 "\n"
19886 msgstr ""
19887
19888 #. type: textblock
19889 #: ../fish/guestfish-actions.pod:15
19890 msgid ""
19891 "This call checks for the existence of C<filename>.  This stops you from "
19892 "specifying other types of drive which are supported by qemu such as C<nbd:> "
19893 "and C<http:> URLs.  To specify those, use the general L</config> call "
19894 "instead."
19895 msgstr ""
19896
19897 #. type: textblock
19898 #: ../fish/guestfish-actions.pod:22
19899 msgid ""
19900 "If you just want to add an ISO file (often you use this as an efficient way "
19901 "to transfer large files into the guest), then you should probably use "
19902 "L</add-drive-ro> instead."
19903 msgstr ""
19904
19905 #. type: =head2
19906 #: ../fish/guestfish-actions.pod:35
19907 msgid "add-domain"
19908 msgstr ""
19909
19910 #. type: =head2
19911 #: ../fish/guestfish-actions.pod:37
19912 msgid "domain"
19913 msgstr ""
19914
19915 #. type: verbatim
19916 #: ../fish/guestfish-actions.pod:39
19917 #, no-wrap
19918 msgid ""
19919 " add-domain dom [libvirturi:..] [readonly:..] [iface:..]\n"
19920 "\n"
19921 msgstr ""
19922
19923 #. type: textblock
19924 #: ../fish/guestfish-actions.pod:41
19925 msgid ""
19926 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
19927 "It works by connecting to libvirt, requesting the domain and domain XML from "
19928 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
19929 msgstr ""
19930
19931 #. type: textblock
19932 #: ../fish/guestfish-actions.pod:64
19933 msgid ""
19934 "The other optional parameters are passed directly through to "
19935 "L</add-drive-opts>."
19936 msgstr ""
19937
19938 #. type: textblock
19939 #: ../fish/guestfish-actions.pod:67 ../fish/guestfish-actions.pod:131 ../fish/guestfish-actions.pod:2848
19940 msgid ""
19941 "This command has one or more optional arguments.  See L</OPTIONAL "
19942 "ARGUMENTS>."
19943 msgstr ""
19944
19945 #. type: =head2
19946 #: ../fish/guestfish-actions.pod:69
19947 msgid "add-drive"
19948 msgstr ""
19949
19950 #. type: verbatim
19951 #: ../fish/guestfish-actions.pod:71
19952 #, no-wrap
19953 msgid ""
19954 " add-drive filename\n"
19955 "\n"
19956 msgstr ""
19957
19958 #. type: textblock
19959 #: ../fish/guestfish-actions.pod:73
19960 msgid ""
19961 "This function is the equivalent of calling L</add-drive-opts> with no "
19962 "optional parameters, so the disk is added writable, with the format being "
19963 "detected automatically."
19964 msgstr ""
19965
19966 #. type: textblock
19967 #: ../fish/guestfish-actions.pod:77
19968 msgid ""
19969 "Automatic detection of the format opens you up to a potential security hole "
19970 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
19971 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
19972 "you should think about replacing calls to this function with calls to "
19973 "L</add-drive-opts>, and specifying the format."
19974 msgstr ""
19975
19976 #. type: =head2
19977 #: ../fish/guestfish-actions.pod:84
19978 msgid "add-drive-opts"
19979 msgstr ""
19980
19981 #. type: =head2
19982 #: ../fish/guestfish-actions.pod:86
19983 msgid "add"
19984 msgstr ""
19985
19986 #. type: verbatim
19987 #: ../fish/guestfish-actions.pod:88
19988 #, no-wrap
19989 msgid ""
19990 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
19991 "\n"
19992 msgstr ""
19993
19994 #. type: textblock
19995 #: ../fish/guestfish-actions.pod:115
19996 msgid ""
19997 "This forces the image format.  If you omit this (or use L</add-drive> or "
19998 "L</add-drive-ro>) then the format is automatically detected.  Possible "
19999 "formats include C<raw> and C<qcow2>."
20000 msgstr ""
20001
20002 #. type: textblock
20003 #: ../fish/guestfish-actions.pod:126
20004 msgid ""
20005 "This rarely-used option lets you emulate the behaviour of the deprecated "
20006 "L</add-drive-with-if> call (q.v.)"
20007 msgstr ""
20008
20009 #. type: =head2
20010 #: ../fish/guestfish-actions.pod:133
20011 msgid "add-drive-ro"
20012 msgstr ""
20013
20014 #. type: =head2
20015 #: ../fish/guestfish-actions.pod:135
20016 msgid "add-ro"
20017 msgstr ""
20018
20019 #. type: verbatim
20020 #: ../fish/guestfish-actions.pod:137
20021 #, no-wrap
20022 msgid ""
20023 " add-drive-ro filename\n"
20024 "\n"
20025 msgstr ""
20026
20027 #. type: textblock
20028 #: ../fish/guestfish-actions.pod:139
20029 msgid ""
20030 "This function is the equivalent of calling L</add-drive-opts> with the "
20031 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
20032 "is added read-only, with the format being detected automatically."
20033 msgstr ""
20034
20035 #. type: =head2
20036 #: ../fish/guestfish-actions.pod:144
20037 msgid "add-drive-ro-with-if"
20038 msgstr ""
20039
20040 #. type: verbatim
20041 #: ../fish/guestfish-actions.pod:146
20042 #, no-wrap
20043 msgid ""
20044 " add-drive-ro-with-if filename iface\n"
20045 "\n"
20046 msgstr ""
20047
20048 #. type: textblock
20049 #: ../fish/guestfish-actions.pod:148
20050 msgid ""
20051 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
20052 "interface emulation to use at run time."
20053 msgstr ""
20054
20055 #. type: =head2
20056 #: ../fish/guestfish-actions.pod:158
20057 msgid "add-drive-with-if"
20058 msgstr ""
20059
20060 #. type: verbatim
20061 #: ../fish/guestfish-actions.pod:160
20062 #, no-wrap
20063 msgid ""
20064 " add-drive-with-if filename iface\n"
20065 "\n"
20066 msgstr ""
20067
20068 #. type: textblock
20069 #: ../fish/guestfish-actions.pod:162
20070 msgid ""
20071 "This is the same as L</add-drive> but it allows you to specify the QEMU "
20072 "interface emulation to use at run time."
20073 msgstr ""
20074
20075 #. type: =head2
20076 #: ../fish/guestfish-actions.pod:172
20077 msgid "aug-clear"
20078 msgstr ""
20079
20080 #. type: verbatim
20081 #: ../fish/guestfish-actions.pod:174
20082 #, no-wrap
20083 msgid ""
20084 " aug-clear augpath\n"
20085 "\n"
20086 msgstr ""
20087
20088 #. type: =head2
20089 #: ../fish/guestfish-actions.pod:179
20090 msgid "aug-close"
20091 msgstr ""
20092
20093 #. type: verbatim
20094 #: ../fish/guestfish-actions.pod:181
20095 #, no-wrap
20096 msgid ""
20097 " aug-close\n"
20098 "\n"
20099 msgstr ""
20100
20101 #. type: textblock
20102 #: ../fish/guestfish-actions.pod:183
20103 msgid ""
20104 "Close the current Augeas handle and free up any resources used by it.  After "
20105 "calling this, you have to call L</aug-init> again before you can use any "
20106 "other Augeas functions."
20107 msgstr ""
20108
20109 #. type: =head2
20110 #: ../fish/guestfish-actions.pod:188
20111 msgid "aug-defnode"
20112 msgstr ""
20113
20114 #. type: verbatim
20115 #: ../fish/guestfish-actions.pod:190
20116 #, no-wrap
20117 msgid ""
20118 " aug-defnode name expr val\n"
20119 "\n"
20120 msgstr ""
20121
20122 #. type: textblock
20123 #: ../fish/guestfish-actions.pod:195
20124 msgid ""
20125 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
20126 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
20127 "containing that single node."
20128 msgstr ""
20129
20130 #. type: =head2
20131 #: ../fish/guestfish-actions.pod:203
20132 msgid "aug-defvar"
20133 msgstr ""
20134
20135 #. type: verbatim
20136 #: ../fish/guestfish-actions.pod:205
20137 #, no-wrap
20138 msgid ""
20139 " aug-defvar name expr\n"
20140 "\n"
20141 msgstr ""
20142
20143 #. type: =head2
20144 #: ../fish/guestfish-actions.pod:214
20145 msgid "aug-get"
20146 msgstr ""
20147
20148 #. type: verbatim
20149 #: ../fish/guestfish-actions.pod:216
20150 #, no-wrap
20151 msgid ""
20152 " aug-get augpath\n"
20153 "\n"
20154 msgstr ""
20155
20156 #. type: =head2
20157 #: ../fish/guestfish-actions.pod:221
20158 msgid "aug-init"
20159 msgstr ""
20160
20161 #. type: verbatim
20162 #: ../fish/guestfish-actions.pod:223
20163 #, no-wrap
20164 msgid ""
20165 " aug-init root flags\n"
20166 "\n"
20167 msgstr ""
20168
20169 #. type: textblock
20170 #: ../fish/guestfish-actions.pod:229
20171 msgid "You must call this before using any other L</aug-*> commands."
20172 msgstr ""
20173
20174 #. type: textblock
20175 #: ../fish/guestfish-actions.pod:264
20176 msgid "Do not load the tree in L</aug-init>."
20177 msgstr ""
20178
20179 #. type: textblock
20180 #: ../fish/guestfish-actions.pod:268
20181 msgid "To close the handle, you can call L</aug-close>."
20182 msgstr ""
20183
20184 #. type: =head2
20185 #: ../fish/guestfish-actions.pod:272
20186 msgid "aug-insert"
20187 msgstr ""
20188
20189 #. type: verbatim
20190 #: ../fish/guestfish-actions.pod:274
20191 #, no-wrap
20192 msgid ""
20193 " aug-insert augpath label true|false\n"
20194 "\n"
20195 msgstr ""
20196
20197 #. type: =head2
20198 #: ../fish/guestfish-actions.pod:284
20199 msgid "aug-load"
20200 msgstr ""
20201
20202 #. type: verbatim
20203 #: ../fish/guestfish-actions.pod:286
20204 #, no-wrap
20205 msgid ""
20206 " aug-load\n"
20207 "\n"
20208 msgstr ""
20209
20210 #. type: =head2
20211 #: ../fish/guestfish-actions.pod:293
20212 msgid "aug-ls"
20213 msgstr ""
20214
20215 #. type: verbatim
20216 #: ../fish/guestfish-actions.pod:295
20217 #, no-wrap
20218 msgid ""
20219 " aug-ls augpath\n"
20220 "\n"
20221 msgstr ""
20222
20223 #. type: textblock
20224 #: ../fish/guestfish-actions.pod:297
20225 msgid ""
20226 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
20227 "resulting nodes into alphabetical order."
20228 msgstr ""
20229
20230 #. type: =head2
20231 #: ../fish/guestfish-actions.pod:300
20232 msgid "aug-match"
20233 msgstr ""
20234
20235 #. type: verbatim
20236 #: ../fish/guestfish-actions.pod:302
20237 #, no-wrap
20238 msgid ""
20239 " aug-match augpath\n"
20240 "\n"
20241 msgstr ""
20242
20243 #. type: =head2
20244 #: ../fish/guestfish-actions.pod:308
20245 msgid "aug-mv"
20246 msgstr ""
20247
20248 #. type: verbatim
20249 #: ../fish/guestfish-actions.pod:310
20250 #, no-wrap
20251 msgid ""
20252 " aug-mv src dest\n"
20253 "\n"
20254 msgstr ""
20255
20256 #. type: =head2
20257 #: ../fish/guestfish-actions.pod:315
20258 msgid "aug-rm"
20259 msgstr ""
20260
20261 #. type: verbatim
20262 #: ../fish/guestfish-actions.pod:317
20263 #, no-wrap
20264 msgid ""
20265 " aug-rm augpath\n"
20266 "\n"
20267 msgstr ""
20268
20269 #. type: =head2
20270 #: ../fish/guestfish-actions.pod:323
20271 msgid "aug-save"
20272 msgstr ""
20273
20274 #. type: verbatim
20275 #: ../fish/guestfish-actions.pod:325
20276 #, no-wrap
20277 msgid ""
20278 " aug-save\n"
20279 "\n"
20280 msgstr ""
20281
20282 #. type: textblock
20283 #: ../fish/guestfish-actions.pod:329
20284 msgid ""
20285 "The flags which were passed to L</aug-init> affect exactly how files are "
20286 "saved."
20287 msgstr ""
20288
20289 #. type: =head2
20290 #: ../fish/guestfish-actions.pod:332
20291 msgid "aug-set"
20292 msgstr ""
20293
20294 #. type: verbatim
20295 #: ../fish/guestfish-actions.pod:334
20296 #, no-wrap
20297 msgid ""
20298 " aug-set augpath val\n"
20299 "\n"
20300 msgstr ""
20301
20302 #. type: textblock
20303 #: ../fish/guestfish-actions.pod:338
20304 msgid ""
20305 "In the Augeas API, it is possible to clear a node by setting the value to "
20306 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
20307 "this call.  Instead you must use the L</aug-clear> call."
20308 msgstr ""
20309
20310 #. type: =head2
20311 #: ../fish/guestfish-actions.pod:343
20312 msgid "available"
20313 msgstr ""
20314
20315 #. type: verbatim
20316 #: ../fish/guestfish-actions.pod:345
20317 #, no-wrap
20318 msgid ""
20319 " available 'groups ...'\n"
20320 "\n"
20321 msgstr ""
20322
20323 #. type: textblock
20324 #: ../fish/guestfish-actions.pod:351
20325 msgid ""
20326 "The libguestfs groups, and the functions that those groups correspond to, "
20327 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
20328 "runtime by calling L</available-all-groups>."
20329 msgstr ""
20330
20331 #. type: textblock
20332 #: ../fish/guestfish-actions.pod:375
20333 msgid "You must call L</launch> before calling this function."
20334 msgstr ""
20335
20336 #. type: textblock
20337 #: ../fish/guestfish-actions.pod:397
20338 msgid ""
20339 "This call was added in version C<1.0.80>.  In previous versions of "
20340 "libguestfs all you could do would be to speculatively execute a command to "
20341 "find out if the daemon implemented it.  See also L</version>."
20342 msgstr ""
20343
20344 #. type: =head2
20345 #: ../fish/guestfish-actions.pod:404
20346 msgid "available-all-groups"
20347 msgstr ""
20348
20349 #. type: verbatim
20350 #: ../fish/guestfish-actions.pod:406
20351 #, no-wrap
20352 msgid ""
20353 " available-all-groups\n"
20354 "\n"
20355 msgstr ""
20356
20357 #. type: textblock
20358 #: ../fish/guestfish-actions.pod:408
20359 msgid ""
20360 "This command returns a list of all optional groups that this daemon knows "
20361 "about.  Note this returns both supported and unsupported groups.  To find "
20362 "out which ones the daemon can actually support you have to call "
20363 "L</available> on each member of the returned list."
20364 msgstr ""
20365
20366 #. type: textblock
20367 #: ../fish/guestfish-actions.pod:414
20368 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
20369 msgstr ""
20370
20371 #. type: =head2
20372 #: ../fish/guestfish-actions.pod:416
20373 msgid "base64-in"
20374 msgstr ""
20375
20376 #. type: verbatim
20377 #: ../fish/guestfish-actions.pod:418
20378 #, no-wrap
20379 msgid ""
20380 " base64-in (base64file|-) filename\n"
20381 "\n"
20382 msgstr ""
20383
20384 #. type: textblock
20385 #: ../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:1221 ../fish/guestfish-actions.pod:4203 ../fish/guestfish-actions.pod:4215 ../fish/guestfish-actions.pod:4226 ../fish/guestfish-actions.pod:4237 ../fish/guestfish-actions.pod:4289 ../fish/guestfish-actions.pod:4298 ../fish/guestfish-actions.pod:4352 ../fish/guestfish-actions.pod:4375
20386 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
20387 msgstr ""
20388
20389 #. type: =head2
20390 #: ../fish/guestfish-actions.pod:425
20391 msgid "base64-out"
20392 msgstr ""
20393
20394 #. type: verbatim
20395 #: ../fish/guestfish-actions.pod:427
20396 #, no-wrap
20397 msgid ""
20398 " base64-out filename (base64file|-)\n"
20399 "\n"
20400 msgstr ""
20401
20402 #. type: =head2
20403 #: ../fish/guestfish-actions.pod:434
20404 msgid "blockdev-flushbufs"
20405 msgstr ""
20406
20407 #. type: verbatim
20408 #: ../fish/guestfish-actions.pod:436
20409 #, no-wrap
20410 msgid ""
20411 " blockdev-flushbufs device\n"
20412 "\n"
20413 msgstr ""
20414
20415 #. type: =head2
20416 #: ../fish/guestfish-actions.pod:443
20417 msgid "blockdev-getbsz"
20418 msgstr ""
20419
20420 #. type: verbatim
20421 #: ../fish/guestfish-actions.pod:445
20422 #, no-wrap
20423 msgid ""
20424 " blockdev-getbsz device\n"
20425 "\n"
20426 msgstr ""
20427
20428 #. type: =head2
20429 #: ../fish/guestfish-actions.pod:454
20430 msgid "blockdev-getro"
20431 msgstr ""
20432
20433 #. type: verbatim
20434 #: ../fish/guestfish-actions.pod:456
20435 #, no-wrap
20436 msgid ""
20437 " blockdev-getro device\n"
20438 "\n"
20439 msgstr ""
20440
20441 #. type: =head2
20442 #: ../fish/guestfish-actions.pod:463
20443 msgid "blockdev-getsize64"
20444 msgstr ""
20445
20446 #. type: verbatim
20447 #: ../fish/guestfish-actions.pod:465
20448 #, no-wrap
20449 msgid ""
20450 " blockdev-getsize64 device\n"
20451 "\n"
20452 msgstr ""
20453
20454 #. type: textblock
20455 #: ../fish/guestfish-actions.pod:469
20456 msgid "See also L</blockdev-getsz>."
20457 msgstr ""
20458
20459 #. type: =head2
20460 #: ../fish/guestfish-actions.pod:473
20461 msgid "blockdev-getss"
20462 msgstr ""
20463
20464 #. type: verbatim
20465 #: ../fish/guestfish-actions.pod:475
20466 #, no-wrap
20467 msgid ""
20468 " blockdev-getss device\n"
20469 "\n"
20470 msgstr ""
20471
20472 #. type: textblock
20473 #: ../fish/guestfish-actions.pod:480
20474 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
20475 msgstr ""
20476
20477 #. type: =head2
20478 #: ../fish/guestfish-actions.pod:485
20479 msgid "blockdev-getsz"
20480 msgstr ""
20481
20482 #. type: verbatim
20483 #: ../fish/guestfish-actions.pod:487
20484 #, no-wrap
20485 msgid ""
20486 " blockdev-getsz device\n"
20487 "\n"
20488 msgstr ""
20489
20490 #. type: textblock
20491 #: ../fish/guestfish-actions.pod:492
20492 msgid ""
20493 "See also L</blockdev-getss> for the real sector size of the device, and "
20494 "L</blockdev-getsize64> for the more useful I<size in bytes>."
20495 msgstr ""
20496
20497 #. type: =head2
20498 #: ../fish/guestfish-actions.pod:498
20499 msgid "blockdev-rereadpt"
20500 msgstr ""
20501
20502 #. type: verbatim
20503 #: ../fish/guestfish-actions.pod:500
20504 #, no-wrap
20505 msgid ""
20506 " blockdev-rereadpt device\n"
20507 "\n"
20508 msgstr ""
20509
20510 #. type: =head2
20511 #: ../fish/guestfish-actions.pod:506
20512 msgid "blockdev-setbsz"
20513 msgstr ""
20514
20515 #. type: verbatim
20516 #: ../fish/guestfish-actions.pod:508
20517 #, no-wrap
20518 msgid ""
20519 " blockdev-setbsz device blocksize\n"
20520 "\n"
20521 msgstr ""
20522
20523 #. type: =head2
20524 #: ../fish/guestfish-actions.pod:517
20525 msgid "blockdev-setro"
20526 msgstr ""
20527
20528 #. type: verbatim
20529 #: ../fish/guestfish-actions.pod:519
20530 #, no-wrap
20531 msgid ""
20532 " blockdev-setro device\n"
20533 "\n"
20534 msgstr ""
20535
20536 #. type: =head2
20537 #: ../fish/guestfish-actions.pod:525
20538 msgid "blockdev-setrw"
20539 msgstr ""
20540
20541 #. type: verbatim
20542 #: ../fish/guestfish-actions.pod:527
20543 #, no-wrap
20544 msgid ""
20545 " blockdev-setrw device\n"
20546 "\n"
20547 msgstr ""
20548
20549 #. type: =head2
20550 #: ../fish/guestfish-actions.pod:533
20551 msgid "case-sensitive-path"
20552 msgstr ""
20553
20554 #. type: verbatim
20555 #: ../fish/guestfish-actions.pod:535
20556 #, no-wrap
20557 msgid ""
20558 " case-sensitive-path path\n"
20559 "\n"
20560 msgstr ""
20561
20562 #. type: textblock
20563 #: ../fish/guestfish-actions.pod:559
20564 msgid ""
20565 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
20566 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
20567 "how the directories were originally created under Windows)."
20568 msgstr ""
20569
20570 #. type: textblock
20571 #: ../fish/guestfish-actions.pod:567
20572 msgid "See also L</realpath>."
20573 msgstr ""
20574
20575 #. type: =head2
20576 #: ../fish/guestfish-actions.pod:569
20577 msgid "cat"
20578 msgstr ""
20579
20580 #. type: verbatim
20581 #: ../fish/guestfish-actions.pod:571
20582 #, no-wrap
20583 msgid ""
20584 " cat path\n"
20585 "\n"
20586 msgstr ""
20587
20588 #. type: textblock
20589 #: ../fish/guestfish-actions.pod:575
20590 msgid ""
20591 "Note that this function cannot correctly handle binary files (specifically, "
20592 "files containing C<\\0> character which is treated as end of string).  For "
20593 "those you need to use the L</read-file> or L</download> functions which have "
20594 "a more complex interface."
20595 msgstr ""
20596
20597 #. type: =head2
20598 #: ../fish/guestfish-actions.pod:583
20599 msgid "checksum"
20600 msgstr ""
20601
20602 #. type: verbatim
20603 #: ../fish/guestfish-actions.pod:585
20604 #, no-wrap
20605 msgid ""
20606 " checksum csumtype path\n"
20607 "\n"
20608 msgstr ""
20609
20610 #. type: textblock
20611 #: ../fish/guestfish-actions.pod:628
20612 msgid "To get the checksum for a device, use L</checksum-device>."
20613 msgstr ""
20614
20615 #. type: textblock
20616 #: ../fish/guestfish-actions.pod:630
20617 msgid "To get the checksums for many files, use L</checksums-out>."
20618 msgstr ""
20619
20620 #. type: =head2
20621 #: ../fish/guestfish-actions.pod:632
20622 msgid "checksum-device"
20623 msgstr ""
20624
20625 #. type: verbatim
20626 #: ../fish/guestfish-actions.pod:634
20627 #, no-wrap
20628 msgid ""
20629 " checksum-device csumtype device\n"
20630 "\n"
20631 msgstr ""
20632
20633 #. type: textblock
20634 #: ../fish/guestfish-actions.pod:636
20635 msgid ""
20636 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
20637 "device named C<device>.  For the types of checksums supported see the "
20638 "L</checksum> command."
20639 msgstr ""
20640
20641 #. type: =head2
20642 #: ../fish/guestfish-actions.pod:640
20643 msgid "checksums-out"
20644 msgstr ""
20645
20646 #. type: verbatim
20647 #: ../fish/guestfish-actions.pod:642
20648 #, no-wrap
20649 msgid ""
20650 " checksums-out csumtype directory (sumsfile|-)\n"
20651 "\n"
20652 msgstr ""
20653
20654 #. type: =head2
20655 #: ../fish/guestfish-actions.pod:658
20656 msgid "chmod"
20657 msgstr ""
20658
20659 #. type: verbatim
20660 #: ../fish/guestfish-actions.pod:660
20661 #, no-wrap
20662 msgid ""
20663 " chmod mode path\n"
20664 "\n"
20665 msgstr ""
20666
20667 #. type: =head2
20668 #: ../fish/guestfish-actions.pod:671
20669 msgid "chown"
20670 msgstr ""
20671
20672 #. type: verbatim
20673 #: ../fish/guestfish-actions.pod:673
20674 #, no-wrap
20675 msgid ""
20676 " chown owner group path\n"
20677 "\n"
20678 msgstr ""
20679
20680 #. type: =head2
20681 #: ../fish/guestfish-actions.pod:681
20682 msgid "command"
20683 msgstr ""
20684
20685 #. type: verbatim
20686 #: ../fish/guestfish-actions.pod:683
20687 #, no-wrap
20688 msgid ""
20689 " command 'arguments ...'\n"
20690 "\n"
20691 msgstr ""
20692
20693 #. type: textblock
20694 #: ../fish/guestfish-actions.pod:690
20695 msgid ""
20696 "The single parameter is an argv-style list of arguments.  The first element "
20697 "is the name of the program to run.  Subsequent elements are parameters.  The "
20698 "list must be non-empty (ie. must contain a program name).  Note that the "
20699 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
20700 msgstr ""
20701
20702 #. type: =head2
20703 #: ../fish/guestfish-actions.pod:718
20704 msgid "command-lines"
20705 msgstr ""
20706
20707 #. type: verbatim
20708 #: ../fish/guestfish-actions.pod:720
20709 #, no-wrap
20710 msgid ""
20711 " command-lines 'arguments ...'\n"
20712 "\n"
20713 msgstr ""
20714
20715 #. type: textblock
20716 #: ../fish/guestfish-actions.pod:722
20717 msgid "This is the same as L</command>, but splits the result into a list of lines."
20718 msgstr ""
20719
20720 #. type: textblock
20721 #: ../fish/guestfish-actions.pod:725
20722 msgid "See also: L</sh-lines>"
20723 msgstr ""
20724
20725 #. type: =head2
20726 #: ../fish/guestfish-actions.pod:730
20727 msgid "config"
20728 msgstr ""
20729
20730 #. type: verbatim
20731 #: ../fish/guestfish-actions.pod:732
20732 #, no-wrap
20733 msgid ""
20734 " config qemuparam qemuvalue\n"
20735 "\n"
20736 msgstr ""
20737
20738 #. type: =head2
20739 #: ../fish/guestfish-actions.pod:743
20740 msgid "copy-size"
20741 msgstr ""
20742
20743 #. type: verbatim
20744 #: ../fish/guestfish-actions.pod:745
20745 #, no-wrap
20746 msgid ""
20747 " copy-size src dest size\n"
20748 "\n"
20749 msgstr ""
20750
20751 #. type: =head2
20752 #: ../fish/guestfish-actions.pod:753
20753 msgid "cp"
20754 msgstr ""
20755
20756 #. type: verbatim
20757 #: ../fish/guestfish-actions.pod:755
20758 #, no-wrap
20759 msgid ""
20760 " cp src dest\n"
20761 "\n"
20762 msgstr ""
20763
20764 #. type: =head2
20765 #: ../fish/guestfish-actions.pod:760
20766 msgid "cp-a"
20767 msgstr ""
20768
20769 #. type: verbatim
20770 #: ../fish/guestfish-actions.pod:762
20771 #, no-wrap
20772 msgid ""
20773 " cp-a src dest\n"
20774 "\n"
20775 msgstr ""
20776
20777 #. type: =head2
20778 #: ../fish/guestfish-actions.pod:767
20779 msgid "dd"
20780 msgstr ""
20781
20782 #. type: verbatim
20783 #: ../fish/guestfish-actions.pod:769
20784 #, no-wrap
20785 msgid ""
20786 " dd src dest\n"
20787 "\n"
20788 msgstr ""
20789
20790 #. type: textblock
20791 #: ../fish/guestfish-actions.pod:776
20792 msgid ""
20793 "If the destination is a device, it must be as large or larger than the "
20794 "source file or device, otherwise the copy will fail.  This command cannot do "
20795 "partial copies (see L</copy-size>)."
20796 msgstr ""
20797
20798 #. type: =head2
20799 #: ../fish/guestfish-actions.pod:780
20800 msgid "df"
20801 msgstr ""
20802
20803 #. type: verbatim
20804 #: ../fish/guestfish-actions.pod:782
20805 #, no-wrap
20806 msgid ""
20807 " df\n"
20808 "\n"
20809 msgstr ""
20810
20811 #. type: textblock
20812 #: ../fish/guestfish-actions.pod:786 ../fish/guestfish-actions.pod:797
20813 msgid ""
20814 "This command is mostly useful for interactive sessions.  It is I<not> "
20815 "intended that you try to parse the output string.  Use L</statvfs> from "
20816 "programs."
20817 msgstr ""
20818
20819 #. type: =head2
20820 #: ../fish/guestfish-actions.pod:790
20821 msgid "df-h"
20822 msgstr ""
20823
20824 #. type: verbatim
20825 #: ../fish/guestfish-actions.pod:792
20826 #, no-wrap
20827 msgid ""
20828 " df-h\n"
20829 "\n"
20830 msgstr ""
20831
20832 #. type: =head2
20833 #: ../fish/guestfish-actions.pod:801
20834 msgid "dmesg"
20835 msgstr ""
20836
20837 #. type: verbatim
20838 #: ../fish/guestfish-actions.pod:803
20839 #, no-wrap
20840 msgid ""
20841 " dmesg\n"
20842 "\n"
20843 msgstr ""
20844
20845 #. type: textblock
20846 #: ../fish/guestfish-actions.pod:809
20847 msgid ""
20848 "Another way to get the same information is to enable verbose messages with "
20849 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
20850 "before running the program."
20851 msgstr ""
20852
20853 #. type: =head2
20854 #: ../fish/guestfish-actions.pod:814
20855 msgid "download"
20856 msgstr ""
20857
20858 #. type: verbatim
20859 #: ../fish/guestfish-actions.pod:816
20860 #, no-wrap
20861 msgid ""
20862 " download remotefilename (filename|-)\n"
20863 "\n"
20864 msgstr ""
20865
20866 #. type: textblock
20867 #: ../fish/guestfish-actions.pod:823
20868 msgid "See also L</upload>, L</cat>."
20869 msgstr ""
20870
20871 #. type: =head2
20872 #: ../fish/guestfish-actions.pod:827
20873 msgid "download-offset"
20874 msgstr ""
20875
20876 #. type: verbatim
20877 #: ../fish/guestfish-actions.pod:829
20878 #, no-wrap
20879 msgid ""
20880 " download-offset remotefilename (filename|-) offset size\n"
20881 "\n"
20882 msgstr ""
20883
20884 #. type: textblock
20885 #: ../fish/guestfish-actions.pod:837
20886 msgid ""
20887 "Note that there is no limit on the amount of data that can be downloaded "
20888 "with this call, unlike with L</pread>, and this call always reads the full "
20889 "amount unless an error occurs."
20890 msgstr ""
20891
20892 #. type: textblock
20893 #: ../fish/guestfish-actions.pod:842
20894 msgid "See also L</download>, L</pread>."
20895 msgstr ""
20896
20897 #. type: =head2
20898 #: ../fish/guestfish-actions.pod:846
20899 msgid "drop-caches"
20900 msgstr ""
20901
20902 #. type: verbatim
20903 #: ../fish/guestfish-actions.pod:848
20904 #, no-wrap
20905 msgid ""
20906 " drop-caches whattodrop\n"
20907 "\n"
20908 msgstr ""
20909
20910 #. type: =head2
20911 #: ../fish/guestfish-actions.pod:860
20912 msgid "du"
20913 msgstr ""
20914
20915 #. type: verbatim
20916 #: ../fish/guestfish-actions.pod:862
20917 #, no-wrap
20918 msgid ""
20919 " du path\n"
20920 "\n"
20921 msgstr ""
20922
20923 #. type: =head2
20924 #: ../fish/guestfish-actions.pod:874
20925 msgid "e2fsck-f"
20926 msgstr ""
20927
20928 #. type: verbatim
20929 #: ../fish/guestfish-actions.pod:876
20930 #, no-wrap
20931 msgid ""
20932 " e2fsck-f device\n"
20933 "\n"
20934 msgstr ""
20935
20936 #. type: textblock
20937 #: ../fish/guestfish-actions.pod:882
20938 msgid ""
20939 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
20940 "should use L</fsck>."
20941 msgstr ""
20942
20943 #. type: =head2
20944 #: ../fish/guestfish-actions.pod:885
20945 msgid "echo-daemon"
20946 msgstr ""
20947
20948 #. type: verbatim
20949 #: ../fish/guestfish-actions.pod:887
20950 #, no-wrap
20951 msgid ""
20952 " echo-daemon 'words ...'\n"
20953 "\n"
20954 msgstr ""
20955
20956 #. type: textblock
20957 #: ../fish/guestfish-actions.pod:894
20958 msgid "See also L</ping-daemon>."
20959 msgstr ""
20960
20961 #. type: =head2
20962 #: ../fish/guestfish-actions.pod:896
20963 msgid "egrep"
20964 msgstr ""
20965
20966 #. type: verbatim
20967 #: ../fish/guestfish-actions.pod:898
20968 #, no-wrap
20969 msgid ""
20970 " egrep regex path\n"
20971 "\n"
20972 msgstr ""
20973
20974 #. type: =head2
20975 #: ../fish/guestfish-actions.pod:906
20976 msgid "egrepi"
20977 msgstr ""
20978
20979 #. type: verbatim
20980 #: ../fish/guestfish-actions.pod:908
20981 #, no-wrap
20982 msgid ""
20983 " egrepi regex path\n"
20984 "\n"
20985 msgstr ""
20986
20987 #. type: =head2
20988 #: ../fish/guestfish-actions.pod:916
20989 msgid "equal"
20990 msgstr ""
20991
20992 #. type: verbatim
20993 #: ../fish/guestfish-actions.pod:918
20994 #, no-wrap
20995 msgid ""
20996 " equal file1 file2\n"
20997 "\n"
20998 msgstr ""
20999
21000 #. type: =head2
21001 #: ../fish/guestfish-actions.pod:925
21002 msgid "exists"
21003 msgstr ""
21004
21005 #. type: verbatim
21006 #: ../fish/guestfish-actions.pod:927
21007 #, no-wrap
21008 msgid ""
21009 " exists path\n"
21010 "\n"
21011 msgstr ""
21012
21013 #. type: textblock
21014 #: ../fish/guestfish-actions.pod:932
21015 msgid "See also L</is-file>, L</is-dir>, L</stat>."
21016 msgstr ""
21017
21018 #. type: =head2
21019 #: ../fish/guestfish-actions.pod:934
21020 msgid "fallocate"
21021 msgstr ""
21022
21023 #. type: verbatim
21024 #: ../fish/guestfish-actions.pod:936
21025 #, no-wrap
21026 msgid ""
21027 " fallocate path len\n"
21028 "\n"
21029 msgstr ""
21030
21031 #. type: =head2
21032 #: ../fish/guestfish-actions.pod:953
21033 msgid "fallocate64"
21034 msgstr ""
21035
21036 #. type: verbatim
21037 #: ../fish/guestfish-actions.pod:955
21038 #, no-wrap
21039 msgid ""
21040 " fallocate64 path len\n"
21041 "\n"
21042 msgstr ""
21043
21044 #. type: textblock
21045 #: ../fish/guestfish-actions.pod:961
21046 msgid ""
21047 "Note that this call allocates disk blocks for the file.  To create a sparse "
21048 "file use L</truncate-size> instead."
21049 msgstr ""
21050
21051 #. type: textblock
21052 #: ../fish/guestfish-actions.pod:964
21053 msgid ""
21054 "The deprecated call L</fallocate> does the same, but owing to an oversight "
21055 "it only allowed 30 bit lengths to be specified, effectively limiting the "
21056 "maximum size of files created through that call to 1GB."
21057 msgstr ""
21058
21059 #. type: =head2
21060 #: ../fish/guestfish-actions.pod:973
21061 msgid "fgrep"
21062 msgstr ""
21063
21064 #. type: verbatim
21065 #: ../fish/guestfish-actions.pod:975
21066 #, no-wrap
21067 msgid ""
21068 " fgrep pattern path\n"
21069 "\n"
21070 msgstr ""
21071
21072 #. type: =head2
21073 #: ../fish/guestfish-actions.pod:983
21074 msgid "fgrepi"
21075 msgstr ""
21076
21077 #. type: verbatim
21078 #: ../fish/guestfish-actions.pod:985
21079 #, no-wrap
21080 msgid ""
21081 " fgrepi pattern path\n"
21082 "\n"
21083 msgstr ""
21084
21085 #. type: =head2
21086 #: ../fish/guestfish-actions.pod:993
21087 msgid "file"
21088 msgstr ""
21089
21090 #. type: verbatim
21091 #: ../fish/guestfish-actions.pod:995
21092 #, no-wrap
21093 msgid ""
21094 " file path\n"
21095 "\n"
21096 msgstr ""
21097
21098 #. type: textblock
21099 #: ../fish/guestfish-actions.pod:1007
21100 msgid ""
21101 "This command can also be used on C</dev/> devices (and partitions, LV "
21102 "names).  You can for example use this to determine if a device contains a "
21103 "filesystem, although it's usually better to use L</vfs-type>."
21104 msgstr ""
21105
21106 #. type: =head2
21107 #: ../fish/guestfish-actions.pod:1017
21108 msgid "file-architecture"
21109 msgstr ""
21110
21111 #. type: verbatim
21112 #: ../fish/guestfish-actions.pod:1019
21113 #, no-wrap
21114 msgid ""
21115 " file-architecture filename\n"
21116 "\n"
21117 msgstr ""
21118
21119 #. type: =head2
21120 #: ../fish/guestfish-actions.pod:1122
21121 msgid "filesize"
21122 msgstr ""
21123
21124 #. type: verbatim
21125 #: ../fish/guestfish-actions.pod:1124
21126 #, no-wrap
21127 msgid ""
21128 " filesize file\n"
21129 "\n"
21130 msgstr ""
21131
21132 #. type: textblock
21133 #: ../fish/guestfish-actions.pod:1128
21134 msgid ""
21135 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
21136 "L</is-file> etc.  To get the size of block devices, use "
21137 "L</blockdev-getsize64>."
21138 msgstr ""
21139
21140 #. type: =head2
21141 #: ../fish/guestfish-actions.pod:1132
21142 msgid "fill"
21143 msgstr ""
21144
21145 #. type: verbatim
21146 #: ../fish/guestfish-actions.pod:1134
21147 #, no-wrap
21148 msgid ""
21149 " fill c len path\n"
21150 "\n"
21151 msgstr ""
21152
21153 #. type: textblock
21154 #: ../fish/guestfish-actions.pod:1140
21155 msgid ""
21156 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
21157 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
21158 "L</fill-pattern>."
21159 msgstr ""
21160
21161 #. type: =head2
21162 #: ../fish/guestfish-actions.pod:1145
21163 msgid "fill-pattern"
21164 msgstr ""
21165
21166 #. type: verbatim
21167 #: ../fish/guestfish-actions.pod:1147
21168 #, no-wrap
21169 msgid ""
21170 " fill-pattern pattern len path\n"
21171 "\n"
21172 msgstr ""
21173
21174 #. type: textblock
21175 #: ../fish/guestfish-actions.pod:1149
21176 msgid ""
21177 "This function is like L</fill> except that it creates a new file of length "
21178 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
21179 "is truncated if necessary to ensure the length of the file is exactly C<len> "
21180 "bytes."
21181 msgstr ""
21182
21183 #. type: =head2
21184 #: ../fish/guestfish-actions.pod:1154
21185 msgid "find"
21186 msgstr ""
21187
21188 #. type: verbatim
21189 #: ../fish/guestfish-actions.pod:1156
21190 #, no-wrap
21191 msgid ""
21192 " find directory\n"
21193 "\n"
21194 msgstr ""
21195
21196 #. type: textblock
21197 #: ../fish/guestfish-actions.pod:1170
21198 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
21199 msgstr ""
21200
21201 #. type: textblock
21202 #: ../fish/guestfish-actions.pod:1183
21203 msgid "See also L</find0>."
21204 msgstr ""
21205
21206 #. type: =head2
21207 #: ../fish/guestfish-actions.pod:1188
21208 msgid "find0"
21209 msgstr ""
21210
21211 #. type: verbatim
21212 #: ../fish/guestfish-actions.pod:1190
21213 #, no-wrap
21214 msgid ""
21215 " find0 directory (files|-)\n"
21216 "\n"
21217 msgstr ""
21218
21219 #. type: textblock
21220 #: ../fish/guestfish-actions.pod:1196
21221 msgid "This command works the same way as L</find> with the following exceptions:"
21222 msgstr ""
21223
21224 #. type: =head2
21225 #: ../fish/guestfish-actions.pod:1223
21226 msgid "findfs-label"
21227 msgstr ""
21228
21229 #. type: verbatim
21230 #: ../fish/guestfish-actions.pod:1225
21231 #, no-wrap
21232 msgid ""
21233 " findfs-label label\n"
21234 "\n"
21235 msgstr ""
21236
21237 #. type: textblock
21238 #: ../fish/guestfish-actions.pod:1231
21239 msgid "To find the label of a filesystem, use L</vfs-label>."
21240 msgstr ""
21241
21242 #. type: =head2
21243 #: ../fish/guestfish-actions.pod:1233
21244 msgid "findfs-uuid"
21245 msgstr ""
21246
21247 #. type: verbatim
21248 #: ../fish/guestfish-actions.pod:1235
21249 #, no-wrap
21250 msgid ""
21251 " findfs-uuid uuid\n"
21252 "\n"
21253 msgstr ""
21254
21255 #. type: textblock
21256 #: ../fish/guestfish-actions.pod:1241
21257 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
21258 msgstr ""
21259
21260 #. type: =head2
21261 #: ../fish/guestfish-actions.pod:1243
21262 msgid "fsck"
21263 msgstr ""
21264
21265 #. type: verbatim
21266 #: ../fish/guestfish-actions.pod:1245
21267 #, no-wrap
21268 msgid ""
21269 " fsck fstype device\n"
21270 "\n"
21271 msgstr ""
21272
21273 #. type: =head2
21274 #: ../fish/guestfish-actions.pod:1275
21275 msgid "get-append"
21276 msgstr ""
21277
21278 #. type: verbatim
21279 #: ../fish/guestfish-actions.pod:1277
21280 #, no-wrap
21281 msgid ""
21282 " get-append\n"
21283 "\n"
21284 msgstr ""
21285
21286 #. type: =head2
21287 #: ../fish/guestfish-actions.pod:1284
21288 msgid "get-autosync"
21289 msgstr ""
21290
21291 #. type: verbatim
21292 #: ../fish/guestfish-actions.pod:1286
21293 #, no-wrap
21294 msgid ""
21295 " get-autosync\n"
21296 "\n"
21297 msgstr ""
21298
21299 #. type: =head2
21300 #: ../fish/guestfish-actions.pod:1290
21301 msgid "get-direct"
21302 msgstr ""
21303
21304 #. type: verbatim
21305 #: ../fish/guestfish-actions.pod:1292
21306 #, no-wrap
21307 msgid ""
21308 " get-direct\n"
21309 "\n"
21310 msgstr ""
21311
21312 #. type: =head2
21313 #: ../fish/guestfish-actions.pod:1296
21314 msgid "get-e2label"
21315 msgstr ""
21316
21317 #. type: verbatim
21318 #: ../fish/guestfish-actions.pod:1298
21319 #, no-wrap
21320 msgid ""
21321 " get-e2label device\n"
21322 "\n"
21323 msgstr ""
21324
21325 #. type: =head2
21326 #: ../fish/guestfish-actions.pod:1310
21327 msgid "get-e2uuid"
21328 msgstr ""
21329
21330 #. type: verbatim
21331 #: ../fish/guestfish-actions.pod:1312
21332 #, no-wrap
21333 msgid ""
21334 " get-e2uuid device\n"
21335 "\n"
21336 msgstr ""
21337
21338 #. type: =head2
21339 #: ../fish/guestfish-actions.pod:1324
21340 msgid "get-memsize"
21341 msgstr ""
21342
21343 #. type: verbatim
21344 #: ../fish/guestfish-actions.pod:1326
21345 #, no-wrap
21346 msgid ""
21347 " get-memsize\n"
21348 "\n"
21349 msgstr ""
21350
21351 #. type: textblock
21352 #: ../fish/guestfish-actions.pod:1331
21353 msgid ""
21354 "If L</set-memsize> was not called on this handle, and if "
21355 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
21356 "value for memsize."
21357 msgstr ""
21358
21359 #. type: =head2
21360 #: ../fish/guestfish-actions.pod:1338
21361 msgid "get-network"
21362 msgstr ""
21363
21364 #. type: verbatim
21365 #: ../fish/guestfish-actions.pod:1340
21366 #, no-wrap
21367 msgid ""
21368 " get-network\n"
21369 "\n"
21370 msgstr ""
21371
21372 #. type: =head2
21373 #: ../fish/guestfish-actions.pod:1344
21374 msgid "get-path"
21375 msgstr ""
21376
21377 #. type: verbatim
21378 #: ../fish/guestfish-actions.pod:1346
21379 #, no-wrap
21380 msgid ""
21381 " get-path\n"
21382 "\n"
21383 msgstr ""
21384
21385 #. type: =head2
21386 #: ../fish/guestfish-actions.pod:1353
21387 msgid "get-pid"
21388 msgstr ""
21389
21390 #. type: =head2
21391 #: ../fish/guestfish-actions.pod:1355
21392 msgid "pid"
21393 msgstr ""
21394
21395 #. type: verbatim
21396 #: ../fish/guestfish-actions.pod:1357
21397 #, no-wrap
21398 msgid ""
21399 " get-pid\n"
21400 "\n"
21401 msgstr ""
21402
21403 #. type: =head2
21404 #: ../fish/guestfish-actions.pod:1364
21405 msgid "get-qemu"
21406 msgstr ""
21407
21408 #. type: verbatim
21409 #: ../fish/guestfish-actions.pod:1366
21410 #, no-wrap
21411 msgid ""
21412 " get-qemu\n"
21413 "\n"
21414 msgstr ""
21415
21416 #. type: =head2
21417 #: ../fish/guestfish-actions.pod:1373
21418 msgid "get-recovery-proc"
21419 msgstr ""
21420
21421 #. type: verbatim
21422 #: ../fish/guestfish-actions.pod:1375
21423 #, no-wrap
21424 msgid ""
21425 " get-recovery-proc\n"
21426 "\n"
21427 msgstr ""
21428
21429 #. type: =head2
21430 #: ../fish/guestfish-actions.pod:1379
21431 msgid "get-selinux"
21432 msgstr ""
21433
21434 #. type: verbatim
21435 #: ../fish/guestfish-actions.pod:1381
21436 #, no-wrap
21437 msgid ""
21438 " get-selinux\n"
21439 "\n"
21440 msgstr ""
21441
21442 #. type: textblock
21443 #: ../fish/guestfish-actions.pod:1383
21444 msgid ""
21445 "This returns the current setting of the selinux flag which is passed to the "
21446 "appliance at boot time.  See L</set-selinux>."
21447 msgstr ""
21448
21449 #. type: =head2
21450 #: ../fish/guestfish-actions.pod:1389
21451 msgid "get-state"
21452 msgstr ""
21453
21454 #. type: verbatim
21455 #: ../fish/guestfish-actions.pod:1391
21456 #, no-wrap
21457 msgid ""
21458 " get-state\n"
21459 "\n"
21460 msgstr ""
21461
21462 #. type: =head2
21463 #: ../fish/guestfish-actions.pod:1398
21464 msgid "get-trace"
21465 msgstr ""
21466
21467 #. type: verbatim
21468 #: ../fish/guestfish-actions.pod:1400
21469 #, no-wrap
21470 msgid ""
21471 " get-trace\n"
21472 "\n"
21473 msgstr ""
21474
21475 #. type: =head2
21476 #: ../fish/guestfish-actions.pod:1404
21477 msgid "get-umask"
21478 msgstr ""
21479
21480 #. type: verbatim
21481 #: ../fish/guestfish-actions.pod:1406
21482 #, no-wrap
21483 msgid ""
21484 " get-umask\n"
21485 "\n"
21486 msgstr ""
21487
21488 #. type: textblock
21489 #: ../fish/guestfish-actions.pod:1408
21490 msgid ""
21491 "Return the current umask.  By default the umask is C<022> unless it has been "
21492 "set by calling L</umask>."
21493 msgstr ""
21494
21495 #. type: =head2
21496 #: ../fish/guestfish-actions.pod:1411
21497 msgid "get-verbose"
21498 msgstr ""
21499
21500 #. type: verbatim
21501 #: ../fish/guestfish-actions.pod:1413
21502 #, no-wrap
21503 msgid ""
21504 " get-verbose\n"
21505 "\n"
21506 msgstr ""
21507
21508 #. type: =head2
21509 #: ../fish/guestfish-actions.pod:1417
21510 msgid "getcon"
21511 msgstr ""
21512
21513 #. type: verbatim
21514 #: ../fish/guestfish-actions.pod:1419
21515 #, no-wrap
21516 msgid ""
21517 " getcon\n"
21518 "\n"
21519 msgstr ""
21520
21521 #. type: textblock
21522 #: ../fish/guestfish-actions.pod:1423
21523 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
21524 msgstr ""
21525
21526 #. type: =head2
21527 #: ../fish/guestfish-actions.pod:1426
21528 msgid "getxattr"
21529 msgstr ""
21530
21531 #. type: verbatim
21532 #: ../fish/guestfish-actions.pod:1428
21533 #, no-wrap
21534 msgid ""
21535 " getxattr path name\n"
21536 "\n"
21537 msgstr ""
21538
21539 #. type: textblock
21540 #: ../fish/guestfish-actions.pod:1430
21541 msgid ""
21542 "Get a single extended attribute from file C<path> named C<name>.  This call "
21543 "follows symlinks.  If you want to lookup an extended attribute for the "
21544 "symlink itself, use L</lgetxattr>."
21545 msgstr ""
21546
21547 #. type: textblock
21548 #: ../fish/guestfish-actions.pod:1434 ../fish/guestfish-actions.pod:2265
21549 msgid ""
21550 "Normally it is better to get all extended attributes from a file in one go "
21551 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
21552 "buggy and do not provide a way to list out attributes.  For these "
21553 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
21554 "attributes you want in advance and call this function."
21555 msgstr ""
21556
21557 #. type: textblock
21558 #: ../fish/guestfish-actions.pod:1444
21559 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
21560 msgstr ""
21561
21562 #. type: =head2
21563 #: ../fish/guestfish-actions.pod:1446
21564 msgid "getxattrs"
21565 msgstr ""
21566
21567 #. type: verbatim
21568 #: ../fish/guestfish-actions.pod:1448
21569 #, no-wrap
21570 msgid ""
21571 " getxattrs path\n"
21572 "\n"
21573 msgstr ""
21574
21575 #. type: textblock
21576 #: ../fish/guestfish-actions.pod:1456
21577 msgid "See also: L</lgetxattrs>, L<attr(5)>."
21578 msgstr ""
21579
21580 #. type: =head2
21581 #: ../fish/guestfish-actions.pod:1458
21582 msgid "glob-expand"
21583 msgstr ""
21584
21585 #. type: verbatim
21586 #: ../fish/guestfish-actions.pod:1460
21587 #, no-wrap
21588 msgid ""
21589 " glob-expand pattern\n"
21590 "\n"
21591 msgstr ""
21592
21593 #. type: =head2
21594 #: ../fish/guestfish-actions.pod:1473
21595 msgid "grep"
21596 msgstr ""
21597
21598 #. type: verbatim
21599 #: ../fish/guestfish-actions.pod:1475
21600 #, no-wrap
21601 msgid ""
21602 " grep regex path\n"
21603 "\n"
21604 msgstr ""
21605
21606 #. type: =head2
21607 #: ../fish/guestfish-actions.pod:1483
21608 msgid "grepi"
21609 msgstr ""
21610
21611 #. type: verbatim
21612 #: ../fish/guestfish-actions.pod:1485
21613 #, no-wrap
21614 msgid ""
21615 " grepi regex path\n"
21616 "\n"
21617 msgstr ""
21618
21619 #. type: =head2
21620 #: ../fish/guestfish-actions.pod:1493
21621 msgid "grub-install"
21622 msgstr ""
21623
21624 #. type: verbatim
21625 #: ../fish/guestfish-actions.pod:1495
21626 #, no-wrap
21627 msgid ""
21628 " grub-install root device\n"
21629 "\n"
21630 msgstr ""
21631
21632 #. type: =head2
21633 #: ../fish/guestfish-actions.pod:1511
21634 msgid "head"
21635 msgstr ""
21636
21637 #. type: verbatim
21638 #: ../fish/guestfish-actions.pod:1513
21639 #, no-wrap
21640 msgid ""
21641 " head path\n"
21642 "\n"
21643 msgstr ""
21644
21645 #. type: =head2
21646 #: ../fish/guestfish-actions.pod:1521
21647 msgid "head-n"
21648 msgstr ""
21649
21650 #. type: verbatim
21651 #: ../fish/guestfish-actions.pod:1523
21652 #, no-wrap
21653 msgid ""
21654 " head-n nrlines path\n"
21655 "\n"
21656 msgstr ""
21657
21658 #. type: =head2
21659 #: ../fish/guestfish-actions.pod:1536
21660 msgid "hexdump"
21661 msgstr ""
21662
21663 #. type: verbatim
21664 #: ../fish/guestfish-actions.pod:1538
21665 #, no-wrap
21666 msgid ""
21667 " hexdump path\n"
21668 "\n"
21669 msgstr ""
21670
21671 #. type: =head2
21672 #: ../fish/guestfish-actions.pod:1546
21673 msgid "initrd-cat"
21674 msgstr ""
21675
21676 #. type: verbatim
21677 #: ../fish/guestfish-actions.pod:1548
21678 #, no-wrap
21679 msgid ""
21680 " initrd-cat initrdpath filename\n"
21681 "\n"
21682 msgstr ""
21683
21684 #. type: textblock
21685 #: ../fish/guestfish-actions.pod:1560
21686 msgid "See also L</initrd-list>."
21687 msgstr ""
21688
21689 #. type: =head2
21690 #: ../fish/guestfish-actions.pod:1565
21691 msgid "initrd-list"
21692 msgstr ""
21693
21694 #. type: verbatim
21695 #: ../fish/guestfish-actions.pod:1567
21696 #, no-wrap
21697 msgid ""
21698 " initrd-list path\n"
21699 "\n"
21700 msgstr ""
21701
21702 #. type: =head2
21703 #: ../fish/guestfish-actions.pod:1579
21704 msgid "inotify-add-watch"
21705 msgstr ""
21706
21707 #. type: verbatim
21708 #: ../fish/guestfish-actions.pod:1581
21709 #, no-wrap
21710 msgid ""
21711 " inotify-add-watch path mask\n"
21712 "\n"
21713 msgstr ""
21714
21715 #. type: =head2
21716 #: ../fish/guestfish-actions.pod:1593
21717 msgid "inotify-close"
21718 msgstr ""
21719
21720 #. type: verbatim
21721 #: ../fish/guestfish-actions.pod:1595
21722 #, no-wrap
21723 msgid ""
21724 " inotify-close\n"
21725 "\n"
21726 msgstr ""
21727
21728 #. type: =head2
21729 #: ../fish/guestfish-actions.pod:1601
21730 msgid "inotify-files"
21731 msgstr ""
21732
21733 #. type: verbatim
21734 #: ../fish/guestfish-actions.pod:1603
21735 #, no-wrap
21736 msgid ""
21737 " inotify-files\n"
21738 "\n"
21739 msgstr ""
21740
21741 #. type: textblock
21742 #: ../fish/guestfish-actions.pod:1605
21743 msgid ""
21744 "This function is a helpful wrapper around L</inotify-read> which just "
21745 "returns a list of pathnames of objects that were touched.  The returned "
21746 "pathnames are sorted and deduplicated."
21747 msgstr ""
21748
21749 #. type: =head2
21750 #: ../fish/guestfish-actions.pod:1609
21751 msgid "inotify-init"
21752 msgstr ""
21753
21754 #. type: verbatim
21755 #: ../fish/guestfish-actions.pod:1611
21756 #, no-wrap
21757 msgid ""
21758 " inotify-init maxevents\n"
21759 "\n"
21760 msgstr ""
21761
21762 #. type: textblock
21763 #: ../fish/guestfish-actions.pod:1617
21764 msgid ""
21765 "C<maxevents> is the maximum number of events which will be queued up between "
21766 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
21767 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
21768 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
21769 "but records the fact that it threw them away by setting a flag "
21770 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
21771 msgstr ""
21772
21773 #. type: textblock
21774 #: ../fish/guestfish-actions.pod:1627
21775 msgid ""
21776 "Before any events are generated, you have to add some watches to the "
21777 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
21778 "L</inotify-watch-all>."
21779 msgstr ""
21780
21781 #. type: textblock
21782 #: ../fish/guestfish-actions.pod:1633
21783 msgid ""
21784 "Queued up events should be read periodically by calling L</inotify-read> (or "
21785 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
21786 "If you don't read the events out often enough then you risk the internal "
21787 "queue overflowing."
21788 msgstr ""
21789
21790 #. type: textblock
21791 #: ../fish/guestfish-actions.pod:1640
21792 msgid ""
21793 "The handle should be closed after use by calling L</inotify-close>.  This "
21794 "also removes any watches automatically."
21795 msgstr ""
21796
21797 #. type: =head2
21798 #: ../fish/guestfish-actions.pod:1649
21799 msgid "inotify-read"
21800 msgstr ""
21801
21802 #. type: verbatim
21803 #: ../fish/guestfish-actions.pod:1651
21804 #, no-wrap
21805 msgid ""
21806 " inotify-read\n"
21807 "\n"
21808 msgstr ""
21809
21810 #. type: =head2
21811 #: ../fish/guestfish-actions.pod:1664
21812 msgid "inotify-rm-watch"
21813 msgstr ""
21814
21815 #. type: verbatim
21816 #: ../fish/guestfish-actions.pod:1666
21817 #, no-wrap
21818 msgid ""
21819 " inotify-rm-watch wd\n"
21820 "\n"
21821 msgstr ""
21822
21823 #. type: textblock
21824 #: ../fish/guestfish-actions.pod:1668
21825 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
21826 msgstr ""
21827
21828 #. type: =head2
21829 #: ../fish/guestfish-actions.pod:1671
21830 msgid "inspect-get-arch"
21831 msgstr ""
21832
21833 #. type: verbatim
21834 #: ../fish/guestfish-actions.pod:1673
21835 #, no-wrap
21836 msgid ""
21837 " inspect-get-arch root\n"
21838 "\n"
21839 msgstr ""
21840
21841 #. type: textblock
21842 #: ../fish/guestfish-actions.pod:1675 ../fish/guestfish-actions.pod:1691 ../fish/guestfish-actions.pod:1765 ../fish/guestfish-actions.pod:1783 ../fish/guestfish-actions.pod:1798 ../fish/guestfish-actions.pod:1819 ../fish/guestfish-actions.pod:1834 ../fish/guestfish-actions.pod:1861 ../fish/guestfish-actions.pod:1883 ../fish/guestfish-actions.pod:1907 ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:1972 ../fish/guestfish-actions.pod:1988
21843 msgid ""
21844 "This function should only be called with a root device string as returned by "
21845 "L</inspect-os>."
21846 msgstr ""
21847
21848 #. type: textblock
21849 #: ../fish/guestfish-actions.pod:1678
21850 msgid ""
21851 "This returns the architecture of the inspected operating system.  The "
21852 "possible return values are listed under L</file-architecture>."
21853 msgstr ""
21854
21855 #. type: =head2
21856 #: ../fish/guestfish-actions.pod:1687
21857 msgid "inspect-get-distro"
21858 msgstr ""
21859
21860 #. type: verbatim
21861 #: ../fish/guestfish-actions.pod:1689
21862 #, no-wrap
21863 msgid ""
21864 " inspect-get-distro root\n"
21865 "\n"
21866 msgstr ""
21867
21868 #. type: =head2
21869 #: ../fish/guestfish-actions.pod:1761
21870 msgid "inspect-get-filesystems"
21871 msgstr ""
21872
21873 #. type: verbatim
21874 #: ../fish/guestfish-actions.pod:1763
21875 #, no-wrap
21876 msgid ""
21877 " inspect-get-filesystems root\n"
21878 "\n"
21879 msgstr ""
21880
21881 #. type: textblock
21882 #: ../fish/guestfish-actions.pod:1776
21883 msgid ""
21884 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21885 "L</inspect-get-mountpoints>."
21886 msgstr ""
21887
21888 #. type: =head2
21889 #: ../fish/guestfish-actions.pod:1779
21890 msgid "inspect-get-hostname"
21891 msgstr ""
21892
21893 #. type: verbatim
21894 #: ../fish/guestfish-actions.pod:1781
21895 #, no-wrap
21896 msgid ""
21897 " inspect-get-hostname root\n"
21898 "\n"
21899 msgstr ""
21900
21901 #. type: =head2
21902 #: ../fish/guestfish-actions.pod:1794
21903 msgid "inspect-get-major-version"
21904 msgstr ""
21905
21906 #. type: verbatim
21907 #: ../fish/guestfish-actions.pod:1796
21908 #, no-wrap
21909 msgid ""
21910 " inspect-get-major-version root\n"
21911 "\n"
21912 msgstr ""
21913
21914 #. type: =head2
21915 #: ../fish/guestfish-actions.pod:1815
21916 msgid "inspect-get-minor-version"
21917 msgstr ""
21918
21919 #. type: verbatim
21920 #: ../fish/guestfish-actions.pod:1817
21921 #, no-wrap
21922 msgid ""
21923 " inspect-get-minor-version root\n"
21924 "\n"
21925 msgstr ""
21926
21927 #. type: textblock
21928 #: ../fish/guestfish-actions.pod:1827
21929 msgid ""
21930 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21931 "L</inspect-get-major-version>."
21932 msgstr ""
21933
21934 #. type: =head2
21935 #: ../fish/guestfish-actions.pod:1830
21936 msgid "inspect-get-mountpoints"
21937 msgstr ""
21938
21939 #. type: verbatim
21940 #: ../fish/guestfish-actions.pod:1832
21941 #, no-wrap
21942 msgid ""
21943 " inspect-get-mountpoints root\n"
21944 "\n"
21945 msgstr ""
21946
21947 #. type: textblock
21948 #: ../fish/guestfish-actions.pod:1854
21949 msgid ""
21950 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
21951 "L</inspect-get-filesystems>."
21952 msgstr ""
21953
21954 #. type: =head2
21955 #: ../fish/guestfish-actions.pod:1857
21956 msgid "inspect-get-package-format"
21957 msgstr ""
21958
21959 #. type: verbatim
21960 #: ../fish/guestfish-actions.pod:1859
21961 #, no-wrap
21962 msgid ""
21963 " inspect-get-package-format root\n"
21964 "\n"
21965 msgstr ""
21966
21967 #. type: textblock
21968 #: ../fish/guestfish-actions.pod:1864
21969 msgid ""
21970 "This function and L</inspect-get-package-management> return the package "
21971 "format and package management tool used by the inspected operating system.  "
21972 "For example for Fedora these functions would return C<rpm> (package format) "
21973 "and C<yum> (package management)."
21974 msgstr ""
21975
21976 #. type: =head2
21977 #: ../fish/guestfish-actions.pod:1879
21978 msgid "inspect-get-package-management"
21979 msgstr ""
21980
21981 #. type: verbatim
21982 #: ../fish/guestfish-actions.pod:1881
21983 #, no-wrap
21984 msgid ""
21985 " inspect-get-package-management root\n"
21986 "\n"
21987 msgstr ""
21988
21989 #. type: textblock
21990 #: ../fish/guestfish-actions.pod:1886
21991 msgid ""
21992 "L</inspect-get-package-format> and this function return the package format "
21993 "and package management tool used by the inspected operating system.  For "
21994 "example for Fedora these functions would return C<rpm> (package format) and "
21995 "C<yum> (package management)."
21996 msgstr ""
21997
21998 #. type: =head2
21999 #: ../fish/guestfish-actions.pod:1903
22000 msgid "inspect-get-product-name"
22001 msgstr ""
22002
22003 #. type: verbatim
22004 #: ../fish/guestfish-actions.pod:1905
22005 #, no-wrap
22006 msgid ""
22007 " inspect-get-product-name root\n"
22008 "\n"
22009 msgstr ""
22010
22011 #. type: =head2
22012 #: ../fish/guestfish-actions.pod:1920
22013 msgid "inspect-get-roots"
22014 msgstr ""
22015
22016 #. type: verbatim
22017 #: ../fish/guestfish-actions.pod:1922
22018 #, no-wrap
22019 msgid ""
22020 " inspect-get-roots\n"
22021 "\n"
22022 msgstr ""
22023
22024 #. type: textblock
22025 #: ../fish/guestfish-actions.pod:1924
22026 msgid ""
22027 "This function is a convenient way to get the list of root devices, as "
22028 "returned from a previous call to L</inspect-os>, but without redoing the "
22029 "whole inspection process."
22030 msgstr ""
22031
22032 #. type: textblock
22033 #: ../fish/guestfish-actions.pod:1928
22034 msgid ""
22035 "This returns an empty list if either no root devices were found or the "
22036 "caller has not called L</inspect-os>."
22037 msgstr ""
22038
22039 #. type: =head2
22040 #: ../fish/guestfish-actions.pod:1933
22041 msgid "inspect-get-type"
22042 msgstr ""
22043
22044 #. type: verbatim
22045 #: ../fish/guestfish-actions.pod:1935
22046 #, no-wrap
22047 msgid ""
22048 " inspect-get-type root\n"
22049 "\n"
22050 msgstr ""
22051
22052 #. type: =head2
22053 #: ../fish/guestfish-actions.pod:1968
22054 msgid "inspect-get-windows-systemroot"
22055 msgstr ""
22056
22057 #. type: verbatim
22058 #: ../fish/guestfish-actions.pod:1970
22059 #, no-wrap
22060 msgid ""
22061 " inspect-get-windows-systemroot root\n"
22062 "\n"
22063 msgstr ""
22064
22065 #. type: =head2
22066 #: ../fish/guestfish-actions.pod:1984
22067 msgid "inspect-list-applications"
22068 msgstr ""
22069
22070 #. type: verbatim
22071 #: ../fish/guestfish-actions.pod:1986
22072 #, no-wrap
22073 msgid ""
22074 " inspect-list-applications root\n"
22075 "\n"
22076 msgstr ""
22077
22078 #. type: textblock
22079 #: ../fish/guestfish-actions.pod:1993
22080 msgid ""
22081 "I<Note:> This call works differently from other parts of the inspection "
22082 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
22083 "then mount up the disks, before calling this.  Listing applications is a "
22084 "significantly more difficult operation which requires access to the full "
22085 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
22086 "are just returning data cached in the libguestfs handle, this call actually "
22087 "reads parts of the mounted filesystems during the call."
22088 msgstr ""
22089
22090 #. type: =head2
22091 #: ../fish/guestfish-actions.pod:2083
22092 msgid "inspect-os"
22093 msgstr ""
22094
22095 #. type: verbatim
22096 #: ../fish/guestfish-actions.pod:2085
22097 #, no-wrap
22098 msgid ""
22099 " inspect-os\n"
22100 "\n"
22101 msgstr ""
22102
22103 #. type: textblock
22104 #: ../fish/guestfish-actions.pod:2100
22105 msgid ""
22106 "You can pass the root string(s) returned to other L</inspect-get-*> "
22107 "functions in order to query further information about each operating system, "
22108 "such as the name and version."
22109 msgstr ""
22110
22111 #. type: textblock
22112 #: ../fish/guestfish-actions.pod:2105
22113 msgid ""
22114 "This function uses other libguestfs features such as L</mount-ro> and "
22115 "L</umount-all> in order to mount and unmount filesystems and look at the "
22116 "contents.  This should be called with no disks currently mounted.  The "
22117 "function may also use Augeas, so any existing Augeas handle will be closed."
22118 msgstr ""
22119
22120 #. type: textblock
22121 #: ../fish/guestfish-actions.pod:2117 ../fish/guestfish-actions.pod:2293 ../fish/guestfish-actions.pod:2339
22122 msgid "See also L</list-filesystems>."
22123 msgstr ""
22124
22125 #. type: =head2
22126 #: ../fish/guestfish-actions.pod:2119
22127 msgid "is-blockdev"
22128 msgstr ""
22129
22130 #. type: verbatim
22131 #: ../fish/guestfish-actions.pod:2121
22132 #, no-wrap
22133 msgid ""
22134 " is-blockdev path\n"
22135 "\n"
22136 msgstr ""
22137
22138 #. type: textblock
22139 #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2144 ../fish/guestfish-actions.pod:2163 ../fish/guestfish-actions.pod:2172 ../fish/guestfish-actions.pod:2182 ../fish/guestfish-actions.pod:2216 ../fish/guestfish-actions.pod:2225
22140 msgid "See also L</stat>."
22141 msgstr ""
22142
22143 #. type: =head2
22144 #: ../fish/guestfish-actions.pod:2128
22145 msgid "is-busy"
22146 msgstr ""
22147
22148 #. type: verbatim
22149 #: ../fish/guestfish-actions.pod:2130
22150 #, no-wrap
22151 msgid ""
22152 " is-busy\n"
22153 "\n"
22154 msgstr ""
22155
22156 #. type: =head2
22157 #: ../fish/guestfish-actions.pod:2137
22158 msgid "is-chardev"
22159 msgstr ""
22160
22161 #. type: verbatim
22162 #: ../fish/guestfish-actions.pod:2139
22163 #, no-wrap
22164 msgid ""
22165 " is-chardev path\n"
22166 "\n"
22167 msgstr ""
22168
22169 #. type: =head2
22170 #: ../fish/guestfish-actions.pod:2146
22171 msgid "is-config"
22172 msgstr ""
22173
22174 #. type: verbatim
22175 #: ../fish/guestfish-actions.pod:2148
22176 #, no-wrap
22177 msgid ""
22178 " is-config\n"
22179 "\n"
22180 msgstr ""
22181
22182 #. type: =head2
22183 #: ../fish/guestfish-actions.pod:2155
22184 msgid "is-dir"
22185 msgstr ""
22186
22187 #. type: verbatim
22188 #: ../fish/guestfish-actions.pod:2157
22189 #, no-wrap
22190 msgid ""
22191 " is-dir path\n"
22192 "\n"
22193 msgstr ""
22194
22195 #. type: =head2
22196 #: ../fish/guestfish-actions.pod:2165
22197 msgid "is-fifo"
22198 msgstr ""
22199
22200 #. type: verbatim
22201 #: ../fish/guestfish-actions.pod:2167
22202 #, no-wrap
22203 msgid ""
22204 " is-fifo path\n"
22205 "\n"
22206 msgstr ""
22207
22208 #. type: =head2
22209 #: ../fish/guestfish-actions.pod:2174
22210 msgid "is-file"
22211 msgstr ""
22212
22213 #. type: verbatim
22214 #: ../fish/guestfish-actions.pod:2176
22215 #, no-wrap
22216 msgid ""
22217 " is-file path\n"
22218 "\n"
22219 msgstr ""
22220
22221 #. type: =head2
22222 #: ../fish/guestfish-actions.pod:2184
22223 msgid "is-launching"
22224 msgstr ""
22225
22226 #. type: verbatim
22227 #: ../fish/guestfish-actions.pod:2186
22228 #, no-wrap
22229 msgid ""
22230 " is-launching\n"
22231 "\n"
22232 msgstr ""
22233
22234 #. type: =head2
22235 #: ../fish/guestfish-actions.pod:2193
22236 msgid "is-lv"
22237 msgstr ""
22238
22239 #. type: verbatim
22240 #: ../fish/guestfish-actions.pod:2195
22241 #, no-wrap
22242 msgid ""
22243 " is-lv device\n"
22244 "\n"
22245 msgstr ""
22246
22247 #. type: =head2
22248 #: ../fish/guestfish-actions.pod:2200
22249 msgid "is-ready"
22250 msgstr ""
22251
22252 #. type: verbatim
22253 #: ../fish/guestfish-actions.pod:2202
22254 #, no-wrap
22255 msgid ""
22256 " is-ready\n"
22257 "\n"
22258 msgstr ""
22259
22260 #. type: =head2
22261 #: ../fish/guestfish-actions.pod:2209
22262 msgid "is-socket"
22263 msgstr ""
22264
22265 #. type: verbatim
22266 #: ../fish/guestfish-actions.pod:2211
22267 #, no-wrap
22268 msgid ""
22269 " is-socket path\n"
22270 "\n"
22271 msgstr ""
22272
22273 #. type: =head2
22274 #: ../fish/guestfish-actions.pod:2218
22275 msgid "is-symlink"
22276 msgstr ""
22277
22278 #. type: verbatim
22279 #: ../fish/guestfish-actions.pod:2220
22280 #, no-wrap
22281 msgid ""
22282 " is-symlink path\n"
22283 "\n"
22284 msgstr ""
22285
22286 #. type: =head2
22287 #: ../fish/guestfish-actions.pod:2227
22288 msgid "kill-subprocess"
22289 msgstr ""
22290
22291 #. type: verbatim
22292 #: ../fish/guestfish-actions.pod:2229
22293 #, no-wrap
22294 msgid ""
22295 " kill-subprocess\n"
22296 "\n"
22297 msgstr ""
22298
22299 #. type: =head2
22300 #: ../fish/guestfish-actions.pod:2233
22301 msgid "launch"
22302 msgstr ""
22303
22304 #. type: =head2
22305 #: ../fish/guestfish-actions.pod:2235
22306 msgid "run"
22307 msgstr ""
22308
22309 #. type: verbatim
22310 #: ../fish/guestfish-actions.pod:2237
22311 #, no-wrap
22312 msgid ""
22313 " launch\n"
22314 "\n"
22315 msgstr ""
22316
22317 #. type: =head2
22318 #: ../fish/guestfish-actions.pod:2245
22319 msgid "lchown"
22320 msgstr ""
22321
22322 #. type: verbatim
22323 #: ../fish/guestfish-actions.pod:2247
22324 #, no-wrap
22325 msgid ""
22326 " lchown owner group path\n"
22327 "\n"
22328 msgstr ""
22329
22330 #. type: textblock
22331 #: ../fish/guestfish-actions.pod:2249
22332 msgid ""
22333 "Change the file owner to C<owner> and group to C<group>.  This is like "
22334 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
22335 "the target."
22336 msgstr ""
22337
22338 #. type: =head2
22339 #: ../fish/guestfish-actions.pod:2257
22340 msgid "lgetxattr"
22341 msgstr ""
22342
22343 #. type: verbatim
22344 #: ../fish/guestfish-actions.pod:2259
22345 #, no-wrap
22346 msgid ""
22347 " lgetxattr path name\n"
22348 "\n"
22349 msgstr ""
22350
22351 #. type: textblock
22352 #: ../fish/guestfish-actions.pod:2275
22353 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
22354 msgstr ""
22355
22356 #. type: =head2
22357 #: ../fish/guestfish-actions.pod:2277
22358 msgid "lgetxattrs"
22359 msgstr ""
22360
22361 #. type: verbatim
22362 #: ../fish/guestfish-actions.pod:2279
22363 #, no-wrap
22364 msgid ""
22365 " lgetxattrs path\n"
22366 "\n"
22367 msgstr ""
22368
22369 #. type: textblock
22370 #: ../fish/guestfish-actions.pod:2281
22371 msgid ""
22372 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
22373 "it returns the extended attributes of the link itself."
22374 msgstr ""
22375
22376 #. type: =head2
22377 #: ../fish/guestfish-actions.pod:2285
22378 msgid "list-devices"
22379 msgstr ""
22380
22381 #. type: verbatim
22382 #: ../fish/guestfish-actions.pod:2287
22383 #, no-wrap
22384 msgid ""
22385 " list-devices\n"
22386 "\n"
22387 msgstr ""
22388
22389 #. type: =head2
22390 #: ../fish/guestfish-actions.pod:2295
22391 msgid "list-filesystems"
22392 msgstr ""
22393
22394 #. type: verbatim
22395 #: ../fish/guestfish-actions.pod:2297
22396 #, no-wrap
22397 msgid ""
22398 " list-filesystems\n"
22399 "\n"
22400 msgstr ""
22401
22402 #. type: textblock
22403 #: ../fish/guestfish-actions.pod:2316
22404 msgid ""
22405 "This command runs other libguestfs commands, which might include L</mount> "
22406 "and L</umount>, and therefore you should use this soon after launch and only "
22407 "when nothing is mounted."
22408 msgstr ""
22409
22410 #. type: textblock
22411 #: ../fish/guestfish-actions.pod:2320
22412 msgid ""
22413 "Not all of the filesystems returned will be mountable.  In particular, swap "
22414 "partitions are returned in the list.  Also this command does not check that "
22415 "each filesystem found is valid and mountable, and some filesystems might be "
22416 "mountable but require special options.  Filesystems may not all belong to a "
22417 "single logical operating system (use L</inspect-os> to look for OSes)."
22418 msgstr ""
22419
22420 #. type: =head2
22421 #: ../fish/guestfish-actions.pod:2328
22422 msgid "list-partitions"
22423 msgstr ""
22424
22425 #. type: verbatim
22426 #: ../fish/guestfish-actions.pod:2330
22427 #, no-wrap
22428 msgid ""
22429 " list-partitions\n"
22430 "\n"
22431 msgstr ""
22432
22433 #. type: textblock
22434 #: ../fish/guestfish-actions.pod:2336
22435 msgid ""
22436 "This does not return logical volumes.  For that you will need to call "
22437 "L</lvs>."
22438 msgstr ""
22439
22440 #. type: =head2
22441 #: ../fish/guestfish-actions.pod:2341
22442 msgid "ll"
22443 msgstr ""
22444
22445 #. type: verbatim
22446 #: ../fish/guestfish-actions.pod:2343
22447 #, no-wrap
22448 msgid ""
22449 " ll directory\n"
22450 "\n"
22451 msgstr ""
22452
22453 #. type: =head2
22454 #: ../fish/guestfish-actions.pod:2351
22455 msgid "ln"
22456 msgstr ""
22457
22458 #. type: verbatim
22459 #: ../fish/guestfish-actions.pod:2353
22460 #, no-wrap
22461 msgid ""
22462 " ln target linkname\n"
22463 "\n"
22464 msgstr ""
22465
22466 #. type: =head2
22467 #: ../fish/guestfish-actions.pod:2357
22468 msgid "ln-f"
22469 msgstr ""
22470
22471 #. type: verbatim
22472 #: ../fish/guestfish-actions.pod:2359
22473 #, no-wrap
22474 msgid ""
22475 " ln-f target linkname\n"
22476 "\n"
22477 msgstr ""
22478
22479 #. type: =head2
22480 #: ../fish/guestfish-actions.pod:2364
22481 msgid "ln-s"
22482 msgstr ""
22483
22484 #. type: verbatim
22485 #: ../fish/guestfish-actions.pod:2366
22486 #, no-wrap
22487 msgid ""
22488 " ln-s target linkname\n"
22489 "\n"
22490 msgstr ""
22491
22492 #. type: =head2
22493 #: ../fish/guestfish-actions.pod:2370
22494 msgid "ln-sf"
22495 msgstr ""
22496
22497 #. type: verbatim
22498 #: ../fish/guestfish-actions.pod:2372
22499 #, no-wrap
22500 msgid ""
22501 " ln-sf target linkname\n"
22502 "\n"
22503 msgstr ""
22504
22505 #. type: =head2
22506 #: ../fish/guestfish-actions.pod:2377
22507 msgid "lremovexattr"
22508 msgstr ""
22509
22510 #. type: verbatim
22511 #: ../fish/guestfish-actions.pod:2379
22512 #, no-wrap
22513 msgid ""
22514 " lremovexattr xattr path\n"
22515 "\n"
22516 msgstr ""
22517
22518 #. type: textblock
22519 #: ../fish/guestfish-actions.pod:2381
22520 msgid ""
22521 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
22522 "it removes an extended attribute of the link itself."
22523 msgstr ""
22524
22525 #. type: =head2
22526 #: ../fish/guestfish-actions.pod:2385
22527 msgid "ls"
22528 msgstr ""
22529
22530 #. type: verbatim
22531 #: ../fish/guestfish-actions.pod:2387
22532 #, no-wrap
22533 msgid ""
22534 " ls directory\n"
22535 "\n"
22536 msgstr ""
22537
22538 #. type: textblock
22539 #: ../fish/guestfish-actions.pod:2393
22540 msgid ""
22541 "This command is mostly useful for interactive sessions.  Programs should "
22542 "probably use L</readdir> instead."
22543 msgstr ""
22544
22545 #. type: =head2
22546 #: ../fish/guestfish-actions.pod:2396
22547 msgid "lsetxattr"
22548 msgstr ""
22549
22550 #. type: verbatim
22551 #: ../fish/guestfish-actions.pod:2398
22552 #, no-wrap
22553 msgid ""
22554 " lsetxattr xattr val vallen path\n"
22555 "\n"
22556 msgstr ""
22557
22558 #. type: textblock
22559 #: ../fish/guestfish-actions.pod:2400
22560 msgid ""
22561 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
22562 "sets an extended attribute of the link itself."
22563 msgstr ""
22564
22565 #. type: =head2
22566 #: ../fish/guestfish-actions.pod:2404
22567 msgid "lstat"
22568 msgstr ""
22569
22570 #. type: verbatim
22571 #: ../fish/guestfish-actions.pod:2406
22572 #, no-wrap
22573 msgid ""
22574 " lstat path\n"
22575 "\n"
22576 msgstr ""
22577
22578 #. type: textblock
22579 #: ../fish/guestfish-actions.pod:2410
22580 msgid ""
22581 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
22582 "the link is stat-ed, not the file it refers to."
22583 msgstr ""
22584
22585 #. type: =head2
22586 #: ../fish/guestfish-actions.pod:2416
22587 msgid "lstatlist"
22588 msgstr ""
22589
22590 #. type: verbatim
22591 #: ../fish/guestfish-actions.pod:2418
22592 #, no-wrap
22593 msgid ""
22594 " lstatlist path 'names ...'\n"
22595 "\n"
22596 msgstr ""
22597
22598 #. type: textblock
22599 #: ../fish/guestfish-actions.pod:2420
22600 msgid ""
22601 "This call allows you to perform the L</lstat> operation on multiple files, "
22602 "where all files are in the directory C<path>.  C<names> is the list of files "
22603 "from this directory."
22604 msgstr ""
22605
22606 #. type: textblock
22607 #: ../fish/guestfish-actions.pod:2429
22608 msgid ""
22609 "This call is intended for programs that want to efficiently list a directory "
22610 "contents without making many round-trips.  See also L</lxattrlist> for a "
22611 "similarly efficient call for getting extended attributes.  Very long "
22612 "directory listings might cause the protocol message size to be exceeded, "
22613 "causing this call to fail.  The caller must split up such requests into "
22614 "smaller groups of names."
22615 msgstr ""
22616
22617 #. type: =head2
22618 #: ../fish/guestfish-actions.pod:2437
22619 msgid "luks-add-key"
22620 msgstr ""
22621
22622 #. type: verbatim
22623 #: ../fish/guestfish-actions.pod:2439
22624 #, no-wrap
22625 msgid ""
22626 " luks-add-key device keyslot\n"
22627 "\n"
22628 msgstr ""
22629
22630 #. type: textblock
22631 #: ../fish/guestfish-actions.pod:2446
22632 msgid ""
22633 "Note that if C<keyslot> already contains a key, then this command will "
22634 "fail.  You have to use L</luks-kill-slot> first to remove that key."
22635 msgstr ""
22636
22637 #. type: textblock
22638 #: ../fish/guestfish-actions.pod:2450 ../fish/guestfish-actions.pod:2472 ../fish/guestfish-actions.pod:2485 ../fish/guestfish-actions.pod:2499 ../fish/guestfish-actions.pod:2522 ../fish/guestfish-actions.pod:2532
22639 msgid ""
22640 "This command has one or more key or passphrase parameters.  Guestfish will "
22641 "prompt for these separately."
22642 msgstr ""
22643
22644 #. type: =head2
22645 #: ../fish/guestfish-actions.pod:2453
22646 msgid "luks-close"
22647 msgstr ""
22648
22649 #. type: verbatim
22650 #: ../fish/guestfish-actions.pod:2455
22651 #, no-wrap
22652 msgid ""
22653 " luks-close device\n"
22654 "\n"
22655 msgstr ""
22656
22657 #. type: textblock
22658 #: ../fish/guestfish-actions.pod:2457
22659 msgid ""
22660 "This closes a LUKS device that was created earlier by L</luks-open> or "
22661 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
22662 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
22663 "underlying block device."
22664 msgstr ""
22665
22666 #. type: =head2
22667 #: ../fish/guestfish-actions.pod:2463
22668 msgid "luks-format"
22669 msgstr ""
22670
22671 #. type: verbatim
22672 #: ../fish/guestfish-actions.pod:2465
22673 #, no-wrap
22674 msgid ""
22675 " luks-format device keyslot\n"
22676 "\n"
22677 msgstr ""
22678
22679 #. type: =head2
22680 #: ../fish/guestfish-actions.pod:2478
22681 msgid "luks-format-cipher"
22682 msgstr ""
22683
22684 #. type: verbatim
22685 #: ../fish/guestfish-actions.pod:2480
22686 #, no-wrap
22687 msgid ""
22688 " luks-format-cipher device keyslot cipher\n"
22689 "\n"
22690 msgstr ""
22691
22692 #. type: textblock
22693 #: ../fish/guestfish-actions.pod:2482
22694 msgid ""
22695 "This command is the same as L</luks-format> but it also allows you to set "
22696 "the C<cipher> used."
22697 msgstr ""
22698
22699 #. type: =head2
22700 #: ../fish/guestfish-actions.pod:2491
22701 msgid "luks-kill-slot"
22702 msgstr ""
22703
22704 #. type: verbatim
22705 #: ../fish/guestfish-actions.pod:2493
22706 #, no-wrap
22707 msgid ""
22708 " luks-kill-slot device keyslot\n"
22709 "\n"
22710 msgstr ""
22711
22712 #. type: =head2
22713 #: ../fish/guestfish-actions.pod:2502
22714 msgid "luks-open"
22715 msgstr ""
22716
22717 #. type: verbatim
22718 #: ../fish/guestfish-actions.pod:2504
22719 #, no-wrap
22720 msgid ""
22721 " luks-open device mapname\n"
22722 "\n"
22723 msgstr ""
22724
22725 #. type: textblock
22726 #: ../fish/guestfish-actions.pod:2518
22727 msgid ""
22728 "If this block device contains LVM volume groups, then calling L</vgscan> "
22729 "followed by L</vg-activate-all> will make them visible."
22730 msgstr ""
22731
22732 #. type: =head2
22733 #: ../fish/guestfish-actions.pod:2525
22734 msgid "luks-open-ro"
22735 msgstr ""
22736
22737 #. type: verbatim
22738 #: ../fish/guestfish-actions.pod:2527
22739 #, no-wrap
22740 msgid ""
22741 " luks-open-ro device mapname\n"
22742 "\n"
22743 msgstr ""
22744
22745 #. type: textblock
22746 #: ../fish/guestfish-actions.pod:2529
22747 msgid ""
22748 "This is the same as L</luks-open> except that a read-only mapping is "
22749 "created."
22750 msgstr ""
22751
22752 #. type: =head2
22753 #: ../fish/guestfish-actions.pod:2535
22754 msgid "lvcreate"
22755 msgstr ""
22756
22757 #. type: verbatim
22758 #: ../fish/guestfish-actions.pod:2537
22759 #, no-wrap
22760 msgid ""
22761 " lvcreate logvol volgroup mbytes\n"
22762 "\n"
22763 msgstr ""
22764
22765 #. type: =head2
22766 #: ../fish/guestfish-actions.pod:2542
22767 msgid "lvm-canonical-lv-name"
22768 msgstr ""
22769
22770 #. type: verbatim
22771 #: ../fish/guestfish-actions.pod:2544
22772 #, no-wrap
22773 msgid ""
22774 " lvm-canonical-lv-name lvname\n"
22775 "\n"
22776 msgstr ""
22777
22778 #. type: textblock
22779 #: ../fish/guestfish-actions.pod:2553
22780 msgid "See also L</is-lv>."
22781 msgstr ""
22782
22783 #. type: =head2
22784 #: ../fish/guestfish-actions.pod:2555
22785 msgid "lvm-clear-filter"
22786 msgstr ""
22787
22788 #. type: verbatim
22789 #: ../fish/guestfish-actions.pod:2557
22790 #, no-wrap
22791 msgid ""
22792 " lvm-clear-filter\n"
22793 "\n"
22794 msgstr ""
22795
22796 #. type: textblock
22797 #: ../fish/guestfish-actions.pod:2559
22798 msgid ""
22799 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
22800 "block device."
22801 msgstr ""
22802
22803 #. type: =head2
22804 #: ../fish/guestfish-actions.pod:2565
22805 msgid "lvm-remove-all"
22806 msgstr ""
22807
22808 #. type: verbatim
22809 #: ../fish/guestfish-actions.pod:2567
22810 #, no-wrap
22811 msgid ""
22812 " lvm-remove-all\n"
22813 "\n"
22814 msgstr ""
22815
22816 #. type: =head2
22817 #: ../fish/guestfish-actions.pod:2575
22818 msgid "lvm-set-filter"
22819 msgstr ""
22820
22821 #. type: verbatim
22822 #: ../fish/guestfish-actions.pod:2577
22823 #, no-wrap
22824 msgid ""
22825 " lvm-set-filter 'devices ...'\n"
22826 "\n"
22827 msgstr ""
22828
22829 #. type: =head2
22830 #: ../fish/guestfish-actions.pod:2602
22831 msgid "lvremove"
22832 msgstr ""
22833
22834 #. type: verbatim
22835 #: ../fish/guestfish-actions.pod:2604
22836 #, no-wrap
22837 msgid ""
22838 " lvremove device\n"
22839 "\n"
22840 msgstr ""
22841
22842 #. type: =head2
22843 #: ../fish/guestfish-actions.pod:2612
22844 msgid "lvrename"
22845 msgstr ""
22846
22847 #. type: verbatim
22848 #: ../fish/guestfish-actions.pod:2614
22849 #, no-wrap
22850 msgid ""
22851 " lvrename logvol newlogvol\n"
22852 "\n"
22853 msgstr ""
22854
22855 #. type: =head2
22856 #: ../fish/guestfish-actions.pod:2618
22857 msgid "lvresize"
22858 msgstr ""
22859
22860 #. type: verbatim
22861 #: ../fish/guestfish-actions.pod:2620
22862 #, no-wrap
22863 msgid ""
22864 " lvresize device mbytes\n"
22865 "\n"
22866 msgstr ""
22867
22868 #. type: =head2
22869 #: ../fish/guestfish-actions.pod:2626
22870 msgid "lvresize-free"
22871 msgstr ""
22872
22873 #. type: verbatim
22874 #: ../fish/guestfish-actions.pod:2628
22875 #, no-wrap
22876 msgid ""
22877 " lvresize-free lv percent\n"
22878 "\n"
22879 msgstr ""
22880
22881 #. type: =head2
22882 #: ../fish/guestfish-actions.pod:2636
22883 msgid "lvs"
22884 msgstr ""
22885
22886 #. type: verbatim
22887 #: ../fish/guestfish-actions.pod:2638
22888 #, no-wrap
22889 msgid ""
22890 " lvs\n"
22891 "\n"
22892 msgstr ""
22893
22894 #. type: textblock
22895 #: ../fish/guestfish-actions.pod:2646
22896 msgid "See also L</lvs-full>, L</list-filesystems>."
22897 msgstr ""
22898
22899 #. type: =head2
22900 #: ../fish/guestfish-actions.pod:2648
22901 msgid "lvs-full"
22902 msgstr ""
22903
22904 #. type: verbatim
22905 #: ../fish/guestfish-actions.pod:2650
22906 #, no-wrap
22907 msgid ""
22908 " lvs-full\n"
22909 "\n"
22910 msgstr ""
22911
22912 #. type: =head2
22913 #: ../fish/guestfish-actions.pod:2655
22914 msgid "lvuuid"
22915 msgstr ""
22916
22917 #. type: verbatim
22918 #: ../fish/guestfish-actions.pod:2657
22919 #, no-wrap
22920 msgid ""
22921 " lvuuid device\n"
22922 "\n"
22923 msgstr ""
22924
22925 #. type: =head2
22926 #: ../fish/guestfish-actions.pod:2661
22927 msgid "lxattrlist"
22928 msgstr ""
22929
22930 #. type: verbatim
22931 #: ../fish/guestfish-actions.pod:2663
22932 #, no-wrap
22933 msgid ""
22934 " lxattrlist path 'names ...'\n"
22935 "\n"
22936 msgstr ""
22937
22938 #. type: textblock
22939 #: ../fish/guestfish-actions.pod:2679
22940 msgid ""
22941 "This call is intended for programs that want to efficiently list a directory "
22942 "contents without making many round-trips.  See also L</lstatlist> for a "
22943 "similarly efficient call for getting standard stats.  Very long directory "
22944 "listings might cause the protocol message size to be exceeded, causing this "
22945 "call to fail.  The caller must split up such requests into smaller groups of "
22946 "names."
22947 msgstr ""
22948
22949 #. type: =head2
22950 #: ../fish/guestfish-actions.pod:2687
22951 msgid "mkdir"
22952 msgstr ""
22953
22954 #. type: verbatim
22955 #: ../fish/guestfish-actions.pod:2689
22956 #, no-wrap
22957 msgid ""
22958 " mkdir path\n"
22959 "\n"
22960 msgstr ""
22961
22962 #. type: =head2
22963 #: ../fish/guestfish-actions.pod:2693
22964 msgid "mkdir-mode"
22965 msgstr ""
22966
22967 #. type: verbatim
22968 #: ../fish/guestfish-actions.pod:2695
22969 #, no-wrap
22970 msgid ""
22971 " mkdir-mode path mode\n"
22972 "\n"
22973 msgstr ""
22974
22975 #. type: textblock
22976 #: ../fish/guestfish-actions.pod:2704
22977 msgid "See also L</mkdir>, L</umask>"
22978 msgstr ""
22979
22980 #. type: =head2
22981 #: ../fish/guestfish-actions.pod:2706
22982 msgid "mkdir-p"
22983 msgstr ""
22984
22985 #. type: verbatim
22986 #: ../fish/guestfish-actions.pod:2708
22987 #, no-wrap
22988 msgid ""
22989 " mkdir-p path\n"
22990 "\n"
22991 msgstr ""
22992
22993 #. type: =head2
22994 #: ../fish/guestfish-actions.pod:2713
22995 msgid "mkdtemp"
22996 msgstr ""
22997
22998 #. type: verbatim
22999 #: ../fish/guestfish-actions.pod:2715
23000 #, no-wrap
23001 msgid ""
23002 " mkdtemp template\n"
23003 "\n"
23004 msgstr ""
23005
23006 #. type: =head2
23007 #: ../fish/guestfish-actions.pod:2736
23008 msgid "mke2fs-J"
23009 msgstr ""
23010
23011 #. type: verbatim
23012 #: ../fish/guestfish-actions.pod:2738
23013 #, no-wrap
23014 msgid ""
23015 " mke2fs-J fstype blocksize device journal\n"
23016 "\n"
23017 msgstr ""
23018
23019 #. type: textblock
23020 #: ../fish/guestfish-actions.pod:2746
23021 msgid "See also L</mke2journal>."
23022 msgstr ""
23023
23024 #. type: =head2
23025 #: ../fish/guestfish-actions.pod:2748
23026 msgid "mke2fs-JL"
23027 msgstr ""
23028
23029 #. type: verbatim
23030 #: ../fish/guestfish-actions.pod:2750
23031 #, no-wrap
23032 msgid ""
23033 " mke2fs-JL fstype blocksize device label\n"
23034 "\n"
23035 msgstr ""
23036
23037 #. type: textblock
23038 #: ../fish/guestfish-actions.pod:2755
23039 msgid "See also L</mke2journal-L>."
23040 msgstr ""
23041
23042 #. type: =head2
23043 #: ../fish/guestfish-actions.pod:2757
23044 msgid "mke2fs-JU"
23045 msgstr ""
23046
23047 #. type: verbatim
23048 #: ../fish/guestfish-actions.pod:2759
23049 #, no-wrap
23050 msgid ""
23051 " mke2fs-JU fstype blocksize device uuid\n"
23052 "\n"
23053 msgstr ""
23054
23055 #. type: textblock
23056 #: ../fish/guestfish-actions.pod:2764
23057 msgid "See also L</mke2journal-U>."
23058 msgstr ""
23059
23060 #. type: =head2
23061 #: ../fish/guestfish-actions.pod:2766
23062 msgid "mke2journal"
23063 msgstr ""
23064
23065 #. type: verbatim
23066 #: ../fish/guestfish-actions.pod:2768
23067 #, no-wrap
23068 msgid ""
23069 " mke2journal blocksize device\n"
23070 "\n"
23071 msgstr ""
23072
23073 #. type: =head2
23074 #: ../fish/guestfish-actions.pod:2775
23075 msgid "mke2journal-L"
23076 msgstr ""
23077
23078 #. type: verbatim
23079 #: ../fish/guestfish-actions.pod:2777
23080 #, no-wrap
23081 msgid ""
23082 " mke2journal-L blocksize label device\n"
23083 "\n"
23084 msgstr ""
23085
23086 #. type: =head2
23087 #: ../fish/guestfish-actions.pod:2781
23088 msgid "mke2journal-U"
23089 msgstr ""
23090
23091 #. type: verbatim
23092 #: ../fish/guestfish-actions.pod:2783
23093 #, no-wrap
23094 msgid ""
23095 " mke2journal-U blocksize uuid device\n"
23096 "\n"
23097 msgstr ""
23098
23099 #. type: =head2
23100 #: ../fish/guestfish-actions.pod:2787
23101 msgid "mkfifo"
23102 msgstr ""
23103
23104 #. type: verbatim
23105 #: ../fish/guestfish-actions.pod:2789
23106 #, no-wrap
23107 msgid ""
23108 " mkfifo mode path\n"
23109 "\n"
23110 msgstr ""
23111
23112 #. type: textblock
23113 #: ../fish/guestfish-actions.pod:2791
23114 msgid ""
23115 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
23116 "is just a convenient wrapper around L</mknod>."
23117 msgstr ""
23118
23119 #. type: =head2
23120 #: ../fish/guestfish-actions.pod:2797
23121 msgid "mkfs"
23122 msgstr ""
23123
23124 #. type: verbatim
23125 #: ../fish/guestfish-actions.pod:2799
23126 #, no-wrap
23127 msgid ""
23128 " mkfs fstype device\n"
23129 "\n"
23130 msgstr ""
23131
23132 #. type: =head2
23133 #: ../fish/guestfish-actions.pod:2805
23134 msgid "mkfs-b"
23135 msgstr ""
23136
23137 #. type: verbatim
23138 #: ../fish/guestfish-actions.pod:2807
23139 #, no-wrap
23140 msgid ""
23141 " mkfs-b fstype blocksize device\n"
23142 "\n"
23143 msgstr ""
23144
23145 #. type: textblock
23146 #: ../fish/guestfish-actions.pod:2809
23147 msgid ""
23148 "This call is similar to L</mkfs>, but it allows you to control the block "
23149 "size of the resulting filesystem.  Supported block sizes depend on the "
23150 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
23151 msgstr ""
23152
23153 #. type: =head2
23154 #: ../fish/guestfish-actions.pod:2824
23155 msgid "mkfs-opts"
23156 msgstr ""
23157
23158 #. type: verbatim
23159 #: ../fish/guestfish-actions.pod:2826
23160 #, no-wrap
23161 msgid ""
23162 " mkfs-opts fstype device [blocksize:..]\n"
23163 "\n"
23164 msgstr ""
23165
23166 #. type: =head2
23167 #: ../fish/guestfish-actions.pod:2850
23168 msgid "mkmountpoint"
23169 msgstr ""
23170
23171 #. type: verbatim
23172 #: ../fish/guestfish-actions.pod:2852
23173 #, no-wrap
23174 msgid ""
23175 " mkmountpoint exemptpath\n"
23176 "\n"
23177 msgstr ""
23178
23179 #. type: textblock
23180 #: ../fish/guestfish-actions.pod:2854
23181 msgid ""
23182 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
23183 "to create extra mountpoints before mounting the first filesystem."
23184 msgstr ""
23185
23186 #. type: textblock
23187 #: ../fish/guestfish-actions.pod:2878
23188 msgid ""
23189 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
23190 "unexpected errors if you try to mix these calls.  It is safest to manually "
23191 "unmount filesystems and remove mountpoints after use."
23192 msgstr ""
23193
23194 #. type: textblock
23195 #: ../fish/guestfish-actions.pod:2882
23196 msgid ""
23197 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
23198 "for this to work for manual mountpoints, you must ensure that the innermost "
23199 "mountpoints have the longest pathnames, as in the example code above."
23200 msgstr ""
23201
23202 #. type: textblock
23203 #: ../fish/guestfish-actions.pod:2889
23204 msgid ""
23205 "Autosync [see L</set-autosync>, this is set by default on handles] means "
23206 "that L</umount-all> is called when the handle is closed which can also "
23207 "trigger these issues."
23208 msgstr ""
23209
23210 #. type: =head2
23211 #: ../fish/guestfish-actions.pod:2893
23212 msgid "mknod"
23213 msgstr ""
23214
23215 #. type: verbatim
23216 #: ../fish/guestfish-actions.pod:2895
23217 #, no-wrap
23218 msgid ""
23219 " mknod mode devmajor devminor path\n"
23220 "\n"
23221 msgstr ""
23222
23223 #. type: textblock
23224 #: ../fish/guestfish-actions.pod:2905
23225 msgid ""
23226 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
23227 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
23228 "regular file).  These constants are available in the standard Linux header "
23229 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
23230 "wrappers around this command which bitwise OR in the appropriate constant "
23231 "for you."
23232 msgstr ""
23233
23234 #. type: =head2
23235 #: ../fish/guestfish-actions.pod:2915
23236 msgid "mknod-b"
23237 msgstr ""
23238
23239 #. type: verbatim
23240 #: ../fish/guestfish-actions.pod:2917
23241 #, no-wrap
23242 msgid ""
23243 " mknod-b mode devmajor devminor path\n"
23244 "\n"
23245 msgstr ""
23246
23247 #. type: textblock
23248 #: ../fish/guestfish-actions.pod:2919
23249 msgid ""
23250 "This call creates a block device node called C<path> with mode C<mode> and "
23251 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23252 "wrapper around L</mknod>."
23253 msgstr ""
23254
23255 #. type: =head2
23256 #: ../fish/guestfish-actions.pod:2925
23257 msgid "mknod-c"
23258 msgstr ""
23259
23260 #. type: verbatim
23261 #: ../fish/guestfish-actions.pod:2927
23262 #, no-wrap
23263 msgid ""
23264 " mknod-c mode devmajor devminor path\n"
23265 "\n"
23266 msgstr ""
23267
23268 #. type: textblock
23269 #: ../fish/guestfish-actions.pod:2929
23270 msgid ""
23271 "This call creates a char device node called C<path> with mode C<mode> and "
23272 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23273 "wrapper around L</mknod>."
23274 msgstr ""
23275
23276 #. type: =head2
23277 #: ../fish/guestfish-actions.pod:2935
23278 msgid "mkswap"
23279 msgstr ""
23280
23281 #. type: verbatim
23282 #: ../fish/guestfish-actions.pod:2937
23283 #, no-wrap
23284 msgid ""
23285 " mkswap device\n"
23286 "\n"
23287 msgstr ""
23288
23289 #. type: =head2
23290 #: ../fish/guestfish-actions.pod:2941
23291 msgid "mkswap-L"
23292 msgstr ""
23293
23294 #. type: verbatim
23295 #: ../fish/guestfish-actions.pod:2943
23296 #, no-wrap
23297 msgid ""
23298 " mkswap-L label device\n"
23299 "\n"
23300 msgstr ""
23301
23302 #. type: =head2
23303 #: ../fish/guestfish-actions.pod:2951
23304 msgid "mkswap-U"
23305 msgstr ""
23306
23307 #. type: verbatim
23308 #: ../fish/guestfish-actions.pod:2953
23309 #, no-wrap
23310 msgid ""
23311 " mkswap-U uuid device\n"
23312 "\n"
23313 msgstr ""
23314
23315 #. type: =head2
23316 #: ../fish/guestfish-actions.pod:2957
23317 msgid "mkswap-file"
23318 msgstr ""
23319
23320 #. type: verbatim
23321 #: ../fish/guestfish-actions.pod:2959
23322 #, no-wrap
23323 msgid ""
23324 " mkswap-file path\n"
23325 "\n"
23326 msgstr ""
23327
23328 #. type: textblock
23329 #: ../fish/guestfish-actions.pod:2963
23330 msgid ""
23331 "This command just writes a swap file signature to an existing file.  To "
23332 "create the file itself, use something like L</fallocate>."
23333 msgstr ""
23334
23335 #. type: =head2
23336 #: ../fish/guestfish-actions.pod:2966
23337 msgid "modprobe"
23338 msgstr ""
23339
23340 #. type: verbatim
23341 #: ../fish/guestfish-actions.pod:2968
23342 #, no-wrap
23343 msgid ""
23344 " modprobe modulename\n"
23345 "\n"
23346 msgstr ""
23347
23348 #. type: =head2
23349 #: ../fish/guestfish-actions.pod:2975
23350 msgid "mount"
23351 msgstr ""
23352
23353 #. type: verbatim
23354 #: ../fish/guestfish-actions.pod:2977
23355 #, no-wrap
23356 msgid ""
23357 " mount device mountpoint\n"
23358 "\n"
23359 msgstr ""
23360
23361 #. type: textblock
23362 #: ../fish/guestfish-actions.pod:2993
23363 msgid ""
23364 "B<Important note:> When you use this call, the filesystem options C<sync> "
23365 "and C<noatime> are set implicitly.  This was originally done because we "
23366 "thought it would improve reliability, but it turns out that I<-o sync> has a "
23367 "very large negative performance impact and negligible effect on "
23368 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
23369 "code that needs performance, and instead use L</mount-options> (use an empty "
23370 "string for the first parameter if you don't want any options)."
23371 msgstr ""
23372
23373 #. type: =head2
23374 #: ../fish/guestfish-actions.pod:3003
23375 msgid "mount-loop"
23376 msgstr ""
23377
23378 #. type: verbatim
23379 #: ../fish/guestfish-actions.pod:3005
23380 #, no-wrap
23381 msgid ""
23382 " mount-loop file mountpoint\n"
23383 "\n"
23384 msgstr ""
23385
23386 #. type: =head2
23387 #: ../fish/guestfish-actions.pod:3011
23388 msgid "mount-options"
23389 msgstr ""
23390
23391 #. type: verbatim
23392 #: ../fish/guestfish-actions.pod:3013
23393 #, no-wrap
23394 msgid ""
23395 " mount-options options device mountpoint\n"
23396 "\n"
23397 msgstr ""
23398
23399 #. type: textblock
23400 #: ../fish/guestfish-actions.pod:3015
23401 msgid ""
23402 "This is the same as the L</mount> command, but it allows you to set the "
23403 "mount options as for the L<mount(8)> I<-o> flag."
23404 msgstr ""
23405
23406 #. type: =head2
23407 #: ../fish/guestfish-actions.pod:3023
23408 msgid "mount-ro"
23409 msgstr ""
23410
23411 #. type: verbatim
23412 #: ../fish/guestfish-actions.pod:3025
23413 #, no-wrap
23414 msgid ""
23415 " mount-ro device mountpoint\n"
23416 "\n"
23417 msgstr ""
23418
23419 #. type: textblock
23420 #: ../fish/guestfish-actions.pod:3027
23421 msgid ""
23422 "This is the same as the L</mount> command, but it mounts the filesystem with "
23423 "the read-only (I<-o ro>) flag."
23424 msgstr ""
23425
23426 #. type: =head2
23427 #: ../fish/guestfish-actions.pod:3030
23428 msgid "mount-vfs"
23429 msgstr ""
23430
23431 #. type: verbatim
23432 #: ../fish/guestfish-actions.pod:3032
23433 #, no-wrap
23434 msgid ""
23435 " mount-vfs options vfstype device mountpoint\n"
23436 "\n"
23437 msgstr ""
23438
23439 #. type: textblock
23440 #: ../fish/guestfish-actions.pod:3034
23441 msgid ""
23442 "This is the same as the L</mount> command, but it allows you to set both the "
23443 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
23444 msgstr ""
23445
23446 #. type: =head2
23447 #: ../fish/guestfish-actions.pod:3038
23448 msgid "mountpoints"
23449 msgstr ""
23450
23451 #. type: verbatim
23452 #: ../fish/guestfish-actions.pod:3040
23453 #, no-wrap
23454 msgid ""
23455 " mountpoints\n"
23456 "\n"
23457 msgstr ""
23458
23459 #. type: textblock
23460 #: ../fish/guestfish-actions.pod:3042
23461 msgid ""
23462 "This call is similar to L</mounts>.  That call returns a list of devices.  "
23463 "This one returns a hash table (map) of device name to directory where the "
23464 "device is mounted."
23465 msgstr ""
23466
23467 #. type: =head2
23468 #: ../fish/guestfish-actions.pod:3046
23469 msgid "mounts"
23470 msgstr ""
23471
23472 #. type: verbatim
23473 #: ../fish/guestfish-actions.pod:3048
23474 #, no-wrap
23475 msgid ""
23476 " mounts\n"
23477 "\n"
23478 msgstr ""
23479
23480 #. type: textblock
23481 #: ../fish/guestfish-actions.pod:3055
23482 msgid "See also: L</mountpoints>"
23483 msgstr ""
23484
23485 #. type: =head2
23486 #: ../fish/guestfish-actions.pod:3057
23487 msgid "mv"
23488 msgstr ""
23489
23490 #. type: verbatim
23491 #: ../fish/guestfish-actions.pod:3059
23492 #, no-wrap
23493 msgid ""
23494 " mv src dest\n"
23495 "\n"
23496 msgstr ""
23497
23498 #. type: =head2
23499 #: ../fish/guestfish-actions.pod:3064
23500 msgid "ntfs-3g-probe"
23501 msgstr ""
23502
23503 #. type: verbatim
23504 #: ../fish/guestfish-actions.pod:3066
23505 #, no-wrap
23506 msgid ""
23507 " ntfs-3g-probe true|false device\n"
23508 "\n"
23509 msgstr ""
23510
23511 #. type: =head2
23512 #: ../fish/guestfish-actions.pod:3080
23513 msgid "ntfsresize"
23514 msgstr ""
23515
23516 #. type: verbatim
23517 #: ../fish/guestfish-actions.pod:3082
23518 #, no-wrap
23519 msgid ""
23520 " ntfsresize device\n"
23521 "\n"
23522 msgstr ""
23523
23524 #. type: =head2
23525 #: ../fish/guestfish-actions.pod:3088
23526 msgid "ntfsresize-size"
23527 msgstr ""
23528
23529 #. type: verbatim
23530 #: ../fish/guestfish-actions.pod:3090
23531 #, no-wrap
23532 msgid ""
23533 " ntfsresize-size device size\n"
23534 "\n"
23535 msgstr ""
23536
23537 #. type: textblock
23538 #: ../fish/guestfish-actions.pod:3092
23539 msgid ""
23540 "This command is the same as L</ntfsresize> except that it allows you to "
23541 "specify the new size (in bytes) explicitly."
23542 msgstr ""
23543
23544 #. type: =head2
23545 #: ../fish/guestfish-actions.pod:3095
23546 msgid "part-add"
23547 msgstr ""
23548
23549 #. type: verbatim
23550 #: ../fish/guestfish-actions.pod:3097
23551 #, no-wrap
23552 msgid ""
23553 " part-add device prlogex startsect endsect\n"
23554 "\n"
23555 msgstr ""
23556
23557 #. type: textblock
23558 #: ../fish/guestfish-actions.pod:3099
23559 msgid ""
23560 "This command adds a partition to C<device>.  If there is no partition table "
23561 "on the device, call L</part-init> first."
23562 msgstr ""
23563
23564 #. type: textblock
23565 #: ../fish/guestfish-actions.pod:3111
23566 msgid ""
23567 "Creating a partition which covers the whole disk is not so easy.  Use "
23568 "L</part-disk> to do that."
23569 msgstr ""
23570
23571 #. type: =head2
23572 #: ../fish/guestfish-actions.pod:3114
23573 msgid "part-del"
23574 msgstr ""
23575
23576 #. type: verbatim
23577 #: ../fish/guestfish-actions.pod:3116
23578 #, no-wrap
23579 msgid ""
23580 " part-del device partnum\n"
23581 "\n"
23582 msgstr ""
23583
23584 #. type: =head2
23585 #: ../fish/guestfish-actions.pod:3124
23586 msgid "part-disk"
23587 msgstr ""
23588
23589 #. type: verbatim
23590 #: ../fish/guestfish-actions.pod:3126
23591 #, no-wrap
23592 msgid ""
23593 " part-disk device parttype\n"
23594 "\n"
23595 msgstr ""
23596
23597 #. type: textblock
23598 #: ../fish/guestfish-actions.pod:3128
23599 msgid ""
23600 "This command is simply a combination of L</part-init> followed by "
23601 "L</part-add> to create a single primary partition covering the whole disk."
23602 msgstr ""
23603
23604 #. type: textblock
23605 #: ../fish/guestfish-actions.pod:3132
23606 msgid ""
23607 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
23608 "possible values are described in L</part-init>."
23609 msgstr ""
23610
23611 #. type: =head2
23612 #: ../fish/guestfish-actions.pod:3138
23613 msgid "part-get-bootable"
23614 msgstr ""
23615
23616 #. type: verbatim
23617 #: ../fish/guestfish-actions.pod:3140
23618 #, no-wrap
23619 msgid ""
23620 " part-get-bootable device partnum\n"
23621 "\n"
23622 msgstr ""
23623
23624 #. type: textblock
23625 #: ../fish/guestfish-actions.pod:3145
23626 msgid "See also L</part-set-bootable>."
23627 msgstr ""
23628
23629 #. type: =head2
23630 #: ../fish/guestfish-actions.pod:3147
23631 msgid "part-get-mbr-id"
23632 msgstr ""
23633
23634 #. type: verbatim
23635 #: ../fish/guestfish-actions.pod:3149
23636 #, no-wrap
23637 msgid ""
23638 " part-get-mbr-id device partnum\n"
23639 "\n"
23640 msgstr ""
23641
23642 #. type: textblock
23643 #: ../fish/guestfish-actions.pod:3154 ../fish/guestfish-actions.pod:3292
23644 msgid ""
23645 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
23646 "undefined results for other partition table types (see "
23647 "L</part-get-parttype>)."
23648 msgstr ""
23649
23650 #. type: =head2
23651 #: ../fish/guestfish-actions.pod:3158
23652 msgid "part-get-parttype"
23653 msgstr ""
23654
23655 #. type: verbatim
23656 #: ../fish/guestfish-actions.pod:3160
23657 #, no-wrap
23658 msgid ""
23659 " part-get-parttype device\n"
23660 "\n"
23661 msgstr ""
23662
23663 #. type: textblock
23664 #: ../fish/guestfish-actions.pod:3165
23665 msgid ""
23666 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
23667 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
23668 "possible, although unusual.  See L</part-init> for a full list."
23669 msgstr ""
23670
23671 #. type: =head2
23672 #: ../fish/guestfish-actions.pod:3170
23673 msgid "part-init"
23674 msgstr ""
23675
23676 #. type: verbatim
23677 #: ../fish/guestfish-actions.pod:3172
23678 #, no-wrap
23679 msgid ""
23680 " part-init device parttype\n"
23681 "\n"
23682 msgstr ""
23683
23684 #. type: textblock
23685 #: ../fish/guestfish-actions.pod:3178
23686 msgid ""
23687 "Initially there are no partitions.  Following this, you should call "
23688 "L</part-add> for each partition required."
23689 msgstr ""
23690
23691 #. type: =head2
23692 #: ../fish/guestfish-actions.pod:3241
23693 msgid "part-list"
23694 msgstr ""
23695
23696 #. type: verbatim
23697 #: ../fish/guestfish-actions.pod:3243
23698 #, no-wrap
23699 msgid ""
23700 " part-list device\n"
23701 "\n"
23702 msgstr ""
23703
23704 #. type: textblock
23705 #: ../fish/guestfish-actions.pod:3258
23706 msgid ""
23707 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
23708 "the device's sector size, see L</blockdev-getss>."
23709 msgstr ""
23710
23711 #. type: =head2
23712 #: ../fish/guestfish-actions.pod:3271
23713 msgid "part-set-bootable"
23714 msgstr ""
23715
23716 #. type: verbatim
23717 #: ../fish/guestfish-actions.pod:3273
23718 #, no-wrap
23719 msgid ""
23720 " part-set-bootable device partnum true|false\n"
23721 "\n"
23722 msgstr ""
23723
23724 #. type: =head2
23725 #: ../fish/guestfish-actions.pod:3282
23726 msgid "part-set-mbr-id"
23727 msgstr ""
23728
23729 #. type: verbatim
23730 #: ../fish/guestfish-actions.pod:3284
23731 #, no-wrap
23732 msgid ""
23733 " part-set-mbr-id device partnum idbyte\n"
23734 "\n"
23735 msgstr ""
23736
23737 #. type: =head2
23738 #: ../fish/guestfish-actions.pod:3296
23739 msgid "part-set-name"
23740 msgstr ""
23741
23742 #. type: verbatim
23743 #: ../fish/guestfish-actions.pod:3298
23744 #, no-wrap
23745 msgid ""
23746 " part-set-name device partnum name\n"
23747 "\n"
23748 msgstr ""
23749
23750 #. type: =head2
23751 #: ../fish/guestfish-actions.pod:3306
23752 msgid "part-to-dev"
23753 msgstr ""
23754
23755 #. type: verbatim
23756 #: ../fish/guestfish-actions.pod:3308
23757 #, no-wrap
23758 msgid ""
23759 " part-to-dev partition\n"
23760 "\n"
23761 msgstr ""
23762
23763 #. type: textblock
23764 #: ../fish/guestfish-actions.pod:3314
23765 msgid ""
23766 "The named partition must exist, for example as a string returned from "
23767 "L</list-partitions>."
23768 msgstr ""
23769
23770 #. type: =head2
23771 #: ../fish/guestfish-actions.pod:3317
23772 msgid "ping-daemon"
23773 msgstr ""
23774
23775 #. type: verbatim
23776 #: ../fish/guestfish-actions.pod:3319
23777 #, no-wrap
23778 msgid ""
23779 " ping-daemon\n"
23780 "\n"
23781 msgstr ""
23782
23783 #. type: =head2
23784 #: ../fish/guestfish-actions.pod:3326
23785 msgid "pread"
23786 msgstr ""
23787
23788 #. type: verbatim
23789 #: ../fish/guestfish-actions.pod:3328
23790 #, no-wrap
23791 msgid ""
23792 " pread path count offset\n"
23793 "\n"
23794 msgstr ""
23795
23796 #. type: textblock
23797 #: ../fish/guestfish-actions.pod:3336
23798 msgid "See also L</pwrite>, L</pread-device>."
23799 msgstr ""
23800
23801 #. type: =head2
23802 #: ../fish/guestfish-actions.pod:3341
23803 msgid "pread-device"
23804 msgstr ""
23805
23806 #. type: verbatim
23807 #: ../fish/guestfish-actions.pod:3343
23808 #, no-wrap
23809 msgid ""
23810 " pread-device device count offset\n"
23811 "\n"
23812 msgstr ""
23813
23814 #. type: textblock
23815 #: ../fish/guestfish-actions.pod:3351
23816 msgid "See also L</pread>."
23817 msgstr ""
23818
23819 #. type: =head2
23820 #: ../fish/guestfish-actions.pod:3356
23821 msgid "pvcreate"
23822 msgstr ""
23823
23824 #. type: verbatim
23825 #: ../fish/guestfish-actions.pod:3358
23826 #, no-wrap
23827 msgid ""
23828 " pvcreate device\n"
23829 "\n"
23830 msgstr ""
23831
23832 #. type: =head2
23833 #: ../fish/guestfish-actions.pod:3364
23834 msgid "pvremove"
23835 msgstr ""
23836
23837 #. type: verbatim
23838 #: ../fish/guestfish-actions.pod:3366
23839 #, no-wrap
23840 msgid ""
23841 " pvremove device\n"
23842 "\n"
23843 msgstr ""
23844
23845 #. type: =head2
23846 #: ../fish/guestfish-actions.pod:3375
23847 msgid "pvresize"
23848 msgstr ""
23849
23850 #. type: verbatim
23851 #: ../fish/guestfish-actions.pod:3377
23852 #, no-wrap
23853 msgid ""
23854 " pvresize device\n"
23855 "\n"
23856 msgstr ""
23857
23858 #. type: =head2
23859 #: ../fish/guestfish-actions.pod:3382
23860 msgid "pvresize-size"
23861 msgstr ""
23862
23863 #. type: verbatim
23864 #: ../fish/guestfish-actions.pod:3384
23865 #, no-wrap
23866 msgid ""
23867 " pvresize-size device size\n"
23868 "\n"
23869 msgstr ""
23870
23871 #. type: textblock
23872 #: ../fish/guestfish-actions.pod:3386
23873 msgid ""
23874 "This command is the same as L</pvresize> except that it allows you to "
23875 "specify the new size (in bytes) explicitly."
23876 msgstr ""
23877
23878 #. type: =head2
23879 #: ../fish/guestfish-actions.pod:3389
23880 msgid "pvs"
23881 msgstr ""
23882
23883 #. type: verbatim
23884 #: ../fish/guestfish-actions.pod:3391
23885 #, no-wrap
23886 msgid ""
23887 " pvs\n"
23888 "\n"
23889 msgstr ""
23890
23891 #. type: textblock
23892 #: ../fish/guestfish-actions.pod:3399
23893 msgid "See also L</pvs-full>."
23894 msgstr ""
23895
23896 #. type: =head2
23897 #: ../fish/guestfish-actions.pod:3401
23898 msgid "pvs-full"
23899 msgstr ""
23900
23901 #. type: verbatim
23902 #: ../fish/guestfish-actions.pod:3403
23903 #, no-wrap
23904 msgid ""
23905 " pvs-full\n"
23906 "\n"
23907 msgstr ""
23908
23909 #. type: =head2
23910 #: ../fish/guestfish-actions.pod:3408
23911 msgid "pvuuid"
23912 msgstr ""
23913
23914 #. type: verbatim
23915 #: ../fish/guestfish-actions.pod:3410
23916 #, no-wrap
23917 msgid ""
23918 " pvuuid device\n"
23919 "\n"
23920 msgstr ""
23921
23922 #. type: =head2
23923 #: ../fish/guestfish-actions.pod:3414
23924 msgid "pwrite"
23925 msgstr ""
23926
23927 #. type: verbatim
23928 #: ../fish/guestfish-actions.pod:3416
23929 #, no-wrap
23930 msgid ""
23931 " pwrite path content offset\n"
23932 "\n"
23933 msgstr ""
23934
23935 #. type: textblock
23936 #: ../fish/guestfish-actions.pod:3427
23937 msgid "See also L</pread>, L</pwrite-device>."
23938 msgstr ""
23939
23940 #. type: =head2
23941 #: ../fish/guestfish-actions.pod:3432
23942 msgid "pwrite-device"
23943 msgstr ""
23944
23945 #. type: verbatim
23946 #: ../fish/guestfish-actions.pod:3434
23947 #, no-wrap
23948 msgid ""
23949 " pwrite-device device content offset\n"
23950 "\n"
23951 msgstr ""
23952
23953 #. type: textblock
23954 #: ../fish/guestfish-actions.pod:3444
23955 msgid "See also L</pwrite>."
23956 msgstr ""
23957
23958 #. type: =head2
23959 #: ../fish/guestfish-actions.pod:3449
23960 msgid "read-file"
23961 msgstr ""
23962
23963 #. type: verbatim
23964 #: ../fish/guestfish-actions.pod:3451
23965 #, no-wrap
23966 msgid ""
23967 " read-file path\n"
23968 "\n"
23969 msgstr ""
23970
23971 #. type: textblock
23972 #: ../fish/guestfish-actions.pod:3456
23973 msgid ""
23974 "Unlike L</cat>, this function can correctly handle files that contain "
23975 "embedded ASCII NUL characters.  However unlike L</download>, this function "
23976 "is limited in the total size of file that can be handled."
23977 msgstr ""
23978
23979 #. type: =head2
23980 #: ../fish/guestfish-actions.pod:3464
23981 msgid "read-lines"
23982 msgstr ""
23983
23984 #. type: verbatim
23985 #: ../fish/guestfish-actions.pod:3466
23986 #, no-wrap
23987 msgid ""
23988 " read-lines path\n"
23989 "\n"
23990 msgstr ""
23991
23992 #. type: textblock
23993 #: ../fish/guestfish-actions.pod:3473
23994 msgid ""
23995 "Note that this function cannot correctly handle binary files (specifically, "
23996 "files containing C<\\0> character which is treated as end of line).  For "
23997 "those you need to use the L</read-file> function which has a more complex "
23998 "interface."
23999 msgstr ""
24000
24001 #. type: =head2
24002 #: ../fish/guestfish-actions.pod:3478
24003 msgid "readdir"
24004 msgstr ""
24005
24006 #. type: verbatim
24007 #: ../fish/guestfish-actions.pod:3480
24008 #, no-wrap
24009 msgid ""
24010 " readdir dir\n"
24011 "\n"
24012 msgstr ""
24013
24014 #. type: textblock
24015 #: ../fish/guestfish-actions.pod:3532
24016 msgid ""
24017 "This function is primarily intended for use by programs.  To get a simple "
24018 "list of names, use L</ls>.  To get a printable directory for human "
24019 "consumption, use L</ll>."
24020 msgstr ""
24021
24022 #. type: =head2
24023 #: ../fish/guestfish-actions.pod:3536
24024 msgid "readlink"
24025 msgstr ""
24026
24027 #. type: verbatim
24028 #: ../fish/guestfish-actions.pod:3538
24029 #, no-wrap
24030 msgid ""
24031 " readlink path\n"
24032 "\n"
24033 msgstr ""
24034
24035 #. type: =head2
24036 #: ../fish/guestfish-actions.pod:3542
24037 msgid "readlinklist"
24038 msgstr ""
24039
24040 #. type: verbatim
24041 #: ../fish/guestfish-actions.pod:3544
24042 #, no-wrap
24043 msgid ""
24044 " readlinklist path 'names ...'\n"
24045 "\n"
24046 msgstr ""
24047
24048 #. type: =head2
24049 #: ../fish/guestfish-actions.pod:3568
24050 msgid "realpath"
24051 msgstr ""
24052
24053 #. type: verbatim
24054 #: ../fish/guestfish-actions.pod:3570
24055 #, no-wrap
24056 msgid ""
24057 " realpath path\n"
24058 "\n"
24059 msgstr ""
24060
24061 #. type: =head2
24062 #: ../fish/guestfish-actions.pod:3575
24063 msgid "removexattr"
24064 msgstr ""
24065
24066 #. type: verbatim
24067 #: ../fish/guestfish-actions.pod:3577
24068 #, no-wrap
24069 msgid ""
24070 " removexattr xattr path\n"
24071 "\n"
24072 msgstr ""
24073
24074 #. type: textblock
24075 #: ../fish/guestfish-actions.pod:3582
24076 msgid "See also: L</lremovexattr>, L<attr(5)>."
24077 msgstr ""
24078
24079 #. type: =head2
24080 #: ../fish/guestfish-actions.pod:3584
24081 msgid "resize2fs"
24082 msgstr ""
24083
24084 #. type: verbatim
24085 #: ../fish/guestfish-actions.pod:3586
24086 #, no-wrap
24087 msgid ""
24088 " resize2fs device\n"
24089 "\n"
24090 msgstr ""
24091
24092 #. type: textblock
24093 #: ../fish/guestfish-actions.pod:3591
24094 msgid ""
24095 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
24096 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
24097 "gives an error about this and sometimes not.  In any case, it is always safe "
24098 "to call L</e2fsck-f> before calling this function."
24099 msgstr ""
24100
24101 #. type: =head2
24102 #: ../fish/guestfish-actions.pod:3597
24103 msgid "resize2fs-size"
24104 msgstr ""
24105
24106 #. type: verbatim
24107 #: ../fish/guestfish-actions.pod:3599
24108 #, no-wrap
24109 msgid ""
24110 " resize2fs-size device size\n"
24111 "\n"
24112 msgstr ""
24113
24114 #. type: textblock
24115 #: ../fish/guestfish-actions.pod:3601
24116 msgid ""
24117 "This command is the same as L</resize2fs> except that it allows you to "
24118 "specify the new size (in bytes) explicitly."
24119 msgstr ""
24120
24121 #. type: =head2
24122 #: ../fish/guestfish-actions.pod:3604
24123 msgid "rm"
24124 msgstr ""
24125
24126 #. type: verbatim
24127 #: ../fish/guestfish-actions.pod:3606
24128 #, no-wrap
24129 msgid ""
24130 " rm path\n"
24131 "\n"
24132 msgstr ""
24133
24134 #. type: =head2
24135 #: ../fish/guestfish-actions.pod:3610
24136 msgid "rm-rf"
24137 msgstr ""
24138
24139 #. type: verbatim
24140 #: ../fish/guestfish-actions.pod:3612
24141 #, no-wrap
24142 msgid ""
24143 " rm-rf path\n"
24144 "\n"
24145 msgstr ""
24146
24147 #. type: =head2
24148 #: ../fish/guestfish-actions.pod:3618
24149 msgid "rmdir"
24150 msgstr ""
24151
24152 #. type: verbatim
24153 #: ../fish/guestfish-actions.pod:3620
24154 #, no-wrap
24155 msgid ""
24156 " rmdir path\n"
24157 "\n"
24158 msgstr ""
24159
24160 #. type: =head2
24161 #: ../fish/guestfish-actions.pod:3624
24162 msgid "rmmountpoint"
24163 msgstr ""
24164
24165 #. type: verbatim
24166 #: ../fish/guestfish-actions.pod:3626
24167 #, no-wrap
24168 msgid ""
24169 " rmmountpoint exemptpath\n"
24170 "\n"
24171 msgstr ""
24172
24173 #. type: textblock
24174 #: ../fish/guestfish-actions.pod:3628
24175 msgid ""
24176 "This calls removes a mountpoint that was previously created with "
24177 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
24178 msgstr ""
24179
24180 #. type: =head2
24181 #: ../fish/guestfish-actions.pod:3632
24182 msgid "scrub-device"
24183 msgstr ""
24184
24185 #. type: verbatim
24186 #: ../fish/guestfish-actions.pod:3634
24187 #, no-wrap
24188 msgid ""
24189 " scrub-device device\n"
24190 "\n"
24191 msgstr ""
24192
24193 #. type: =head2
24194 #: ../fish/guestfish-actions.pod:3645
24195 msgid "scrub-file"
24196 msgstr ""
24197
24198 #. type: verbatim
24199 #: ../fish/guestfish-actions.pod:3647
24200 #, no-wrap
24201 msgid ""
24202 " scrub-file file\n"
24203 "\n"
24204 msgstr ""
24205
24206 #. type: =head2
24207 #: ../fish/guestfish-actions.pod:3657
24208 msgid "scrub-freespace"
24209 msgstr ""
24210
24211 #. type: verbatim
24212 #: ../fish/guestfish-actions.pod:3659
24213 #, no-wrap
24214 msgid ""
24215 " scrub-freespace dir\n"
24216 "\n"
24217 msgstr ""
24218
24219 #. type: textblock
24220 #: ../fish/guestfish-actions.pod:3661
24221 msgid ""
24222 "This command creates the directory C<dir> and then fills it with files until "
24223 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
24224 "deletes them.  The intention is to scrub any free space on the partition "
24225 "containing C<dir>."
24226 msgstr ""
24227
24228 #. type: =head2
24229 #: ../fish/guestfish-actions.pod:3670
24230 msgid "set-append"
24231 msgstr ""
24232
24233 #. type: =head2
24234 #: ../fish/guestfish-actions.pod:3672
24235 msgid "append"
24236 msgstr ""
24237
24238 #. type: verbatim
24239 #: ../fish/guestfish-actions.pod:3674
24240 #, no-wrap
24241 msgid ""
24242 " set-append append\n"
24243 "\n"
24244 msgstr ""
24245
24246 #. type: =head2
24247 #: ../fish/guestfish-actions.pod:3685
24248 msgid "set-autosync"
24249 msgstr ""
24250
24251 #. type: =head2
24252 #: ../fish/guestfish-actions.pod:3687
24253 msgid "autosync"
24254 msgstr ""
24255
24256 #. type: verbatim
24257 #: ../fish/guestfish-actions.pod:3689
24258 #, no-wrap
24259 msgid ""
24260 " set-autosync true|false\n"
24261 "\n"
24262 msgstr ""
24263
24264 #. type: textblock
24265 #: ../fish/guestfish-actions.pod:3691
24266 msgid ""
24267 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
24268 "effort attempt to run L</umount-all> followed by L</sync> when the handle is "
24269 "closed (also if the program exits without closing handles)."
24270 msgstr ""
24271
24272 #. type: =head2
24273 #: ../fish/guestfish-actions.pod:3699
24274 msgid "set-direct"
24275 msgstr ""
24276
24277 #. type: =head2
24278 #: ../fish/guestfish-actions.pod:3701
24279 msgid "direct"
24280 msgstr ""
24281
24282 #. type: verbatim
24283 #: ../fish/guestfish-actions.pod:3703
24284 #, no-wrap
24285 msgid ""
24286 " set-direct true|false\n"
24287 "\n"
24288 msgstr ""
24289
24290 #. type: textblock
24291 #: ../fish/guestfish-actions.pod:3709
24292 msgid ""
24293 "One consequence of this is that log messages aren't caught by the library "
24294 "and handled by L</set-log-message-callback>, but go straight to stdout."
24295 msgstr ""
24296
24297 #. type: =head2
24298 #: ../fish/guestfish-actions.pod:3718
24299 msgid "set-e2label"
24300 msgstr ""
24301
24302 #. type: verbatim
24303 #: ../fish/guestfish-actions.pod:3720
24304 #, no-wrap
24305 msgid ""
24306 " set-e2label device label\n"
24307 "\n"
24308 msgstr ""
24309
24310 #. type: textblock
24311 #: ../fish/guestfish-actions.pod:3726
24312 msgid ""
24313 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
24314 "label on a filesystem."
24315 msgstr ""
24316
24317 #. type: =head2
24318 #: ../fish/guestfish-actions.pod:3729
24319 msgid "set-e2uuid"
24320 msgstr ""
24321
24322 #. type: verbatim
24323 #: ../fish/guestfish-actions.pod:3731
24324 #, no-wrap
24325 msgid ""
24326 " set-e2uuid device uuid\n"
24327 "\n"
24328 msgstr ""
24329
24330 #. type: textblock
24331 #: ../fish/guestfish-actions.pod:3738
24332 msgid ""
24333 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
24334 "UUID of a filesystem."
24335 msgstr ""
24336
24337 #. type: =head2
24338 #: ../fish/guestfish-actions.pod:3741
24339 msgid "set-memsize"
24340 msgstr ""
24341
24342 #. type: =head2
24343 #: ../fish/guestfish-actions.pod:3743
24344 msgid "memsize"
24345 msgstr ""
24346
24347 #. type: verbatim
24348 #: ../fish/guestfish-actions.pod:3745
24349 #, no-wrap
24350 msgid ""
24351 " set-memsize memsize\n"
24352 "\n"
24353 msgstr ""
24354
24355 #. type: textblock
24356 #: ../fish/guestfish-actions.pod:3747
24357 msgid ""
24358 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
24359 "This only has any effect if called before L</launch>."
24360 msgstr ""
24361
24362 #. type: =head2
24363 #: ../fish/guestfish-actions.pod:3758
24364 msgid "set-network"
24365 msgstr ""
24366
24367 #. type: =head2
24368 #: ../fish/guestfish-actions.pod:3760
24369 msgid "network"
24370 msgstr ""
24371
24372 #. type: verbatim
24373 #: ../fish/guestfish-actions.pod:3762
24374 #, no-wrap
24375 msgid ""
24376 " set-network true|false\n"
24377 "\n"
24378 msgstr ""
24379
24380 #. type: textblock
24381 #: ../fish/guestfish-actions.pod:3770
24382 msgid "You must call this before calling L</launch>, otherwise it has no effect."
24383 msgstr ""
24384
24385 #. type: =head2
24386 #: ../fish/guestfish-actions.pod:3773
24387 msgid "set-path"
24388 msgstr ""
24389
24390 #. type: =head2
24391 #: ../fish/guestfish-actions.pod:3775
24392 msgid "path"
24393 msgstr ""
24394
24395 #. type: verbatim
24396 #: ../fish/guestfish-actions.pod:3777
24397 #, no-wrap
24398 msgid ""
24399 " set-path searchpath\n"
24400 "\n"
24401 msgstr ""
24402
24403 #. type: =head2
24404 #: ../fish/guestfish-actions.pod:3786
24405 msgid "set-qemu"
24406 msgstr ""
24407
24408 #. type: =head2
24409 #: ../fish/guestfish-actions.pod:3788
24410 msgid "qemu"
24411 msgstr ""
24412
24413 #. type: verbatim
24414 #: ../fish/guestfish-actions.pod:3790
24415 #, no-wrap
24416 msgid ""
24417 " set-qemu qemu\n"
24418 "\n"
24419 msgstr ""
24420
24421 #. type: =head2
24422 #: ../fish/guestfish-actions.pod:3810
24423 msgid "set-recovery-proc"
24424 msgstr ""
24425
24426 #. type: =head2
24427 #: ../fish/guestfish-actions.pod:3812
24428 msgid "recovery-proc"
24429 msgstr ""
24430
24431 #. type: verbatim
24432 #: ../fish/guestfish-actions.pod:3814
24433 #, no-wrap
24434 msgid ""
24435 " set-recovery-proc true|false\n"
24436 "\n"
24437 msgstr ""
24438
24439 #. type: textblock
24440 #: ../fish/guestfish-actions.pod:3816
24441 msgid ""
24442 "If this is called with the parameter C<false> then L</launch> does not "
24443 "create a recovery process.  The purpose of the recovery process is to stop "
24444 "runaway qemu processes in the case where the main program aborts abruptly."
24445 msgstr ""
24446
24447 #. type: textblock
24448 #: ../fish/guestfish-actions.pod:3821
24449 msgid ""
24450 "This only has any effect if called before L</launch>, and the default is "
24451 "true."
24452 msgstr ""
24453
24454 #. type: =head2
24455 #: ../fish/guestfish-actions.pod:3830
24456 msgid "set-selinux"
24457 msgstr ""
24458
24459 #. type: =head2
24460 #: ../fish/guestfish-actions.pod:3832
24461 msgid "selinux"
24462 msgstr ""
24463
24464 #. type: verbatim
24465 #: ../fish/guestfish-actions.pod:3834
24466 #, no-wrap
24467 msgid ""
24468 " set-selinux true|false\n"
24469 "\n"
24470 msgstr ""
24471
24472 #. type: =head2
24473 #: ../fish/guestfish-actions.pod:3845
24474 msgid "set-trace"
24475 msgstr ""
24476
24477 #. type: =head2
24478 #: ../fish/guestfish-actions.pod:3847
24479 msgid "trace"
24480 msgstr ""
24481
24482 #. type: verbatim
24483 #: ../fish/guestfish-actions.pod:3849
24484 #, no-wrap
24485 msgid ""
24486 " set-trace true|false\n"
24487 "\n"
24488 msgstr ""
24489
24490 #. type: =head2
24491 #: ../fish/guestfish-actions.pod:3865
24492 msgid "set-verbose"
24493 msgstr ""
24494
24495 #. type: =head2
24496 #: ../fish/guestfish-actions.pod:3867
24497 msgid "verbose"
24498 msgstr ""
24499
24500 #. type: verbatim
24501 #: ../fish/guestfish-actions.pod:3869
24502 #, no-wrap
24503 msgid ""
24504 " set-verbose true|false\n"
24505 "\n"
24506 msgstr ""
24507
24508 #. type: =head2
24509 #: ../fish/guestfish-actions.pod:3876
24510 msgid "setcon"
24511 msgstr ""
24512
24513 #. type: verbatim
24514 #: ../fish/guestfish-actions.pod:3878
24515 #, no-wrap
24516 msgid ""
24517 " setcon context\n"
24518 "\n"
24519 msgstr ""
24520
24521 #. type: =head2
24522 #: ../fish/guestfish-actions.pod:3885
24523 msgid "setxattr"
24524 msgstr ""
24525
24526 #. type: verbatim
24527 #: ../fish/guestfish-actions.pod:3887
24528 #, no-wrap
24529 msgid ""
24530 " setxattr xattr val vallen path\n"
24531 "\n"
24532 msgstr ""
24533
24534 #. type: textblock
24535 #: ../fish/guestfish-actions.pod:3893
24536 msgid "See also: L</lsetxattr>, L<attr(5)>."
24537 msgstr ""
24538
24539 #. type: =head2
24540 #: ../fish/guestfish-actions.pod:3895
24541 msgid "sfdisk"
24542 msgstr ""
24543
24544 #. type: verbatim
24545 #: ../fish/guestfish-actions.pod:3897
24546 #, no-wrap
24547 msgid ""
24548 " sfdisk device cyls heads sectors 'lines ...'\n"
24549 "\n"
24550 msgstr ""
24551
24552 #. type: textblock
24553 #: ../fish/guestfish-actions.pod:3919
24554 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
24555 msgstr ""
24556
24557 #. type: =head2
24558 #: ../fish/guestfish-actions.pod:3925
24559 msgid "sfdiskM"
24560 msgstr ""
24561
24562 #. type: verbatim
24563 #: ../fish/guestfish-actions.pod:3927
24564 #, no-wrap
24565 msgid ""
24566 " sfdiskM device 'lines ...'\n"
24567 "\n"
24568 msgstr ""
24569
24570 #. type: textblock
24571 #: ../fish/guestfish-actions.pod:3929
24572 msgid ""
24573 "This is a simplified interface to the L</sfdisk> command, where partition "
24574 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
24575 "you don't need to specify the cyls, heads and sectors parameters which were "
24576 "rarely if ever used anyway."
24577 msgstr ""
24578
24579 #. type: textblock
24580 #: ../fish/guestfish-actions.pod:3935
24581 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
24582 msgstr ""
24583
24584 #. type: =head2
24585 #: ../fish/guestfish-actions.pod:3941
24586 msgid "sfdisk-N"
24587 msgstr ""
24588
24589 #. type: verbatim
24590 #: ../fish/guestfish-actions.pod:3943
24591 #, no-wrap
24592 msgid ""
24593 " sfdisk-N device partnum cyls heads sectors line\n"
24594 "\n"
24595 msgstr ""
24596
24597 #. type: textblock
24598 #: ../fish/guestfish-actions.pod:3948
24599 msgid ""
24600 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
24601 "cyls/heads/sectors parameters."
24602 msgstr ""
24603
24604 #. type: textblock
24605 #: ../fish/guestfish-actions.pod:3951
24606 msgid "See also: L</part-add>"
24607 msgstr ""
24608
24609 #. type: =head2
24610 #: ../fish/guestfish-actions.pod:3956
24611 msgid "sfdisk-disk-geometry"
24612 msgstr ""
24613
24614 #. type: verbatim
24615 #: ../fish/guestfish-actions.pod:3958
24616 #, no-wrap
24617 msgid ""
24618 " sfdisk-disk-geometry device\n"
24619 "\n"
24620 msgstr ""
24621
24622 #. type: textblock
24623 #: ../fish/guestfish-actions.pod:3960
24624 msgid ""
24625 "This displays the disk geometry of C<device> read from the partition table.  "
24626 "Especially in the case where the underlying block device has been resized, "
24627 "this can be different from the kernel's idea of the geometry (see "
24628 "L</sfdisk-kernel-geometry>)."
24629 msgstr ""
24630
24631 #. type: =head2
24632 #: ../fish/guestfish-actions.pod:3968
24633 msgid "sfdisk-kernel-geometry"
24634 msgstr ""
24635
24636 #. type: verbatim
24637 #: ../fish/guestfish-actions.pod:3970
24638 #, no-wrap
24639 msgid ""
24640 " sfdisk-kernel-geometry device\n"
24641 "\n"
24642 msgstr ""
24643
24644 #. type: =head2
24645 #: ../fish/guestfish-actions.pod:3977
24646 msgid "sfdisk-l"
24647 msgstr ""
24648
24649 #. type: verbatim
24650 #: ../fish/guestfish-actions.pod:3979
24651 #, no-wrap
24652 msgid ""
24653 " sfdisk-l device\n"
24654 "\n"
24655 msgstr ""
24656
24657 #. type: textblock
24658 #: ../fish/guestfish-actions.pod:3985
24659 msgid "See also: L</part-list>"
24660 msgstr ""
24661
24662 #. type: =head2
24663 #: ../fish/guestfish-actions.pod:3987
24664 msgid "sh"
24665 msgstr ""
24666
24667 #. type: verbatim
24668 #: ../fish/guestfish-actions.pod:3989
24669 #, no-wrap
24670 msgid ""
24671 " sh command\n"
24672 "\n"
24673 msgstr ""
24674
24675 #. type: textblock
24676 #: ../fish/guestfish-actions.pod:3994
24677 msgid "This is like L</command>, but passes the command to:"
24678 msgstr ""
24679
24680 #. type: textblock
24681 #: ../fish/guestfish-actions.pod:4002
24682 msgid "All the provisos about L</command> apply to this call."
24683 msgstr ""
24684
24685 #. type: =head2
24686 #: ../fish/guestfish-actions.pod:4004
24687 msgid "sh-lines"
24688 msgstr ""
24689
24690 #. type: verbatim
24691 #: ../fish/guestfish-actions.pod:4006
24692 #, no-wrap
24693 msgid ""
24694 " sh-lines command\n"
24695 "\n"
24696 msgstr ""
24697
24698 #. type: textblock
24699 #: ../fish/guestfish-actions.pod:4008
24700 msgid "This is the same as L</sh>, but splits the result into a list of lines."
24701 msgstr ""
24702
24703 #. type: textblock
24704 #: ../fish/guestfish-actions.pod:4011
24705 msgid "See also: L</command-lines>"
24706 msgstr ""
24707
24708 #. type: =head2
24709 #: ../fish/guestfish-actions.pod:4013
24710 msgid "sleep"
24711 msgstr ""
24712
24713 #. type: verbatim
24714 #: ../fish/guestfish-actions.pod:4015
24715 #, no-wrap
24716 msgid ""
24717 " sleep secs\n"
24718 "\n"
24719 msgstr ""
24720
24721 #. type: =head2
24722 #: ../fish/guestfish-actions.pod:4019
24723 msgid "stat"
24724 msgstr ""
24725
24726 #. type: verbatim
24727 #: ../fish/guestfish-actions.pod:4021
24728 #, no-wrap
24729 msgid ""
24730 " stat path\n"
24731 "\n"
24732 msgstr ""
24733
24734 #. type: =head2
24735 #: ../fish/guestfish-actions.pod:4027
24736 msgid "statvfs"
24737 msgstr ""
24738
24739 #. type: verbatim
24740 #: ../fish/guestfish-actions.pod:4029
24741 #, no-wrap
24742 msgid ""
24743 " statvfs path\n"
24744 "\n"
24745 msgstr ""
24746
24747 #. type: =head2
24748 #: ../fish/guestfish-actions.pod:4037
24749 msgid "strings"
24750 msgstr ""
24751
24752 #. type: verbatim
24753 #: ../fish/guestfish-actions.pod:4039
24754 #, no-wrap
24755 msgid ""
24756 " strings path\n"
24757 "\n"
24758 msgstr ""
24759
24760 #. type: =head2
24761 #: ../fish/guestfish-actions.pod:4047
24762 msgid "strings-e"
24763 msgstr ""
24764
24765 #. type: verbatim
24766 #: ../fish/guestfish-actions.pod:4049
24767 #, no-wrap
24768 msgid ""
24769 " strings-e encoding path\n"
24770 "\n"
24771 msgstr ""
24772
24773 #. type: textblock
24774 #: ../fish/guestfish-actions.pod:4051
24775 msgid ""
24776 "This is like the L</strings> command, but allows you to specify the encoding "
24777 "of strings that are looked for in the source file C<path>."
24778 msgstr ""
24779
24780 #. type: textblock
24781 #: ../fish/guestfish-actions.pod:4061
24782 msgid ""
24783 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
24784 "ISO-8859-X (this is what L</strings> uses)."
24785 msgstr ""
24786
24787 #. type: =head2
24788 #: ../fish/guestfish-actions.pod:4093
24789 msgid "swapoff-device"
24790 msgstr ""
24791
24792 #. type: verbatim
24793 #: ../fish/guestfish-actions.pod:4095
24794 #, no-wrap
24795 msgid ""
24796 " swapoff-device device\n"
24797 "\n"
24798 msgstr ""
24799
24800 #. type: textblock
24801 #: ../fish/guestfish-actions.pod:4097
24802 msgid ""
24803 "This command disables the libguestfs appliance swap device or partition "
24804 "named C<device>.  See L</swapon-device>."
24805 msgstr ""
24806
24807 #. type: =head2
24808 #: ../fish/guestfish-actions.pod:4101
24809 msgid "swapoff-file"
24810 msgstr ""
24811
24812 #. type: verbatim
24813 #: ../fish/guestfish-actions.pod:4103
24814 #, no-wrap
24815 msgid ""
24816 " swapoff-file file\n"
24817 "\n"
24818 msgstr ""
24819
24820 #. type: =head2
24821 #: ../fish/guestfish-actions.pod:4107
24822 msgid "swapoff-label"
24823 msgstr ""
24824
24825 #. type: verbatim
24826 #: ../fish/guestfish-actions.pod:4109
24827 #, no-wrap
24828 msgid ""
24829 " swapoff-label label\n"
24830 "\n"
24831 msgstr ""
24832
24833 #. type: =head2
24834 #: ../fish/guestfish-actions.pod:4114
24835 msgid "swapoff-uuid"
24836 msgstr ""
24837
24838 #. type: verbatim
24839 #: ../fish/guestfish-actions.pod:4116
24840 #, no-wrap
24841 msgid ""
24842 " swapoff-uuid uuid\n"
24843 "\n"
24844 msgstr ""
24845
24846 #. type: =head2
24847 #: ../fish/guestfish-actions.pod:4121
24848 msgid "swapon-device"
24849 msgstr ""
24850
24851 #. type: verbatim
24852 #: ../fish/guestfish-actions.pod:4123
24853 #, no-wrap
24854 msgid ""
24855 " swapon-device device\n"
24856 "\n"
24857 msgstr ""
24858
24859 #. type: textblock
24860 #: ../fish/guestfish-actions.pod:4125
24861 msgid ""
24862 "This command enables the libguestfs appliance to use the swap device or "
24863 "partition named C<device>.  The increased memory is made available for all "
24864 "commands, for example those run using L</command> or L</sh>."
24865 msgstr ""
24866
24867 #. type: =head2
24868 #: ../fish/guestfish-actions.pod:4137
24869 msgid "swapon-file"
24870 msgstr ""
24871
24872 #. type: verbatim
24873 #: ../fish/guestfish-actions.pod:4139
24874 #, no-wrap
24875 msgid ""
24876 " swapon-file file\n"
24877 "\n"
24878 msgstr ""
24879
24880 #. type: textblock
24881 #: ../fish/guestfish-actions.pod:4141
24882 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
24883 msgstr ""
24884
24885 #. type: =head2
24886 #: ../fish/guestfish-actions.pod:4144
24887 msgid "swapon-label"
24888 msgstr ""
24889
24890 #. type: verbatim
24891 #: ../fish/guestfish-actions.pod:4146
24892 #, no-wrap
24893 msgid ""
24894 " swapon-label label\n"
24895 "\n"
24896 msgstr ""
24897
24898 #. type: textblock
24899 #: ../fish/guestfish-actions.pod:4148
24900 msgid ""
24901 "This command enables swap to a labeled swap partition.  See "
24902 "L</swapon-device> for other notes."
24903 msgstr ""
24904
24905 #. type: =head2
24906 #: ../fish/guestfish-actions.pod:4151
24907 msgid "swapon-uuid"
24908 msgstr ""
24909
24910 #. type: verbatim
24911 #: ../fish/guestfish-actions.pod:4153
24912 #, no-wrap
24913 msgid ""
24914 " swapon-uuid uuid\n"
24915 "\n"
24916 msgstr ""
24917
24918 #. type: textblock
24919 #: ../fish/guestfish-actions.pod:4155
24920 msgid ""
24921 "This command enables swap to a swap partition with the given UUID.  See "
24922 "L</swapon-device> for other notes."
24923 msgstr ""
24924
24925 #. type: =head2
24926 #: ../fish/guestfish-actions.pod:4158
24927 msgid "sync"
24928 msgstr ""
24929
24930 #. type: verbatim
24931 #: ../fish/guestfish-actions.pod:4160
24932 #, no-wrap
24933 msgid ""
24934 " sync\n"
24935 "\n"
24936 msgstr ""
24937
24938 #. type: =head2
24939 #: ../fish/guestfish-actions.pod:4168
24940 msgid "tail"
24941 msgstr ""
24942
24943 #. type: verbatim
24944 #: ../fish/guestfish-actions.pod:4170
24945 #, no-wrap
24946 msgid ""
24947 " tail path\n"
24948 "\n"
24949 msgstr ""
24950
24951 #. type: =head2
24952 #: ../fish/guestfish-actions.pod:4178
24953 msgid "tail-n"
24954 msgstr ""
24955
24956 #. type: verbatim
24957 #: ../fish/guestfish-actions.pod:4180
24958 #, no-wrap
24959 msgid ""
24960 " tail-n nrlines path\n"
24961 "\n"
24962 msgstr ""
24963
24964 #. type: =head2
24965 #: ../fish/guestfish-actions.pod:4193
24966 msgid "tar-in"
24967 msgstr ""
24968
24969 #. type: verbatim
24970 #: ../fish/guestfish-actions.pod:4195
24971 #, no-wrap
24972 msgid ""
24973 " tar-in (tarfile|-) directory\n"
24974 "\n"
24975 msgstr ""
24976
24977 #. type: textblock
24978 #: ../fish/guestfish-actions.pod:4200
24979 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
24980 msgstr ""
24981
24982 #. type: =head2
24983 #: ../fish/guestfish-actions.pod:4205
24984 msgid "tar-out"
24985 msgstr ""
24986
24987 #. type: verbatim
24988 #: ../fish/guestfish-actions.pod:4207
24989 #, no-wrap
24990 msgid ""
24991 " tar-out directory (tarfile|-)\n"
24992 "\n"
24993 msgstr ""
24994
24995 #. type: textblock
24996 #: ../fish/guestfish-actions.pod:4212
24997 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
24998 msgstr ""
24999
25000 #. type: =head2
25001 #: ../fish/guestfish-actions.pod:4217
25002 msgid "tgz-in"
25003 msgstr ""
25004
25005 #. type: verbatim
25006 #: ../fish/guestfish-actions.pod:4219
25007 #, no-wrap
25008 msgid ""
25009 " tgz-in (tarball|-) directory\n"
25010 "\n"
25011 msgstr ""
25012
25013 #. type: textblock
25014 #: ../fish/guestfish-actions.pod:4224
25015 msgid "To upload an uncompressed tarball, use L</tar-in>."
25016 msgstr ""
25017
25018 #. type: =head2
25019 #: ../fish/guestfish-actions.pod:4228
25020 msgid "tgz-out"
25021 msgstr ""
25022
25023 #. type: verbatim
25024 #: ../fish/guestfish-actions.pod:4230
25025 #, no-wrap
25026 msgid ""
25027 " tgz-out directory (tarball|-)\n"
25028 "\n"
25029 msgstr ""
25030
25031 #. type: textblock
25032 #: ../fish/guestfish-actions.pod:4235
25033 msgid "To download an uncompressed tarball, use L</tar-out>."
25034 msgstr ""
25035
25036 #. type: =head2
25037 #: ../fish/guestfish-actions.pod:4239
25038 msgid "touch"
25039 msgstr ""
25040
25041 #. type: verbatim
25042 #: ../fish/guestfish-actions.pod:4241
25043 #, no-wrap
25044 msgid ""
25045 " touch path\n"
25046 "\n"
25047 msgstr ""
25048
25049 #. type: =head2
25050 #: ../fish/guestfish-actions.pod:4250
25051 msgid "truncate"
25052 msgstr ""
25053
25054 #. type: verbatim
25055 #: ../fish/guestfish-actions.pod:4252
25056 #, no-wrap
25057 msgid ""
25058 " truncate path\n"
25059 "\n"
25060 msgstr ""
25061
25062 #. type: =head2
25063 #: ../fish/guestfish-actions.pod:4257
25064 msgid "truncate-size"
25065 msgstr ""
25066
25067 #. type: verbatim
25068 #: ../fish/guestfish-actions.pod:4259
25069 #, no-wrap
25070 msgid ""
25071 " truncate-size path size\n"
25072 "\n"
25073 msgstr ""
25074
25075 #. type: textblock
25076 #: ../fish/guestfish-actions.pod:4264
25077 msgid ""
25078 "If the current file size is less than C<size> then the file is extended to "
25079 "the required size with zero bytes.  This creates a sparse file (ie. disk "
25080 "blocks are not allocated for the file until you write to it).  To create a "
25081 "non-sparse file of zeroes, use L</fallocate64> instead."
25082 msgstr ""
25083
25084 #. type: =head2
25085 #: ../fish/guestfish-actions.pod:4270
25086 msgid "tune2fs-l"
25087 msgstr ""
25088
25089 #. type: verbatim
25090 #: ../fish/guestfish-actions.pod:4272
25091 #, no-wrap
25092 msgid ""
25093 " tune2fs-l device\n"
25094 "\n"
25095 msgstr ""
25096
25097 #. type: =head2
25098 #: ../fish/guestfish-actions.pod:4282
25099 msgid "txz-in"
25100 msgstr ""
25101
25102 #. type: verbatim
25103 #: ../fish/guestfish-actions.pod:4284
25104 #, no-wrap
25105 msgid ""
25106 " txz-in (tarball|-) directory\n"
25107 "\n"
25108 msgstr ""
25109
25110 #. type: =head2
25111 #: ../fish/guestfish-actions.pod:4291
25112 msgid "txz-out"
25113 msgstr ""
25114
25115 #. type: verbatim
25116 #: ../fish/guestfish-actions.pod:4293
25117 #, no-wrap
25118 msgid ""
25119 " txz-out directory (tarball|-)\n"
25120 "\n"
25121 msgstr ""
25122
25123 #. type: =head2
25124 #: ../fish/guestfish-actions.pod:4300
25125 msgid "umask"
25126 msgstr ""
25127
25128 #. type: verbatim
25129 #: ../fish/guestfish-actions.pod:4302
25130 #, no-wrap
25131 msgid ""
25132 " umask mask\n"
25133 "\n"
25134 msgstr ""
25135
25136 #. type: textblock
25137 #: ../fish/guestfish-actions.pod:4316
25138 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
25139 msgstr ""
25140
25141 #. type: =head2
25142 #: ../fish/guestfish-actions.pod:4321
25143 msgid "umount"
25144 msgstr ""
25145
25146 #. type: =head2
25147 #: ../fish/guestfish-actions.pod:4323
25148 msgid "unmount"
25149 msgstr ""
25150
25151 #. type: verbatim
25152 #: ../fish/guestfish-actions.pod:4325
25153 #, no-wrap
25154 msgid ""
25155 " umount pathordevice\n"
25156 "\n"
25157 msgstr ""
25158
25159 #. type: =head2
25160 #: ../fish/guestfish-actions.pod:4331
25161 msgid "umount-all"
25162 msgstr ""
25163
25164 #. type: =head2
25165 #: ../fish/guestfish-actions.pod:4333
25166 msgid "unmount-all"
25167 msgstr ""
25168
25169 #. type: verbatim
25170 #: ../fish/guestfish-actions.pod:4335
25171 #, no-wrap
25172 msgid ""
25173 " umount-all\n"
25174 "\n"
25175 msgstr ""
25176
25177 #. type: =head2
25178 #: ../fish/guestfish-actions.pod:4341
25179 msgid "upload"
25180 msgstr ""
25181
25182 #. type: verbatim
25183 #: ../fish/guestfish-actions.pod:4343
25184 #, no-wrap
25185 msgid ""
25186 " upload (filename|-) remotefilename\n"
25187 "\n"
25188 msgstr ""
25189
25190 #. type: textblock
25191 #: ../fish/guestfish-actions.pod:4350
25192 msgid "See also L</download>."
25193 msgstr ""
25194
25195 #. type: =head2
25196 #: ../fish/guestfish-actions.pod:4354
25197 msgid "upload-offset"
25198 msgstr ""
25199
25200 #. type: verbatim
25201 #: ../fish/guestfish-actions.pod:4356
25202 #, no-wrap
25203 msgid ""
25204 " upload-offset (filename|-) remotefilename offset\n"
25205 "\n"
25206 msgstr ""
25207
25208 #. type: textblock
25209 #: ../fish/guestfish-actions.pod:4368
25210 msgid ""
25211 "Note that there is no limit on the amount of data that can be uploaded with "
25212 "this call, unlike with L</pwrite>, and this call always writes the full "
25213 "amount unless an error occurs."
25214 msgstr ""
25215
25216 #. type: textblock
25217 #: ../fish/guestfish-actions.pod:4373
25218 msgid "See also L</upload>, L</pwrite>."
25219 msgstr ""
25220
25221 #. type: =head2
25222 #: ../fish/guestfish-actions.pod:4377
25223 msgid "utimens"
25224 msgstr ""
25225
25226 #. type: verbatim
25227 #: ../fish/guestfish-actions.pod:4379
25228 #, no-wrap
25229 msgid ""
25230 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
25231 "\n"
25232 msgstr ""
25233
25234 #. type: =head2
25235 #: ../fish/guestfish-actions.pod:4398
25236 msgid "version"
25237 msgstr ""
25238
25239 #. type: verbatim
25240 #: ../fish/guestfish-actions.pod:4400
25241 #, no-wrap
25242 msgid ""
25243 " version\n"
25244 "\n"
25245 msgstr ""
25246
25247 #. type: textblock
25248 #: ../fish/guestfish-actions.pod:4427
25249 msgid ""
25250 "I<Note:> Don't use this call to test for availability of features.  In "
25251 "enterprise distributions we backport features from later versions into "
25252 "earlier versions, making this an unreliable way to test for features.  Use "
25253 "L</available> instead."
25254 msgstr ""
25255
25256 #. type: =head2
25257 #: ../fish/guestfish-actions.pod:4433
25258 msgid "vfs-label"
25259 msgstr ""
25260
25261 #. type: verbatim
25262 #: ../fish/guestfish-actions.pod:4435
25263 #, no-wrap
25264 msgid ""
25265 " vfs-label device\n"
25266 "\n"
25267 msgstr ""
25268
25269 #. type: textblock
25270 #: ../fish/guestfish-actions.pod:4442
25271 msgid "To find a filesystem from the label, use L</findfs-label>."
25272 msgstr ""
25273
25274 #. type: =head2
25275 #: ../fish/guestfish-actions.pod:4444
25276 msgid "vfs-type"
25277 msgstr ""
25278
25279 #. type: verbatim
25280 #: ../fish/guestfish-actions.pod:4446
25281 #, no-wrap
25282 msgid ""
25283 " vfs-type device\n"
25284 "\n"
25285 msgstr ""
25286
25287 #. type: =head2
25288 #: ../fish/guestfish-actions.pod:4456
25289 msgid "vfs-uuid"
25290 msgstr ""
25291
25292 #. type: verbatim
25293 #: ../fish/guestfish-actions.pod:4458
25294 #, no-wrap
25295 msgid ""
25296 " vfs-uuid device\n"
25297 "\n"
25298 msgstr ""
25299
25300 #. type: textblock
25301 #: ../fish/guestfish-actions.pod:4465
25302 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
25303 msgstr ""
25304
25305 #. type: =head2
25306 #: ../fish/guestfish-actions.pod:4467
25307 msgid "vg-activate"
25308 msgstr ""
25309
25310 #. type: verbatim
25311 #: ../fish/guestfish-actions.pod:4469
25312 #, no-wrap
25313 msgid ""
25314 " vg-activate true|false 'volgroups ...'\n"
25315 "\n"
25316 msgstr ""
25317
25318 #. type: =head2
25319 #: ../fish/guestfish-actions.pod:4482
25320 msgid "vg-activate-all"
25321 msgstr ""
25322
25323 #. type: verbatim
25324 #: ../fish/guestfish-actions.pod:4484
25325 #, no-wrap
25326 msgid ""
25327 " vg-activate-all true|false\n"
25328 "\n"
25329 msgstr ""
25330
25331 #. type: =head2
25332 #: ../fish/guestfish-actions.pod:4494
25333 msgid "vgcreate"
25334 msgstr ""
25335
25336 #. type: verbatim
25337 #: ../fish/guestfish-actions.pod:4496
25338 #, no-wrap
25339 msgid ""
25340 " vgcreate volgroup 'physvols ...'\n"
25341 "\n"
25342 msgstr ""
25343
25344 #. type: =head2
25345 #: ../fish/guestfish-actions.pod:4501
25346 msgid "vglvuuids"
25347 msgstr ""
25348
25349 #. type: verbatim
25350 #: ../fish/guestfish-actions.pod:4503
25351 #, no-wrap
25352 msgid ""
25353 " vglvuuids vgname\n"
25354 "\n"
25355 msgstr ""
25356
25357 #. type: textblock
25358 #: ../fish/guestfish-actions.pod:4508
25359 msgid ""
25360 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
25361 "logical volumes and volume groups."
25362 msgstr ""
25363
25364 #. type: textblock
25365 #: ../fish/guestfish-actions.pod:4511
25366 msgid "See also L</vgpvuuids>."
25367 msgstr ""
25368
25369 #. type: =head2
25370 #: ../fish/guestfish-actions.pod:4513
25371 msgid "vgpvuuids"
25372 msgstr ""
25373
25374 #. type: verbatim
25375 #: ../fish/guestfish-actions.pod:4515
25376 #, no-wrap
25377 msgid ""
25378 " vgpvuuids vgname\n"
25379 "\n"
25380 msgstr ""
25381
25382 #. type: textblock
25383 #: ../fish/guestfish-actions.pod:4520
25384 msgid ""
25385 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
25386 "physical volumes and volume groups."
25387 msgstr ""
25388
25389 #. type: textblock
25390 #: ../fish/guestfish-actions.pod:4523
25391 msgid "See also L</vglvuuids>."
25392 msgstr ""
25393
25394 #. type: =head2
25395 #: ../fish/guestfish-actions.pod:4525
25396 msgid "vgremove"
25397 msgstr ""
25398
25399 #. type: verbatim
25400 #: ../fish/guestfish-actions.pod:4527
25401 #, no-wrap
25402 msgid ""
25403 " vgremove vgname\n"
25404 "\n"
25405 msgstr ""
25406
25407 #. type: =head2
25408 #: ../fish/guestfish-actions.pod:4534
25409 msgid "vgrename"
25410 msgstr ""
25411
25412 #. type: verbatim
25413 #: ../fish/guestfish-actions.pod:4536
25414 #, no-wrap
25415 msgid ""
25416 " vgrename volgroup newvolgroup\n"
25417 "\n"
25418 msgstr ""
25419
25420 #. type: =head2
25421 #: ../fish/guestfish-actions.pod:4540
25422 msgid "vgs"
25423 msgstr ""
25424
25425 #. type: verbatim
25426 #: ../fish/guestfish-actions.pod:4542
25427 #, no-wrap
25428 msgid ""
25429 " vgs\n"
25430 "\n"
25431 msgstr ""
25432
25433 #. type: textblock
25434 #: ../fish/guestfish-actions.pod:4550
25435 msgid "See also L</vgs-full>."
25436 msgstr ""
25437
25438 #. type: =head2
25439 #: ../fish/guestfish-actions.pod:4552
25440 msgid "vgs-full"
25441 msgstr ""
25442
25443 #. type: verbatim
25444 #: ../fish/guestfish-actions.pod:4554
25445 #, no-wrap
25446 msgid ""
25447 " vgs-full\n"
25448 "\n"
25449 msgstr ""
25450
25451 #. type: =head2
25452 #: ../fish/guestfish-actions.pod:4559
25453 msgid "vgscan"
25454 msgstr ""
25455
25456 #. type: verbatim
25457 #: ../fish/guestfish-actions.pod:4561
25458 #, no-wrap
25459 msgid ""
25460 " vgscan\n"
25461 "\n"
25462 msgstr ""
25463
25464 #. type: =head2
25465 #: ../fish/guestfish-actions.pod:4566
25466 msgid "vguuid"
25467 msgstr ""
25468
25469 #. type: verbatim
25470 #: ../fish/guestfish-actions.pod:4568
25471 #, no-wrap
25472 msgid ""
25473 " vguuid vgname\n"
25474 "\n"
25475 msgstr ""
25476
25477 #. type: =head2
25478 #: ../fish/guestfish-actions.pod:4572
25479 msgid "wc-c"
25480 msgstr ""
25481
25482 #. type: verbatim
25483 #: ../fish/guestfish-actions.pod:4574
25484 #, no-wrap
25485 msgid ""
25486 " wc-c path\n"
25487 "\n"
25488 msgstr ""
25489
25490 #. type: =head2
25491 #: ../fish/guestfish-actions.pod:4579
25492 msgid "wc-l"
25493 msgstr ""
25494
25495 #. type: verbatim
25496 #: ../fish/guestfish-actions.pod:4581
25497 #, no-wrap
25498 msgid ""
25499 " wc-l path\n"
25500 "\n"
25501 msgstr ""
25502
25503 #. type: =head2
25504 #: ../fish/guestfish-actions.pod:4586
25505 msgid "wc-w"
25506 msgstr ""
25507
25508 #. type: verbatim
25509 #: ../fish/guestfish-actions.pod:4588
25510 #, no-wrap
25511 msgid ""
25512 " wc-w path\n"
25513 "\n"
25514 msgstr ""
25515
25516 #. type: =head2
25517 #: ../fish/guestfish-actions.pod:4593
25518 msgid "write"
25519 msgstr ""
25520
25521 #. type: verbatim
25522 #: ../fish/guestfish-actions.pod:4595
25523 #, no-wrap
25524 msgid ""
25525 " write path content\n"
25526 "\n"
25527 msgstr ""
25528
25529 #. type: =head2
25530 #: ../fish/guestfish-actions.pod:4603
25531 msgid "write-file"
25532 msgstr ""
25533
25534 #. type: verbatim
25535 #: ../fish/guestfish-actions.pod:4605
25536 #, no-wrap
25537 msgid ""
25538 " write-file path content size\n"
25539 "\n"
25540 msgstr ""
25541
25542 #. type: =head2
25543 #: ../fish/guestfish-actions.pod:4628
25544 msgid "zegrep"
25545 msgstr ""
25546
25547 #. type: verbatim
25548 #: ../fish/guestfish-actions.pod:4630
25549 #, no-wrap
25550 msgid ""
25551 " zegrep regex path\n"
25552 "\n"
25553 msgstr ""
25554
25555 #. type: =head2
25556 #: ../fish/guestfish-actions.pod:4638
25557 msgid "zegrepi"
25558 msgstr ""
25559
25560 #. type: verbatim
25561 #: ../fish/guestfish-actions.pod:4640
25562 #, no-wrap
25563 msgid ""
25564 " zegrepi regex path\n"
25565 "\n"
25566 msgstr ""
25567
25568 #. type: =head2
25569 #: ../fish/guestfish-actions.pod:4648
25570 msgid "zero"
25571 msgstr ""
25572
25573 #. type: verbatim
25574 #: ../fish/guestfish-actions.pod:4650
25575 #, no-wrap
25576 msgid ""
25577 " zero device\n"
25578 "\n"
25579 msgstr ""
25580
25581 #. type: textblock
25582 #: ../fish/guestfish-actions.pod:4658
25583 msgid "See also: L</zero-device>, L</scrub-device>."
25584 msgstr ""
25585
25586 #. type: =head2
25587 #: ../fish/guestfish-actions.pod:4660
25588 msgid "zero-device"
25589 msgstr ""
25590
25591 #. type: verbatim
25592 #: ../fish/guestfish-actions.pod:4662
25593 #, no-wrap
25594 msgid ""
25595 " zero-device device\n"
25596 "\n"
25597 msgstr ""
25598
25599 #. type: textblock
25600 #: ../fish/guestfish-actions.pod:4664
25601 msgid ""
25602 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
25603 "which just zeroes the first few blocks of a device."
25604 msgstr ""
25605
25606 #. type: =head2
25607 #: ../fish/guestfish-actions.pod:4671
25608 msgid "zerofree"
25609 msgstr ""
25610
25611 #. type: verbatim
25612 #: ../fish/guestfish-actions.pod:4673
25613 #, no-wrap
25614 msgid ""
25615 " zerofree device\n"
25616 "\n"
25617 msgstr ""
25618
25619 #. type: =head2
25620 #: ../fish/guestfish-actions.pod:4686
25621 msgid "zfgrep"
25622 msgstr ""
25623
25624 #. type: verbatim
25625 #: ../fish/guestfish-actions.pod:4688
25626 #, no-wrap
25627 msgid ""
25628 " zfgrep pattern path\n"
25629 "\n"
25630 msgstr ""
25631
25632 #. type: =head2
25633 #: ../fish/guestfish-actions.pod:4696
25634 msgid "zfgrepi"
25635 msgstr ""
25636
25637 #. type: verbatim
25638 #: ../fish/guestfish-actions.pod:4698
25639 #, no-wrap
25640 msgid ""
25641 " zfgrepi pattern path\n"
25642 "\n"
25643 msgstr ""
25644
25645 #. type: =head2
25646 #: ../fish/guestfish-actions.pod:4706
25647 msgid "zfile"
25648 msgstr ""
25649
25650 #. type: verbatim
25651 #: ../fish/guestfish-actions.pod:4708
25652 #, no-wrap
25653 msgid ""
25654 " zfile meth path\n"
25655 "\n"
25656 msgstr ""
25657
25658 #. type: textblock
25659 #: ../fish/guestfish-actions.pod:4715
25660 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
25661 msgstr ""
25662
25663 #. type: =head2
25664 #: ../fish/guestfish-actions.pod:4725
25665 msgid "zgrep"
25666 msgstr ""
25667
25668 #. type: verbatim
25669 #: ../fish/guestfish-actions.pod:4727
25670 #, no-wrap
25671 msgid ""
25672 " zgrep regex path\n"
25673 "\n"
25674 msgstr ""
25675
25676 #. type: =head2
25677 #: ../fish/guestfish-actions.pod:4735
25678 msgid "zgrepi"
25679 msgstr ""
25680
25681 #. type: verbatim
25682 #: ../fish/guestfish-actions.pod:4737
25683 #, no-wrap
25684 msgid ""
25685 " zgrepi regex path\n"
25686 "\n"
25687 msgstr ""
25688
25689 #. type: =head2
25690 #: ../fish/guestfish-commands.pod:1
25691 msgid "alloc"
25692 msgstr ""
25693
25694 #. type: =head2
25695 #: ../fish/guestfish-commands.pod:3
25696 msgid "allocate"
25697 msgstr ""
25698
25699 #. type: verbatim
25700 #: ../fish/guestfish-commands.pod:5
25701 #, no-wrap
25702 msgid ""
25703 " alloc filename size\n"
25704 "\n"
25705 msgstr ""
25706
25707 #. type: textblock
25708 #: ../fish/guestfish-commands.pod:7
25709 msgid ""
25710 "This creates an empty (zeroed) file of the given size, and then adds so it "
25711 "can be further examined."
25712 msgstr ""
25713
25714 #. type: textblock
25715 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
25716 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
25717 msgstr ""
25718
25719 #. type: textblock
25720 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
25721 msgid "Size can be specified using standard suffixes, eg. C<1M>."
25722 msgstr ""
25723
25724 #. type: textblock
25725 #: ../fish/guestfish-commands.pod:14
25726 msgid ""
25727 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
25728 "image, see L</PREPARED DISK IMAGES>."
25729 msgstr ""
25730
25731 #. type: =head2
25732 #: ../fish/guestfish-commands.pod:17
25733 msgid "copy-in"
25734 msgstr ""
25735
25736 #. type: verbatim
25737 #: ../fish/guestfish-commands.pod:19
25738 #, no-wrap
25739 msgid ""
25740 " copy-in local [local ...] /remotedir\n"
25741 "\n"
25742 msgstr ""
25743
25744 #. type: textblock
25745 #: ../fish/guestfish-commands.pod:21
25746 msgid ""
25747 "C<copy-in> copies local files or directories recursively into the disk "
25748 "image, placing them in the directory called C</remotedir> (which must "
25749 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
25750 "other commands as necessary."
25751 msgstr ""
25752
25753 #. type: textblock
25754 #: ../fish/guestfish-commands.pod:26
25755 msgid ""
25756 "Multiple local files and directories can be specified, but the last "
25757 "parameter must always be a remote directory.  Wildcards cannot be used."
25758 msgstr ""
25759
25760 #. type: =head2
25761 #: ../fish/guestfish-commands.pod:30
25762 msgid "copy-out"
25763 msgstr ""
25764
25765 #. type: verbatim
25766 #: ../fish/guestfish-commands.pod:32
25767 #, no-wrap
25768 msgid ""
25769 " copy-out remote [remote ...] localdir\n"
25770 "\n"
25771 msgstr ""
25772
25773 #. type: textblock
25774 #: ../fish/guestfish-commands.pod:34
25775 msgid ""
25776 "C<copy-out> copies remote files or directories recursively out of the disk "
25777 "image, placing them on the host disk in a local directory called C<localdir> "
25778 "(which must exist).  This guestfish meta-command turns into a sequence of "
25779 "L</download>, L</tar-out> and other commands as necessary."
25780 msgstr ""
25781
25782 #. type: textblock
25783 #: ../fish/guestfish-commands.pod:40
25784 msgid ""
25785 "Multiple remote files and directories can be specified, but the last "
25786 "parameter must always be a local directory.  To download to the current "
25787 "directory, use C<.> as in:"
25788 msgstr ""
25789
25790 #. type: verbatim
25791 #: ../fish/guestfish-commands.pod:44
25792 #, no-wrap
25793 msgid ""
25794 " copy-out /home .\n"
25795 "\n"
25796 msgstr ""
25797
25798 #. type: textblock
25799 #: ../fish/guestfish-commands.pod:46
25800 msgid ""
25801 "Wildcards cannot be used in the ordinary command, but you can use them with "
25802 "the help of L</glob> like this:"
25803 msgstr ""
25804
25805 #. type: verbatim
25806 #: ../fish/guestfish-commands.pod:49
25807 #, no-wrap
25808 msgid ""
25809 " glob copy-out /home/* .\n"
25810 "\n"
25811 msgstr ""
25812
25813 #. type: =head2
25814 #: ../fish/guestfish-commands.pod:51
25815 msgid "echo"
25816 msgstr ""
25817
25818 #. type: verbatim
25819 #: ../fish/guestfish-commands.pod:53
25820 #, no-wrap
25821 msgid ""
25822 " echo [params ...]\n"
25823 "\n"
25824 msgstr ""
25825
25826 #. type: textblock
25827 #: ../fish/guestfish-commands.pod:55
25828 msgid "This echos the parameters to the terminal."
25829 msgstr ""
25830
25831 #. type: =head2
25832 #: ../fish/guestfish-commands.pod:57
25833 msgid "edit"
25834 msgstr ""
25835
25836 #. type: =head2
25837 #: ../fish/guestfish-commands.pod:59
25838 msgid "vi"
25839 msgstr ""
25840
25841 #. type: =head2
25842 #: ../fish/guestfish-commands.pod:61
25843 msgid "emacs"
25844 msgstr ""
25845
25846 #. type: verbatim
25847 #: ../fish/guestfish-commands.pod:63
25848 #, no-wrap
25849 msgid ""
25850 " edit filename\n"
25851 "\n"
25852 msgstr ""
25853
25854 #. type: textblock
25855 #: ../fish/guestfish-commands.pod:65
25856 msgid ""
25857 "This is used to edit a file.  It downloads the file, edits it locally using "
25858 "your editor, then uploads the result."
25859 msgstr ""
25860
25861 #. type: textblock
25862 #: ../fish/guestfish-commands.pod:68
25863 msgid ""
25864 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
25865 "or C<emacs> you will get those corresponding editors."
25866 msgstr ""
25867
25868 #. type: =head2
25869 #: ../fish/guestfish-commands.pod:72
25870 msgid "glob"
25871 msgstr ""
25872
25873 #. type: verbatim
25874 #: ../fish/guestfish-commands.pod:74
25875 #, no-wrap
25876 msgid ""
25877 " glob command args...\n"
25878 "\n"
25879 msgstr ""
25880
25881 #. type: textblock
25882 #: ../fish/guestfish-commands.pod:76
25883 msgid ""
25884 "Expand wildcards in any paths in the args list, and run C<command> "
25885 "repeatedly on each matching path."
25886 msgstr ""
25887
25888 #. type: textblock
25889 #: ../fish/guestfish-commands.pod:79
25890 msgid "See L</WILDCARDS AND GLOBBING>."
25891 msgstr ""
25892
25893 #. type: =head2
25894 #: ../fish/guestfish-commands.pod:81
25895 msgid "hexedit"
25896 msgstr ""
25897
25898 #. type: verbatim
25899 #: ../fish/guestfish-commands.pod:83
25900 #, no-wrap
25901 msgid ""
25902 " hexedit <filename|device>\n"
25903 " hexedit <filename|device> <max>\n"
25904 " hexedit <filename|device> <start> <max>\n"
25905 "\n"
25906 msgstr ""
25907
25908 #. type: textblock
25909 #: ../fish/guestfish-commands.pod:87
25910 msgid ""
25911 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
25912 "device."
25913 msgstr ""
25914
25915 #. type: textblock
25916 #: ../fish/guestfish-commands.pod:90
25917 msgid ""
25918 "This command works by downloading potentially the whole file or device, "
25919 "editing it locally, then uploading it.  If the file or device is large, you "
25920 "have to specify which part you wish to edit by using C<max> and/or C<start> "
25921 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
25922 "usual modifiers allowed such as C<1M> (1 megabyte)."
25923 msgstr ""
25924
25925 #. type: textblock
25926 #: ../fish/guestfish-commands.pod:97
25927 msgid "For example to edit the first few sectors of a disk you might do:"
25928 msgstr ""
25929
25930 #. type: verbatim
25931 #: ../fish/guestfish-commands.pod:100
25932 #, no-wrap
25933 msgid ""
25934 " hexedit /dev/sda 1M\n"
25935 "\n"
25936 msgstr ""
25937
25938 #. type: textblock
25939 #: ../fish/guestfish-commands.pod:102
25940 msgid ""
25941 "which would allow you to edit anywhere within the first megabyte of the "
25942 "disk."
25943 msgstr ""
25944
25945 #. type: textblock
25946 #: ../fish/guestfish-commands.pod:105
25947 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
25948 msgstr ""
25949
25950 #. type: verbatim
25951 #: ../fish/guestfish-commands.pod:107
25952 #, no-wrap
25953 msgid ""
25954 " hexedit /dev/sda1 0x400 0x400\n"
25955 "\n"
25956 msgstr ""
25957
25958 #. type: textblock
25959 #: ../fish/guestfish-commands.pod:109
25960 msgid "(assuming the superblock is in the standard location)."
25961 msgstr ""
25962
25963 #. type: textblock
25964 #: ../fish/guestfish-commands.pod:111
25965 msgid ""
25966 "This command requires the external L<hexedit(1)> program.  You can specify "
25967 "another program to use by setting the C<HEXEDITOR> environment variable."
25968 msgstr ""
25969
25970 #. type: textblock
25971 #: ../fish/guestfish-commands.pod:115
25972 msgid "See also L</hexdump>."
25973 msgstr ""
25974
25975 #. type: =head2
25976 #: ../fish/guestfish-commands.pod:117
25977 msgid "lcd"
25978 msgstr ""
25979
25980 #. type: verbatim
25981 #: ../fish/guestfish-commands.pod:119
25982 #, no-wrap
25983 msgid ""
25984 " lcd directory\n"
25985 "\n"
25986 msgstr ""
25987
25988 #. type: textblock
25989 #: ../fish/guestfish-commands.pod:121
25990 msgid "Change the local directory, ie. the current directory of guestfish itself."
25991 msgstr ""
25992
25993 #. type: textblock
25994 #: ../fish/guestfish-commands.pod:124
25995 msgid "Note that C<!cd> won't do what you might expect."
25996 msgstr ""
25997
25998 #. type: =head2
25999 #: ../fish/guestfish-commands.pod:126
26000 msgid "man"
26001 msgstr ""
26002
26003 #. type: =head2
26004 #: ../fish/guestfish-commands.pod:128
26005 msgid "manual"
26006 msgstr ""
26007
26008 #. type: verbatim
26009 #: ../fish/guestfish-commands.pod:130
26010 #, no-wrap
26011 msgid ""
26012 "  man\n"
26013 "\n"
26014 msgstr ""
26015
26016 #. type: textblock
26017 #: ../fish/guestfish-commands.pod:132
26018 msgid "Opens the manual page for guestfish."
26019 msgstr ""
26020
26021 #. type: =head2
26022 #: ../fish/guestfish-commands.pod:134
26023 msgid "more"
26024 msgstr ""
26025
26026 #. type: =head2
26027 #: ../fish/guestfish-commands.pod:136
26028 msgid "less"
26029 msgstr ""
26030
26031 #. type: verbatim
26032 #: ../fish/guestfish-commands.pod:138
26033 #, no-wrap
26034 msgid ""
26035 " more filename\n"
26036 "\n"
26037 msgstr ""
26038
26039 #. type: verbatim
26040 #: ../fish/guestfish-commands.pod:140
26041 #, no-wrap
26042 msgid ""
26043 " less filename\n"
26044 "\n"
26045 msgstr ""
26046
26047 #. type: textblock
26048 #: ../fish/guestfish-commands.pod:142
26049 msgid "This is used to view a file."
26050 msgstr ""
26051
26052 #. type: textblock
26053 #: ../fish/guestfish-commands.pod:144
26054 msgid ""
26055 "The default viewer is C<$PAGER>.  However if you use the alternate command "
26056 "C<less> you will get the C<less> command specifically."
26057 msgstr ""
26058
26059 #. type: =head2
26060 #: ../fish/guestfish-commands.pod:147
26061 msgid "reopen"
26062 msgstr ""
26063
26064 #. type: verbatim
26065 #: ../fish/guestfish-commands.pod:149
26066 #, no-wrap
26067 msgid ""
26068 "  reopen\n"
26069 "\n"
26070 msgstr ""
26071
26072 #. type: textblock
26073 #: ../fish/guestfish-commands.pod:151
26074 msgid ""
26075 "Close and reopen the libguestfs handle.  It is not necessary to use this "
26076 "normally, because the handle is closed properly when guestfish exits.  "
26077 "However this is occasionally useful for testing."
26078 msgstr ""
26079
26080 #. type: =head2
26081 #: ../fish/guestfish-commands.pod:155
26082 msgid "sparse"
26083 msgstr ""
26084
26085 #. type: verbatim
26086 #: ../fish/guestfish-commands.pod:157
26087 #, no-wrap
26088 msgid ""
26089 " sparse filename size\n"
26090 "\n"
26091 msgstr ""
26092
26093 #. type: textblock
26094 #: ../fish/guestfish-commands.pod:159
26095 msgid ""
26096 "This creates an empty sparse file of the given size, and then adds so it can "
26097 "be further examined."
26098 msgstr ""
26099
26100 #. type: textblock
26101 #: ../fish/guestfish-commands.pod:162
26102 msgid ""
26103 "In all respects it works the same as the L</alloc> command, except that the "
26104 "image file is allocated sparsely, which means that disk blocks are not "
26105 "assigned to the file until they are needed.  Sparse disk files only use "
26106 "space when written to, but they are slower and there is a danger you could "
26107 "run out of real disk space during a write operation."
26108 msgstr ""
26109
26110 #. type: =head2
26111 #: ../fish/guestfish-commands.pod:172
26112 msgid "supported"
26113 msgstr ""
26114
26115 #. type: verbatim
26116 #: ../fish/guestfish-commands.pod:174
26117 #, no-wrap
26118 msgid ""
26119 " supported\n"
26120 "\n"
26121 msgstr ""
26122
26123 #. type: textblock
26124 #: ../fish/guestfish-commands.pod:176
26125 msgid ""
26126 "This command returns a list of the optional groups known to the daemon, and "
26127 "indicates which ones are supported by this build of the libguestfs "
26128 "appliance."
26129 msgstr ""
26130
26131 #. type: textblock
26132 #: ../fish/guestfish-commands.pod:180
26133 msgid "See also L<guestfs(3)/AVAILABILITY>."
26134 msgstr ""
26135
26136 #. type: =head2
26137 #: ../fish/guestfish-commands.pod:182
26138 msgid "time"
26139 msgstr ""
26140
26141 #. type: verbatim
26142 #: ../fish/guestfish-commands.pod:184
26143 #, no-wrap
26144 msgid ""
26145 " time command args...\n"
26146 "\n"
26147 msgstr ""
26148
26149 #. type: textblock
26150 #: ../fish/guestfish-commands.pod:186
26151 msgid ""
26152 "Run the command as usual, but print the elapsed time afterwards.  This can "
26153 "be useful for benchmarking operations."
26154 msgstr ""
26155
26156 #. type: textblock
26157 #: ../test-tool/libguestfs-test-tool.pod:5
26158 msgid "libguestfs-test-tool - End user tests for libguestfs"
26159 msgstr ""
26160
26161 #. type: verbatim
26162 #: ../test-tool/libguestfs-test-tool.pod:9
26163 #, no-wrap
26164 msgid ""
26165 " libguestfs-test-tool [--options]\n"
26166 "\n"
26167 msgstr ""
26168
26169 #. type: textblock
26170 #: ../test-tool/libguestfs-test-tool.pod:13
26171 msgid ""
26172 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
26173 "and developers, to allow them to check basic libguestfs functionality is "
26174 "working.  This is needed because libguestfs occasionally breaks for reasons "
26175 "beyond our control: usually because of changes in the underlying qemu or "
26176 "kernel packages, or the host environment."
26177 msgstr ""
26178
26179 #. type: textblock
26180 #: ../test-tool/libguestfs-test-tool.pod:20
26181 msgid "If you suspect a problem in libguestfs, then just run:"
26182 msgstr ""
26183
26184 #. type: verbatim
26185 #: ../test-tool/libguestfs-test-tool.pod:22
26186 #, no-wrap
26187 msgid ""
26188 " libguestfs-test-tool\n"
26189 "\n"
26190 msgstr ""
26191
26192 #. type: textblock
26193 #: ../test-tool/libguestfs-test-tool.pod:24
26194 msgid "It will print lots of diagnostic messages."
26195 msgstr ""
26196
26197 #. type: textblock
26198 #: ../test-tool/libguestfs-test-tool.pod:26
26199 msgid "If it runs to completion successfully, you will see this near the end:"
26200 msgstr ""
26201
26202 #. type: verbatim
26203 #: ../test-tool/libguestfs-test-tool.pod:28
26204 #, no-wrap
26205 msgid ""
26206 " ===== TEST FINISHED OK =====\n"
26207 "\n"
26208 msgstr ""
26209
26210 #. type: textblock
26211 #: ../test-tool/libguestfs-test-tool.pod:30
26212 msgid "and the test tool will exit with code 0."
26213 msgstr ""
26214
26215 #. type: textblock
26216 #: ../test-tool/libguestfs-test-tool.pod:32
26217 msgid ""
26218 "If it fails (and/or exits with non-zero error code), please paste the "
26219 "B<complete, unedited> output of the test tool into a bug report.  More "
26220 "information about reporting bugs can be found on the "
26221 "L<http://libguestfs.org/> website."
26222 msgstr ""
26223
26224 #. type: =item
26225 #: ../test-tool/libguestfs-test-tool.pod:41
26226 msgid "I<--help>"
26227 msgstr ""
26228
26229 #. type: textblock
26230 #: ../test-tool/libguestfs-test-tool.pod:43
26231 msgid "Display short usage information and exit."
26232 msgstr ""
26233
26234 #. type: =item
26235 #: ../test-tool/libguestfs-test-tool.pod:45
26236 msgid "I<--helper /path/to/libguestfs-test-tool-helper>"
26237 msgstr ""
26238
26239 #. type: textblock
26240 #: ../test-tool/libguestfs-test-tool.pod:47
26241 msgid ""
26242 "Pass an alternate name for the helper program.  libguestfs-test-tool will "
26243 "normally look in the C<$libexec> directory that was configured when the tool "
26244 "was built."
26245 msgstr ""
26246
26247 #. type: =item
26248 #: ../test-tool/libguestfs-test-tool.pod:51
26249 msgid "I<--qemu qemu_binary>"
26250 msgstr ""
26251
26252 #. type: textblock
26253 #: ../test-tool/libguestfs-test-tool.pod:53
26254 msgid ""
26255 "If you have downloaded another qemu binary, point this option at the full "
26256 "path of the binary to try it."
26257 msgstr ""
26258
26259 #. type: =item
26260 #: ../test-tool/libguestfs-test-tool.pod:56
26261 msgid "I<--qemudir qemu_source_dir>"
26262 msgstr ""
26263
26264 #. type: textblock
26265 #: ../test-tool/libguestfs-test-tool.pod:58
26266 msgid ""
26267 "If you have compiled qemu from source, point this option at the source "
26268 "directory to try it."
26269 msgstr ""
26270
26271 #. type: =item
26272 #: ../test-tool/libguestfs-test-tool.pod:61
26273 msgid "I<--timeout N>"
26274 msgstr ""
26275
26276 #. type: textblock
26277 #: ../test-tool/libguestfs-test-tool.pod:63
26278 msgid ""
26279 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
26280 "does not usually need to be adjusted unless your machine is very slow."
26281 msgstr ""
26282
26283 #. type: =head1
26284 #: ../test-tool/libguestfs-test-tool.pod:69
26285 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
26286 msgstr ""
26287
26288 #. type: textblock
26289 #: ../test-tool/libguestfs-test-tool.pod:71
26290 msgid ""
26291 "If you have compiled another version of qemu from source and would like to "
26292 "try that, then you can use the I<--qemudir> option to point to the qemu "
26293 "source directory."
26294 msgstr ""
26295
26296 #. type: textblock
26297 #: ../test-tool/libguestfs-test-tool.pod:75
26298 msgid ""
26299 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
26300 "option to point to the binary."
26301 msgstr ""
26302
26303 #. type: textblock
26304 #: ../test-tool/libguestfs-test-tool.pod:78
26305 msgid ""
26306 "When using an alternate qemu with libguestfs, usually you would need to "
26307 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
26308 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
26309 "when you use either of the I<--qemudir> or I<--qemu> options."
26310 msgstr ""
26311
26312 #. type: textblock
26313 #: ../test-tool/libguestfs-test-tool.pod:85
26314 msgid ""
26315 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
26316 "I<1> if there was an error."
26317 msgstr ""
26318
26319 #. type: =item
26320 #: ../test-tool/libguestfs-test-tool.pod:92
26321 msgid "/usr/libexec/libguestfs-test-tool-helper"
26322 msgstr ""
26323
26324 #. type: textblock
26325 #: ../test-tool/libguestfs-test-tool.pod:94
26326 msgid ""
26327 "This helper program is run inside the appliance and provides additional "
26328 "tests."
26329 msgstr ""
26330
26331 #. type: =item
26332 #: ../test-tool/libguestfs-test-tool.pod:97
26333 msgid "/usr/bin/mkisofs"
26334 msgstr ""
26335
26336 #. type: textblock
26337 #: ../test-tool/libguestfs-test-tool.pod:99
26338 msgid ""
26339 "The C<mkisofs> command is required in order to construct a CD-ROM ISO file "
26340 "which is used as part of the tests."
26341 msgstr ""
26342
26343 #. type: textblock
26344 #: ../test-tool/libguestfs-test-tool.pod:106
26345 msgid ""
26346 "For the full list of environment variables which may affect libguestfs, "
26347 "please see the L<guestfs(3)> manual page."
26348 msgstr ""
26349
26350 #. type: textblock
26351 #: ../test-tool/libguestfs-test-tool.pod:111
26352 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
26353 msgstr ""
26354
26355 #. type: textblock
26356 #: ../test-tool/libguestfs-test-tool.pod:121
26357 msgid "Copyright (C) 2009 Red Hat Inc.  L<http://libguestfs.org/>"
26358 msgstr ""
26359
26360 #. type: textblock
26361 #: ../fuse/guestmount.pod:5
26362 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
26363 msgstr ""
26364
26365 #. type: verbatim
26366 #: ../fuse/guestmount.pod:9
26367 #, no-wrap
26368 msgid ""
26369 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
26370 "\n"
26371 msgstr ""
26372
26373 #. type: verbatim
26374 #: ../fuse/guestmount.pod:11
26375 #, no-wrap
26376 msgid ""
26377 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
26378 "\n"
26379 msgstr ""
26380
26381 #. type: verbatim
26382 #: ../fuse/guestmount.pod:13
26383 #, no-wrap
26384 msgid ""
26385 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
26386 "\n"
26387 msgstr ""
26388
26389 #. type: textblock
26390 #: ../fuse/guestmount.pod:17
26391 msgid ""
26392 "You must I<not> use C<guestmount> in read-write mode on live virtual "
26393 "machines.  If you do this, you risk disk corruption in the VM."
26394 msgstr ""
26395
26396 #. type: textblock
26397 #: ../fuse/guestmount.pod:22
26398 msgid ""
26399 "The guestmount program can be used to mount virtual machine filesystems and "
26400 "other disk images on the host.  It uses libguestfs for access to the guest "
26401 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
26402 "a mountable device."
26403 msgstr ""
26404
26405 #. type: textblock
26406 #: ../fuse/guestmount.pod:27
26407 msgid ""
26408 "Along with other options, you have to give at least one device (I<-a> "
26409 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
26410 "option) or use the I<-i> inspection option.  How this works is better "
26411 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
26412 "below."
26413 msgstr ""
26414
26415 #. type: textblock
26416 #: ../fuse/guestmount.pod:33
26417 msgid ""
26418 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
26419 "by you, and the filesystem will not be visible to any other users unless you "
26420 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
26421 "the filesystem, use the C<fusermount -u> command."
26422 msgstr ""
26423
26424 #. type: textblock
26425 #: ../fuse/guestmount.pod:41
26426 msgid ""
26427 "For a typical Windows guest which has its main filesystem on the first "
26428 "partition:"
26429 msgstr ""
26430
26431 #. type: verbatim
26432 #: ../fuse/guestmount.pod:44
26433 #, no-wrap
26434 msgid ""
26435 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
26436 "\n"
26437 msgstr ""
26438
26439 #. type: textblock
26440 #: ../fuse/guestmount.pod:46
26441 msgid ""
26442 "For a typical Linux guest which has a /boot filesystem on the first "
26443 "partition, and the root filesystem on a logical volume:"
26444 msgstr ""
26445
26446 #. type: verbatim
26447 #: ../fuse/guestmount.pod:49
26448 #, no-wrap
26449 msgid ""
26450 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
26451 "\n"
26452 msgstr ""
26453
26454 #. type: textblock
26455 #: ../fuse/guestmount.pod:51
26456 msgid "To get libguestfs to detect guest mountpoints for you:"
26457 msgstr ""
26458
26459 #. type: verbatim
26460 #: ../fuse/guestmount.pod:53
26461 #, no-wrap
26462 msgid ""
26463 " guestmount -a guest.img -i --ro /mnt\n"
26464 "\n"
26465 msgstr ""
26466
26467 #. type: textblock
26468 #: ../fuse/guestmount.pod:55
26469 msgid "For a libvirt guest called \"Guest\" you could do:"
26470 msgstr ""
26471
26472 #. type: verbatim
26473 #: ../fuse/guestmount.pod:57
26474 #, no-wrap
26475 msgid ""
26476 " guestmount -d Guest -i --ro /mnt\n"
26477 "\n"
26478 msgstr ""
26479
26480 #. type: textblock
26481 #: ../fuse/guestmount.pod:59
26482 msgid ""
26483 "If you don't know what filesystems are contained in a guest or disk image, "
26484 "use L<virt-filesystems(1)> first:"
26485 msgstr ""
26486
26487 #. type: verbatim
26488 #: ../fuse/guestmount.pod:62
26489 #, no-wrap
26490 msgid ""
26491 " virt-filesystems MyGuest\n"
26492 "\n"
26493 msgstr ""
26494
26495 #. type: textblock
26496 #: ../fuse/guestmount.pod:64
26497 msgid ""
26498 "If you want to trace the libguestfs calls but without excessive debugging "
26499 "information, we recommend:"
26500 msgstr ""
26501
26502 #. type: verbatim
26503 #: ../fuse/guestmount.pod:67
26504 #, no-wrap
26505 msgid ""
26506 " guestmount [...] --trace /mnt\n"
26507 "\n"
26508 msgstr ""
26509
26510 #. type: textblock
26511 #: ../fuse/guestmount.pod:69
26512 msgid "If you want to debug the program, we recommend:"
26513 msgstr ""
26514
26515 #. type: verbatim
26516 #: ../fuse/guestmount.pod:71
26517 #, no-wrap
26518 msgid ""
26519 " guestmount [...] --trace --verbose /mnt\n"
26520 "\n"
26521 msgstr ""
26522
26523 #. type: =item
26524 #: ../fuse/guestmount.pod:77
26525 msgid "B<-a image> | B<--add image>"
26526 msgstr ""
26527
26528 #. type: textblock
26529 #: ../fuse/guestmount.pod:79
26530 msgid "Add a block device or virtual machine image."
26531 msgstr ""
26532
26533 #. type: =item
26534 #: ../fuse/guestmount.pod:84
26535 msgid "B<-c URI> | B<--connect URI>"
26536 msgstr ""
26537
26538 #. type: =item
26539 #: ../fuse/guestmount.pod:90
26540 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
26541 msgstr ""
26542
26543 #. type: =item
26544 #: ../fuse/guestmount.pod:96
26545 msgid "B<--dir-cache-timeout N>"
26546 msgstr ""
26547
26548 #. type: textblock
26549 #: ../fuse/guestmount.pod:98
26550 msgid ""
26551 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
26552 "seconds.  The readdir cache [actually, there are several semi-independent "
26553 "caches] is populated after a readdir(2) call with the stat and extended "
26554 "attributes of the files in the directory, in anticipation that they will be "
26555 "requested soon after."
26556 msgstr ""
26557
26558 #. type: textblock
26559 #: ../fuse/guestmount.pod:104
26560 msgid ""
26561 "There is also a different attribute cache implemented by FUSE (see the FUSE "
26562 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
26563 "requests, only cache existing ones."
26564 msgstr ""
26565
26566 #. type: =item
26567 #: ../fuse/guestmount.pod:115
26568 msgid "B<--format=raw|qcow2|..> | B<--format>"
26569 msgstr ""
26570
26571 #. type: textblock
26572 #: ../fuse/guestmount.pod:122
26573 msgid ""
26574 "If you have untrusted raw-format guest disk images, you should use this "
26575 "option to specify the disk format.  This avoids a possible security problem "
26576 "with malicious guests (CVE-2010-3851).  See also "
26577 "L<guestfs(3)/guestfs_add_drive_opts>."
26578 msgstr ""
26579
26580 #. type: =item
26581 #: ../fuse/guestmount.pod:127
26582 msgid "B<--fuse-help>"
26583 msgstr ""
26584
26585 #. type: textblock
26586 #: ../fuse/guestmount.pod:129
26587 msgid "Display help on special FUSE options (see I<-o> below)."
26588 msgstr ""
26589
26590 #. type: textblock
26591 #: ../fuse/guestmount.pod:133
26592 msgid "Display brief help and exit."
26593 msgstr ""
26594
26595 #. type: =item
26596 #: ../fuse/guestmount.pod:135
26597 msgid "B<-i> | B<--inspector>"
26598 msgstr ""
26599
26600 #. type: =item
26601 #: ../fuse/guestmount.pod:146
26602 msgid "B<-m dev[:mnt]> | B<--mount dev[:mnt]>"
26603 msgstr ""
26604
26605 #. type: textblock
26606 #: ../fuse/guestmount.pod:148
26607 msgid ""
26608 "Mount the named partition or logical volume on the given mountpoint B<in the "
26609 "guest> (this has nothing to do with mountpoints in the host)."
26610 msgstr ""
26611
26612 #. type: textblock
26613 #: ../fuse/guestmount.pod:151
26614 msgid ""
26615 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
26616 "something on C</>."
26617 msgstr ""
26618
26619 #. type: =item
26620 #: ../fuse/guestmount.pod:154
26621 msgid "B<-n> | B<--no-sync>"
26622 msgstr ""
26623
26624 #. type: textblock
26625 #: ../fuse/guestmount.pod:156
26626 msgid ""
26627 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
26628 "unmounted.  If you specify this option, then we don't attempt to sync the "
26629 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
26630 msgstr ""
26631
26632 #. type: =item
26633 #: ../fuse/guestmount.pod:161
26634 msgid "B<-o option> | B<--option option>"
26635 msgstr ""
26636
26637 #. type: textblock
26638 #: ../fuse/guestmount.pod:163
26639 msgid "Pass extra options to FUSE."
26640 msgstr ""
26641
26642 #. type: textblock
26643 #: ../fuse/guestmount.pod:165
26644 msgid ""
26645 "To get a list of all the extra options supported by FUSE, use the command "
26646 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
26647 "of them are a good idea."
26648 msgstr ""
26649
26650 #. type: verbatim
26651 #: ../fuse/guestmount.pod:169
26652 #, no-wrap
26653 msgid ""
26654 " guestmount --fuse-help\n"
26655 "\n"
26656 msgstr ""
26657
26658 #. type: textblock
26659 #: ../fuse/guestmount.pod:171
26660 msgid "Some potentially useful FUSE options:"
26661 msgstr ""
26662
26663 #. type: =item
26664 #: ../fuse/guestmount.pod:175
26665 msgid "B<-o allow_other>"
26666 msgstr ""
26667
26668 #. type: textblock
26669 #: ../fuse/guestmount.pod:177
26670 msgid "Allow other users to see the filesystem."
26671 msgstr ""
26672
26673 #. type: =item
26674 #: ../fuse/guestmount.pod:179
26675 msgid "B<-o attr_timeout=N>"
26676 msgstr ""
26677
26678 #. type: textblock
26679 #: ../fuse/guestmount.pod:181
26680 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
26681 msgstr ""
26682
26683 #. type: =item
26684 #: ../fuse/guestmount.pod:183
26685 msgid "B<-o kernel_cache>"
26686 msgstr ""
26687
26688 #. type: textblock
26689 #: ../fuse/guestmount.pod:185
26690 msgid ""
26691 "Allow the kernel to cache files (reduces the number of reads that have to go "
26692 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
26693 "afford the extra memory usage."
26694 msgstr ""
26695
26696 #. type: =item
26697 #: ../fuse/guestmount.pod:189
26698 msgid "B<-o uid=N> B<-o gid=N>"
26699 msgstr ""
26700
26701 #. type: textblock
26702 #: ../fuse/guestmount.pod:191
26703 msgid ""
26704 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
26705 "the chosen values."
26706 msgstr ""
26707
26708 #. type: =item
26709 #: ../fuse/guestmount.pod:196
26710 msgid "B<-r> | B<--ro>"
26711 msgstr ""
26712
26713 #. type: textblock
26714 #: ../fuse/guestmount.pod:198
26715 msgid ""
26716 "Add devices and mount everything read-only.  Also disallow writes and make "
26717 "the disk appear read-only to FUSE."
26718 msgstr ""
26719
26720 #. type: textblock
26721 #: ../fuse/guestmount.pod:201
26722 msgid ""
26723 "This is highly recommended if you are not going to edit the guest disk.  If "
26724 "the guest is running and this option is I<not> supplied, then there is a "
26725 "strong risk of disk corruption in the guest.  We try to prevent this from "
26726 "happening, but it is not always possible."
26727 msgstr ""
26728
26729 #. type: textblock
26730 #: ../fuse/guestmount.pod:206
26731 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
26732 msgstr ""
26733
26734 #. type: textblock
26735 #: ../fuse/guestmount.pod:210
26736 msgid "Enable SELinux support for the guest."
26737 msgstr ""
26738
26739 #. type: =item
26740 #: ../fuse/guestmount.pod:212
26741 msgid "B<-v> | B<--verbose>"
26742 msgstr ""
26743
26744 #. type: textblock
26745 #: ../fuse/guestmount.pod:214
26746 msgid "Enable verbose messages from underlying libguestfs."
26747 msgstr ""
26748
26749 #. type: =item
26750 #: ../fuse/guestmount.pod:216
26751 msgid "B<-V> | B<--version>"
26752 msgstr ""
26753
26754 #. type: textblock
26755 #: ../fuse/guestmount.pod:218
26756 msgid "Display the program version and exit."
26757 msgstr ""
26758
26759 #. type: =item
26760 #: ../fuse/guestmount.pod:220
26761 msgid "B<-w> | B<--rw>"
26762 msgstr ""
26763
26764 #. type: textblock
26765 #: ../fuse/guestmount.pod:222
26766 msgid ""
26767 "This option does nothing at the moment.  See L<guestfish(1)/OPENING DISKS "
26768 "FOR READ AND WRITE>."
26769 msgstr ""
26770
26771 #. type: =item
26772 #: ../fuse/guestmount.pod:225
26773 msgid "B<-x> | B<--trace>"
26774 msgstr ""
26775
26776 #. type: textblock
26777 #: ../fuse/guestmount.pod:227
26778 msgid "Trace libguestfs calls and entry into each FUSE function."
26779 msgstr ""
26780
26781 #. type: textblock
26782 #: ../fuse/guestmount.pod:229
26783 msgid "This also stops the daemon from forking into the background."
26784 msgstr ""
26785
26786 #. type: textblock
26787 #: ../fuse/guestmount.pod:235
26788 msgid ""
26789 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
26790 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
26791 "L<http://fuse.sf.net/>."
26792 msgstr ""
26793
26794 #. type: textblock
26795 #: ../tools/virt-edit.pl:34
26796 msgid "virt-edit - Edit a file in a virtual machine"
26797 msgstr ""
26798
26799 #. type: verbatim
26800 #: ../tools/virt-edit.pl:38
26801 #, no-wrap
26802 msgid ""
26803 " virt-edit [--options] domname file\n"
26804 "\n"
26805 msgstr ""
26806
26807 #. type: verbatim
26808 #: ../tools/virt-edit.pl:40
26809 #, no-wrap
26810 msgid ""
26811 " virt-edit [--options] disk.img [disk.img ...] file\n"
26812 "\n"
26813 msgstr ""
26814
26815 #. type: verbatim
26816 #: ../tools/virt-edit.pl:42
26817 #, no-wrap
26818 msgid ""
26819 " virt-edit [domname|disk.img] file -e 'expr'\n"
26820 "\n"
26821 msgstr ""
26822
26823 #. type: textblock
26824 #: ../tools/virt-edit.pl:46
26825 msgid ""
26826 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
26827 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
26828 "doing this, but doesn't catch all cases."
26829 msgstr ""
26830
26831 #. type: textblock
26832 #: ../tools/virt-edit.pl:52
26833 msgid ""
26834 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
26835 "the named virtual machine (or disk image)."
26836 msgstr ""
26837
26838 #. type: textblock
26839 #: ../tools/virt-edit.pl:55
26840 msgid "If you want to just view a file, use L<virt-cat(1)>."
26841 msgstr ""
26842
26843 #. type: textblock
26844 #: ../tools/virt-edit.pl:57
26845 msgid ""
26846 "For more complex cases you should look at the L<guestfish(1)> tool (see "
26847 "L</USING GUESTFISH> below)."
26848 msgstr ""
26849
26850 #. type: textblock
26851 #: ../tools/virt-edit.pl:60
26852 msgid ""
26853 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
26854 "files.  L<guestfish(1)> can do that and much more."
26855 msgstr ""
26856
26857 #. type: textblock
26858 #: ../tools/virt-edit.pl:65
26859 msgid "Edit the named files interactively:"
26860 msgstr ""
26861
26862 #. type: verbatim
26863 #: ../tools/virt-edit.pl:67
26864 #, no-wrap
26865 msgid ""
26866 " virt-edit mydomain /boot/grub/grub.conf\n"
26867 "\n"
26868 msgstr ""
26869
26870 #. type: verbatim
26871 #: ../tools/virt-edit.pl:69
26872 #, no-wrap
26873 msgid ""
26874 " virt-edit mydomain /etc/passwd\n"
26875 "\n"
26876 msgstr ""
26877
26878 #. type: textblock
26879 #: ../tools/virt-edit.pl:71
26880 msgid ""
26881 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
26882 "below).  To change the init default level to 5:"
26883 msgstr ""
26884
26885 #. type: verbatim
26886 #: ../tools/virt-edit.pl:75
26887 #, no-wrap
26888 msgid ""
26889 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
26890 "\n"
26891 msgstr ""
26892
26893 #. type: textblock
26894 #: ../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
26895 msgid "Display brief help."
26896 msgstr ""
26897
26898 #. type: textblock
26899 #: ../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
26900 msgid "Display version number and exit."
26901 msgstr ""
26902
26903 #. type: =item
26904 #: ../tools/virt-edit.pl:101
26905 msgid "B<--backup extension> | B<-b extension>"
26906 msgstr ""
26907
26908 #. type: textblock
26909 #: ../tools/virt-edit.pl:103
26910 msgid ""
26911 "Create a backup of the original file I<in the guest disk image>.  The backup "
26912 "has the original filename with C<extension> added."
26913 msgstr ""
26914
26915 #. type: textblock
26916 #: ../tools/virt-edit.pl:106
26917 msgid ""
26918 "Usually the first character of C<extension> would be a dot C<.> so you would "
26919 "write:"
26920 msgstr ""
26921
26922 #. type: verbatim
26923 #: ../tools/virt-edit.pl:109
26924 #, no-wrap
26925 msgid ""
26926 " virt-edit -b .orig [etc]\n"
26927 "\n"
26928 msgstr ""
26929
26930 #. type: textblock
26931 #: ../tools/virt-edit.pl:111
26932 msgid "By default, no backup file is made."
26933 msgstr ""
26934
26935 #. type: =item
26936 #: ../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
26937 msgid "B<--connect URI> | B<-c URI>"
26938 msgstr ""
26939
26940 #. type: textblock
26941 #: ../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
26942 msgid ""
26943 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
26944 "to the default libvirt hypervisor."
26945 msgstr ""
26946
26947 #. type: textblock
26948 #: ../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
26949 msgid ""
26950 "If you specify guest block devices directly, then libvirt is not used at "
26951 "all."
26952 msgstr ""
26953
26954 #. type: =item
26955 #: ../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
26956 msgid "B<--format> raw"
26957 msgstr ""
26958
26959 #. type: textblock
26960 #: ../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
26961 msgid ""
26962 "Specify the format of disk images given on the command line.  If this is "
26963 "omitted then the format is autodetected from the content of the disk image."
26964 msgstr ""
26965
26966 #. type: textblock
26967 #: ../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
26968 msgid ""
26969 "If disk images are requested from libvirt, then this program asks libvirt "
26970 "for this information.  In this case, the value of the format parameter is "
26971 "ignored."
26972 msgstr ""
26973
26974 #. type: textblock
26975 #: ../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
26976 msgid ""
26977 "If working with untrusted raw-format guest disk images, you should ensure "
26978 "the format is always specified."
26979 msgstr ""
26980
26981 #. type: =item
26982 #: ../tools/virt-edit.pl:146
26983 msgid "B<--expr EXPR> | B<-e EXPR>"
26984 msgstr ""
26985
26986 #. type: textblock
26987 #: ../tools/virt-edit.pl:148
26988 msgid ""
26989 "Instead of launching the external editor, non-interactively apply the Perl "
26990 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
26991 "EDITING> below."
26992 msgstr ""
26993
26994 #. type: textblock
26995 #: ../tools/virt-edit.pl:152
26996 msgid ""
26997 "Be careful to properly quote the expression to prevent it from being altered "
26998 "by the shell."
26999 msgstr ""
27000
27001 #. type: =head1
27002 #: ../tools/virt-edit.pl:272
27003 msgid "NON-INTERACTIVE EDITING"
27004 msgstr ""
27005
27006 #. type: textblock
27007 #: ../tools/virt-edit.pl:274
27008 msgid ""
27009 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
27010 "administrator can interactively edit the file."
27011 msgstr ""
27012
27013 #. type: textblock
27014 #: ../tools/virt-edit.pl:277
27015 msgid ""
27016 "There are two ways also to use C<virt-edit> from scripts in order to make "
27017 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
27018 "like this, it's less error-prone to write scripts directly using the "
27019 "libguestfs API and Augeas for configuration file editing.)"
27020 msgstr ""
27021
27022 #. type: textblock
27023 #: ../tools/virt-edit.pl:283
27024 msgid ""
27025 "The first method is to temporarily set C<$EDITOR> to any script or program "
27026 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
27027 "update C<tmpfile> in place however it likes."
27028 msgstr ""
27029
27030 #. type: textblock
27031 #: ../tools/virt-edit.pl:287
27032 msgid ""
27033 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
27034 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
27035 "instances of C<foo> with C<bar> in a file:"
27036 msgstr ""
27037
27038 #. type: verbatim
27039 #: ../tools/virt-edit.pl:291
27040 #, no-wrap
27041 msgid ""
27042 " virt-edit domname filename -e 's/foo/bar/'\n"
27043 "\n"
27044 msgstr ""
27045
27046 #. type: textblock
27047 #: ../tools/virt-edit.pl:293
27048 msgid ""
27049 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
27050 "For example to delete root's password you could do:"
27051 msgstr ""
27052
27053 #. type: verbatim
27054 #: ../tools/virt-edit.pl:296
27055 #, no-wrap
27056 msgid ""
27057 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
27058 "\n"
27059 msgstr ""
27060
27061 #. type: textblock
27062 #: ../tools/virt-edit.pl:298
27063 msgid ""
27064 "What really happens is that the snippet is evaluated as a Perl expression "
27065 "for each line of the file.  The line, including the final C<\\n>, is passed "
27066 "in C<$_> and the expression should update C<$_> or leave it unchanged."
27067 msgstr ""
27068
27069 #. type: textblock
27070 #: ../tools/virt-edit.pl:303
27071 msgid ""
27072 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
27073 "C<apache> user account from the password file you can do:"
27074 msgstr ""
27075
27076 #. type: verbatim
27077 #: ../tools/virt-edit.pl:306
27078 #, no-wrap
27079 msgid ""
27080 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
27081 "\n"
27082 msgstr ""
27083
27084 #. type: textblock
27085 #: ../tools/virt-edit.pl:308
27086 msgid ""
27087 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
27088 "the end of the file is rather difficult this way since there is no concept "
27089 "of \"last line of the file\" - your expression just doesn't get called "
27090 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
27091 "want to do this."
27092 msgstr ""
27093
27094 #. type: textblock
27095 #: ../tools/virt-edit.pl:314
27096 msgid ""
27097 "The variable C<$lineno> contains the current line number.  As is "
27098 "traditional, the first line in the file is number C<1>."
27099 msgstr ""
27100
27101 #. type: textblock
27102 #: ../tools/virt-edit.pl:317
27103 msgid ""
27104 "The return value from the expression is ignored, but the expression may call "
27105 "C<die> in order to abort the whole program, leaving the original file "
27106 "untouched."
27107 msgstr ""
27108
27109 #. type: textblock
27110 #: ../tools/virt-edit.pl:321
27111 msgid ""
27112 "Remember when matching the end of a line that C<$_> may contain the final "
27113 "C<\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
27114 "newline then neither of these.  Thus to match or substitute some text at the "
27115 "end of a line, use this regular expression:"
27116 msgstr ""
27117
27118 #. type: verbatim
27119 #: ../tools/virt-edit.pl:326
27120 #, no-wrap
27121 msgid ""
27122 " /some text(\\r?\\n)?$/\n"
27123 "\n"
27124 msgstr ""
27125
27126 #. type: textblock
27127 #: ../tools/virt-edit.pl:328
27128 msgid ""
27129 "Alternately, use the perl C<chomp> function, being careful not to chomp "
27130 "C<$_> itself (since that would remove all newlines from the file):"
27131 msgstr ""
27132
27133 #. type: verbatim
27134 #: ../tools/virt-edit.pl:332
27135 #, no-wrap
27136 msgid ""
27137 " my $m = $_; chomp $m; $m =~ /some text$/\n"
27138 "\n"
27139 msgstr ""
27140
27141 #. type: =head1
27142 #: ../tools/virt-edit.pl:334
27143 msgid "USING GUESTFISH"
27144 msgstr ""
27145
27146 #. type: textblock
27147 #: ../tools/virt-edit.pl:336
27148 msgid ""
27149 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
27150 "C<virt-edit> doesn't work."
27151 msgstr ""
27152
27153 #. type: textblock
27154 #: ../tools/virt-edit.pl:339
27155 msgid "Using C<virt-edit> is approximately equivalent to doing:"
27156 msgstr ""
27157
27158 #. type: verbatim
27159 #: ../tools/virt-edit.pl:341
27160 #, no-wrap
27161 msgid ""
27162 " guestfish --rw -i -d domname edit /file\n"
27163 "\n"
27164 msgstr ""
27165
27166 #. type: textblock
27167 #: ../tools/virt-edit.pl:343
27168 msgid ""
27169 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
27170 "path to the file."
27171 msgstr ""
27172
27173 #. type: textblock
27174 #: ../tools/virt-edit.pl:346
27175 msgid ""
27176 "The command above uses libguestfs's guest inspection feature and so does not "
27177 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
27178 "disk images that don't contain guests.  To edit a file on a disk image "
27179 "directly, use:"
27180 msgstr ""
27181
27182 #. type: verbatim
27183 #: ../tools/virt-edit.pl:351
27184 #, no-wrap
27185 msgid ""
27186 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
27187 "\n"
27188 msgstr ""
27189
27190 #. type: textblock
27191 #: ../tools/virt-edit.pl:353
27192 msgid ""
27193 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
27194 "the disk image to edit, and C</file> is the full path to the file."
27195 msgstr ""
27196
27197 #. type: textblock
27198 #: ../tools/virt-edit.pl:357
27199 msgid ""
27200 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
27201 "C<write> or C<upload> instead:"
27202 msgstr ""
27203
27204 #. type: verbatim
27205 #: ../tools/virt-edit.pl:360
27206 #, no-wrap
27207 msgid ""
27208 " guestfish --rw -i -d domname touch /newfile\n"
27209 "\n"
27210 msgstr ""
27211
27212 #. type: verbatim
27213 #: ../tools/virt-edit.pl:362
27214 #, no-wrap
27215 msgid ""
27216 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
27217 "\n"
27218 msgstr ""
27219
27220 #. type: verbatim
27221 #: ../tools/virt-edit.pl:364
27222 #, no-wrap
27223 msgid ""
27224 " guestfish --rw -i -d domname upload localfile /newfile\n"
27225 "\n"
27226 msgstr ""
27227
27228 #. type: textblock
27229 #: ../tools/virt-edit.pl:366
27230 msgid "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
27231 msgstr ""
27232
27233 #. type: verbatim
27234 #: ../tools/virt-edit.pl:369
27235 #, no-wrap
27236 msgid ""
27237 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
27238 "\n"
27239 msgstr ""
27240
27241 #. type: =item
27242 #: ../tools/virt-edit.pl:379
27243 msgid "C<EDITOR>"
27244 msgstr ""
27245
27246 #. type: textblock
27247 #: ../tools/virt-edit.pl:381
27248 msgid ""
27249 "If set, this string is used as the editor.  It may contain arguments, "
27250 "eg. C<\"emacs -nw\">"
27251 msgstr ""
27252
27253 #. type: textblock
27254 #: ../tools/virt-edit.pl:384
27255 msgid "If not set, C<vi> is used."
27256 msgstr ""
27257
27258 #. type: =head1
27259 #: ../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
27260 msgid "SHELL QUOTING"
27261 msgstr ""
27262
27263 #. type: textblock
27264 #: ../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
27265 msgid ""
27266 "Libvirt guest names can contain arbitrary characters, some of which have "
27267 "meaning to the shell such as C<#> and space.  You may need to quote or "
27268 "escape these characters on the command line.  See the shell manual page "
27269 "L<sh(1)> for details."
27270 msgstr ""
27271
27272 #. type: textblock
27273 #: ../tools/virt-edit.pl:397
27274 msgid ""
27275 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
27276 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>, "
27277 "L<perl(1)>, L<perlre(1)>."
27278 msgstr ""
27279
27280 #. type: =head1
27281 #: ../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
27282 msgid "AUTHOR"
27283 msgstr ""
27284
27285 #. type: textblock
27286 #: ../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
27287 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
27288 msgstr ""
27289
27290 #. type: textblock
27291 #: ../tools/virt-edit.pl:413
27292 msgid "Copyright (C) 2009-2011 Red Hat Inc."
27293 msgstr ""
27294
27295 #. type: textblock
27296 #: ../tools/virt-win-reg.pl:37
27297 msgid ""
27298 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
27299 "guest"
27300 msgstr ""
27301
27302 #. type: verbatim
27303 #: ../tools/virt-win-reg.pl:41
27304 #, no-wrap
27305 msgid ""
27306 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
27307 "\n"
27308 msgstr ""
27309
27310 #. type: verbatim
27311 #: ../tools/virt-win-reg.pl:43
27312 #, no-wrap
27313 msgid ""
27314 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
27315 "\n"
27316 msgstr ""
27317
27318 #. type: verbatim
27319 #: ../tools/virt-win-reg.pl:45
27320 #, no-wrap
27321 msgid ""
27322 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
27323 "\n"
27324 msgstr ""
27325
27326 #. type: verbatim
27327 #: ../tools/virt-win-reg.pl:47
27328 #, no-wrap
27329 msgid ""
27330 " virt-win-reg --merge domname [input.reg ...]\n"
27331 "\n"
27332 msgstr ""
27333
27334 #. type: verbatim
27335 #: ../tools/virt-win-reg.pl:49
27336 #, no-wrap
27337 msgid ""
27338 " virt-win-reg [--options] disk.img ... # instead of domname\n"
27339 "\n"
27340 msgstr ""
27341
27342 #. type: textblock
27343 #: ../tools/virt-win-reg.pl:53
27344 msgid ""
27345 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
27346 "virtual machines.  If you do this, you I<will> get irreversible disk "
27347 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
27348 "but doesn't catch all cases."
27349 msgstr ""
27350
27351 #. type: textblock
27352 #: ../tools/virt-win-reg.pl:58
27353 msgid ""
27354 "Modifying the Windows Registry is an inherently risky operation.  The format "
27355 "is deliberately obscure and undocumented, and Registry changes can leave the "
27356 "system unbootable.  Therefore when using the C<--merge> option, make sure "
27357 "you have a reliable backup first."
27358 msgstr ""
27359
27360 #. type: textblock
27361 #: ../tools/virt-win-reg.pl:65
27362 msgid ""
27363 "This program can export and merge Windows Registry entries from a Windows "
27364 "guest."
27365 msgstr ""
27366
27367 #. type: textblock
27368 #: ../tools/virt-win-reg.pl:68
27369 msgid ""
27370 "The first parameter is the libvirt guest name or the raw disk image of a "
27371 "Windows guest."
27372 msgstr ""
27373
27374 #. type: textblock
27375 #: ../tools/virt-win-reg.pl:71
27376 msgid ""
27377 "If C<--merge> is I<not> specified, then the chosen registry key is "
27378 "displayed/exported (recursively).  For example:"
27379 msgstr ""
27380
27381 #. type: verbatim
27382 #: ../tools/virt-win-reg.pl:74
27383 #, no-wrap
27384 msgid ""
27385 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
27386 "\n"
27387 msgstr ""
27388
27389 #. type: textblock
27390 #: ../tools/virt-win-reg.pl:76
27391 msgid "You can also display single values from within registry keys, for example:"
27392 msgstr ""
27393
27394 #. type: verbatim
27395 #: ../tools/virt-win-reg.pl:79
27396 #, no-wrap
27397 msgid ""
27398 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
27399 " $ virt-win-reg Windows7 $cvkey ProductName\n"
27400 " Windows 7 Enterprise\n"
27401 "\n"
27402 msgstr ""
27403
27404 #. type: textblock
27405 #: ../tools/virt-win-reg.pl:83
27406 msgid ""
27407 "With C<--merge>, you can merge a textual regedit file into the Windows "
27408 "Registry:"
27409 msgstr ""
27410
27411 #. type: verbatim
27412 #: ../tools/virt-win-reg.pl:86
27413 #, no-wrap
27414 msgid ""
27415 " $ virt-win-reg --merge Windows7 changes.reg\n"
27416 "\n"
27417 msgstr ""
27418
27419 #. type: =head2
27420 #: ../tools/virt-win-reg.pl:88
27421 msgid "NOTE"
27422 msgstr ""
27423
27424 #. type: textblock
27425 #: ../tools/virt-win-reg.pl:90
27426 msgid ""
27427 "This program is only meant for simple access to the registry.  If you want "
27428 "to do complicated things with the registry, we suggest you download the "
27429 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
27430 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
27431 "L<hivexregedit(1)>."
27432 msgstr ""
27433
27434 #. type: =item
27435 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
27436 msgid "B<--debug>"
27437 msgstr ""
27438
27439 #. type: textblock
27440 #: ../tools/virt-win-reg.pl:122 ../tools/virt-resize.pl:498
27441 msgid "Enable debugging messages."
27442 msgstr ""
27443
27444 #. type: =item
27445 #: ../tools/virt-win-reg.pl:157
27446 msgid "B<--merge>"
27447 msgstr ""
27448
27449 #. type: textblock
27450 #: ../tools/virt-win-reg.pl:159
27451 msgid ""
27452 "In merge mode, this merges a textual regedit file into the Windows Registry "
27453 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
27454 "displays or exports Registry entries instead."
27455 msgstr ""
27456
27457 #. type: textblock
27458 #: ../tools/virt-win-reg.pl:163
27459 msgid ""
27460 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
27461 "result in disk corruption.  However exporting (without this flag)  is always "
27462 "safe."
27463 msgstr ""
27464
27465 #. type: =item
27466 #: ../tools/virt-win-reg.pl:171
27467 msgid "B<--encoding> UTF-16LE|ASCII"
27468 msgstr ""
27469
27470 #. type: textblock
27471 #: ../tools/virt-win-reg.pl:173
27472 msgid ""
27473 "When merging (only), you may need to specify the encoding for strings to be "
27474 "used in the hive file.  This is explained in detail in "
27475 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
27476 msgstr ""
27477
27478 #. type: textblock
27479 #: ../tools/virt-win-reg.pl:177
27480 msgid ""
27481 "The default is to use UTF-16LE, which should work with recent versions of "
27482 "Windows."
27483 msgstr ""
27484
27485 #. type: =head1
27486 #: ../tools/virt-win-reg.pl:402
27487 msgid "SUPPORTED SYSTEMS"
27488 msgstr ""
27489
27490 #. type: textblock
27491 #: ../tools/virt-win-reg.pl:404
27492 msgid ""
27493 "The program currently supports Windows NT-derived guests starting with "
27494 "Windows XP through to at least Windows 7."
27495 msgstr ""
27496
27497 #. type: textblock
27498 #: ../tools/virt-win-reg.pl:407
27499 msgid ""
27500 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, "
27501 "C<HKEY_LOCAL_MACHINE\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, "
27502 "C<HKEY_LOCAL_MACHINE\\SYSTEM> and C<HKEY_USERS\\.DEFAULT>."
27503 msgstr ""
27504
27505 #. type: textblock
27506 #: ../tools/virt-win-reg.pl:411
27507 msgid ""
27508 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
27509 "C<HKEY_USERS>."
27510 msgstr ""
27511
27512 #. type: textblock
27513 #: ../tools/virt-win-reg.pl:414
27514 msgid ""
27515 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
27516 "time."
27517 msgstr ""
27518
27519 #. type: =head1
27520 #: ../tools/virt-win-reg.pl:417
27521 msgid "ENCODING"
27522 msgstr ""
27523
27524 #. type: textblock
27525 #: ../tools/virt-win-reg.pl:419
27526 msgid ""
27527 "C<virt-win-reg> expects that regedit files have already been reencoded in "
27528 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
27529 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
27530 "with Windows-style line endings, you may need to reencode the whole file "
27531 "before or after processing."
27532 msgstr ""
27533
27534 #. type: textblock
27535 #: ../tools/virt-win-reg.pl:425
27536 msgid ""
27537 "To reencode a file from Windows format to Linux (before processing it with "
27538 "the C<--merge> option), you would do something like this:"
27539 msgstr ""
27540
27541 #. type: verbatim
27542 #: ../tools/virt-win-reg.pl:428
27543 #, no-wrap
27544 msgid ""
27545 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
27546 "\n"
27547 msgstr ""
27548
27549 #. type: textblock
27550 #: ../tools/virt-win-reg.pl:430
27551 msgid ""
27552 "To go in the opposite direction, after exporting and before sending the file "
27553 "to a Windows user, do something like this:"
27554 msgstr ""
27555
27556 #. type: verbatim
27557 #: ../tools/virt-win-reg.pl:433
27558 #, no-wrap
27559 msgid ""
27560 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
27561 "\n"
27562 msgstr ""
27563
27564 #. type: textblock
27565 #: ../tools/virt-win-reg.pl:435
27566 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
27567 msgstr ""
27568
27569 #. type: textblock
27570 #: ../tools/virt-win-reg.pl:437
27571 msgid ""
27572 "If you are unsure about the current encoding, use the L<file(1)> command.  "
27573 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
27574 "Windows-style (CRLF) line endings, like this:"
27575 msgstr ""
27576
27577 #. type: verbatim
27578 #: ../tools/virt-win-reg.pl:441
27579 #, no-wrap
27580 msgid ""
27581 " $ file software.reg\n"
27582 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
27583 " with CRLF line terminators\n"
27584 "\n"
27585 msgstr ""
27586
27587 #. type: textblock
27588 #: ../tools/virt-win-reg.pl:445
27589 msgid "This file would need conversion before you could C<--merge> it."
27590 msgstr ""
27591
27592 #. type: =head1
27593 #: ../tools/virt-win-reg.pl:447
27594 msgid "CurrentControlSet etc."
27595 msgstr ""
27596
27597 #. type: textblock
27598 #: ../tools/virt-win-reg.pl:449
27599 msgid ""
27600 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
27601 "Registry at the level of the hive file, and therefore you cannot modify "
27602 "these."
27603 msgstr ""
27604
27605 #. type: textblock
27606 #: ../tools/virt-win-reg.pl:453
27607 msgid ""
27608 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
27609 "circumstances it might refer to another control set.  The way to find out is "
27610 "to look at the C<HKLM\\SYSTEM\\Select> key:"
27611 msgstr ""
27612
27613 #. type: verbatim
27614 #: ../tools/virt-win-reg.pl:457
27615 #, no-wrap
27616 msgid ""
27617 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
27618 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
27619 " \"Current\"=dword:00000001\n"
27620 " \"Default\"=dword:00000001\n"
27621 " \"Failed\"=dword:00000000\n"
27622 " \"LastKnownGood\"=dword:00000002\n"
27623 "\n"
27624 msgstr ""
27625
27626 #. type: textblock
27627 #: ../tools/virt-win-reg.pl:464
27628 msgid "\"Current\" is the one which Windows will choose when it boots."
27629 msgstr ""
27630
27631 #. type: textblock
27632 #: ../tools/virt-win-reg.pl:466
27633 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
27634 msgstr ""
27635
27636 #. type: =head1
27637 #: ../tools/virt-win-reg.pl:469
27638 msgid "WINDOWS TIPS"
27639 msgstr ""
27640
27641 #. type: textblock
27642 #: ../tools/virt-win-reg.pl:471
27643 msgid ""
27644 "Note that some of these tips modify the guest disk image.  The guest I<must> "
27645 "be shut off, else you will get disk corruption."
27646 msgstr ""
27647
27648 #. type: =head2
27649 #: ../tools/virt-win-reg.pl:474
27650 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
27651 msgstr ""
27652
27653 #. type: textblock
27654 #: ../tools/virt-win-reg.pl:476
27655 msgid ""
27656 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
27657 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
27658 "is uploaded into C<C:\\>:"
27659 msgstr ""
27660
27661 #. type: verbatim
27662 #: ../tools/virt-win-reg.pl:480
27663 #, no-wrap
27664 msgid ""
27665 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
27666 "\n"
27667 msgstr ""
27668
27669 #. type: textblock
27670 #: ../tools/virt-win-reg.pl:482
27671 msgid "Prepare a regedit file containing the registry change:"
27672 msgstr ""
27673
27674 #. type: verbatim
27675 #: ../tools/virt-win-reg.pl:484
27676 #, no-wrap
27677 msgid ""
27678 " cat > test.reg <<'EOF'\n"
27679 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
27680 " \"Test\"=\"c:\\\\test.bat\"\n"
27681 " EOF\n"
27682 "\n"
27683 msgstr ""
27684
27685 #. type: textblock
27686 #: ../tools/virt-win-reg.pl:489
27687 msgid ""
27688 "In this example we use the key C<RunOnce> which means that the script will "
27689 "run precisely once when the first user logs in.  If you want it to run every "
27690 "time a user logs in, replace C<RunOnce> with C<Run>."
27691 msgstr ""
27692
27693 #. type: textblock
27694 #: ../tools/virt-win-reg.pl:493
27695 msgid "Now update the registry:"
27696 msgstr ""
27697
27698 #. type: verbatim
27699 #: ../tools/virt-win-reg.pl:495
27700 #, no-wrap
27701 msgid ""
27702 " virt-win-reg --merge WindowsGuest test.reg\n"
27703 "\n"
27704 msgstr ""
27705
27706 #. type: =head2
27707 #: ../tools/virt-win-reg.pl:497
27708 msgid "INSTALLING A SERVICE"
27709 msgstr ""
27710
27711 #. type: textblock
27712 #: ../tools/virt-win-reg.pl:499
27713 msgid ""
27714 "This section assumes you are familiar with Windows services, and you either "
27715 "have a program which handles the Windows Service Control Protocol directly "
27716 "or you want to run any program using a service wrapper like SrvAny or the "
27717 "free RHSrvAny."
27718 msgstr ""
27719
27720 #. type: textblock
27721 #: ../tools/virt-win-reg.pl:504
27722 msgid ""
27723 "First upload the program and optionally the service wrapper.  In this case "
27724 "the test program is called C<test.exe> and we are using the RHSrvAny "
27725 "wrapper:"
27726 msgstr ""
27727
27728 #. type: verbatim
27729 #: ../tools/virt-win-reg.pl:508
27730 #, no-wrap
27731 msgid ""
27732 " guestfish -i -d WindowsGuest <<EOF\n"
27733 "   upload rhsrvany.exe /rhsrvany.exe\n"
27734 "   upload test.exe /test.exe\n"
27735 " EOF\n"
27736 "\n"
27737 msgstr ""
27738
27739 #. type: textblock
27740 #: ../tools/virt-win-reg.pl:513
27741 msgid ""
27742 "Prepare a regedit file containing the registry changes.  In this example, "
27743 "the first registry change is needed for the service itself or the service "
27744 "wrapper (if used).  The second registry change is only needed because I am "
27745 "using the RHSrvAny service wrapper."
27746 msgstr ""
27747
27748 #. type: verbatim
27749 #: ../tools/virt-win-reg.pl:518
27750 #, no-wrap
27751 msgid ""
27752 " cat > service.reg <<'EOF'\n"
27753 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
27754 " \"Type\"=dword:00000010\n"
27755 " \"Start\"=dword:00000002\n"
27756 " \"ErrorControl\"=dword:00000001\n"
27757 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
27758 " \"DisplayName\"=\"RHSrvAny\"\n"
27759 " \"ObjectName\"=\"NetworkService\"\n"
27760 " \n"
27761 msgstr ""
27762
27763 #. type: verbatim
27764 #: ../tools/virt-win-reg.pl:527
27765 #, no-wrap
27766 msgid ""
27767 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
27768 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
27769 " \"PWD\"=\"c:\\\\Temp\"\n"
27770 " EOF\n"
27771 "\n"
27772 msgstr ""
27773
27774 #. type: textblock
27775 #: ../tools/virt-win-reg.pl:538
27776 msgid ""
27777 "For use of C<ControlSet001> see the section above in this manual page.  You "
27778 "may need to adjust this according to the control set that is in use by the "
27779 "guest."
27780 msgstr ""
27781
27782 #. type: textblock
27783 #: ../tools/virt-win-reg.pl:544
27784 msgid ""
27785 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
27786 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
27787 "privileged account."
27788 msgstr ""
27789
27790 #. type: textblock
27791 #: ../tools/virt-win-reg.pl:550
27792 msgid ""
27793 "For the meaning of the magic numbers, see this Microsoft KB article: "
27794 "L<http://support.microsoft.com/kb/103000>."
27795 msgstr ""
27796
27797 #. type: textblock
27798 #: ../tools/virt-win-reg.pl:555
27799 msgid "Update the registry:"
27800 msgstr ""
27801
27802 #. type: verbatim
27803 #: ../tools/virt-win-reg.pl:557
27804 #, no-wrap
27805 msgid ""
27806 " virt-win-reg --merge WindowsGuest service.reg\n"
27807 "\n"
27808 msgstr ""
27809
27810 #. type: textblock
27811 #: ../tools/virt-win-reg.pl:561
27812 msgid ""
27813 "Be careful when passing parameters containing C<\\> (backslash) in the "
27814 "shell.  Usually you will have to use 'single quotes' or double backslashes "
27815 "(but not both) to protect them from the shell."
27816 msgstr ""
27817
27818 #. type: textblock
27819 #: ../tools/virt-win-reg.pl:565
27820 msgid "Paths and value names are case-insensitive."
27821 msgstr ""
27822
27823 #. type: textblock
27824 #: ../tools/virt-win-reg.pl:574
27825 msgid ""
27826 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
27827 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
27828 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
27829 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
27830 msgstr ""
27831
27832 #. type: textblock
27833 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
27834 msgid ""
27835 "When reporting bugs, please enable debugging and capture the I<complete> "
27836 "output:"
27837 msgstr ""
27838
27839 #. type: verbatim
27840 #: ../tools/virt-win-reg.pl:592
27841 #, no-wrap
27842 msgid ""
27843 " export LIBGUESTFS_DEBUG=1\n"
27844 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
27845 "\n"
27846 msgstr ""
27847
27848 #. type: textblock
27849 #: ../tools/virt-win-reg.pl:595
27850 msgid ""
27851 "Attach /tmp/virt-win-reg.log to a new bug report at "
27852 "L<https://bugzilla.redhat.com/>"
27853 msgstr ""
27854
27855 #. type: textblock
27856 #: ../tools/virt-win-reg.pl:604 ../tools/virt-resize.pl:1510 ../tools/virt-make-fs.pl:570
27857 msgid "Copyright (C) 2010 Red Hat Inc."
27858 msgstr ""
27859
27860 #. type: textblock
27861 #: ../tools/virt-resize.pl:42
27862 msgid "virt-resize - Resize a virtual machine disk"
27863 msgstr ""
27864
27865 #. type: verbatim
27866 #: ../tools/virt-resize.pl:46
27867 #, no-wrap
27868 msgid ""
27869 " virt-resize [--resize /dev/sdaN=[+/-]<size>[%]]\n"
27870 "   [--expand /dev/sdaN] [--shrink /dev/sdaN]\n"
27871 "   [--ignore /dev/sdaN] [--delete /dev/sdaN] [...] indisk outdisk\n"
27872 "\n"
27873 msgstr ""
27874
27875 #. type: textblock
27876 #: ../tools/virt-resize.pl:52
27877 msgid ""
27878 "Virt-resize is a tool which can resize a virtual machine disk, making it "
27879 "larger or smaller overall, and resizing or deleting any partitions contained "
27880 "within."
27881 msgstr ""
27882
27883 #. type: textblock
27884 #: ../tools/virt-resize.pl:56
27885 msgid ""
27886 "Virt-resize B<cannot> resize disk images in-place.  Virt-resize B<should "
27887 "not> be used on live virtual machines - for consistent results, shut the "
27888 "virtual machine down before resizing it."
27889 msgstr ""
27890
27891 #. type: textblock
27892 #: ../tools/virt-resize.pl:60
27893 msgid ""
27894 "If you are not familiar with the associated tools: L<virt-filesystems(1)> "
27895 "and L<virt-df(1)>, we recommend you go and read those manual pages first."
27896 msgstr ""
27897
27898 #. type: textblock
27899 #: ../tools/virt-resize.pl:66
27900 msgid ""
27901 "Copy C<olddisk> to C<newdisk>, extending one of the guest's partitions to "
27902 "fill the extra 5GB of space."
27903 msgstr ""
27904
27905 #. type: verbatim
27906 #: ../tools/virt-resize.pl:69
27907 #, no-wrap
27908 msgid ""
27909 " truncate -r olddisk newdisk; truncate -s +5G newdisk\n"
27910 " virt-filesystems --long -h --all -a olddisk\n"
27911 " # Note \"/dev/sda2\" is a partition inside the \"olddisk\" file.\n"
27912 " virt-resize --expand /dev/sda2 olddisk newdisk\n"
27913 "\n"
27914 msgstr ""
27915
27916 #. type: textblock
27917 #: ../tools/virt-resize.pl:74
27918 msgid ""
27919 "As above, but make the /boot partition 200MB bigger, while giving the "
27920 "remaining space to /dev/sda2:"
27921 msgstr ""
27922
27923 #. type: verbatim
27924 #: ../tools/virt-resize.pl:77
27925 #, no-wrap
27926 msgid ""
27927 " virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 olddisk newdisk\n"
27928 "\n"
27929 msgstr ""
27930
27931 #. type: textblock
27932 #: ../tools/virt-resize.pl:79
27933 msgid "As above, but the output format will be uncompressed qcow2:"
27934 msgstr ""
27935
27936 #. type: verbatim
27937 #: ../tools/virt-resize.pl:81
27938 #, no-wrap
27939 msgid ""
27940 " qemu-img create -f qcow2 newdisk.qcow2 15G\n"
27941 " virt-resize --expand /dev/sda2 olddisk newdisk.qcow2\n"
27942 "\n"
27943 msgstr ""
27944
27945 #. type: =head1
27946 #: ../tools/virt-resize.pl:84
27947 msgid "DETAILED USAGE"
27948 msgstr ""
27949
27950 #. type: =head2
27951 #: ../tools/virt-resize.pl:86
27952 msgid "EXPANDING A VIRTUAL MACHINE DISK"
27953 msgstr ""
27954
27955 #. type: =item
27956 #: ../tools/virt-resize.pl:90
27957 msgid "1. Shut down the virtual machine"
27958 msgstr ""
27959
27960 #. type: =item
27961 #: ../tools/virt-resize.pl:92
27962 msgid "2. Locate input disk image"
27963 msgstr ""
27964
27965 #. type: textblock
27966 #: ../tools/virt-resize.pl:94
27967 msgid ""
27968 "Locate the input disk image (ie. the file or device on the host containing "
27969 "the guest's disk).  If the guest is managed by libvirt, you can use C<virsh "
27970 "dumpxml> like this to find the disk image name:"
27971 msgstr ""
27972
27973 #. type: verbatim
27974 #: ../tools/virt-resize.pl:98
27975 #, no-wrap
27976 msgid ""
27977 " # virsh dumpxml guestname | xpath /domain/devices/disk/source\n"
27978 " Found 1 nodes:\n"
27979 " -- NODE --\n"
27980 " <source dev=\"/dev/vg/lv_guest\" />\n"
27981 "\n"
27982 msgstr ""
27983
27984 #. type: =item
27985 #: ../tools/virt-resize.pl:103
27986 msgid "3. Look at current sizing"
27987 msgstr ""
27988
27989 #. type: textblock
27990 #: ../tools/virt-resize.pl:105
27991 msgid "Use L<virt-filesystems(1)> to display the current partitions and sizes:"
27992 msgstr ""
27993
27994 #. type: verbatim
27995 #: ../tools/virt-resize.pl:108
27996 #, no-wrap
27997 msgid ""
27998 " # virt-filesystems --long --parts --blkdevs -h -a /dev/vg/lv_guest\n"
27999 " Name       Type       Size  Parent\n"
28000 " /dev/sda1  partition  101M  /dev/sda\n"
28001 " /dev/sda2  partition  7.9G  /dev/sda\n"
28002 " /dev/sda   device     8.0G  -\n"
28003 "\n"
28004 msgstr ""
28005
28006 #. type: textblock
28007 #: ../tools/virt-resize.pl:114
28008 msgid ""
28009 "(This example is a virtual machine with an 8 GB disk which we would like to "
28010 "expand up to 10 GB)."
28011 msgstr ""
28012
28013 #. type: =item
28014 #: ../tools/virt-resize.pl:117
28015 msgid "4. Create output disk"
28016 msgstr ""
28017
28018 #. type: textblock
28019 #: ../tools/virt-resize.pl:119
28020 msgid ""
28021 "Virt-resize cannot do in-place disk modifications.  You have to have space "
28022 "to store the resized output disk."
28023 msgstr ""
28024
28025 #. type: textblock
28026 #: ../tools/virt-resize.pl:122
28027 msgid "To store the resized disk image in a file, create a file of a suitable size:"
28028 msgstr ""
28029
28030 #. type: verbatim
28031 #: ../tools/virt-resize.pl:125
28032 #, no-wrap
28033 msgid ""
28034 " # rm -f outdisk\n"
28035 " # truncate -s 10G outdisk\n"
28036 "\n"
28037 msgstr ""
28038
28039 #. type: textblock
28040 #: ../tools/virt-resize.pl:128
28041 msgid "Or use L<lvcreate(1)> to create a logical volume:"
28042 msgstr ""
28043
28044 #. type: verbatim
28045 #: ../tools/virt-resize.pl:130
28046 #, no-wrap
28047 msgid ""
28048 " # lvcreate -L 10G -n lv_name vg_name\n"
28049 "\n"
28050 msgstr ""
28051
28052 #. type: textblock
28053 #: ../tools/virt-resize.pl:132
28054 msgid "Or use L<virsh(1)> vol-create-as to create a libvirt storage volume:"
28055 msgstr ""
28056
28057 #. type: verbatim
28058 #: ../tools/virt-resize.pl:134
28059 #, no-wrap
28060 msgid ""
28061 " # virsh pool-list\n"
28062 " # virsh vol-create-as poolname newvol 10G\n"
28063 "\n"
28064 msgstr ""
28065
28066 #. type: =item
28067 #: ../tools/virt-resize.pl:137
28068 msgid "5. Resize"
28069 msgstr ""
28070
28071 #. type: textblock
28072 #: ../tools/virt-resize.pl:139
28073 msgid ""
28074 "virt-resize takes two mandatory parameters, the input disk (eg. device or "
28075 "file) and the output disk.  The output disk is the one created in the "
28076 "previous step."
28077 msgstr ""
28078
28079 #. type: verbatim
28080 #: ../tools/virt-resize.pl:143
28081 #, no-wrap
28082 msgid ""
28083 " # virt-resize indisk outdisk\n"
28084 "\n"
28085 msgstr ""
28086
28087 #. type: textblock
28088 #: ../tools/virt-resize.pl:145
28089 msgid ""
28090 "This command just copies disk image C<indisk> to disk image C<outdisk> "
28091 "I<without> resizing or changing any existing partitions.  If C<outdisk> is "
28092 "larger, then an extra, empty partition is created at the end of the disk "
28093 "covering the extra space.  If C<outdisk> is smaller, then it will give an "
28094 "error."
28095 msgstr ""
28096
28097 #. type: textblock
28098 #: ../tools/virt-resize.pl:151
28099 msgid ""
28100 "More realistically you'd want to expand existing partitions in the disk "
28101 "image by passing extra options (for the full list see the L</OPTIONS> "
28102 "section below)."
28103 msgstr ""
28104
28105 #. type: textblock
28106 #: ../tools/virt-resize.pl:155
28107 msgid ""
28108 "L</--expand> is the most useful option.  It expands the named partition "
28109 "within the disk to fill any extra space:"
28110 msgstr ""
28111
28112 #. type: verbatim
28113 #: ../tools/virt-resize.pl:158
28114 #, no-wrap
28115 msgid ""
28116 " # virt-resize --expand /dev/sda2 indisk outdisk\n"
28117 "\n"
28118 msgstr ""
28119
28120 #. type: textblock
28121 #: ../tools/virt-resize.pl:160
28122 msgid ""
28123 "(In this case, an extra partition is I<not> created at the end of the disk, "
28124 "because there will be no unused space)."
28125 msgstr ""
28126
28127 #. type: textblock
28128 #: ../tools/virt-resize.pl:163
28129 msgid ""
28130 "L</--resize> is the other commonly used option.  The following would "
28131 "increase the size of /dev/sda1 by 200M, and expand /dev/sda2 to fill the "
28132 "rest of the available space:"
28133 msgstr ""
28134
28135 #. type: verbatim
28136 #: ../tools/virt-resize.pl:167
28137 #, no-wrap
28138 msgid ""
28139 " # virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 \\\n"
28140 "     indisk outdisk\n"
28141 "\n"
28142 msgstr ""
28143
28144 #. type: textblock
28145 #: ../tools/virt-resize.pl:170
28146 msgid ""
28147 "If the expanded partition in the image contains a filesystem or LVM PV, then "
28148 "if virt-resize knows how, it will resize the contents, the equivalent of "
28149 "calling a command such as L<pvresize(8)>, L<resize2fs(8)> or "
28150 "L<ntfsresize(8)>.  However virt-resize does not know how to resize some "
28151 "filesystems, so you would have to online resize them after booting the "
28152 "guest."
28153 msgstr ""
28154
28155 #. type: textblock
28156 #: ../tools/virt-resize.pl:177
28157 msgid "Other options are covered below."
28158 msgstr ""
28159
28160 #. type: =item
28161 #: ../tools/virt-resize.pl:179
28162 msgid "6. Test"
28163 msgstr ""
28164
28165 #. type: textblock
28166 #: ../tools/virt-resize.pl:181
28167 msgid "Thoroughly test the new disk image I<before> discarding the old one."
28168 msgstr ""
28169
28170 #. type: textblock
28171 #: ../tools/virt-resize.pl:183
28172 msgid "If you are using libvirt, edit the XML to point at the new disk:"
28173 msgstr ""
28174
28175 #. type: verbatim
28176 #: ../tools/virt-resize.pl:185
28177 #, no-wrap
28178 msgid ""
28179 " # virsh edit guestname\n"
28180 "\n"
28181 msgstr ""
28182
28183 #. type: textblock
28184 #: ../tools/virt-resize.pl:187
28185 msgid ""
28186 "Change E<lt>source ...E<gt>, see "
28187 "L<http://libvirt.org/formatdomain.html#elementsDisks>"
28188 msgstr ""
28189
28190 #. type: textblock
28191 #: ../tools/virt-resize.pl:190
28192 msgid "Then start up the domain with the new, resized disk:"
28193 msgstr ""
28194
28195 #. type: verbatim
28196 #: ../tools/virt-resize.pl:192
28197 #, no-wrap
28198 msgid ""
28199 " # virsh start guestname\n"
28200 "\n"
28201 msgstr ""
28202
28203 #. type: textblock
28204 #: ../tools/virt-resize.pl:194
28205 msgid ""
28206 "and check that it still works.  See also the L</NOTES> section below for "
28207 "additional information."
28208 msgstr ""
28209
28210 #. type: =item
28211 #: ../tools/virt-resize.pl:197
28212 msgid "7. Resize LVs etc inside the guest"
28213 msgstr ""
28214
28215 #. type: textblock
28216 #: ../tools/virt-resize.pl:199
28217 msgid "(This can also be done offline using L<guestfish(1)>)"
28218 msgstr ""
28219
28220 #. type: textblock
28221 #: ../tools/virt-resize.pl:201
28222 msgid ""
28223 "Once the guest has booted you should see the new space available, at least "
28224 "for filesystems that virt-resize knows how to resize, and for PVs.  The user "
28225 "may need to resize LVs inside PVs, and also resize filesystem types that "
28226 "virt-resize does not know how to expand."
28227 msgstr ""
28228
28229 #. type: =head2
28230 #: ../tools/virt-resize.pl:208
28231 msgid "SHRINKING A VIRTUAL MACHINE DISK"
28232 msgstr ""
28233
28234 #. type: textblock
28235 #: ../tools/virt-resize.pl:210
28236 msgid ""
28237 "Shrinking is somewhat more complex than expanding, and only an overview is "
28238 "given here."
28239 msgstr ""
28240
28241 #. type: textblock
28242 #: ../tools/virt-resize.pl:213
28243 msgid ""
28244 "Firstly virt-resize will not attempt to shrink any partition content (PVs, "
28245 "filesystems).  The user has to shrink content before passing the disk image "
28246 "to virt-resize, and virt-resize will check that the content has been shrunk "
28247 "properly."
28248 msgstr ""
28249
28250 #. type: textblock
28251 #: ../tools/virt-resize.pl:218
28252 msgid "(Shrinking can also be done offline using L<guestfish(1)>)"
28253 msgstr ""
28254
28255 #. type: textblock
28256 #: ../tools/virt-resize.pl:220
28257 msgid ""
28258 "After shrinking PVs and filesystems, shut down the guest, and proceed with "
28259 "steps 3 and 4 above to allocate a new disk image."
28260 msgstr ""
28261
28262 #. type: textblock
28263 #: ../tools/virt-resize.pl:223
28264 msgid "Then run virt-resize with any of the C<--shrink> and/or C<--resize> options."
28265 msgstr ""
28266
28267 #. type: =head2
28268 #: ../tools/virt-resize.pl:226
28269 msgid "IGNORING OR DELETING PARTITIONS"
28270 msgstr ""
28271
28272 #. type: textblock
28273 #: ../tools/virt-resize.pl:228
28274 msgid ""
28275 "virt-resize also gives a convenient way to ignore or delete partitions when "
28276 "copying from the input disk to the output disk.  Ignoring a partition speeds "
28277 "up the copy where you don't care about the existing contents of a "
28278 "partition.  Deleting a partition removes it completely, but note that it "
28279 "also renumbers any partitions after the one which is deleted, which can "
28280 "leave some guests unbootable."
28281 msgstr ""
28282
28283 #. type: =head2
28284 #: ../tools/virt-resize.pl:235
28285 msgid "QCOW2 AND NON-SPARSE RAW FORMATS"
28286 msgstr ""
28287
28288 #. type: textblock
28289 #: ../tools/virt-resize.pl:237
28290 msgid ""
28291 "If the input disk is in qcow2 format, then you may prefer that the output is "
28292 "in qcow2 format as well.  Alternately, virt-resize can convert the format on "
28293 "the fly.  The output format is simply determined by the format of the empty "
28294 "output container that you provide.  Thus to create qcow2 output, use:"
28295 msgstr ""
28296
28297 #. type: verbatim
28298 #: ../tools/virt-resize.pl:243
28299 #, no-wrap
28300 msgid ""
28301 " qemu-img create [-c] -f qcow2 outdisk [size]\n"
28302 "\n"
28303 msgstr ""
28304
28305 #. type: textblock
28306 #: ../tools/virt-resize.pl:245
28307 msgid "instead of the truncate command (use C<-c> for a compressed disk)."
28308 msgstr ""
28309
28310 #. type: textblock
28311 #: ../tools/virt-resize.pl:247
28312 msgid "Similarly, to get non-sparse raw output use:"
28313 msgstr ""
28314
28315 #. type: verbatim
28316 #: ../tools/virt-resize.pl:249
28317 #, no-wrap
28318 msgid ""
28319 " fallocate -l size outdisk\n"
28320 "\n"
28321 msgstr ""
28322
28323 #. type: textblock
28324 #: ../tools/virt-resize.pl:251
28325 msgid ""
28326 "(on older systems that don't have the L<fallocate(1)> command use C<dd "
28327 "if=/dev/zero of=outdisk bs=1M count=..>)"
28328 msgstr ""
28329
28330 #. type: textblock
28331 #: ../tools/virt-resize.pl:264
28332 msgid "Display help."
28333 msgstr ""
28334
28335 #. type: =item
28336 #: ../tools/virt-resize.pl:278
28337 msgid "B<--resize part=size>"
28338 msgstr ""
28339
28340 #. type: textblock
28341 #: ../tools/virt-resize.pl:280
28342 msgid ""
28343 "Resize the named partition (expanding or shrinking it) so that it has the "
28344 "given size."
28345 msgstr ""
28346
28347 #. type: textblock
28348 #: ../tools/virt-resize.pl:283
28349 msgid ""
28350 "C<size> can be expressed as an absolute number followed by b/K/M/G/T/P/E to "
28351 "mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Petabytes or "
28352 "Exabytes; or as a percentage of the current size; or as a relative number or "
28353 "percentage.  For example:"
28354 msgstr ""
28355
28356 #. type: verbatim
28357 #: ../tools/virt-resize.pl:288
28358 #, no-wrap
28359 msgid ""
28360 " --resize /dev/sda2=10G\n"
28361 "\n"
28362 msgstr ""
28363
28364 #. type: verbatim
28365 #: ../tools/virt-resize.pl:290
28366 #, no-wrap
28367 msgid ""
28368 " --resize /dev/sda4=90%\n"
28369 "\n"
28370 msgstr ""
28371
28372 #. type: verbatim
28373 #: ../tools/virt-resize.pl:292
28374 #, no-wrap
28375 msgid ""
28376 " --resize /dev/sda2=+1G\n"
28377 "\n"
28378 msgstr ""
28379
28380 #. type: verbatim
28381 #: ../tools/virt-resize.pl:294
28382 #, no-wrap
28383 msgid ""
28384 " --resize /dev/sda2=-200M\n"
28385 "\n"
28386 msgstr ""
28387
28388 #. type: verbatim
28389 #: ../tools/virt-resize.pl:296
28390 #, no-wrap
28391 msgid ""
28392 " --resize /dev/sda1=+128K\n"
28393 "\n"
28394 msgstr ""
28395
28396 #. type: verbatim
28397 #: ../tools/virt-resize.pl:298
28398 #, no-wrap
28399 msgid ""
28400 " --resize /dev/sda1=+10%\n"
28401 "\n"
28402 msgstr ""
28403
28404 #. type: verbatim
28405 #: ../tools/virt-resize.pl:300
28406 #, no-wrap
28407 msgid ""
28408 " --resize /dev/sda1=-10%\n"
28409 "\n"
28410 msgstr ""
28411
28412 #. type: textblock
28413 #: ../tools/virt-resize.pl:302
28414 msgid ""
28415 "You can increase the size of any partition.  Virt-resize will expand the "
28416 "direct content of the partition if it knows how (see C<--expand> below)."
28417 msgstr ""
28418
28419 #. type: textblock
28420 #: ../tools/virt-resize.pl:306
28421 msgid ""
28422 "You can only I<decrease> the size of partitions that contain filesystems or "
28423 "PVs which have already been shrunk.  Virt-resize will check this has been "
28424 "done before proceeding, or else will print an error (see also "
28425 "C<--resize-force>)."
28426 msgstr ""
28427
28428 #. type: textblock
28429 #: ../tools/virt-resize.pl:311 ../tools/virt-resize.pl:403 ../tools/virt-resize.pl:420
28430 msgid "You can give this option multiple times."
28431 msgstr ""
28432
28433 #. type: =item
28434 #: ../tools/virt-resize.pl:317
28435 msgid "B<--resize-force part=size>"
28436 msgstr ""
28437
28438 #. type: textblock
28439 #: ../tools/virt-resize.pl:319
28440 msgid ""
28441 "This is the same as C<--resize> except that it will let you decrease the "
28442 "size of any partition.  Generally this means you will lose any data which "
28443 "was at the end of the partition you shrink, but you may not care about that "
28444 "(eg. if shrinking an unused partition, or if you can easily recreate it such "
28445 "as a swap partition)."
28446 msgstr ""
28447
28448 #. type: textblock
28449 #: ../tools/virt-resize.pl:325
28450 msgid "See also the C<--ignore> option."
28451 msgstr ""
28452
28453 #. type: =item
28454 #: ../tools/virt-resize.pl:331
28455 msgid "B<--expand part>"
28456 msgstr ""
28457
28458 #. type: textblock
28459 #: ../tools/virt-resize.pl:333
28460 msgid ""
28461 "Expand the named partition so it uses up all extra space (space left over "
28462 "after any other resize changes that you request have been done)."
28463 msgstr ""
28464
28465 #. type: textblock
28466 #: ../tools/virt-resize.pl:336
28467 msgid ""
28468 "If virt-resize knows how, it will expand the direct content of the "
28469 "partition.  For example, if the partition is an LVM PV, it will expand the "
28470 "PV to fit (like calling L<pvresize(8)>).  Virt-resize leaves any other "
28471 "content it doesn't know about alone."
28472 msgstr ""
28473
28474 #. type: textblock
28475 #: ../tools/virt-resize.pl:341
28476 msgid "Currently virt-resize can resize:"
28477 msgstr ""
28478
28479 #. type: textblock
28480 #: ../tools/virt-resize.pl:347
28481 msgid ""
28482 "ext2, ext3 and ext4 filesystems when they are contained directly inside a "
28483 "partition."
28484 msgstr ""
28485
28486 #. type: textblock
28487 #: ../tools/virt-resize.pl:352
28488 msgid ""
28489 "NTFS filesystems contained directly in a partition, if libguestfs was "
28490 "compiled with support for NTFS."
28491 msgstr ""
28492
28493 #. type: textblock
28494 #: ../tools/virt-resize.pl:355
28495 msgid ""
28496 "The filesystem must have been shut down consistently last time it was used.  "
28497 "Additionally, L<ntfsresize(8)> marks the resized filesystem as requiring a "
28498 "consistency check, so at the first boot after resizing Windows will check "
28499 "the disk."
28500 msgstr ""
28501
28502 #. type: textblock
28503 #: ../tools/virt-resize.pl:362
28504 msgid ""
28505 "LVM PVs (physical volumes).  virt-resize does not usually resize anything "
28506 "inside the PV, but see the C<--LV-expand> option.  The user could also "
28507 "resize LVs as desired after boot."
28508 msgstr ""
28509
28510 #. type: textblock
28511 #: ../tools/virt-resize.pl:368 ../tools/virt-resize.pl:390
28512 msgid "Note that you cannot use C<--expand> and C<--shrink> together."
28513 msgstr ""
28514
28515 #. type: =item
28516 #: ../tools/virt-resize.pl:374
28517 msgid "B<--shrink part>"
28518 msgstr ""
28519
28520 #. type: textblock
28521 #: ../tools/virt-resize.pl:376
28522 msgid ""
28523 "Shrink the named partition until the overall disk image fits in the "
28524 "destination.  The named partition B<must> contain a filesystem or PV which "
28525 "has already been shrunk using another tool (eg. L<guestfish(1)> or other "
28526 "online tools).  Virt-resize will check this and give an error if it has not "
28527 "been done."
28528 msgstr ""
28529
28530 #. type: textblock
28531 #: ../tools/virt-resize.pl:382
28532 msgid ""
28533 "The amount by which the overall disk must be shrunk (after carrying out all "
28534 "other operations requested by the user) is called the \"deficit\".  For "
28535 "example, a straight copy (assume no other operations)  from a 5GB disk image "
28536 "to a 4GB disk image results in a 1GB deficit.  In this case, virt-resize "
28537 "would give an error unless the user specified a partition to shrink and that "
28538 "partition had more than a gigabyte of free space."
28539 msgstr ""
28540
28541 #. type: =item
28542 #: ../tools/virt-resize.pl:396
28543 msgid "B<--ignore part>"
28544 msgstr ""
28545
28546 #. type: textblock
28547 #: ../tools/virt-resize.pl:398
28548 msgid ""
28549 "Ignore the named partition.  Effectively this means the partition is "
28550 "allocated on the destination disk, but the content is not copied across from "
28551 "the source disk.  The content of the partition will be blank (all zero "
28552 "bytes)."
28553 msgstr ""
28554
28555 #. type: =item
28556 #: ../tools/virt-resize.pl:409
28557 msgid "B<--delete part>"
28558 msgstr ""
28559
28560 #. type: textblock
28561 #: ../tools/virt-resize.pl:411
28562 msgid ""
28563 "Delete the named partition.  It would be more accurate to describe this as "
28564 "\"don't copy it over\", since virt-resize doesn't do in-place changes and "
28565 "the original disk image is left intact."
28566 msgstr ""
28567
28568 #. type: textblock
28569 #: ../tools/virt-resize.pl:415
28570 msgid ""
28571 "Note that when you delete a partition, then anything contained in the "
28572 "partition is also deleted.  Furthermore, this causes any partitions that "
28573 "come after to be I<renumbered>, which can easily make your guest unbootable."
28574 msgstr ""
28575
28576 #. type: =item
28577 #: ../tools/virt-resize.pl:426
28578 msgid "B<--LV-expand logvol>"
28579 msgstr ""
28580
28581 #. type: textblock
28582 #: ../tools/virt-resize.pl:428
28583 msgid ""
28584 "This takes the logical volume and, as a final step, expands it to fill all "
28585 "the space available in its volume group.  A typical usage, assuming a Linux "
28586 "guest with a single PV C</dev/sda2> and a root device called "
28587 "C</dev/vg_guest/lv_root> would be:"
28588 msgstr ""
28589
28590 #. type: verbatim
28591 #: ../tools/virt-resize.pl:433
28592 #, no-wrap
28593 msgid ""
28594 " virt-resize indisk outdisk \\\n"
28595 "   --expand /dev/sda2 --LV-expand /dev/vg_guest/lv_root\n"
28596 "\n"
28597 msgstr ""
28598
28599 #. type: textblock
28600 #: ../tools/virt-resize.pl:436
28601 msgid ""
28602 "This would first expand the partition (and PV), and then expand the root "
28603 "device to fill the extra space in the PV."
28604 msgstr ""
28605
28606 #. type: textblock
28607 #: ../tools/virt-resize.pl:439
28608 msgid ""
28609 "The contents of the LV are also resized if virt-resize knows how to do "
28610 "that.  You can stop virt-resize from trying to expand the content by using "
28611 "the option C<--no-expand-content>."
28612 msgstr ""
28613
28614 #. type: textblock
28615 #: ../tools/virt-resize.pl:443
28616 msgid "Use L<virt-filesystems(1)> to list the filesystems in the guest."
28617 msgstr ""
28618
28619 #. type: textblock
28620 #: ../tools/virt-resize.pl:446
28621 msgid ""
28622 "You can give this option multiple times, I<but> it doesn't make sense to do "
28623 "this unless the logical volumes you specify are all in different volume "
28624 "groups."
28625 msgstr ""
28626
28627 #. type: =item
28628 #: ../tools/virt-resize.pl:454
28629 msgid "B<--no-copy-boot-loader>"
28630 msgstr ""
28631
28632 #. type: textblock
28633 #: ../tools/virt-resize.pl:456
28634 msgid ""
28635 "By default, virt-resize copies over some sectors at the start of the disk "
28636 "(up to the beginning of the first partition).  Commonly these sectors "
28637 "contain the Master Boot Record (MBR) and the boot loader, and are required "
28638 "in order for the guest to boot correctly."
28639 msgstr ""
28640
28641 #. type: textblock
28642 #: ../tools/virt-resize.pl:461
28643 msgid ""
28644 "If you specify this flag, then this initial copy is not done.  You may need "
28645 "to reinstall the boot loader in this case."
28646 msgstr ""
28647
28648 #. type: =item
28649 #: ../tools/virt-resize.pl:469
28650 msgid "B<--no-extra-partition>"
28651 msgstr ""
28652
28653 #. type: textblock
28654 #: ../tools/virt-resize.pl:471
28655 msgid ""
28656 "By default, virt-resize creates an extra partition if there is any extra, "
28657 "unused space after all resizing has happened.  Use this option to prevent "
28658 "the extra partition from being created.  If you do this then the extra space "
28659 "will be inaccessible until you run fdisk, parted, or some other partitioning "
28660 "tool in the guest."
28661 msgstr ""
28662
28663 #. type: textblock
28664 #: ../tools/virt-resize.pl:477
28665 msgid ""
28666 "Note that if the surplus space is smaller than 10 MB, no extra partition "
28667 "will be created."
28668 msgstr ""
28669
28670 #. type: =item
28671 #: ../tools/virt-resize.pl:484
28672 msgid "B<--no-expand-content>"
28673 msgstr ""
28674
28675 #. type: textblock
28676 #: ../tools/virt-resize.pl:486
28677 msgid ""
28678 "By default, virt-resize will try to expand the direct contents of "
28679 "partitions, if it knows how (see C<--expand> option above)."
28680 msgstr ""
28681
28682 #. type: textblock
28683 #: ../tools/virt-resize.pl:489
28684 msgid ""
28685 "If you give the C<--no-expand-content> option then virt-resize will not "
28686 "attempt this."
28687 msgstr ""
28688
28689 #. type: =item
28690 #: ../tools/virt-resize.pl:496
28691 msgid "B<-d> | B<--debug>"
28692 msgstr ""
28693
28694 #. type: =item
28695 #: ../tools/virt-resize.pl:504
28696 msgid "B<-n> | B<--dryrun>"
28697 msgstr ""
28698
28699 #. type: textblock
28700 #: ../tools/virt-resize.pl:506
28701 msgid "Print a summary of what would be done, but don't do anything."
28702 msgstr ""
28703
28704 #. type: =item
28705 #: ../tools/virt-resize.pl:512
28706 msgid "B<-q> | B<--quiet>"
28707 msgstr ""
28708
28709 #. type: textblock
28710 #: ../tools/virt-resize.pl:514
28711 msgid "Don't print the summary."
28712 msgstr ""
28713
28714 #. type: textblock
28715 #: ../tools/virt-resize.pl:522
28716 msgid ""
28717 "Specify the format of the input disk image.  If this flag is not given then "
28718 "it is auto-detected from the image itself."
28719 msgstr ""
28720
28721 #. type: textblock
28722 #: ../tools/virt-resize.pl:528
28723 msgid ""
28724 "Note that this option I<does not> affect the output format.  See L</QCOW2 "
28725 "AND NON-SPARSE RAW FORMATS>."
28726 msgstr ""
28727
28728 #. type: =item
28729 #: ../tools/virt-resize.pl:535
28730 msgid "B<--output-format> raw"
28731 msgstr ""
28732
28733 #. type: textblock
28734 #: ../tools/virt-resize.pl:537
28735 msgid ""
28736 "Specify the format of the output disk image.  If this flag is not given then "
28737 "it is auto-detected from the image itself."
28738 msgstr ""
28739
28740 #. type: textblock
28741 #: ../tools/virt-resize.pl:543
28742 msgid ""
28743 "Note that you still need to create the output disk with the right format.  "
28744 "See L</QCOW2 AND NON-SPARSE RAW FORMATS>."
28745 msgstr ""
28746
28747 #. type: =head1
28748 #: ../tools/virt-resize.pl:1419
28749 msgid "NOTES"
28750 msgstr ""
28751
28752 #. type: =head2
28753 #: ../tools/virt-resize.pl:1421
28754 msgid "\"Partition 1 does not end on cylinder boundary.\""
28755 msgstr ""
28756
28757 #. type: textblock
28758 #: ../tools/virt-resize.pl:1423
28759 msgid ""
28760 "Virt-resize aligns partitions to multiples of 64 sectors.  Usually this "
28761 "means the partitions will not be aligned to the ancient CHS geometry.  "
28762 "However CHS geometry is meaningless for disks manufactured since the early "
28763 "1990s, and doubly so for virtual hard drives.  Alignment of partitions to "
28764 "cylinders is not required by any modern operating system."
28765 msgstr ""
28766
28767 #. type: =head2
28768 #: ../tools/virt-resize.pl:1430
28769 msgid "RESIZING WINDOWS VIRTUAL MACHINES"
28770 msgstr ""
28771
28772 #. type: textblock
28773 #: ../tools/virt-resize.pl:1432
28774 msgid ""
28775 "In Windows Vista and later versions, Microsoft switched to using a separate "
28776 "boot partition.  In these VMs, typically C</dev/sda1> is the boot partition "
28777 "and C</dev/sda2> is the main (C:) drive.  We have not had any luck resizing "
28778 "the boot partition.  Doing so seems to break the guest completely.  However "
28779 "expanding the second partition (ie. C: drive) should work."
28780 msgstr ""
28781
28782 #. type: textblock
28783 #: ../tools/virt-resize.pl:1439
28784 msgid ""
28785 "Windows may initiate a lengthy \"chkdsk\" on first boot after a resize, if "
28786 "NTFS partitions have been expanded.  This is just a safety check and (unless "
28787 "it find errors) is nothing to worry about."
28788 msgstr ""
28789
28790 #. type: =head2
28791 #: ../tools/virt-resize.pl:1443
28792 msgid "GUEST BOOT STUCK AT \"GRUB\""
28793 msgstr ""
28794
28795 #. type: textblock
28796 #: ../tools/virt-resize.pl:1445
28797 msgid ""
28798 "If a Linux guest does not boot after resizing, and the boot is stuck after "
28799 "printing C<GRUB> on the console, try reinstalling grub.  This sometimes "
28800 "happens on older (RHEL 5-era) guests, for reasons we don't fully understand, "
28801 "although we think is to do with partition alignment."
28802 msgstr ""
28803
28804 #. type: verbatim
28805 #: ../tools/virt-resize.pl:1450
28806 #, no-wrap
28807 msgid ""
28808 " guestfish -i -a newdisk\n"
28809 " ><fs> cat /boot/grub/device.map\n"
28810 " # check the contents of this file are sensible or\n"
28811 " # edit the file if necessary\n"
28812 " ><fs> grub-install / /dev/vda\n"
28813 " ><fs> exit\n"
28814 "\n"
28815 msgstr ""
28816
28817 #. type: textblock
28818 #: ../tools/virt-resize.pl:1457
28819 msgid ""
28820 "For more flexible guest reconfiguration, including if you need to specify "
28821 "other parameters to grub-install, use L<virt-rescue(1)>."
28822 msgstr ""
28823
28824 #. type: =head1
28825 #: ../tools/virt-resize.pl:1460
28826 msgid "ALTERNATIVE TOOLS"
28827 msgstr ""
28828
28829 #. type: textblock
28830 #: ../tools/virt-resize.pl:1462
28831 msgid ""
28832 "There are several proprietary tools for resizing partitions.  We won't "
28833 "mention any here."
28834 msgstr ""
28835
28836 #. type: textblock
28837 #: ../tools/virt-resize.pl:1465
28838 msgid ""
28839 "L<parted(8)> and its graphical shell gparted can do some types of resizing "
28840 "operations on disk images.  They can resize and move partitions, but I don't "
28841 "think they can do anything with the contents, and they certainly don't "
28842 "understand LVM."
28843 msgstr ""
28844
28845 #. type: textblock
28846 #: ../tools/virt-resize.pl:1470
28847 msgid ""
28848 "L<guestfish(1)> can do everything that virt-resize can do and a lot more, "
28849 "but at a much lower level.  You will probably end up hand-calculating sector "
28850 "offsets, which is something that virt-resize was designed to avoid.  If you "
28851 "want to see the guestfish-equivalent commands that virt-resize runs, use the "
28852 "C<--debug> flag."
28853 msgstr ""
28854
28855 #. type: textblock
28856 #: ../tools/virt-resize.pl:1485
28857 msgid ""
28858 "L<virt-filesystems(1)>, L<virt-df(1)>, L<guestfs(3)>, L<guestfish(1)>, "
28859 "L<lvm(8)>, L<pvresize(8)>, L<lvresize(8)>, L<resize2fs(8)>, "
28860 "L<ntfsresize(8)>, L<virsh(1)>, L<parted(8)>, L<truncate(1)>, "
28861 "L<fallocate(1)>, L<grub(8)>, L<grub-install(8)>, L<virt-rescue(1)>, "
28862 "L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
28863 msgstr ""
28864
28865 #. type: textblock
28866 #: ../tools/virt-list-filesystems.pl:32
28867 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
28868 msgstr ""
28869
28870 #. type: verbatim
28871 #: ../tools/virt-list-filesystems.pl:36
28872 #, no-wrap
28873 msgid ""
28874 " virt-list-filesystems [--options] domname\n"
28875 "\n"
28876 msgstr ""
28877
28878 #. type: verbatim
28879 #: ../tools/virt-list-filesystems.pl:38
28880 #, no-wrap
28881 msgid ""
28882 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
28883 "\n"
28884 msgstr ""
28885
28886 #. type: textblock
28887 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
28888 msgid ""
28889 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
28890 "replacement."
28891 msgstr ""
28892
28893 #. type: textblock
28894 #: ../tools/virt-list-filesystems.pl:45
28895 msgid ""
28896 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
28897 "are contained in a virtual machine or disk image."
28898 msgstr ""
28899
28900 #. type: textblock
28901 #: ../tools/virt-list-filesystems.pl:49
28902 msgid ""
28903 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
28904 "functionality.  For more complex cases you should look at the "
28905 "L<guestfish(1)> tool."
28906 msgstr ""
28907
28908 #. type: =item
28909 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
28910 msgid "B<-l> | B<--long>"
28911 msgstr ""
28912
28913 #. type: textblock
28914 #: ../tools/virt-list-filesystems.pl:108
28915 msgid ""
28916 "With this option, C<virt-list-filesystems> displays the type of each "
28917 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
28918 msgstr ""
28919
28920 #. type: =item
28921 #: ../tools/virt-list-filesystems.pl:115
28922 msgid "B<-a> | B<--all>"
28923 msgstr ""
28924
28925 #. type: textblock
28926 #: ../tools/virt-list-filesystems.pl:117
28927 msgid ""
28928 "Normally we only show mountable filesystems.  If this option is given then "
28929 "swap devices are shown too."
28930 msgstr ""
28931
28932 #. type: textblock
28933 #: ../tools/virt-list-filesystems.pl:191
28934 msgid ""
28935 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
28936 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
28937 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
28938 msgstr ""
28939
28940 #. type: textblock
28941 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:298
28942 msgid "Copyright (C) 2009 Red Hat Inc."
28943 msgstr ""
28944
28945 #. type: textblock
28946 #: ../tools/virt-tar.pl:33
28947 msgid "virt-tar - Extract or upload files to a virtual machine"
28948 msgstr ""
28949
28950 #. type: verbatim
28951 #: ../tools/virt-tar.pl:37
28952 #, no-wrap
28953 msgid ""
28954 " virt-tar [--options] -x domname directory tarball\n"
28955 "\n"
28956 msgstr ""
28957
28958 #. type: verbatim
28959 #: ../tools/virt-tar.pl:39
28960 #, no-wrap
28961 msgid ""
28962 " virt-tar [--options] -u domname tarball directory\n"
28963 "\n"
28964 msgstr ""
28965
28966 #. type: verbatim
28967 #: ../tools/virt-tar.pl:41
28968 #, no-wrap
28969 msgid ""
28970 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
28971 "\n"
28972 msgstr ""
28973
28974 #. type: verbatim
28975 #: ../tools/virt-tar.pl:43
28976 #, no-wrap
28977 msgid ""
28978 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
28979 "\n"
28980 msgstr ""
28981
28982 #. type: textblock
28983 #: ../tools/virt-tar.pl:47
28984 msgid "Download C</home> from the VM into a local tarball:"
28985 msgstr ""
28986
28987 #. type: verbatim
28988 #: ../tools/virt-tar.pl:49
28989 #, no-wrap
28990 msgid ""
28991 " virt-tar -x domname /home home.tar\n"
28992 "\n"
28993 msgstr ""
28994
28995 #. type: verbatim
28996 #: ../tools/virt-tar.pl:51
28997 #, no-wrap
28998 msgid ""
28999 " virt-tar -zx domname /home home.tar.gz\n"
29000 "\n"
29001 msgstr ""
29002
29003 #. type: textblock
29004 #: ../tools/virt-tar.pl:53
29005 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29006 msgstr ""
29007
29008 #. type: verbatim
29009 #: ../tools/virt-tar.pl:55
29010 #, no-wrap
29011 msgid ""
29012 " virt-tar -u domname uploadstuff.tar /tmp\n"
29013 "\n"
29014 msgstr ""
29015
29016 #. type: verbatim
29017 #: ../tools/virt-tar.pl:57
29018 #, no-wrap
29019 msgid ""
29020 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29021 "\n"
29022 msgstr ""
29023
29024 #. type: textblock
29025 #: ../tools/virt-tar.pl:61
29026 msgid ""
29027 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
29028 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29029 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29030 msgstr ""
29031
29032 #. type: textblock
29033 #: ../tools/virt-tar.pl:66
29034 msgid ""
29035 "You can use C<-x> (extract) on live virtual machines, but you might get "
29036 "inconsistent results or errors if there is filesystem activity inside the "
29037 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29038 "work, but the only way to guarantee consistent results is if the virtual "
29039 "machine is shut down."
29040 msgstr ""
29041
29042 #. type: textblock
29043 #: ../tools/virt-tar.pl:74
29044 msgid ""
29045 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29046 "parts of a guest filesystem.  There are many possibilities: making backups, "
29047 "uploading data files, snooping on guest activity, fixing or customizing "
29048 "guests, etc."
29049 msgstr ""
29050
29051 #. type: textblock
29052 #: ../tools/virt-tar.pl:79
29053 msgid ""
29054 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29055 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29056 "should look at the L<guestfish(1)> tool."
29057 msgstr ""
29058
29059 #. type: textblock
29060 #: ../tools/virt-tar.pl:83
29061 msgid ""
29062 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
29063 "its contents (recursively) from the virtual machine into a local tarball.  "
29064 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
29065 "virtual machine.  You cannot use these two options together."
29066 msgstr ""
29067
29068 #. type: textblock
29069 #: ../tools/virt-tar.pl:89
29070 msgid ""
29071 "In addition, you may need to use the C<-z> (gZip) option to enable "
29072 "compression.  When uploading, you have to specify C<-z> if the upload file "
29073 "is compressed because virt-tar won't detect this on its own."
29074 msgstr ""
29075
29076 #. type: textblock
29077 #: ../tools/virt-tar.pl:93
29078 msgid ""
29079 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29080 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29081 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29082 "the L<libguestfs(3)> API)."
29083 msgstr ""
29084
29085 #. type: =item
29086 #: ../tools/virt-tar.pl:151
29087 msgid "B<-x> | B<--extract> | B<--download>"
29088 msgstr ""
29089
29090 #. type: =item
29091 #: ../tools/virt-tar.pl:153
29092 msgid "B<-u> | B<--upload>"
29093 msgstr ""
29094
29095 #. type: textblock
29096 #: ../tools/virt-tar.pl:155
29097 msgid ""
29098 "Use C<-x> to extract (download) a directory from a virtual machine to a "
29099 "local tarball."
29100 msgstr ""
29101
29102 #. type: textblock
29103 #: ../tools/virt-tar.pl:158
29104 msgid ""
29105 "Use C<-u> to upload and unpack from a local tarball into a virtual machine.  "
29106 "Please read the L</WARNING> section above before using this option."
29107 msgstr ""
29108
29109 #. type: textblock
29110 #: ../tools/virt-tar.pl:162
29111 msgid "You must specify exactly one of these options."
29112 msgstr ""
29113
29114 #. type: =item
29115 #: ../tools/virt-tar.pl:168
29116 msgid "B<-z> | B<--gzip>"
29117 msgstr ""
29118
29119 #. type: textblock
29120 #: ../tools/virt-tar.pl:170
29121 msgid "Specify that the input or output tarball is gzip-compressed."
29122 msgstr ""
29123
29124 #. type: textblock
29125 #: ../tools/virt-tar.pl:283
29126 msgid ""
29127 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29128 "L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29129 "L<http://libguestfs.org/>."
29130 msgstr ""
29131
29132 #. type: textblock
29133 #: ../tools/virt-make-fs.pl:37
29134 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29135 msgstr ""
29136
29137 #. type: verbatim
29138 #: ../tools/virt-make-fs.pl:41
29139 #, no-wrap
29140 msgid ""
29141 " virt-make-fs [--options] input.tar output.img\n"
29142 "\n"
29143 msgstr ""
29144
29145 #. type: verbatim
29146 #: ../tools/virt-make-fs.pl:43
29147 #, no-wrap
29148 msgid ""
29149 " virt-make-fs [--options] input.tar.gz output.img\n"
29150 "\n"
29151 msgstr ""
29152
29153 #. type: verbatim
29154 #: ../tools/virt-make-fs.pl:45
29155 #, no-wrap
29156 msgid ""
29157 " virt-make-fs [--options] directory output.img\n"
29158 "\n"
29159 msgstr ""
29160
29161 #. type: textblock
29162 #: ../tools/virt-make-fs.pl:49
29163 msgid ""
29164 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29165 "archive or some files in a directory.  It is similar to tools like "
29166 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29167 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29168 "useful if you want to attach these filesystems to existing virtual machines "
29169 "(eg. to import large amounts of read-only data to a VM)."
29170 msgstr ""
29171
29172 #. type: textblock
29173 #: ../tools/virt-make-fs.pl:57
29174 msgid "Basic usage is:"
29175 msgstr ""
29176
29177 #. type: verbatim
29178 #: ../tools/virt-make-fs.pl:59
29179 #, no-wrap
29180 msgid ""
29181 " virt-make-fs input output\n"
29182 "\n"
29183 msgstr ""
29184
29185 #. type: textblock
29186 #: ../tools/virt-make-fs.pl:61
29187 msgid ""
29188 "where C<input> is either a directory containing files that you want to add, "
29189 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29190 "C<output> is a disk image.  The input type is detected automatically.  The "
29191 "output disk image defaults to a raw ext2 image unless you specify extra "
29192 "flags (see L</OPTIONS> below)."
29193 msgstr ""
29194
29195 #. type: =head2
29196 #: ../tools/virt-make-fs.pl:67
29197 msgid "EXTRA SPACE"
29198 msgstr ""
29199
29200 #. type: textblock
29201 #: ../tools/virt-make-fs.pl:69
29202 msgid ""
29203 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29204 "the files that it contains, but might have extra space.  Depending on how "
29205 "you are going to use the output, you might think this extra space is wasted "
29206 "and want to minimize it, or you might want to leave space so that more files "
29207 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29208 "but you can use the C<--size> flag to leave space in the filesystem if you "
29209 "want it."
29210 msgstr ""
29211
29212 #. type: textblock
29213 #: ../tools/virt-make-fs.pl:77
29214 msgid ""
29215 "An alternative way to leave extra space but not make the output image any "
29216 "bigger is to use an alternative disk image format (instead of the default "
29217 "\"raw\" format).  Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
29218 "image format (check your hypervisor supports this before using it).  This "
29219 "allows you to choose a large C<--size> but the extra space won't actually be "
29220 "allocated in the image until you try to store something in it."
29221 msgstr ""
29222
29223 #. type: textblock
29224 #: ../tools/virt-make-fs.pl:85
29225 msgid ""
29226 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29227 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29228 "to build another image from scratch."
29229 msgstr ""
29230
29231 #. type: =head3
29232 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29233 msgid "EXAMPLE"
29234 msgstr ""
29235
29236 #. type: verbatim
29237 #: ../tools/virt-make-fs.pl:91
29238 #, no-wrap
29239 msgid ""
29240 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29241 "\n"
29242 msgstr ""
29243
29244 #. type: =head2
29245 #: ../tools/virt-make-fs.pl:93
29246 msgid "FILESYSTEM TYPE"
29247 msgstr ""
29248
29249 #. type: textblock
29250 #: ../tools/virt-make-fs.pl:95
29251 msgid ""
29252 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29253 "libguestfs supports can be used (but I<not> read-only formats like "
29254 "ISO9660).  Here are some of the more common choices:"
29255 msgstr ""
29256
29257 #. type: =item
29258 #: ../tools/virt-make-fs.pl:101
29259 msgid "I<ext3>"
29260 msgstr ""
29261
29262 #. type: textblock
29263 #: ../tools/virt-make-fs.pl:103
29264 msgid ""
29265 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29266 "you are not going to use the filesystem in a way that requires the journal, "
29267 "then this is just wasted overhead."
29268 msgstr ""
29269
29270 #. type: =item
29271 #: ../tools/virt-make-fs.pl:107
29272 msgid "I<ntfs> or I<vfat>"
29273 msgstr ""
29274
29275 #. type: textblock
29276 #: ../tools/virt-make-fs.pl:109
29277 msgid "Useful if exporting data to a Windows guest."
29278 msgstr ""
29279
29280 #. type: textblock
29281 #: ../tools/virt-make-fs.pl:111
29282 msgid ""
29283 "I<Note for vfat>: The tar archive or local directory must only contain files "
29284 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29285 "program running within libguestfs is unable to change the ownership of "
29286 "non-root files, since vfat itself does not support this."
29287 msgstr ""
29288
29289 #. type: =item
29290 #: ../tools/virt-make-fs.pl:116
29291 msgid "I<minix>"
29292 msgstr ""
29293
29294 #. type: textblock
29295 #: ../tools/virt-make-fs.pl:118
29296 msgid ""
29297 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29298 "total filesystem size."
29299 msgstr ""
29300
29301 #. type: verbatim
29302 #: ../tools/virt-make-fs.pl:125
29303 #, no-wrap
29304 msgid ""
29305 " virt-make-fs --type=minix input minixfs.img\n"
29306 "\n"
29307 msgstr ""
29308
29309 #. type: =head2
29310 #: ../tools/virt-make-fs.pl:127
29311 msgid "TO PARTITION OR NOT TO PARTITION"
29312 msgstr ""
29313
29314 #. type: textblock
29315 #: ../tools/virt-make-fs.pl:129
29316 msgid "Optionally virt-make-fs can add a partition table to the output disk."
29317 msgstr ""
29318
29319 #. type: textblock
29320 #: ../tools/virt-make-fs.pl:131
29321 msgid ""
29322 "Adding a partition can make the disk image more compatible with certain "
29323 "virtualized operating systems which don't expect to see a filesystem "
29324 "directly located on a block device (Linux doesn't care and will happily "
29325 "handle both types)."
29326 msgstr ""
29327
29328 #. type: textblock
29329 #: ../tools/virt-make-fs.pl:136
29330 msgid ""
29331 "On the other hand, if you have a partition table then the output image is no "
29332 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
29333 "directly on a partitioned disk image.  (However libguestfs tools such as "
29334 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
29335 msgstr ""
29336
29337 #. type: textblock
29338 #: ../tools/virt-make-fs.pl:144
29339 msgid "Add an MBR partition:"
29340 msgstr ""
29341
29342 #. type: verbatim
29343 #: ../tools/virt-make-fs.pl:146
29344 #, no-wrap
29345 msgid ""
29346 " virt-make-fs --partition -- input disk.img\n"
29347 "\n"
29348 msgstr ""
29349
29350 #. type: textblock
29351 #: ../tools/virt-make-fs.pl:148
29352 msgid ""
29353 "If the output disk image could be terabyte-sized or larger, it's better to "
29354 "use an EFI/GPT-compatible partition table:"
29355 msgstr ""
29356
29357 #. type: verbatim
29358 #: ../tools/virt-make-fs.pl:151
29359 #, no-wrap
29360 msgid ""
29361 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
29362 "\n"
29363 msgstr ""
29364
29365 #. type: textblock
29366 #: ../tools/virt-make-fs.pl:179
29367 msgid "Enable debugging information."
29368 msgstr ""
29369
29370 #. type: =item
29371 #: ../tools/virt-make-fs.pl:185
29372 msgid "B<--size=E<lt>NE<gt>>"
29373 msgstr ""
29374
29375 #. type: =item
29376 #: ../tools/virt-make-fs.pl:187
29377 msgid "B<--size=+E<lt>NE<gt>>"
29378 msgstr ""
29379
29380 #. type: =item
29381 #: ../tools/virt-make-fs.pl:189
29382 msgid "B<-s E<lt>NE<gt>>"
29383 msgstr ""
29384
29385 #. type: =item
29386 #: ../tools/virt-make-fs.pl:191
29387 msgid "B<-s +E<lt>NE<gt>>"
29388 msgstr ""
29389
29390 #. type: textblock
29391 #: ../tools/virt-make-fs.pl:193
29392 msgid "Use the C<--size> (or C<-s>) option to choose the size of the output image."
29393 msgstr ""
29394
29395 #. type: textblock
29396 #: ../tools/virt-make-fs.pl:196
29397 msgid ""
29398 "If this option is I<not> given, then the output image will be just large "
29399 "enough to contain all the files, with not much wasted space."
29400 msgstr ""
29401
29402 #. type: textblock
29403 #: ../tools/virt-make-fs.pl:199
29404 msgid ""
29405 "To choose a fixed size output disk, specify an absolute number followed by "
29406 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29407 "Petabytes or Exabytes.  This must be large enough to contain all the input "
29408 "files, else you will get an error."
29409 msgstr ""
29410
29411 #. type: textblock
29412 #: ../tools/virt-make-fs.pl:204
29413 msgid ""
29414 "To leave extra space, specify C<+> (plus sign) and a number followed by "
29415 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29416 "Petabytes or Exabytes.  For example: C<--size=+200M> means enough space for "
29417 "the input files, and (approximately) an extra 200 MB free space."
29418 msgstr ""
29419
29420 #. type: textblock
29421 #: ../tools/virt-make-fs.pl:210
29422 msgid ""
29423 "Note that virt-make-fs estimates free space, and therefore will not produce "
29424 "filesystems containing precisely the free space requested.  (It is much more "
29425 "expensive and time-consuming to produce a filesystem which has precisely the "
29426 "desired free space)."
29427 msgstr ""
29428
29429 #. type: =item
29430 #: ../tools/virt-make-fs.pl:219
29431 msgid "B<--format=E<lt>fmtE<gt>>"
29432 msgstr ""
29433
29434 #. type: =item
29435 #: ../tools/virt-make-fs.pl:221
29436 msgid "B<-F E<lt>fmtE<gt>>"
29437 msgstr ""
29438
29439 #. type: textblock
29440 #: ../tools/virt-make-fs.pl:223
29441 msgid "Choose the output disk image format."
29442 msgstr ""
29443
29444 #. type: textblock
29445 #: ../tools/virt-make-fs.pl:225
29446 msgid "The default is C<raw> (raw disk image)."
29447 msgstr ""
29448
29449 #. type: textblock
29450 #: ../tools/virt-make-fs.pl:227
29451 msgid ""
29452 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
29453 "that would really make sense here is C<qcow2>."
29454 msgstr ""
29455
29456 #. type: =item
29457 #: ../tools/virt-make-fs.pl:234
29458 msgid "B<--type=E<lt>fsE<gt>>"
29459 msgstr ""
29460
29461 #. type: =item
29462 #: ../tools/virt-make-fs.pl:236
29463 msgid "B<-t E<lt>fsE<gt>>"
29464 msgstr ""
29465
29466 #. type: textblock
29467 #: ../tools/virt-make-fs.pl:238
29468 msgid "Choose the output filesystem type."
29469 msgstr ""
29470
29471 #. type: textblock
29472 #: ../tools/virt-make-fs.pl:240
29473 msgid "The default is C<ext2>."
29474 msgstr ""
29475
29476 #. type: textblock
29477 #: ../tools/virt-make-fs.pl:242
29478 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
29479 msgstr ""
29480
29481 #. type: =item
29482 #: ../tools/virt-make-fs.pl:249
29483 msgid "B<--partition>"
29484 msgstr ""
29485
29486 #. type: =item
29487 #: ../tools/virt-make-fs.pl:251
29488 msgid "B<--partition=E<lt>parttypeE<gt>>"
29489 msgstr ""
29490
29491 #. type: textblock
29492 #: ../tools/virt-make-fs.pl:253
29493 msgid ""
29494 "If specified, this flag adds an MBR partition table to the output disk "
29495 "image."
29496 msgstr ""
29497
29498 #. type: textblock
29499 #: ../tools/virt-make-fs.pl:256
29500 msgid ""
29501 "You can change the partition table type, eg. C<--partition=gpt> for large "
29502 "disks."
29503 msgstr ""
29504
29505 #. type: textblock
29506 #: ../tools/virt-make-fs.pl:259
29507 msgid ""
29508 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
29509 "might consider the next parameter to be the partition type.  For example:"
29510 msgstr ""
29511
29512 #. type: verbatim
29513 #: ../tools/virt-make-fs.pl:263
29514 #, no-wrap
29515 msgid ""
29516 " virt-make-fs --partition input.tar ...\n"
29517 "\n"
29518 msgstr ""
29519
29520 #. type: textblock
29521 #: ../tools/virt-make-fs.pl:265
29522 msgid ""
29523 "would cause virt-make-fs to think you wanted to use a partition type of "
29524 "C<input.tar> which is completely wrong.  To avoid this, use C<--> (a double "
29525 "dash) between options and the input file argument:"
29526 msgstr ""
29527
29528 #. type: verbatim
29529 #: ../tools/virt-make-fs.pl:269
29530 #, no-wrap
29531 msgid ""
29532 " virt-make-fs --partition -- input.tar ...\n"
29533 "\n"
29534 msgstr ""
29535
29536 #. type: textblock
29537 #: ../tools/virt-make-fs.pl:541
29538 msgid ""
29539 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<mkisofs(1)>, "
29540 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
29541 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29542 msgstr ""
29543
29544 #. type: verbatim
29545 #: ../tools/virt-make-fs.pl:558
29546 #, no-wrap
29547 msgid ""
29548 " export LIBGUESTFS_DEBUG=1\n"
29549 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
29550 "\n"
29551 msgstr ""
29552
29553 #. type: textblock
29554 #: ../tools/virt-make-fs.pl:561
29555 msgid ""
29556 "Attach /tmp/virt-make-fs.log to a new bug report at "
29557 "L<https://bugzilla.redhat.com/>"
29558 msgstr ""
29559
29560 #. type: textblock
29561 #: ../tools/virt-list-partitions.pl:32
29562 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
29563 msgstr ""
29564
29565 #. type: verbatim
29566 #: ../tools/virt-list-partitions.pl:36
29567 #, no-wrap
29568 msgid ""
29569 " virt-list-partitions [--options] domname\n"
29570 "\n"
29571 msgstr ""
29572
29573 #. type: verbatim
29574 #: ../tools/virt-list-partitions.pl:38
29575 #, no-wrap
29576 msgid ""
29577 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
29578 "\n"
29579 msgstr ""
29580
29581 #. type: textblock
29582 #: ../tools/virt-list-partitions.pl:45
29583 msgid ""
29584 "C<virt-list-partitions> is a command line tool to list the partitions that "
29585 "are contained in a virtual machine or disk image.  It is mainly useful as a "
29586 "first step to using L<virt-resize(1)>."
29587 msgstr ""
29588
29589 #. type: textblock
29590 #: ../tools/virt-list-partitions.pl:50
29591 msgid ""
29592 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
29593 "functionality.  For more complex cases you should look at the "
29594 "L<guestfish(1)> tool."
29595 msgstr ""
29596
29597 #. type: =item
29598 #: ../tools/virt-list-partitions.pl:107
29599 msgid "B<-h> | B<--human-readable>"
29600 msgstr ""
29601
29602 #. type: textblock
29603 #: ../tools/virt-list-partitions.pl:109
29604 msgid "Show sizes in human-readable form (eg. \"1G\")."
29605 msgstr ""
29606
29607 #. type: textblock
29608 #: ../tools/virt-list-partitions.pl:117
29609 msgid ""
29610 "With this option, C<virt-list-partitions> displays the type and size of each "
29611 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
29612 msgstr ""
29613
29614 #. type: =item
29615 #: ../tools/virt-list-partitions.pl:124
29616 msgid "B<-t> | B<--total>"
29617 msgstr ""
29618
29619 #. type: textblock
29620 #: ../tools/virt-list-partitions.pl:126
29621 msgid "Display the total size of each block device (as a separate row or rows)."
29622 msgstr ""
29623
29624 #. type: textblock
29625 #: ../tools/virt-list-partitions.pl:259
29626 msgid ""
29627 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
29628 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
29629 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29630 msgstr ""
29631
29632 #. type: textblock
29633 #: ../tools/virt-list-partitions.pl:275
29634 msgid "Copyright (C) 2009-2010 Red Hat Inc."
29635 msgstr ""