27f79f48a6818d21d90c0cf063c45e45ce19f0e8
[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.9.7\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-01-30 23:51+0000\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:77 ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
69 msgid "DESCRIPTION"
70 msgstr ""
71
72 #. type: textblock
73 #: ../src/guestfs.pod:25
74 msgid ""
75 "Libguestfs is a library for accessing and modifying guest disk images.  "
76 "Amongst the things this is good for: making batch configuration changes to "
77 "guests, getting disk used/free statistics (see also: virt-df), migrating "
78 "between virtualization systems (see also: virt-p2v), performing partial "
79 "backups, performing partial guest clones, cloning guests and changing "
80 "registry/UUID/hostname info, and much else besides."
81 msgstr ""
82
83 #. type: textblock
84 #: ../src/guestfs.pod:33
85 msgid ""
86 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
87 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
88 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
89 "qcow2, vmdk."
90 msgstr ""
91
92 #. type: textblock
93 #: ../src/guestfs.pod:38
94 msgid ""
95 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
96 "what filesystem is in each LV, etc.).  It can also run commands in the "
97 "context of the guest.  Also you can access filesystems over FUSE."
98 msgstr ""
99
100 #. type: textblock
101 #: ../src/guestfs.pod:43
102 msgid ""
103 "Libguestfs is a library that can be linked with C and C++ management "
104 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
105 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
106 "line."
107 msgstr ""
108
109 #. type: textblock
110 #: ../src/guestfs.pod:48
111 msgid ""
112 "You don't need to be root to use libguestfs, although obviously you do need "
113 "enough permissions to access the disk images."
114 msgstr ""
115
116 #. type: textblock
117 #: ../src/guestfs.pod:51
118 msgid ""
119 "Libguestfs is a large API because it can do many things.  For a gentle "
120 "introduction, please read the L</API OVERVIEW> section next."
121 msgstr ""
122
123 #. type: textblock
124 #: ../src/guestfs.pod:54
125 msgid ""
126 "There are also some example programs in the L<guestfs-examples(3)> manual "
127 "page."
128 msgstr ""
129
130 #. type: =head1
131 #: ../src/guestfs.pod:57
132 msgid "API OVERVIEW"
133 msgstr ""
134
135 #. type: textblock
136 #: ../src/guestfs.pod:59
137 msgid ""
138 "This section provides a gentler overview of the libguestfs API.  We also try "
139 "to group API calls together, where that may not be obvious from reading "
140 "about the individual calls in the main section of this manual."
141 msgstr ""
142
143 #. type: =head2
144 #: ../src/guestfs.pod:64
145 msgid "HANDLES"
146 msgstr ""
147
148 #. type: textblock
149 #: ../src/guestfs.pod:66
150 msgid ""
151 "Before you can use libguestfs calls, you have to create a handle.  Then you "
152 "must add at least one disk image to the handle, followed by launching the "
153 "handle, then performing whatever operations you want, and finally closing "
154 "the handle.  By convention we use the single letter C<g> for the name of the "
155 "handle variable, although of course you can use any name you want."
156 msgstr ""
157
158 #. type: textblock
159 #: ../src/guestfs.pod:73
160 msgid "The general structure of all libguestfs-using programs looks like this:"
161 msgstr ""
162
163 #. type: verbatim
164 #: ../src/guestfs.pod:76
165 #, no-wrap
166 msgid ""
167 " guestfs_h *g = guestfs_create ();\n"
168 " \n"
169 msgstr ""
170
171 #. type: verbatim
172 #: ../src/guestfs.pod:78
173 #, no-wrap
174 msgid ""
175 " /* Call guestfs_add_drive additional times if there are\n"
176 "  * multiple disk images.\n"
177 "  */\n"
178 " guestfs_add_drive (g, \"guest.img\");\n"
179 " \n"
180 msgstr ""
181
182 #. type: verbatim
183 #: ../src/guestfs.pod:83
184 #, no-wrap
185 msgid ""
186 " /* Most manipulation calls won't work until you've launched\n"
187 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
188 "  * and _before_ other commands.\n"
189 "  */\n"
190 " guestfs_launch (g);\n"
191 " \n"
192 msgstr ""
193
194 #. type: verbatim
195 #: ../src/guestfs.pod:89
196 #, no-wrap
197 msgid ""
198 " /* Now you can examine what partitions, LVs etc are available.\n"
199 "  */\n"
200 " char **partitions = guestfs_list_partitions (g);\n"
201 " char **logvols = guestfs_lvs (g);\n"
202 " \n"
203 msgstr ""
204
205 #. type: verbatim
206 #: ../src/guestfs.pod:94
207 #, no-wrap
208 msgid ""
209 " /* To access a filesystem in the image, you must mount it.\n"
210 "  */\n"
211 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
212 " \n"
213 msgstr ""
214
215 #. type: verbatim
216 #: ../src/guestfs.pod:98
217 #, no-wrap
218 msgid ""
219 " /* Now you can perform filesystem actions on the guest\n"
220 "  * disk image.\n"
221 "  */\n"
222 " guestfs_touch (g, \"/hello\");\n"
223 "\n"
224 msgstr ""
225
226 #. type: verbatim
227 #: ../src/guestfs.pod:103
228 #, no-wrap
229 msgid ""
230 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
231 "  * it is done automatically when you close the handle.  See\n"
232 "  * discussion of autosync in this page.\n"
233 "  */\n"
234 " guestfs_sync (g);\n"
235 " \n"
236 msgstr ""
237
238 #. type: verbatim
239 #: ../src/guestfs.pod:109
240 #, no-wrap
241 msgid ""
242 " /* Close the handle 'g'. */\n"
243 " guestfs_close (g);\n"
244 "\n"
245 msgstr ""
246
247 #. type: textblock
248 #: ../src/guestfs.pod:112
249 msgid ""
250 "The code above doesn't include any error checking.  In real code you should "
251 "check return values carefully for errors.  In general all functions that "
252 "return integers return C<-1> on error, and all functions that return "
253 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
254 "how to handle errors, and consult the documentation for each function call "
255 "below to see precisely how they return error indications.  See "
256 "L<guestfs-examples(3)> for fully worked examples."
257 msgstr ""
258
259 #. type: =head2
260 #: ../src/guestfs.pod:121
261 msgid "DISK IMAGES"
262 msgstr ""
263
264 #. type: textblock
265 #: ../src/guestfs.pod:123
266 msgid ""
267 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
268 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
269 "actual block device, or simply an empty file of zeroes that you have created "
270 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
271 "of these."
272 msgstr ""
273
274 #. type: textblock
275 #: ../src/guestfs.pod:129
276 msgid ""
277 "The call you should use in modern code for adding drives is "
278 "L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
279 "specifying that the format is raw, do:"
280 msgstr ""
281
282 #. type: verbatim
283 #: ../src/guestfs.pod:133
284 #, no-wrap
285 msgid ""
286 " guestfs_add_drive_opts (g, filename,\n"
287 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
288 "                         -1);\n"
289 "\n"
290 msgstr ""
291
292 #. type: textblock
293 #: ../src/guestfs.pod:137
294 msgid "You can add a disk read-only using:"
295 msgstr ""
296
297 #. type: verbatim
298 #: ../src/guestfs.pod:139
299 #, no-wrap
300 msgid ""
301 " guestfs_add_drive_opts (g, filename,\n"
302 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
303 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
304 "                         -1);\n"
305 "\n"
306 msgstr ""
307
308 #. type: textblock
309 #: ../src/guestfs.pod:144
310 msgid ""
311 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
312 "libguestfs won't modify the file."
313 msgstr ""
314
315 #. type: textblock
316 #: ../src/guestfs.pod:147
317 msgid ""
318 "Be extremely cautious if the disk image is in use, eg. if it is being used "
319 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
320 "corruption, but adding it read-only is safe."
321 msgstr ""
322
323 #. type: textblock
324 #: ../src/guestfs.pod:151
325 msgid ""
326 "You must add at least one disk image, and you may add multiple disk images.  "
327 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
328 "first one you added), C</dev/sdb> (for the second one you added), etc."
329 msgstr ""
330
331 #. type: textblock
332 #: ../src/guestfs.pod:156
333 msgid ""
334 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
335 "can call L</guestfs_list_devices> to get a list of the device names, in the "
336 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
337 msgstr ""
338
339 #. type: =head2
340 #: ../src/guestfs.pod:161
341 msgid "MOUNTING"
342 msgstr ""
343
344 #. type: textblock
345 #: ../src/guestfs.pod:163
346 msgid ""
347 "Before you can read or write files, create directories and so on in a disk "
348 "image that contains filesystems, you have to mount those filesystems using "
349 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
350 "a disk image contains (for example) one partition with a filesystem on that "
351 "partition, then you can mount it directly:"
352 msgstr ""
353
354 #. type: verbatim
355 #: ../src/guestfs.pod:170
356 #, no-wrap
357 msgid ""
358 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
359 "\n"
360 msgstr ""
361
362 #. type: textblock
363 #: ../src/guestfs.pod:172
364 msgid ""
365 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
366 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
367 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
368 "that these are libguestfs virtual devices, and are nothing to do with host "
369 "devices."
370 msgstr ""
371
372 #. type: textblock
373 #: ../src/guestfs.pod:178
374 msgid ""
375 "If you are given a disk image and you don't know what it contains then you "
376 "have to find out.  Libguestfs can do that too: use "
377 "L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
378 "and LVs, and either try mounting each to see what is mountable, or else "
379 "examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
380 "filesystems, use L</guestfs_list_filesystems>."
381 msgstr ""
382
383 #. type: textblock
384 #: ../src/guestfs.pod:186
385 msgid ""
386 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
387 "L</INSPECTION> below).  But you might find it easier to look at higher level "
388 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
389 msgstr ""
390
391 #. type: textblock
392 #: ../src/guestfs.pod:191
393 msgid ""
394 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
395 "several other variations of the C<guestfs_mount_*> call."
396 msgstr ""
397
398 #. type: =head2
399 #: ../src/guestfs.pod:194
400 msgid "FILESYSTEM ACCESS AND MODIFICATION"
401 msgstr ""
402
403 #. type: textblock
404 #: ../src/guestfs.pod:196
405 msgid ""
406 "The majority of the libguestfs API consists of fairly low-level calls for "
407 "accessing and modifying the files, directories, symlinks etc on mounted "
408 "filesystems.  There are over a hundred such calls which you can find listed "
409 "in detail below in this man page, and we don't even pretend to cover them "
410 "all in this overview."
411 msgstr ""
412
413 #. type: textblock
414 #: ../src/guestfs.pod:202
415 msgid ""
416 "Specify filenames as full paths, starting with C<\"/\"> and including the "
417 "mount point."
418 msgstr ""
419
420 #. type: textblock
421 #: ../src/guestfs.pod:205
422 msgid ""
423 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
424 "the file called C<\"etc/passwd\"> then you could do:"
425 msgstr ""
426
427 #. type: verbatim
428 #: ../src/guestfs.pod:208
429 #, no-wrap
430 msgid ""
431 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
432 "\n"
433 msgstr ""
434
435 #. type: textblock
436 #: ../src/guestfs.pod:210
437 msgid ""
438 "This would return C<data> as a newly allocated buffer containing the full "
439 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
440 "or C<NULL> if there was an error."
441 msgstr ""
442
443 #. type: textblock
444 #: ../src/guestfs.pod:214
445 msgid ""
446 "As another example, to create a top-level directory on that filesystem "
447 "called C<\"var\"> you would do:"
448 msgstr ""
449
450 #. type: verbatim
451 #: ../src/guestfs.pod:217
452 #, no-wrap
453 msgid ""
454 " guestfs_mkdir (g, \"/var\");\n"
455 "\n"
456 msgstr ""
457
458 #. type: textblock
459 #: ../src/guestfs.pod:219
460 msgid "To create a symlink you could do:"
461 msgstr ""
462
463 #. type: verbatim
464 #: ../src/guestfs.pod:221
465 #, no-wrap
466 msgid ""
467 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
468 "               \"/etc/rc3.d/S30portmap\");\n"
469 "\n"
470 msgstr ""
471
472 #. type: textblock
473 #: ../src/guestfs.pod:224
474 msgid ""
475 "Libguestfs will reject attempts to use relative paths and there is no "
476 "concept of a current working directory."
477 msgstr ""
478
479 #. type: textblock
480 #: ../src/guestfs.pod:227
481 msgid ""
482 "Libguestfs can return errors in many situations: for example if the "
483 "filesystem isn't writable, or if a file or directory that you requested "
484 "doesn't exist.  If you are using the C API (documented here)  you have to "
485 "check for those error conditions after each call.  (Other language bindings "
486 "turn these errors into exceptions)."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:233
491 msgid ""
492 "File writes are affected by the per-handle umask, set by calling "
493 "L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
494 msgstr ""
495
496 #. type: =head2
497 #: ../src/guestfs.pod:236
498 msgid "PARTITIONING"
499 msgstr ""
500
501 #. type: textblock
502 #: ../src/guestfs.pod:238
503 msgid ""
504 "Libguestfs contains API calls to read, create and modify partition tables on "
505 "disk images."
506 msgstr ""
507
508 #. type: textblock
509 #: ../src/guestfs.pod:241
510 msgid ""
511 "In the common case where you want to create a single partition covering the "
512 "whole disk, you should use the L</guestfs_part_disk> call:"
513 msgstr ""
514
515 #. type: verbatim
516 #: ../src/guestfs.pod:245
517 #, no-wrap
518 msgid ""
519 " const char *parttype = \"mbr\";\n"
520 " if (disk_is_larger_than_2TB)\n"
521 "   parttype = \"gpt\";\n"
522 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
523 "\n"
524 msgstr ""
525
526 #. type: textblock
527 #: ../src/guestfs.pod:250
528 msgid ""
529 "Obviously this effectively wipes anything that was on that disk image "
530 "before."
531 msgstr ""
532
533 #. type: =head2
534 #: ../src/guestfs.pod:253
535 msgid "LVM2"
536 msgstr ""
537
538 #. type: textblock
539 #: ../src/guestfs.pod:255
540 msgid ""
541 "Libguestfs provides access to a large part of the LVM2 API, such as "
542 "L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
543 "unless you familiarize yourself with the concepts of physical volumes, "
544 "volume groups and logical volumes."
545 msgstr ""
546
547 #. type: textblock
548 #: ../src/guestfs.pod:260
549 msgid ""
550 "This author strongly recommends reading the LVM HOWTO, online at "
551 "L<http://tldp.org/HOWTO/LVM-HOWTO/>."
552 msgstr ""
553
554 #. type: =head2
555 #: ../src/guestfs.pod:263
556 msgid "DOWNLOADING"
557 msgstr ""
558
559 #. type: textblock
560 #: ../src/guestfs.pod:265
561 msgid ""
562 "Use L</guestfs_cat> to download small, text only files.  This call is "
563 "limited to files which are less than 2 MB and which cannot contain any ASCII "
564 "NUL (C<\\0>) characters.  However the API is very simple to use."
565 msgstr ""
566
567 #. type: textblock
568 #: ../src/guestfs.pod:269
569 msgid ""
570 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
571 "bit data, since it returns a (pointer, size) pair.  However it is still "
572 "limited to \"small\" files, less than 2 MB."
573 msgstr ""
574
575 #. type: textblock
576 #: ../src/guestfs.pod:273
577 msgid ""
578 "L</guestfs_download> can be used to download any file, with no limits on "
579 "content or size (even files larger than 4 GB)."
580 msgstr ""
581
582 #. type: textblock
583 #: ../src/guestfs.pod:276
584 msgid "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
585 msgstr ""
586
587 #. type: =head2
588 #: ../src/guestfs.pod:279
589 msgid "UPLOADING"
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:281
594 msgid ""
595 "It's often the case that you want to write a file or files to the disk "
596 "image."
597 msgstr ""
598
599 #. type: textblock
600 #: ../src/guestfs.pod:284
601 msgid ""
602 "To write a small file with fixed content, use L</guestfs_write>.  To create "
603 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
604 "L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
605 "variety of other functions for creating test files, for example "
606 "L</guestfs_fill> and L</guestfs_fill_pattern>."
607 msgstr ""
608
609 #. type: textblock
610 #: ../src/guestfs.pod:290
611 msgid ""
612 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
613 "file content or size (even files larger than 4 GB)."
614 msgstr ""
615
616 #. type: textblock
617 #: ../src/guestfs.pod:293
618 msgid "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
619 msgstr ""
620
621 #. type: textblock
622 #: ../src/guestfs.pod:295
623 msgid ""
624 "However the fastest way to upload I<large numbers of arbitrary files> is to "
625 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
626 "L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add "
627 "the drive in a predictable way (eg. adding it last after all other drives) "
628 "then you can get the device name from L</guestfs_list_devices> and mount it "
629 "directly using L</guestfs_mount_ro>.  Note that squashfs images are "
630 "sometimes non-portable between kernel versions, and they don't support "
631 "labels or UUIDs.  If you want to pre-build an image or you need to mount it "
632 "using a label or UUID, use an ISO image instead."
633 msgstr ""
634
635 #. type: =head2
636 #: ../src/guestfs.pod:306
637 msgid "COPYING"
638 msgstr ""
639
640 #. type: textblock
641 #: ../src/guestfs.pod:308
642 msgid ""
643 "There are various different commands for copying between files and devices "
644 "and in and out of the guest filesystem.  These are summarised in the table "
645 "below."
646 msgstr ""
647
648 #. type: =item
649 #: ../src/guestfs.pod:314
650 msgid "B<file> to B<file>"
651 msgstr ""
652
653 #. type: textblock
654 #: ../src/guestfs.pod:316
655 msgid ""
656 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
657 "directories recursively."
658 msgstr ""
659
660 #. type: =item
661 #: ../src/guestfs.pod:319
662 msgid "B<file or device> to B<file or device>"
663 msgstr ""
664
665 #. type: textblock
666 #: ../src/guestfs.pod:321
667 msgid ""
668 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
669 "devices in the guest."
670 msgstr ""
671
672 #. type: textblock
673 #: ../src/guestfs.pod:324
674 msgid "Example: duplicate the contents of an LV:"
675 msgstr ""
676
677 #. type: verbatim
678 #: ../src/guestfs.pod:326
679 #, no-wrap
680 msgid ""
681 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
682 "\n"
683 msgstr ""
684
685 #. type: textblock
686 #: ../src/guestfs.pod:328
687 msgid ""
688 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
689 "(C</dev/VG/Original>).  To copy less than the whole source device, use "
690 "L</guestfs_copy_size>."
691 msgstr ""
692
693 #. type: =item
694 #: ../src/guestfs.pod:332
695 msgid "B<file on the host> to B<file or device>"
696 msgstr ""
697
698 #. type: textblock
699 #: ../src/guestfs.pod:334
700 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
701 msgstr ""
702
703 #. type: =item
704 #: ../src/guestfs.pod:336
705 msgid "B<file or device> to B<file on the host>"
706 msgstr ""
707
708 #. type: textblock
709 #: ../src/guestfs.pod:338
710 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
711 msgstr ""
712
713 #. type: =head2
714 #: ../src/guestfs.pod:342
715 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:344
720 msgid ""
721 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
722 "L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
723 "appears you can only upload and download to files.  However many Un*x-like "
724 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
725 "C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
726 "stderr, and arbitrary file descriptor N."
727 msgstr ""
728
729 #. type: textblock
730 #: ../src/guestfs.pod:352
731 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
732 msgstr ""
733
734 #. type: verbatim
735 #: ../src/guestfs.pod:355
736 #, no-wrap
737 msgid ""
738 " guestfs_download (g, filename, \"/dev/stdout\");\n"
739 "\n"
740 msgstr ""
741
742 #. type: textblock
743 #: ../src/guestfs.pod:357
744 msgid "and you can write tar output to a 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:1031 ../src/guestfs.pod:1035 ../src/guestfs.pod:1039 ../src/guestfs.pod:1044 ../src/guestfs.pod:1052 ../src/guestfs.pod:1071 ../src/guestfs.pod:1079 ../src/guestfs.pod:1101 ../src/guestfs.pod:1105 ../src/guestfs.pod:1109 ../src/guestfs.pod:1113 ../src/guestfs.pod:1117 ../src/guestfs.pod:1121 ../src/guestfs.pod:1603 ../src/guestfs.pod:1608 ../src/guestfs.pod:1612 ../src/guestfs.pod:1722 ../src/guestfs.pod:1727 ../src/guestfs.pod:1731 ../src/guestfs.pod:2083 ../src/guestfs.pod:2089 ../src/guestfs.pod:2094 ../src/guestfs.pod:2100 ../src/guestfs.pod:2565 ../src/guestfs.pod:2569 ../src/guestfs.pod:2573 ../src/guestfs.pod:2577 ../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:1224 ../src/guestfs.pod:1355 ../src/guestfs.pod:2128
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:1228 ../src/guestfs.pod:1359 ../src/guestfs.pod:2153
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:1365
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:746
1049 msgid "ENCRYPTED DISKS"
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:521
1054 msgid ""
1055 "Libguestfs allows you to access Linux guests which have been encrypted using "
1056 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1057 "standard.  This includes nearly all whole disk encryption systems used by "
1058 "modern Linux guests."
1059 msgstr ""
1060
1061 #. type: textblock
1062 #: ../src/guestfs.pod:527
1063 msgid ""
1064 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1065 "returns the string C<crypto_LUKS>)."
1066 msgstr ""
1067
1068 #. type: textblock
1069 #: ../src/guestfs.pod:530
1070 msgid ""
1071 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1072 "will require the passphrase!"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:533
1077 msgid ""
1078 "Opening a LUKS device creates a new device mapper device called "
1079 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1080 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1081 "decrypted from and encrypted to the underlying block device respectively."
1082 msgstr ""
1083
1084 #. type: textblock
1085 #: ../src/guestfs.pod:539
1086 msgid ""
1087 "LVM volume groups on the device can be made visible by calling "
1088 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1089 "volume(s) can now be mounted in the usual way."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:543
1094 msgid ""
1095 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1096 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1097 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1098 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1099 "underlying encrypted block device)."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:550
1104 msgid "INSPECTION"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:552
1109 msgid ""
1110 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1111 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1112 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1113 "version 1.5.3 the most frequently used part of this library has been "
1114 "rewritten in C and moved into the core code)."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:559
1119 msgid ""
1120 "Add all disks belonging to the unknown virtual machine and call "
1121 "L</guestfs_launch> in the usual way."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:562
1126 msgid ""
1127 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1128 "and certain heuristics, and returns a list of operating systems that were "
1129 "found.  An empty list means none were found.  A single element is the root "
1130 "filesystem of the operating system.  For dual- or multi-boot guests, "
1131 "multiple roots can be returned, each one corresponding to a separate "
1132 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1133 "world of virtualization, but since this scenario can happen, we have built "
1134 "libguestfs to deal with it.)"
1135 msgstr ""
1136
1137 #. type: textblock
1138 #: ../src/guestfs.pod:571
1139 msgid ""
1140 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1141 "to get additional details about that operating system.  For example, call "
1142 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1143 "Windows and Linux-based operating systems respectively."
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:577
1148 msgid ""
1149 "Un*x-like and Linux-based operating systems usually consist of several "
1150 "filesystems which are mounted at boot time (for example, a separate boot "
1151 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1152 "filesystems correspond to mount points.  Call "
1153 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1154 "hash table like this example:"
1155 msgstr ""
1156
1157 #. type: verbatim
1158 #: ../src/guestfs.pod:584
1159 #, no-wrap
1160 msgid ""
1161 " /boot => /dev/sda1\n"
1162 " /     => /dev/vg_guest/lv_root\n"
1163 " /usr  => /dev/vg_guest/lv_usr\n"
1164 "\n"
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:588
1169 msgid ""
1170 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1171 "filesystems as suggested."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:591
1176 msgid ""
1177 "Be careful to mount filesystems in the right order (eg. C</> before "
1178 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1179 "work."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:595
1184 msgid ""
1185 "Inspection currently only works for some common operating systems.  "
1186 "Contributors are welcome to send patches for other operating systems that we "
1187 "currently cannot detect."
1188 msgstr ""
1189
1190 #. type: textblock
1191 #: ../src/guestfs.pod:599
1192 msgid ""
1193 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1194 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1195 "encrypted devices."
1196 msgstr ""
1197
1198 #. type: textblock
1199 #: ../src/guestfs.pod:603
1200 msgid ""
1201 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1202 "inspection and caches the results in the guest handle.  Subsequent calls to "
1203 "C<guestfs_inspect_get_*> return this cached information, but I<do not> "
1204 "re-read the disks.  If you change the content of the guest disks, you can "
1205 "redo inspection by calling L</guestfs_inspect_os> again.  "
1206 "(L</guestfs_inspect_list_applications> works a little differently from the "
1207 "other calls and does read the disks.  See documentation for that function "
1208 "for details)."
1209 msgstr ""
1210
1211 #. type: =head3
1212 #: ../src/guestfs.pod:612
1213 msgid "INSPECTING INSTALL DISKS"
1214 msgstr ""
1215
1216 #. type: textblock
1217 #: ../src/guestfs.pod:614
1218 msgid ""
1219 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1220 "CDs and more."
1221 msgstr ""
1222
1223 #. type: textblock
1224 #: ../src/guestfs.pod:617
1225 msgid ""
1226 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1227 "system, which currently can be C<installed> (a regular operating system) or "
1228 "C<installer> (some sort of install disk)."
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:621
1233 msgid ""
1234 "Further information is available about the operating system that can be "
1235 "installed using the regular inspection APIs like "
1236 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1237 "etc."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:626
1242 msgid ""
1243 "Some additional information specific to installer disks is also available "
1244 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1245 "L</guestfs_inspect_is_multipart> calls."
1246 msgstr ""
1247
1248 #. type: =head2
1249 #: ../src/guestfs.pod:631
1250 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1251 msgstr ""
1252
1253 #. type: textblock
1254 #: ../src/guestfs.pod:633
1255 msgid ""
1256 "Libguestfs can mount NTFS partitions.  It does this using the "
1257 "L<http://www.ntfs-3g.org/> driver."
1258 msgstr ""
1259
1260 #. type: =head3
1261 #: ../src/guestfs.pod:636
1262 msgid "DRIVE LETTERS AND PATHS"
1263 msgstr ""
1264
1265 #. type: textblock
1266 #: ../src/guestfs.pod:638
1267 msgid ""
1268 "DOS and Windows still use drive letters, and the filesystems are always "
1269 "treated as case insensitive by Windows itself, and therefore you might find "
1270 "a Windows configuration file referring to a path like "
1271 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1272 "that directory might be referred to as C</WINDOWS/System32>."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:644
1277 msgid ""
1278 "Drive letter mappings are outside the scope of libguestfs.  You have to use "
1279 "libguestfs to read the appropriate Windows Registry and configuration files, "
1280 "to determine yourself how drives are mapped (see also L<hivex(3)> and "
1281 "L<virt-inspector(1)>)."
1282 msgstr ""
1283
1284 #. type: textblock
1285 #: ../src/guestfs.pod:649
1286 msgid ""
1287 "Replacing backslash characters with forward slash characters is also outside "
1288 "the scope of libguestfs, but something that you can easily do."
1289 msgstr ""
1290
1291 #. type: textblock
1292 #: ../src/guestfs.pod:652
1293 msgid ""
1294 "Where we can help is in resolving the case insensitivity of paths.  For "
1295 "this, call L</guestfs_case_sensitive_path>."
1296 msgstr ""
1297
1298 #. type: =head3
1299 #: ../src/guestfs.pod:655
1300 msgid "ACCESSING THE WINDOWS REGISTRY"
1301 msgstr ""
1302
1303 #. type: textblock
1304 #: ../src/guestfs.pod:657
1305 msgid ""
1306 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1307 "files, through the library C<hivex> which is part of the libguestfs project "
1308 "although ships as a separate tarball.  You have to locate and download the "
1309 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1310 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and "
1311 "L<virt-win-reg(1)> for more help on this issue."
1312 msgstr ""
1313
1314 #. type: =head3
1315 #: ../src/guestfs.pod:665
1316 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1317 msgstr ""
1318
1319 #. type: textblock
1320 #: ../src/guestfs.pod:667
1321 msgid ""
1322 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1323 "provide something which looks like a Linux symlink.  The way it tries to do "
1324 "the rewriting is described here:"
1325 msgstr ""
1326
1327 #. type: textblock
1328 #: ../src/guestfs.pod:671
1329 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-symbolic-links/>"
1330 msgstr ""
1331
1332 #. type: textblock
1333 #: ../src/guestfs.pod:673
1334 msgid ""
1335 "The essential problem is that ntfs-3g simply does not have enough "
1336 "information to do a correct job.  NTFS links can contain drive letters and "
1337 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1338 "It is almost certainly the case that libguestfs callers should ignore what "
1339 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1340 msgstr ""
1341
1342 #. type: textblock
1343 #: ../src/guestfs.pod:680
1344 msgid ""
1345 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1346 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1347 "attribute, and read the raw reparse data from that (you can find the format "
1348 "documented in various places around the web)."
1349 msgstr ""
1350
1351 #. type: =head3
1352 #: ../src/guestfs.pod:685
1353 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1354 msgstr ""
1355
1356 #. type: textblock
1357 #: ../src/guestfs.pod:687
1358 msgid ""
1359 "There are other useful extended attributes that can be read from ntfs-3g "
1360 "filesystems (using L</guestfs_getxattr>).  See:"
1361 msgstr ""
1362
1363 #. type: textblock
1364 #: ../src/guestfs.pod:690
1365 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1366 msgstr ""
1367
1368 #. type: =head2
1369 #: ../src/guestfs.pod:692
1370 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1371 msgstr ""
1372
1373 #. type: textblock
1374 #: ../src/guestfs.pod:694
1375 msgid ""
1376 "Although we don't want to discourage you from using the C API, we will "
1377 "mention here that the same API is also available in other languages."
1378 msgstr ""
1379
1380 #. type: textblock
1381 #: ../src/guestfs.pod:697
1382 msgid ""
1383 "The API is broadly identical in all supported languages.  This means that "
1384 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1385 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1386 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1387 "each language."
1388 msgstr ""
1389
1390 #. type: textblock
1391 #: ../src/guestfs.pod:703
1392 msgid ""
1393 "Error messages are automatically transformed into exceptions if the language "
1394 "supports it."
1395 msgstr ""
1396
1397 #. type: textblock
1398 #: ../src/guestfs.pod:706
1399 msgid ""
1400 "We don't try to \"object orientify\" parts of the API in OO languages, "
1401 "although contributors are welcome to write higher level APIs above what we "
1402 "provide in their favourite languages if they wish."
1403 msgstr ""
1404
1405 #. type: =item
1406 #: ../src/guestfs.pod:712
1407 msgid "B<C++>"
1408 msgstr ""
1409
1410 #. type: textblock
1411 #: ../src/guestfs.pod:714
1412 msgid ""
1413 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1414 "identical to the C API.  C++ classes and exceptions are not used."
1415 msgstr ""
1416
1417 #. type: =item
1418 #: ../src/guestfs.pod:718
1419 msgid "B<C#>"
1420 msgstr ""
1421
1422 #. type: textblock
1423 #: ../src/guestfs.pod:720
1424 msgid ""
1425 "The C# bindings are highly experimental.  Please read the warnings at the "
1426 "top of C<csharp/Libguestfs.cs>."
1427 msgstr ""
1428
1429 #. type: =item
1430 #: ../src/guestfs.pod:723
1431 msgid "B<Haskell>"
1432 msgstr ""
1433
1434 #. type: textblock
1435 #: ../src/guestfs.pod:725
1436 msgid ""
1437 "This is the only language binding that is working but incomplete.  Only "
1438 "calls which return simple integers have been bound in Haskell, and we are "
1439 "looking for help to complete this binding."
1440 msgstr ""
1441
1442 #. type: =item
1443 #: ../src/guestfs.pod:729
1444 msgid "B<Java>"
1445 msgstr ""
1446
1447 #. type: textblock
1448 #: ../src/guestfs.pod:731
1449 msgid ""
1450 "Full documentation is contained in the Javadoc which is distributed with "
1451 "libguestfs."
1452 msgstr ""
1453
1454 #. type: =item
1455 #: ../src/guestfs.pod:734
1456 msgid "B<OCaml>"
1457 msgstr ""
1458
1459 #. type: textblock
1460 #: ../src/guestfs.pod:736
1461 msgid "See L<guestfs-ocaml(3)>."
1462 msgstr ""
1463
1464 #. type: =item
1465 #: ../src/guestfs.pod:738
1466 msgid "B<Perl>"
1467 msgstr ""
1468
1469 #. type: textblock
1470 #: ../src/guestfs.pod:740
1471 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1472 msgstr ""
1473
1474 #. type: =item
1475 #: ../src/guestfs.pod:742
1476 msgid "B<PHP>"
1477 msgstr ""
1478
1479 #. type: textblock
1480 #: ../src/guestfs.pod:744
1481 msgid ""
1482 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1483 "the php-libguestfs package for your distribution."
1484 msgstr ""
1485
1486 #. type: textblock
1487 #: ../src/guestfs.pod:747
1488 msgid "The PHP binding only works correctly on 64 bit machines."
1489 msgstr ""
1490
1491 #. type: =item
1492 #: ../src/guestfs.pod:749
1493 msgid "B<Python>"
1494 msgstr ""
1495
1496 #. type: textblock
1497 #: ../src/guestfs.pod:751
1498 msgid "See L<guestfs-python(3)>."
1499 msgstr ""
1500
1501 #. type: =item
1502 #: ../src/guestfs.pod:753
1503 msgid "B<Ruby>"
1504 msgstr ""
1505
1506 #. type: textblock
1507 #: ../src/guestfs.pod:755
1508 msgid "See L<guestfs-ruby(3)>."
1509 msgstr ""
1510
1511 #. type: =item
1512 #: ../src/guestfs.pod:757
1513 msgid "B<shell scripts>"
1514 msgstr ""
1515
1516 #. type: textblock
1517 #: ../src/guestfs.pod:759
1518 msgid "See L<guestfish(1)>."
1519 msgstr ""
1520
1521 #. type: =head2
1522 #: ../src/guestfs.pod:763
1523 msgid "LIBGUESTFS GOTCHAS"
1524 msgstr ""
1525
1526 #. type: textblock
1527 #: ../src/guestfs.pod:765
1528 msgid ""
1529 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1530 "system [...] that works in the way it is documented but is counterintuitive "
1531 "and almost invites mistakes.\""
1532 msgstr ""
1533
1534 #. type: textblock
1535 #: ../src/guestfs.pod:769
1536 msgid ""
1537 "Since we developed libguestfs and the associated tools, there are several "
1538 "things we would have designed differently, but are now stuck with for "
1539 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1540 "release, you can expect these to change.  Beware of them."
1541 msgstr ""
1542
1543 #. type: =item
1544 #: ../src/guestfs.pod:777
1545 msgid "Autosync / forgetting to sync."
1546 msgstr ""
1547
1548 #. type: textblock
1549 #: ../src/guestfs.pod:779
1550 msgid ""
1551 "When modifying a filesystem from C or another language, you B<must> unmount "
1552 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1553 "libguestfs handle.  You can also call:"
1554 msgstr ""
1555
1556 #. type: verbatim
1557 #: ../src/guestfs.pod:783
1558 #, no-wrap
1559 msgid ""
1560 " guestfs_set_autosync (g, 1);\n"
1561 "\n"
1562 msgstr ""
1563
1564 #. type: textblock
1565 #: ../src/guestfs.pod:785
1566 msgid ""
1567 "to have the unmount/sync done automatically for you when the handle 'g' is "
1568 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1569 "q.v.)"
1570 msgstr ""
1571
1572 #. type: textblock
1573 #: ../src/guestfs.pod:789
1574 msgid ""
1575 "If you forget to do this, then it is entirely possible that your changes "
1576 "won't be written out, or will be partially written, or (very rarely) that "
1577 "you'll get disk corruption."
1578 msgstr ""
1579
1580 #. type: textblock
1581 #: ../src/guestfs.pod:793
1582 msgid ""
1583 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1584 "guestfish scripts that forget to sync will work just fine, which can make "
1585 "this very puzzling if you are trying to debug a problem."
1586 msgstr ""
1587
1588 #. type: textblock
1589 #: ../src/guestfs.pod:797
1590 msgid ""
1591 "Update: Autosync is enabled by default for all API users starting from "
1592 "libguestfs 1.5.24."
1593 msgstr ""
1594
1595 #. type: =item
1596 #: ../src/guestfs.pod:800
1597 msgid "Mount option C<-o sync> should not be the default."
1598 msgstr ""
1599
1600 #. type: textblock
1601 #: ../src/guestfs.pod:802
1602 msgid ""
1603 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1604 "However C<-o sync> does not add any reliability benefit, but does have a "
1605 "very large performance impact."
1606 msgstr ""
1607
1608 #. type: textblock
1609 #: ../src/guestfs.pod:806
1610 msgid ""
1611 "The work around is to use L</guestfs_mount_options> and set the mount "
1612 "options that you actually want to use."
1613 msgstr ""
1614
1615 #. type: =item
1616 #: ../src/guestfs.pod:809
1617 msgid "Read-only should be the default."
1618 msgstr ""
1619
1620 #. type: textblock
1621 #: ../src/guestfs.pod:811
1622 msgid ""
1623 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1624 "specify I<--rw> if you want to make changes to the image."
1625 msgstr ""
1626
1627 #. type: textblock
1628 #: ../src/guestfs.pod:814
1629 msgid "This would reduce the potential to corrupt live VM images."
1630 msgstr ""
1631
1632 #. type: textblock
1633 #: ../src/guestfs.pod:816
1634 msgid ""
1635 "Note that many filesystems change the disk when you just mount and unmount, "
1636 "even if you didn't perform any writes.  You need to use "
1637 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1638 msgstr ""
1639
1640 #. type: =item
1641 #: ../src/guestfs.pod:820
1642 msgid "guestfish command line is hard to use."
1643 msgstr ""
1644
1645 #. type: textblock
1646 #: ../src/guestfs.pod:822
1647 msgid ""
1648 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1649 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1650 "exist, so it fails.  In earlier versions of guestfish the error message was "
1651 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1652 "we should have used C<guestfish -c command> to run commands."
1653 msgstr ""
1654
1655 #. type: =item
1656 #: ../src/guestfs.pod:829
1657 msgid "guestfish megabyte modifiers don't work right on all commands"
1658 msgstr ""
1659
1660 #. type: textblock
1661 #: ../src/guestfs.pod:831
1662 msgid ""
1663 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1664 "other modifiers).  What guestfish actually does is to multiply the number "
1665 "part by the modifier part and pass the result to the C API.  However this "
1666 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1667 "expecting some other unit (eg. megabytes)."
1668 msgstr ""
1669
1670 #. type: textblock
1671 #: ../src/guestfs.pod:838
1672 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1673 msgstr ""
1674
1675 #. type: verbatim
1676 #: ../src/guestfs.pod:840
1677 #, no-wrap
1678 msgid ""
1679 " lvcreate LV VG 100M\n"
1680 "\n"
1681 msgstr ""
1682
1683 #. type: textblock
1684 #: ../src/guestfs.pod:842
1685 msgid ""
1686 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1687 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1688 "megabytes * megabytes) logical volume.  The error message you get from this "
1689 "is also a little obscure."
1690 msgstr ""
1691
1692 #. type: textblock
1693 #: ../src/guestfs.pod:847
1694 msgid ""
1695 "This could be fixed in the generator by specially marking parameters and "
1696 "return values which take bytes or other units."
1697 msgstr ""
1698
1699 #. type: =item
1700 #: ../src/guestfs.pod:850
1701 msgid "Ambiguity between devices and paths"
1702 msgstr ""
1703
1704 #. type: textblock
1705 #: ../src/guestfs.pod:852
1706 msgid ""
1707 "There is a subtle ambiguity in the API between a device name "
1708 "(eg. C</dev/sdb2>) and a similar pathname.  A file might just happen to be "
1709 "called C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1710 msgstr ""
1711
1712 #. type: textblock
1713 #: ../src/guestfs.pod:857
1714 msgid ""
1715 "In the current API we usually resolve this ambiguity by having two separate "
1716 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1717 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1718 "detecting if the path supplied begins with C</dev/>."
1719 msgstr ""
1720
1721 #. type: textblock
1722 #: ../src/guestfs.pod:863
1723 msgid ""
1724 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1725 "make paths/devices into structured names.  One way to do this would be to "
1726 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1727 "aspect of grub.  Another way would be to use a structured type, equivalent "
1728 "to this OCaml type:"
1729 msgstr ""
1730
1731 #. type: verbatim
1732 #: ../src/guestfs.pod:869
1733 #, no-wrap
1734 msgid ""
1735 " type path = Path of string | Device of int | Partition of int * int\n"
1736 "\n"
1737 msgstr ""
1738
1739 #. type: textblock
1740 #: ../src/guestfs.pod:871
1741 msgid "which would allow you to pass arguments like:"
1742 msgstr ""
1743
1744 #. type: verbatim
1745 #: ../src/guestfs.pod:873
1746 #, no-wrap
1747 msgid ""
1748 " Path \"/foo/bar\"\n"
1749 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1750 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1751 " Path \"/dev/sdb2\"    (* not a device *)\n"
1752 "\n"
1753 msgstr ""
1754
1755 #. type: textblock
1756 #: ../src/guestfs.pod:878
1757 msgid ""
1758 "As you can see there are still problems to resolve even with this "
1759 "representation.  Also consider how it might work in guestfish."
1760 msgstr ""
1761
1762 #. type: =head2
1763 #: ../src/guestfs.pod:883
1764 msgid "PROTOCOL LIMITS"
1765 msgstr ""
1766
1767 #. type: textblock
1768 #: ../src/guestfs.pod:885
1769 msgid ""
1770 "Internally libguestfs uses a message-based protocol to pass API calls and "
1771 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
1772 "plenty more detail about this).  The maximum message size used by the "
1773 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
1774 "aware of this limit.  The API calls which may be affected are individually "
1775 "documented, with a link back to this section of the documentation."
1776 msgstr ""
1777
1778 #. type: textblock
1779 #: ../src/guestfs.pod:893
1780 msgid ""
1781 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
1782 "a simple string.  Because this string is at some point internally encoded as "
1783 "a message, the maximum size that it can return is slightly under 4 MB.  If "
1784 "the requested file is larger than this then you will get an error."
1785 msgstr ""
1786
1787 #. type: textblock
1788 #: ../src/guestfs.pod:899
1789 msgid ""
1790 "In order to transfer large files into and out of the guest filesystem, you "
1791 "need to use particular calls that support this.  The sections L</UPLOADING> "
1792 "and L</DOWNLOADING> document how to do this."
1793 msgstr ""
1794
1795 #. type: textblock
1796 #: ../src/guestfs.pod:903
1797 msgid ""
1798 "You might also consider mounting the disk image using our FUSE filesystem "
1799 "support (L<guestmount(1)>)."
1800 msgstr ""
1801
1802 #. type: =head2
1803 #: ../src/guestfs.pod:906
1804 msgid "KEYS AND PASSPHRASES"
1805 msgstr ""
1806
1807 #. type: textblock
1808 #: ../src/guestfs.pod:908
1809 msgid ""
1810 "Certain libguestfs calls take a parameter that contains sensitive key "
1811 "material, passed in as a C string."
1812 msgstr ""
1813
1814 #. type: textblock
1815 #: ../src/guestfs.pod:911
1816 msgid ""
1817 "In the future we would hope to change the libguestfs implementation so that "
1818 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1819 "swap.  However this is I<not> done at the moment, because of the complexity "
1820 "of such an implementation."
1821 msgstr ""
1822
1823 #. type: textblock
1824 #: ../src/guestfs.pod:916
1825 msgid ""
1826 "Therefore you should be aware that any key parameter you pass to libguestfs "
1827 "might end up being written out to the swap partition.  If this is a concern, "
1828 "scrub the swap partition or don't use libguestfs on encrypted devices."
1829 msgstr ""
1830
1831 #. type: =head2
1832 #: ../src/guestfs.pod:921
1833 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1834 msgstr ""
1835
1836 #. type: textblock
1837 #: ../src/guestfs.pod:923
1838 msgid ""
1839 "All high-level libguestfs actions are synchronous.  If you want to use "
1840 "libguestfs asynchronously then you must create a thread."
1841 msgstr ""
1842
1843 #. type: textblock
1844 #: ../src/guestfs.pod:926
1845 msgid ""
1846 "Only use the handle from a single thread.  Either use the handle exclusively "
1847 "from one thread, or provide your own mutex so that two threads cannot issue "
1848 "calls on the same handle at the same time."
1849 msgstr ""
1850
1851 #. type: textblock
1852 #: ../src/guestfs.pod:930
1853 msgid ""
1854 "See the graphical program guestfs-browser for one possible architecture for "
1855 "multithreaded programs using libvirt and libguestfs."
1856 msgstr ""
1857
1858 #. type: =head2
1859 #: ../src/guestfs.pod:933
1860 msgid "PATH"
1861 msgstr ""
1862
1863 #. type: textblock
1864 #: ../src/guestfs.pod:935
1865 msgid ""
1866 "Libguestfs needs a kernel and initrd.img, which it finds by looking along an "
1867 "internal path."
1868 msgstr ""
1869
1870 #. type: textblock
1871 #: ../src/guestfs.pod:938
1872 msgid ""
1873 "By default it looks for these in the directory C<$libdir/guestfs> "
1874 "(eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1875 msgstr ""
1876
1877 #. type: textblock
1878 #: ../src/guestfs.pod:941
1879 msgid ""
1880 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1881 "to change the directories that libguestfs will search in.  The value is a "
1882 "colon-separated list of paths.  The current directory is I<not> searched "
1883 "unless the path contains an empty element or C<.>.  For example "
1884 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1885 "then C</usr/lib/guestfs>."
1886 msgstr ""
1887
1888 #. type: =head2
1889 #: ../src/guestfs.pod:948
1890 msgid "QEMU WRAPPERS"
1891 msgstr ""
1892
1893 #. type: textblock
1894 #: ../src/guestfs.pod:950
1895 msgid ""
1896 "If you want to compile your own qemu, run qemu from a non-standard location, "
1897 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1898 "around qemu."
1899 msgstr ""
1900
1901 #. type: textblock
1902 #: ../src/guestfs.pod:954
1903 msgid ""
1904 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1905 "last command in the shell script (so that qemu replaces the shell and "
1906 "becomes the direct child of the libguestfs-using program).  If you don't do "
1907 "this, then the qemu process won't be cleaned up correctly."
1908 msgstr ""
1909
1910 #. type: textblock
1911 #: ../src/guestfs.pod:959
1912 msgid ""
1913 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1914 "source:"
1915 msgstr ""
1916
1917 #. type: verbatim
1918 #: ../src/guestfs.pod:962
1919 #, no-wrap
1920 msgid ""
1921 " #!/bin/sh -\n"
1922 " qemudir=/home/rjones/d/qemu\n"
1923 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "
1924 "\"$@\"\n"
1925 "\n"
1926 msgstr ""
1927
1928 #. type: textblock
1929 #: ../src/guestfs.pod:966
1930 msgid ""
1931 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1932 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1933 "example:"
1934 msgstr ""
1935
1936 #. type: verbatim
1937 #: ../src/guestfs.pod:970
1938 #, no-wrap
1939 msgid ""
1940 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1941 "\n"
1942 msgstr ""
1943
1944 #. type: textblock
1945 #: ../src/guestfs.pod:972
1946 msgid ""
1947 "Note that libguestfs also calls qemu with the -help and -version options in "
1948 "order to determine features."
1949 msgstr ""
1950
1951 #. type: =head2
1952 #: ../src/guestfs.pod:975
1953 msgid "ABI GUARANTEE"
1954 msgstr ""
1955
1956 #. type: textblock
1957 #: ../src/guestfs.pod:977
1958 msgid ""
1959 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
1960 "actions as outlined in this section.  Although we will deprecate some "
1961 "actions, for example if they get replaced by newer calls, we will keep the "
1962 "old actions forever.  This allows you the developer to program in confidence "
1963 "against the libguestfs API."
1964 msgstr ""
1965
1966 #. type: =head2
1967 #: ../src/guestfs.pod:983
1968 msgid "BLOCK DEVICE NAMING"
1969 msgstr ""
1970
1971 #. type: textblock
1972 #: ../src/guestfs.pod:985
1973 msgid ""
1974 "In the kernel there is now quite a profusion of schemata for naming block "
1975 "devices (in this context, by I<block device> I mean a physical or virtual "
1976 "hard drive).  The original Linux IDE driver used names starting with "
1977 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme, "
1978 "C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
1979 "replacement for the old IDE driver (particularly for SATA devices) those "
1980 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
1981 "machines with paravirtualized drivers.  This has created several different "
1982 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
1983 "Xen PV disks."
1984 msgstr ""
1985
1986 #. type: textblock
1987 #: ../src/guestfs.pod:997
1988 msgid ""
1989 "As discussed above, libguestfs uses a qemu appliance running an embedded "
1990 "Linux kernel to access block devices.  We can run a variety of appliances "
1991 "based on a variety of Linux kernels."
1992 msgstr ""
1993
1994 #. type: textblock
1995 #: ../src/guestfs.pod:1001
1996 msgid ""
1997 "This causes a problem for libguestfs because many API calls use device or "
1998 "partition names.  Working scripts and the recipe (example) scripts that we "
1999 "make available over the internet could fail if the naming scheme changes."
2000 msgstr ""
2001
2002 #. type: textblock
2003 #: ../src/guestfs.pod:1006
2004 msgid ""
2005 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2006 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2007 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2008 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2009 msgstr ""
2010
2011 #. type: textblock
2012 #: ../src/guestfs.pod:1012
2013 msgid ""
2014 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2015 "L</guestfs_list_partitions> and similar calls return the true names of the "
2016 "devices and partitions as known to the appliance."
2017 msgstr ""
2018
2019 #. type: =head3
2020 #: ../src/guestfs.pod:1017
2021 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2022 msgstr ""
2023
2024 #. type: textblock
2025 #: ../src/guestfs.pod:1019
2026 msgid ""
2027 "Usually this translation is transparent.  However in some (very rare)  cases "
2028 "you may need to know the exact algorithm.  Such cases include where you use "
2029 "L</guestfs_config> to add a mixture of virtio and IDE devices to the "
2030 "qemu-based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> "
2031 "devices."
2032 msgstr ""
2033
2034 #. type: textblock
2035 #: ../src/guestfs.pod:1025
2036 msgid ""
2037 "The algorithm is applied only to I<parameters> which are known to be either "
2038 "device or partition names.  Return values from functions such as "
2039 "L</guestfs_list_devices> are never changed."
2040 msgstr ""
2041
2042 #. type: textblock
2043 #: ../src/guestfs.pod:1033
2044 msgid "Is the string a parameter which is a device or partition name?"
2045 msgstr ""
2046
2047 #. type: textblock
2048 #: ../src/guestfs.pod:1037
2049 msgid "Does the string begin with C</dev/sd>?"
2050 msgstr ""
2051
2052 #. type: textblock
2053 #: ../src/guestfs.pod:1041
2054 msgid ""
2055 "Does the named device exist? If so, we use that device.  However if I<not> "
2056 "then we continue with this algorithm."
2057 msgstr ""
2058
2059 #. type: textblock
2060 #: ../src/guestfs.pod:1046
2061 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2062 msgstr ""
2063
2064 #. type: textblock
2065 #: ../src/guestfs.pod:1048
2066 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2067 msgstr ""
2068
2069 #. type: textblock
2070 #: ../src/guestfs.pod:1050
2071 msgid "If that named device exists, use it.  If not, continue."
2072 msgstr ""
2073
2074 #. type: textblock
2075 #: ../src/guestfs.pod:1054
2076 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2077 msgstr ""
2078
2079 #. type: textblock
2080 #: ../src/guestfs.pod:1056
2081 msgid "If that named device exists, use it.  If not, return an error."
2082 msgstr ""
2083
2084 #. type: =head3
2085 #: ../src/guestfs.pod:1060
2086 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2087 msgstr ""
2088
2089 #. type: textblock
2090 #: ../src/guestfs.pod:1062
2091 msgid ""
2092 "Although the standard naming scheme and automatic translation is useful for "
2093 "simple programs and guestfish scripts, for larger programs it is best not to "
2094 "rely on this mechanism."
2095 msgstr ""
2096
2097 #. type: textblock
2098 #: ../src/guestfs.pod:1066
2099 msgid ""
2100 "Where possible for maximum future portability programs using libguestfs "
2101 "should use these future-proof techniques:"
2102 msgstr ""
2103
2104 #. type: textblock
2105 #: ../src/guestfs.pod:1073
2106 msgid ""
2107 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2108 "device names, and then use those names directly."
2109 msgstr ""
2110
2111 #. type: textblock
2112 #: ../src/guestfs.pod:1076
2113 msgid "Since those device names exist by definition, they will never be translated."
2114 msgstr ""
2115
2116 #. type: textblock
2117 #: ../src/guestfs.pod:1081
2118 msgid ""
2119 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2120 "filesystem labels."
2121 msgstr ""
2122
2123 #. type: =head1
2124 #: ../src/guestfs.pod:1086
2125 msgid "SECURITY"
2126 msgstr ""
2127
2128 #. type: textblock
2129 #: ../src/guestfs.pod:1088
2130 msgid ""
2131 "This section discusses security implications of using libguestfs, "
2132 "particularly with untrusted or malicious guests or disk images."
2133 msgstr ""
2134
2135 #. type: =head2
2136 #: ../src/guestfs.pod:1091
2137 msgid "GENERAL SECURITY CONSIDERATIONS"
2138 msgstr ""
2139
2140 #. type: textblock
2141 #: ../src/guestfs.pod:1093
2142 msgid ""
2143 "Be careful with any files or data that you download from a guest (by "
2144 "\"download\" we mean not just the L</guestfs_download> command but any "
2145 "command that reads files, filenames, directories or anything else from a "
2146 "disk image).  An attacker could manipulate the data to fool your program "
2147 "into doing the wrong thing.  Consider cases such as:"
2148 msgstr ""
2149
2150 #. type: textblock
2151 #: ../src/guestfs.pod:1103
2152 msgid "the data (file etc) not being present"
2153 msgstr ""
2154
2155 #. type: textblock
2156 #: ../src/guestfs.pod:1107
2157 msgid "being present but empty"
2158 msgstr ""
2159
2160 #. type: textblock
2161 #: ../src/guestfs.pod:1111
2162 msgid "being much larger than normal"
2163 msgstr ""
2164
2165 #. type: textblock
2166 #: ../src/guestfs.pod:1115
2167 msgid "containing arbitrary 8 bit data"
2168 msgstr ""
2169
2170 #. type: textblock
2171 #: ../src/guestfs.pod:1119
2172 msgid "being in an unexpected character encoding"
2173 msgstr ""
2174
2175 #. type: textblock
2176 #: ../src/guestfs.pod:1123
2177 msgid "containing homoglyphs."
2178 msgstr ""
2179
2180 #. type: =head2
2181 #: ../src/guestfs.pod:1127
2182 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2183 msgstr ""
2184
2185 #. type: textblock
2186 #: ../src/guestfs.pod:1129
2187 msgid ""
2188 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2189 "(VFS) module can sometimes be escalated into exploits by deliberately "
2190 "creating a malicious, malformed filesystem.  These exploits are very severe "
2191 "for two reasons.  Firstly there are very many filesystem drivers in the "
2192 "kernel, and many of them are infrequently used and not much developer "
2193 "attention has been paid to the code.  Linux userspace helps potential "
2194 "crackers by detecting the filesystem type and automatically choosing the "
2195 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2196 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2197 "exploit (worse in some ways), giving immediate and total access to the "
2198 "system right down to the hardware level."
2199 msgstr ""
2200
2201 #. type: textblock
2202 #: ../src/guestfs.pod:1142
2203 msgid ""
2204 "That explains why you should never mount a filesystem from an untrusted "
2205 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2206 "inside a qemu virtual machine, usually running as a non-root user.  The "
2207 "attacker would need to write a filesystem which first exploited the kernel, "
2208 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2209 "the libguestfs protocol, and finally to be as serious as the host kernel "
2210 "exploit it would need to escalate its privileges to root.  This multi-step "
2211 "escalation, performed by a static piece of data, is thought to be extremely "
2212 "hard to do, although we never say 'never' about security issues."
2213 msgstr ""
2214
2215 #. type: textblock
2216 #: ../src/guestfs.pod:1153
2217 msgid ""
2218 "In any case callers can reduce the attack surface by forcing the filesystem "
2219 "type when mounting (use L</guestfs_mount_vfs>)."
2220 msgstr ""
2221
2222 #. type: =head2
2223 #: ../src/guestfs.pod:1156
2224 msgid "PROTOCOL SECURITY"
2225 msgstr ""
2226
2227 #. type: textblock
2228 #: ../src/guestfs.pod:1158
2229 msgid ""
2230 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2231 "defined upper message size.  However a program that uses libguestfs must "
2232 "also take care - for example you can write a program that downloads a binary "
2233 "from a disk image and executes it locally, and no amount of protocol "
2234 "security will save you from the consequences."
2235 msgstr ""
2236
2237 #. type: =head2
2238 #: ../src/guestfs.pod:1164
2239 msgid "INSPECTION SECURITY"
2240 msgstr ""
2241
2242 #. type: textblock
2243 #: ../src/guestfs.pod:1166
2244 msgid ""
2245 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2246 "directly from the guest, and these could contain any 8 bit data.  Callers "
2247 "should be careful to escape these before printing them to a structured file "
2248 "(for example, use HTML escaping if creating a web page)."
2249 msgstr ""
2250
2251 #. type: textblock
2252 #: ../src/guestfs.pod:1172
2253 msgid ""
2254 "Guest configuration may be altered in unusual ways by the administrator of "
2255 "the virtual machine, and may not reflect reality (particularly for untrusted "
2256 "or actively malicious guests).  For example we parse the hostname from "
2257 "configuration files like C</etc/sysconfig/network> that we find in the "
2258 "guest, but the guest administrator can easily manipulate these files to "
2259 "provide the wrong hostname."
2260 msgstr ""
2261
2262 #. type: textblock
2263 #: ../src/guestfs.pod:1180
2264 msgid ""
2265 "The inspection API parses guest configuration using two external libraries: "
2266 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2267 "designed to be robust in the face of malicious data, although denial of "
2268 "service attacks are still possible, for example with oversized configuration "
2269 "files."
2270 msgstr ""
2271
2272 #. type: =head2
2273 #: ../src/guestfs.pod:1186
2274 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2275 msgstr ""
2276
2277 #. type: textblock
2278 #: ../src/guestfs.pod:1188
2279 msgid ""
2280 "Be very cautious about running commands from the guest.  By running a "
2281 "command in the guest, you are giving CPU time to a binary that you do not "
2282 "control, under the same user account as the library, albeit wrapped in qemu "
2283 "virtualization.  More information and alternatives can be found in the "
2284 "section L</RUNNING COMMANDS>."
2285 msgstr ""
2286
2287 #. type: =head2
2288 #: ../src/guestfs.pod:1194
2289 msgid "CVE-2010-3851"
2290 msgstr ""
2291
2292 #. type: textblock
2293 #: ../src/guestfs.pod:1196
2294 msgid "https://bugzilla.redhat.com/642934"
2295 msgstr ""
2296
2297 #. type: textblock
2298 #: ../src/guestfs.pod:1198
2299 msgid ""
2300 "This security bug concerns the automatic disk format detection that qemu "
2301 "does on disk images."
2302 msgstr ""
2303
2304 #. type: textblock
2305 #: ../src/guestfs.pod:1201
2306 msgid ""
2307 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2308 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2309 "for one of the known headers, and if none is found then assuming the disk "
2310 "image must be raw."
2311 msgstr ""
2312
2313 #. type: textblock
2314 #: ../src/guestfs.pod:1206
2315 msgid ""
2316 "This allows a guest which has been given a raw disk image to write some "
2317 "other header.  At next boot (or when the disk image is accessed by "
2318 "libguestfs) qemu would do autodetection and think the disk image format was, "
2319 "say, qcow2 based on the header written by the guest."
2320 msgstr ""
2321
2322 #. type: textblock
2323 #: ../src/guestfs.pod:1211
2324 msgid ""
2325 "This in itself would not be a problem, but qcow2 offers many features, one "
2326 "of which is to allow a disk image to refer to another image (called the "
2327 "\"backing disk\").  It does this by placing the path to the backing disk "
2328 "into the qcow2 header.  This path is not validated and could point to any "
2329 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2330 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2331 "control of the attacker."
2332 msgstr ""
2333
2334 #. type: textblock
2335 #: ../src/guestfs.pod:1219
2336 msgid "In libguestfs this is rather hard to exploit except under two circumstances:"
2337 msgstr ""
2338
2339 #. type: textblock
2340 #: ../src/guestfs.pod:1226
2341 msgid "You have enabled the network or have opened the disk in write mode."
2342 msgstr ""
2343
2344 #. type: textblock
2345 #: ../src/guestfs.pod:1230
2346 msgid ""
2347 "You are also running untrusted code from the guest (see L</RUNNING "
2348 "COMMANDS>)."
2349 msgstr ""
2350
2351 #. type: textblock
2352 #: ../src/guestfs.pod:1235
2353 msgid ""
2354 "The way to avoid this is to specify the expected disk format when adding "
2355 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2356 "should always do this if the disk is raw format, and it's a good idea for "
2357 "other cases too."
2358 msgstr ""
2359
2360 #. type: textblock
2361 #: ../src/guestfs.pod:1240
2362 msgid ""
2363 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2364 "format is fetched from libvirt and passed through."
2365 msgstr ""
2366
2367 #. type: textblock
2368 #: ../src/guestfs.pod:1243
2369 msgid ""
2370 "For libguestfs tools, use the I<--format> command line parameter as "
2371 "appropriate."
2372 msgstr ""
2373
2374 #. type: =head1
2375 #: ../src/guestfs.pod:1246
2376 msgid "CONNECTION MANAGEMENT"
2377 msgstr ""
2378
2379 #. type: =head2
2380 #: ../src/guestfs.pod:1248
2381 msgid "guestfs_h *"
2382 msgstr ""
2383
2384 #. type: textblock
2385 #: ../src/guestfs.pod:1250
2386 msgid ""
2387 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2388 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2389 "handle and release all resources used."
2390 msgstr ""
2391
2392 #. type: textblock
2393 #: ../src/guestfs.pod:1254
2394 msgid ""
2395 "For information on using multiple handles and threads, see the section "
2396 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> below."
2397 msgstr ""
2398
2399 #. type: =head2
2400 #: ../src/guestfs.pod:1257
2401 msgid "guestfs_create"
2402 msgstr ""
2403
2404 #. type: verbatim
2405 #: ../src/guestfs.pod:1259
2406 #, no-wrap
2407 msgid ""
2408 " guestfs_h *guestfs_create (void);\n"
2409 "\n"
2410 msgstr ""
2411
2412 #. type: textblock
2413 #: ../src/guestfs.pod:1261
2414 msgid "Create a connection handle."
2415 msgstr ""
2416
2417 #. type: textblock
2418 #: ../src/guestfs.pod:1263
2419 msgid ""
2420 "You have to call L</guestfs_add_drive_opts> (or one of the equivalent calls) "
2421 "on the handle at least once."
2422 msgstr ""
2423
2424 #. type: textblock
2425 #: ../src/guestfs.pod:1266
2426 msgid ""
2427 "This function returns a non-NULL pointer to a handle on success or NULL on "
2428 "error."
2429 msgstr ""
2430
2431 #. type: textblock
2432 #: ../src/guestfs.pod:1269
2433 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2434 msgstr ""
2435
2436 #. type: textblock
2437 #: ../src/guestfs.pod:1271
2438 msgid ""
2439 "You may also want to configure error handling for the handle.  See L</ERROR "
2440 "HANDLING> section below."
2441 msgstr ""
2442
2443 #. type: =head2
2444 #: ../src/guestfs.pod:1274
2445 msgid "guestfs_close"
2446 msgstr ""
2447
2448 #. type: verbatim
2449 #: ../src/guestfs.pod:1276
2450 #, no-wrap
2451 msgid ""
2452 " void guestfs_close (guestfs_h *g);\n"
2453 "\n"
2454 msgstr ""
2455
2456 #. type: textblock
2457 #: ../src/guestfs.pod:1278
2458 msgid "This closes the connection handle and frees up all resources used."
2459 msgstr ""
2460
2461 #. type: =head1
2462 #: ../src/guestfs.pod:1280
2463 msgid "ERROR HANDLING"
2464 msgstr ""
2465
2466 #. type: textblock
2467 #: ../src/guestfs.pod:1282
2468 msgid ""
2469 "API functions can return errors.  For example, almost all functions that "
2470 "return C<int> will return C<-1> to indicate an error."
2471 msgstr ""
2472
2473 #. type: textblock
2474 #: ../src/guestfs.pod:1285
2475 msgid ""
2476 "Additional information is available for errors: an error message string and "
2477 "optionally an error number (errno) if the thing that failed was a system "
2478 "call."
2479 msgstr ""
2480
2481 #. type: textblock
2482 #: ../src/guestfs.pod:1289
2483 msgid ""
2484 "You can get at the additional information about the last error on the handle "
2485 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2486 "up an error handler with L</guestfs_set_error_handler>."
2487 msgstr ""
2488
2489 #. type: textblock
2490 #: ../src/guestfs.pod:1294
2491 msgid ""
2492 "When the handle is created, a default error handler is installed which "
2493 "prints the error message string to C<stderr>.  For small short-running "
2494 "command line programs it is sufficient to do:"
2495 msgstr ""
2496
2497 #. type: verbatim
2498 #: ../src/guestfs.pod:1298
2499 #, no-wrap
2500 msgid ""
2501 " if (guestfs_launch (g) == -1)\n"
2502 "   exit (EXIT_FAILURE);\n"
2503 "\n"
2504 msgstr ""
2505
2506 #. type: textblock
2507 #: ../src/guestfs.pod:1301
2508 msgid ""
2509 "since the default error handler will ensure that an error message has been "
2510 "printed to C<stderr> before the program exits."
2511 msgstr ""
2512
2513 #. type: textblock
2514 #: ../src/guestfs.pod:1304
2515 msgid ""
2516 "For other programs the caller will almost certainly want to install an "
2517 "alternate error handler or do error handling in-line like this:"
2518 msgstr ""
2519
2520 #. type: verbatim
2521 #: ../src/guestfs.pod:1307
2522 #, no-wrap
2523 msgid ""
2524 " g = guestfs_create ();\n"
2525 " \n"
2526 msgstr ""
2527
2528 #. type: verbatim
2529 #: ../src/guestfs.pod:1309
2530 #, no-wrap
2531 msgid ""
2532 " /* This disables the default behaviour of printing errors\n"
2533 "    on stderr. */\n"
2534 " guestfs_set_error_handler (g, NULL, NULL);\n"
2535 " \n"
2536 msgstr ""
2537
2538 #. type: verbatim
2539 #: ../src/guestfs.pod:1313
2540 #, no-wrap
2541 msgid ""
2542 " if (guestfs_launch (g) == -1) {\n"
2543 "   /* Examine the error message and print it etc. */\n"
2544 "   char *msg = guestfs_last_error (g);\n"
2545 "   int errnum = guestfs_last_errno (g);\n"
2546 "   fprintf (stderr, \"%s\\n\", msg);\n"
2547 "   /* ... */\n"
2548 "  }\n"
2549 "\n"
2550 msgstr ""
2551
2552 #. type: textblock
2553 #: ../src/guestfs.pod:1321
2554 msgid ""
2555 "Out of memory errors are handled differently.  The default action is to call "
2556 "L<abort(3)>.  If this is undesirable, then you can set a handler using "
2557 "L</guestfs_set_out_of_memory_handler>."
2558 msgstr ""
2559
2560 #. type: textblock
2561 #: ../src/guestfs.pod:1325
2562 msgid ""
2563 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2564 "because there is no handle if this happens there is no way to get additional "
2565 "error information.  However L</guestfs_create> is supposed to be a "
2566 "lightweight operation which can only fail because of insufficient memory (it "
2567 "returns NULL in this case)."
2568 msgstr ""
2569
2570 #. type: =head2
2571 #: ../src/guestfs.pod:1331
2572 msgid "guestfs_last_error"
2573 msgstr ""
2574
2575 #. type: verbatim
2576 #: ../src/guestfs.pod:1333
2577 #, no-wrap
2578 msgid ""
2579 " const char *guestfs_last_error (guestfs_h *g);\n"
2580 "\n"
2581 msgstr ""
2582
2583 #. type: textblock
2584 #: ../src/guestfs.pod:1335
2585 msgid ""
2586 "This returns the last error message that happened on C<g>.  If there has not "
2587 "been an error since the handle was created, then this returns C<NULL>."
2588 msgstr ""
2589
2590 #. type: textblock
2591 #: ../src/guestfs.pod:1339
2592 msgid ""
2593 "The lifetime of the returned string is until the next error occurs, or "
2594 "L</guestfs_close> is called."
2595 msgstr ""
2596
2597 #. type: =head2
2598 #: ../src/guestfs.pod:1342
2599 msgid "guestfs_last_errno"
2600 msgstr ""
2601
2602 #. type: verbatim
2603 #: ../src/guestfs.pod:1344
2604 #, no-wrap
2605 msgid ""
2606 " int guestfs_last_errno (guestfs_h *g);\n"
2607 "\n"
2608 msgstr ""
2609
2610 #. type: textblock
2611 #: ../src/guestfs.pod:1346
2612 msgid "This returns the last error number (errno) that happened on C<g>."
2613 msgstr ""
2614
2615 #. type: textblock
2616 #: ../src/guestfs.pod:1348
2617 msgid "If successful, an errno integer not equal to zero is returned."
2618 msgstr ""
2619
2620 #. type: textblock
2621 #: ../src/guestfs.pod:1350
2622 msgid "If no error, this returns 0.  This call can return 0 in three situations:"
2623 msgstr ""
2624
2625 #. type: textblock
2626 #: ../src/guestfs.pod:1357
2627 msgid "There has not been any error on the handle."
2628 msgstr ""
2629
2630 #. type: textblock
2631 #: ../src/guestfs.pod:1361
2632 msgid ""
2633 "There has been an error but the errno was meaningless.  This corresponds to "
2634 "the case where the error did not come from a failed system call, but for "
2635 "some other reason."
2636 msgstr ""
2637
2638 #. type: textblock
2639 #: ../src/guestfs.pod:1367
2640 msgid ""
2641 "There was an error from a failed system call, but for some reason the errno "
2642 "was not captured and returned.  This usually indicates a bug in libguestfs."
2643 msgstr ""
2644
2645 #. type: textblock
2646 #: ../src/guestfs.pod:1373
2647 msgid ""
2648 "Libguestfs tries to convert the errno from inside the applicance into a "
2649 "corresponding errno for the caller (not entirely trivial: the appliance "
2650 "might be running a completely different operating system from the library "
2651 "and error numbers are not standardized across Un*xen).  If this could not be "
2652 "done, then the error is translated to C<EINVAL>.  In practice this should "
2653 "only happen in very rare circumstances."
2654 msgstr ""
2655
2656 #. type: =head2
2657 #: ../src/guestfs.pod:1381
2658 msgid "guestfs_set_error_handler"
2659 msgstr ""
2660
2661 #. type: verbatim
2662 #: ../src/guestfs.pod:1383
2663 #, no-wrap
2664 msgid ""
2665 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2666 "                                           void *opaque,\n"
2667 "                                           const char *msg);\n"
2668 " void guestfs_set_error_handler (guestfs_h *g,\n"
2669 "                                 guestfs_error_handler_cb cb,\n"
2670 "                                 void *opaque);\n"
2671 "\n"
2672 msgstr ""
2673
2674 #. type: textblock
2675 #: ../src/guestfs.pod:1390
2676 msgid ""
2677 "The callback C<cb> will be called if there is an error.  The parameters "
2678 "passed to the callback are an opaque data pointer and the error message "
2679 "string."
2680 msgstr ""
2681
2682 #. type: textblock
2683 #: ../src/guestfs.pod:1394
2684 msgid ""
2685 "C<errno> is not passed to the callback.  To get that the callback must call "
2686 "L</guestfs_last_errno>."
2687 msgstr ""
2688
2689 #. type: textblock
2690 #: ../src/guestfs.pod:1397
2691 msgid ""
2692 "Note that the message string C<msg> is freed as soon as the callback "
2693 "function returns, so if you want to stash it somewhere you must make your "
2694 "own copy."
2695 msgstr ""
2696
2697 #. type: textblock
2698 #: ../src/guestfs.pod:1401
2699 msgid "The default handler prints messages on C<stderr>."
2700 msgstr ""
2701
2702 #. type: textblock
2703 #: ../src/guestfs.pod:1403
2704 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2705 msgstr ""
2706
2707 #. type: =head2
2708 #: ../src/guestfs.pod:1405
2709 msgid "guestfs_get_error_handler"
2710 msgstr ""
2711
2712 #. type: verbatim
2713 #: ../src/guestfs.pod:1407
2714 #, no-wrap
2715 msgid ""
2716 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2717 "                                                     void **opaque_rtn);\n"
2718 "\n"
2719 msgstr ""
2720
2721 #. type: textblock
2722 #: ../src/guestfs.pod:1410
2723 msgid "Returns the current error handler callback."
2724 msgstr ""
2725
2726 #. type: =head2
2727 #: ../src/guestfs.pod:1412
2728 msgid "guestfs_set_out_of_memory_handler"
2729 msgstr ""
2730
2731 #. type: verbatim
2732 #: ../src/guestfs.pod:1414
2733 #, no-wrap
2734 msgid ""
2735 " typedef void (*guestfs_abort_cb) (void);\n"
2736 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2737 "                                        guestfs_abort_cb);\n"
2738 "\n"
2739 msgstr ""
2740
2741 #. type: textblock
2742 #: ../src/guestfs.pod:1418
2743 msgid ""
2744 "The callback C<cb> will be called if there is an out of memory situation.  "
2745 "I<Note this callback must not return>."
2746 msgstr ""
2747
2748 #. type: textblock
2749 #: ../src/guestfs.pod:1421
2750 msgid "The default is to call L<abort(3)>."
2751 msgstr ""
2752
2753 #. type: textblock
2754 #: ../src/guestfs.pod:1423
2755 msgid "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2756 msgstr ""
2757
2758 #. type: =head2
2759 #: ../src/guestfs.pod:1426
2760 msgid "guestfs_get_out_of_memory_handler"
2761 msgstr ""
2762
2763 #. type: verbatim
2764 #: ../src/guestfs.pod:1428
2765 #, no-wrap
2766 msgid ""
2767 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2768 "\n"
2769 msgstr ""
2770
2771 #. type: textblock
2772 #: ../src/guestfs.pod:1430
2773 msgid "This returns the current out of memory handler."
2774 msgstr ""
2775
2776 #. type: =head1
2777 #: ../src/guestfs.pod:1432
2778 msgid "API CALLS"
2779 msgstr ""
2780
2781 #. type: textblock
2782 #: ../src/guestfs.pod:1434 ../fish/guestfish.pod:984
2783 msgid "@ACTIONS@"
2784 msgstr ""
2785
2786 #. type: =head1
2787 #: ../src/guestfs.pod:1436
2788 msgid "STRUCTURES"
2789 msgstr ""
2790
2791 #. type: textblock
2792 #: ../src/guestfs.pod:1438
2793 msgid "@STRUCTS@"
2794 msgstr ""
2795
2796 #. type: =head1
2797 #: ../src/guestfs.pod:1440
2798 msgid "AVAILABILITY"
2799 msgstr ""
2800
2801 #. type: =head2
2802 #: ../src/guestfs.pod:1442
2803 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2804 msgstr ""
2805
2806 #. type: textblock
2807 #: ../src/guestfs.pod:1444
2808 msgid ""
2809 "Using L</guestfs_available> you can test availability of the following "
2810 "groups of functions.  This test queries the appliance to see if the "
2811 "appliance you are currently using supports the functionality."
2812 msgstr ""
2813
2814 #. type: textblock
2815 #: ../src/guestfs.pod:1449
2816 msgid "@AVAILABILITY@"
2817 msgstr ""
2818
2819 #. type: =head2
2820 #: ../src/guestfs.pod:1451
2821 msgid "GUESTFISH supported COMMAND"
2822 msgstr ""
2823
2824 #. type: textblock
2825 #: ../src/guestfs.pod:1453
2826 msgid ""
2827 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2828 "prints out the available groups and whether they are supported by this build "
2829 "of libguestfs.  Note however that you have to do C<run> first."
2830 msgstr ""
2831
2832 #. type: =head2
2833 #: ../src/guestfs.pod:1458
2834 msgid "SINGLE CALLS AT COMPILE TIME"
2835 msgstr ""
2836
2837 #. type: textblock
2838 #: ../src/guestfs.pod:1460
2839 msgid ""
2840 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2841 "function, such as:"
2842 msgstr ""
2843
2844 #. type: verbatim
2845 #: ../src/guestfs.pod:1463
2846 #, no-wrap
2847 msgid ""
2848 " #define LIBGUESTFS_HAVE_DD 1\n"
2849 "\n"
2850 msgstr ""
2851
2852 #. type: textblock
2853 #: ../src/guestfs.pod:1465
2854 msgid "if L</guestfs_dd> is available."
2855 msgstr ""
2856
2857 #. type: textblock
2858 #: ../src/guestfs.pod:1467
2859 msgid ""
2860 "Before version 1.5.8, if you needed to test whether a single libguestfs "
2861 "function is available at compile time, we recommended using build tools such "
2862 "as autoconf or cmake.  For example in autotools you could use:"
2863 msgstr ""
2864
2865 #. type: verbatim
2866 #: ../src/guestfs.pod:1472
2867 #, no-wrap
2868 msgid ""
2869 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
2870 " AC_CHECK_FUNCS([guestfs_dd])\n"
2871 "\n"
2872 msgstr ""
2873
2874 #. type: textblock
2875 #: ../src/guestfs.pod:1475
2876 msgid ""
2877 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
2878 "in your program."
2879 msgstr ""
2880
2881 #. type: =head2
2882 #: ../src/guestfs.pod:1478
2883 msgid "SINGLE CALLS AT RUN TIME"
2884 msgstr ""
2885
2886 #. type: textblock
2887 #: ../src/guestfs.pod:1480
2888 msgid ""
2889 "Testing at compile time doesn't guarantee that a function really exists in "
2890 "the library.  The reason is that you might be dynamically linked against a "
2891 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
2892 "This situation unfortunately results in a segmentation fault, which is a "
2893 "shortcoming of the C dynamic linking system itself."
2894 msgstr ""
2895
2896 #. type: textblock
2897 #: ../src/guestfs.pod:1487
2898 msgid ""
2899 "You can use L<dlopen(3)> to test if a function is available at run time, as "
2900 "in this example program (note that you still need the compile time check as "
2901 "well):"
2902 msgstr ""
2903
2904 #. type: verbatim
2905 #: ../src/guestfs.pod:1491
2906 #, no-wrap
2907 msgid ""
2908 " #include <stdio.h>\n"
2909 " #include <stdlib.h>\n"
2910 " #include <unistd.h>\n"
2911 " #include <dlfcn.h>\n"
2912 " #include <guestfs.h>\n"
2913 " \n"
2914 msgstr ""
2915
2916 #. type: verbatim
2917 #: ../src/guestfs.pod:1497
2918 #, no-wrap
2919 msgid ""
2920 " main ()\n"
2921 " {\n"
2922 " #ifdef LIBGUESTFS_HAVE_DD\n"
2923 "   void *dl;\n"
2924 "   int has_function;\n"
2925 " \n"
2926 msgstr ""
2927
2928 #. type: verbatim
2929 #: ../src/guestfs.pod:1503
2930 #, no-wrap
2931 msgid ""
2932 "   /* Test if the function guestfs_dd is really available. */\n"
2933 "   dl = dlopen (NULL, RTLD_LAZY);\n"
2934 "   if (!dl) {\n"
2935 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
2936 "     exit (EXIT_FAILURE);\n"
2937 "   }\n"
2938 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
2939 "   dlclose (dl);\n"
2940 " \n"
2941 msgstr ""
2942
2943 #. type: verbatim
2944 #: ../src/guestfs.pod:1512
2945 #, no-wrap
2946 msgid ""
2947 "   if (!has_function)\n"
2948 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
2949 "   else {\n"
2950 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
2951 "     /* Now it's safe to call\n"
2952 "     guestfs_dd (g, \"foo\", \"bar\");\n"
2953 "     */\n"
2954 "   }\n"
2955 " #else\n"
2956 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
2957 " #endif\n"
2958 "  }\n"
2959 "\n"
2960 msgstr ""
2961
2962 #. type: textblock
2963 #: ../src/guestfs.pod:1525
2964 msgid ""
2965 "You may think the above is an awful lot of hassle, and it is.  There are "
2966 "other ways outside of the C linking system to ensure that this kind of "
2967 "incompatibility never arises, such as using package versioning:"
2968 msgstr ""
2969
2970 #. type: verbatim
2971 #: ../src/guestfs.pod:1530
2972 #, no-wrap
2973 msgid ""
2974 " Requires: libguestfs >= 1.0.80\n"
2975 "\n"
2976 msgstr ""
2977
2978 #. type: =head1
2979 #: ../src/guestfs.pod:1532
2980 msgid "CALLS WITH OPTIONAL ARGUMENTS"
2981 msgstr ""
2982
2983 #. type: textblock
2984 #: ../src/guestfs.pod:1534
2985 msgid ""
2986 "A recent feature of the API is the introduction of calls which take optional "
2987 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
2988 "takes variable arguments (ie. C<...>), as in this example:"
2989 msgstr ""
2990
2991 #. type: verbatim
2992 #: ../src/guestfs.pod:1539
2993 #, no-wrap
2994 msgid ""
2995 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
2996 "\n"
2997 msgstr ""
2998
2999 #. type: textblock
3000 #: ../src/guestfs.pod:1541
3001 msgid ""
3002 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3003 "call with no optional arguments specified:"
3004 msgstr ""
3005
3006 #. type: verbatim
3007 #: ../src/guestfs.pod:1544
3008 #, no-wrap
3009 msgid ""
3010 " guestfs_add_drive_opts (g, filename, -1);\n"
3011 "\n"
3012 msgstr ""
3013
3014 #. type: textblock
3015 #: ../src/guestfs.pod:1546
3016 msgid "With a single optional argument:"
3017 msgstr ""
3018
3019 #. type: verbatim
3020 #: ../src/guestfs.pod:1548
3021 #, no-wrap
3022 msgid ""
3023 " guestfs_add_drive_opts (g, filename,\n"
3024 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3025 "                         -1);\n"
3026 "\n"
3027 msgstr ""
3028
3029 #. type: textblock
3030 #: ../src/guestfs.pod:1552
3031 msgid "With two:"
3032 msgstr ""
3033
3034 #. type: verbatim
3035 #: ../src/guestfs.pod:1554
3036 #, no-wrap
3037 msgid ""
3038 " guestfs_add_drive_opts (g, filename,\n"
3039 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3040 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3041 "                         -1);\n"
3042 "\n"
3043 msgstr ""
3044
3045 #. type: textblock
3046 #: ../src/guestfs.pod:1559
3047 msgid ""
3048 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3049 "happen!"
3050 msgstr ""
3051
3052 #. type: =head2
3053 #: ../src/guestfs.pod:1562
3054 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3055 msgstr ""
3056
3057 #. type: textblock
3058 #: ../src/guestfs.pod:1564
3059 msgid ""
3060 "The second variant has the same name with the suffix C<_va>, which works the "
3061 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3062 "example function, this is declared:"
3063 msgstr ""
3064
3065 #. type: verbatim
3066 #: ../src/guestfs.pod:1568
3067 #, no-wrap
3068 msgid ""
3069 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3070 "                                va_list args);\n"
3071 "\n"
3072 msgstr ""
3073
3074 #. type: =head2
3075 #: ../src/guestfs.pod:1571
3076 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3077 msgstr ""
3078
3079 #. type: textblock
3080 #: ../src/guestfs.pod:1573
3081 msgid ""
3082 "The third variant is useful where you need to construct these calls.  You "
3083 "pass in a structure where you fill in the optional fields.  The structure "
3084 "has a bitmask as the first element which you must set to indicate which "
3085 "fields you have filled in.  For our example function the structure and call "
3086 "are declared:"
3087 msgstr ""
3088
3089 #. type: verbatim
3090 #: ../src/guestfs.pod:1579
3091 #, no-wrap
3092 msgid ""
3093 " struct guestfs_add_drive_opts_argv {\n"
3094 "   uint64_t bitmask;\n"
3095 "   int readonly;\n"
3096 "   const char *format;\n"
3097 "   /* ... */\n"
3098 " };\n"
3099 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3100 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3101 "\n"
3102 msgstr ""
3103
3104 #. type: textblock
3105 #: ../src/guestfs.pod:1588
3106 msgid "You could call it like this:"
3107 msgstr ""
3108
3109 #. type: verbatim
3110 #: ../src/guestfs.pod:1590
3111 #, no-wrap
3112 msgid ""
3113 " struct guestfs_add_drive_opts_argv optargs = {\n"
3114 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3115 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3116 "   .readonly = 1,\n"
3117 "   .format = \"qcow2\"\n"
3118 " };\n"
3119 " \n"
3120 msgstr ""
3121
3122 #. type: verbatim
3123 #: ../src/guestfs.pod:1597
3124 #, no-wrap
3125 msgid ""
3126 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3127 "\n"
3128 msgstr ""
3129
3130 #. type: textblock
3131 #: ../src/guestfs.pod:1599 ../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
3132 msgid "Notes:"
3133 msgstr ""
3134
3135 #. type: textblock
3136 #: ../src/guestfs.pod:1605
3137 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3138 msgstr ""
3139
3140 #. type: textblock
3141 #: ../src/guestfs.pod:1610
3142 msgid "You do not need to fill in all fields of the structure."
3143 msgstr ""
3144
3145 #. type: textblock
3146 #: ../src/guestfs.pod:1614
3147 msgid ""
3148 "There must be a one-to-one correspondence between fields of the structure "
3149 "that are filled in, and bits set in the bitmask."
3150 msgstr ""
3151
3152 #. type: =head2
3153 #: ../src/guestfs.pod:1619
3154 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3155 msgstr ""
3156
3157 #. type: textblock
3158 #: ../src/guestfs.pod:1621
3159 msgid ""
3160 "In other languages, optional arguments are expressed in the way that is "
3161 "natural for that language.  We refer you to the language-specific "
3162 "documentation for more details on that."
3163 msgstr ""
3164
3165 #. type: textblock
3166 #: ../src/guestfs.pod:1625
3167 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3168 msgstr ""
3169
3170 #. type: =head2
3171 #: ../src/guestfs.pod:1627
3172 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3173 msgstr ""
3174
3175 #. type: textblock
3176 #: ../src/guestfs.pod:1629
3177 msgid ""
3178 "The child process generates events in some situations.  Current events "
3179 "include: receiving a log message, the child process exits."
3180 msgstr ""
3181
3182 #. type: textblock
3183 #: ../src/guestfs.pod:1632
3184 msgid ""
3185 "Use the C<guestfs_set_*_callback> functions to set a callback for different "
3186 "types of events."
3187 msgstr ""
3188
3189 #. type: textblock
3190 #: ../src/guestfs.pod:1635
3191 msgid ""
3192 "Only I<one callback of each type> can be registered for each handle.  "
3193 "Calling C<guestfs_set_*_callback> again overwrites the previous callback of "
3194 "that type.  Cancel all callbacks of this type by calling this function with "
3195 "C<cb> set to C<NULL>."
3196 msgstr ""
3197
3198 #. type: =head2
3199 #: ../src/guestfs.pod:1640
3200 msgid "guestfs_set_log_message_callback"
3201 msgstr ""
3202
3203 #. type: verbatim
3204 #: ../src/guestfs.pod:1642
3205 #, no-wrap
3206 msgid ""
3207 " typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque,\n"
3208 "                                         char *buf, int len);\n"
3209 " void guestfs_set_log_message_callback (guestfs_h *g,\n"
3210 "                                        guestfs_log_message_cb cb,\n"
3211 "                                        void *opaque);\n"
3212 "\n"
3213 msgstr ""
3214
3215 #. type: textblock
3216 #: ../src/guestfs.pod:1648
3217 msgid ""
3218 "The callback function C<cb> will be called whenever qemu or the guest writes "
3219 "anything to the console."
3220 msgstr ""
3221
3222 #. type: textblock
3223 #: ../src/guestfs.pod:1651
3224 msgid "Use this function to capture kernel messages and similar."
3225 msgstr ""
3226
3227 #. type: textblock
3228 #: ../src/guestfs.pod:1653
3229 msgid ""
3230 "Normally there is no log message handler, and log messages are just "
3231 "discarded."
3232 msgstr ""
3233
3234 #. type: =head2
3235 #: ../src/guestfs.pod:1656
3236 msgid "guestfs_set_subprocess_quit_callback"
3237 msgstr ""
3238
3239 #. type: verbatim
3240 #: ../src/guestfs.pod:1658
3241 #, no-wrap
3242 msgid ""
3243 " typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);\n"
3244 " void guestfs_set_subprocess_quit_callback (guestfs_h *g,\n"
3245 "                                            guestfs_subprocess_quit_cb cb,\n"
3246 "                                            void *opaque);\n"
3247 "\n"
3248 msgstr ""
3249
3250 #. type: textblock
3251 #: ../src/guestfs.pod:1663
3252 msgid ""
3253 "The callback function C<cb> will be called when the child process quits, "
3254 "either asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3255 "corresponds to a transition from any state to the CONFIG state)."
3256 msgstr ""
3257
3258 #. type: =head2
3259 #: ../src/guestfs.pod:1668
3260 msgid "guestfs_set_launch_done_callback"
3261 msgstr ""
3262
3263 #. type: verbatim
3264 #: ../src/guestfs.pod:1670
3265 #, no-wrap
3266 msgid ""
3267 " typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);\n"
3268 " void guestfs_set_launch_done_callback (guestfs_h *g,\n"
3269 "                                        guestfs_launch_done_cb cb,\n"
3270 "                                        void *opaque);\n"
3271 "\n"
3272 msgstr ""
3273
3274 #. type: textblock
3275 #: ../src/guestfs.pod:1675
3276 msgid ""
3277 "The callback function C<cb> will be called when the child process becomes "
3278 "ready first time after it has been launched.  (This corresponds to a "
3279 "transition from LAUNCHING to the READY state)."
3280 msgstr ""
3281
3282 #. type: =head2
3283 #: ../src/guestfs.pod:1679
3284 msgid "guestfs_set_close_callback"
3285 msgstr ""
3286
3287 #. type: verbatim
3288 #: ../src/guestfs.pod:1681
3289 #, no-wrap
3290 msgid ""
3291 " typedef void (*guestfs_close_cb) (guestfs_h *g, void *opaque);\n"
3292 " void guestfs_set_close_callback (guestfs_h *g,\n"
3293 "                                  guestfs_close_cb cb,\n"
3294 "                                  void *opaque);\n"
3295 "\n"
3296 msgstr ""
3297
3298 #. type: textblock
3299 #: ../src/guestfs.pod:1686
3300 msgid ""
3301 "The callback function C<cb> will be called while the handle is being closed "
3302 "(synchronously from L</guestfs_close>)."
3303 msgstr ""
3304
3305 #. type: textblock
3306 #: ../src/guestfs.pod:1689
3307 msgid ""
3308 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3309 "handles that are open when the program exits.  This means that this callback "
3310 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3311 "problems in higher-level languages (eg. if your HLL interpreter has already "
3312 "been cleaned up by the time this is called, and if your callback then jumps "
3313 "into some HLL function)."
3314 msgstr ""
3315
3316 #. type: =head2
3317 #: ../src/guestfs.pod:1697
3318 msgid "guestfs_set_progress_callback"
3319 msgstr ""
3320
3321 #. type: verbatim
3322 #: ../src/guestfs.pod:1699
3323 #, no-wrap
3324 msgid ""
3325 " typedef void (*guestfs_progress_cb) (guestfs_h *g, void *opaque,\n"
3326 "                                      int proc_nr, int serial,\n"
3327 "                                      uint64_t position, uint64_t total);\n"
3328 " void guestfs_set_progress_callback (guestfs_h *g,\n"
3329 "                                     guestfs_progress_cb cb,\n"
3330 "                                     void *opaque);\n"
3331 "\n"
3332 msgstr ""
3333
3334 #. type: textblock
3335 #: ../src/guestfs.pod:1706
3336 msgid ""
3337 "Some long-running operations can generate progress messages.  If this "
3338 "callback is registered, then it will be called each time a progress message "
3339 "is generated (usually two seconds after the operation started, and three "
3340 "times per second thereafter until it completes, although the frequency may "
3341 "change in future versions)."
3342 msgstr ""
3343
3344 #. type: textblock
3345 #: ../src/guestfs.pod:1712
3346 msgid ""
3347 "The callback receives two numbers: C<position> and C<total>.  The units of "
3348 "C<total> are not defined, although for some operations C<total> may relate "
3349 "in some way to the amount of data to be transferred (eg. in bytes or "
3350 "megabytes), and C<position> may be the portion which has been transferred."
3351 msgstr ""
3352
3353 #. type: textblock
3354 #: ../src/guestfs.pod:1718
3355 msgid "The only defined and stable parts of the API are:"
3356 msgstr ""
3357
3358 #. type: textblock
3359 #: ../src/guestfs.pod:1724
3360 msgid ""
3361 "The callback can display to the user some type of progress bar or indicator "
3362 "which shows the ratio of C<position>:C<total>."
3363 msgstr ""
3364
3365 #. type: textblock
3366 #: ../src/guestfs.pod:1729
3367 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3368 msgstr ""
3369
3370 #. type: textblock
3371 #: ../src/guestfs.pod:1733
3372 msgid ""
3373 "If any progress notification is sent during a call, then a final progress "
3374 "notification is always sent when C<position> = C<total>."
3375 msgstr ""
3376
3377 #. type: textblock
3378 #: ../src/guestfs.pod:1736
3379 msgid ""
3380 "This is to simplify caller code, so callers can easily set the progress "
3381 "indicator to \"100%\" at the end of the operation, without requiring special "
3382 "code to detect this case."
3383 msgstr ""
3384
3385 #. type: textblock
3386 #: ../src/guestfs.pod:1742
3387 msgid ""
3388 "The callback also receives the procedure number and serial number of the "
3389 "call.  These are only useful for debugging protocol issues, and the callback "
3390 "can normally ignore them.  The callback may want to print these numbers in "
3391 "error messages or debugging messages."
3392 msgstr ""
3393
3394 #. type: =head1
3395 #: ../src/guestfs.pod:1747
3396 msgid "PRIVATE DATA AREA"
3397 msgstr ""
3398
3399 #. type: textblock
3400 #: ../src/guestfs.pod:1749
3401 msgid ""
3402 "You can attach named pieces of private data to the libguestfs handle, and "
3403 "fetch them by name for the lifetime of the handle.  This is called the "
3404 "private data area and is only available from the C API."
3405 msgstr ""
3406
3407 #. type: textblock
3408 #: ../src/guestfs.pod:1753
3409 msgid "To attach a named piece of data, use the following call:"
3410 msgstr ""
3411
3412 #. type: verbatim
3413 #: ../src/guestfs.pod:1755
3414 #, no-wrap
3415 msgid ""
3416 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3417 "\n"
3418 msgstr ""
3419
3420 #. type: textblock
3421 #: ../src/guestfs.pod:1757
3422 msgid ""
3423 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3424 "pointer (which can be C<NULL>).  Any previous item with the same name is "
3425 "overwritten."
3426 msgstr ""
3427
3428 #. type: textblock
3429 #: ../src/guestfs.pod:1761
3430 msgid ""
3431 "You can use any C<key> you want, but names beginning with an underscore "
3432 "character are reserved for internal libguestfs purposes (for implementing "
3433 "language bindings).  It is recommended to prefix the name with some unique "
3434 "string to avoid collisions with other users."
3435 msgstr ""
3436
3437 #. type: textblock
3438 #: ../src/guestfs.pod:1766
3439 msgid "To retrieve the pointer, use:"
3440 msgstr ""
3441
3442 #. type: verbatim
3443 #: ../src/guestfs.pod:1768
3444 #, no-wrap
3445 msgid ""
3446 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3447 "\n"
3448 msgstr ""
3449
3450 #. type: textblock
3451 #: ../src/guestfs.pod:1770
3452 msgid ""
3453 "This function returns C<NULL> if either no data is found associated with "
3454 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3455 "C<NULL>."
3456 msgstr ""
3457
3458 #. type: textblock
3459 #: ../src/guestfs.pod:1774
3460 msgid ""
3461 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3462 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3463 "all.  In particular, libguestfs does I<not> try to free the data when the "
3464 "handle is closed.  If the data must be freed, then the caller must either "
3465 "free it before calling L</guestfs_close> or must set up a close callback to "
3466 "do it (see L</guestfs_set_close_callback>, and note that only one callback "
3467 "can be registered for a handle)."
3468 msgstr ""
3469
3470 #. type: textblock
3471 #: ../src/guestfs.pod:1782
3472 msgid ""
3473 "The private data area is implemented using a hash table, and should be "
3474 "reasonably efficient for moderate numbers of keys."
3475 msgstr ""
3476
3477 #. type: =end
3478 #: ../src/guestfs.pod:1785 ../src/guestfs.pod:1790
3479 msgid "html"
3480 msgstr ""
3481
3482 #. type: textblock
3483 #: ../src/guestfs.pod:1787
3484 msgid ""
3485 "<!-- old anchor for the next section --> <a "
3486 "name=\"state_machine_and_low_level_event_api\"/>"
3487 msgstr ""
3488
3489 #. type: =head1
3490 #: ../src/guestfs.pod:1792
3491 msgid "ARCHITECTURE"
3492 msgstr ""
3493
3494 #. type: textblock
3495 #: ../src/guestfs.pod:1794
3496 msgid ""
3497 "Internally, libguestfs is implemented by running an appliance (a special "
3498 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
3499 "process of the main program."
3500 msgstr ""
3501
3502 #. type: verbatim
3503 #: ../src/guestfs.pod:1798
3504 #, no-wrap
3505 msgid ""
3506 "  ___________________\n"
3507 " /                   \\\n"
3508 " | main program      |\n"
3509 " |                   |\n"
3510 " |                   |           child process / appliance\n"
3511 " |                   |           __________________________\n"
3512 " |                   |          / qemu                     \\\n"
3513 " +-------------------+   RPC    |      +-----------------+ |\n"
3514 " | libguestfs     <--------------------> guestfsd        | |\n"
3515 " |                   |          |      +-----------------+ |\n"
3516 " \\___________________/          |      | Linux kernel    | |\n"
3517 "                                |      +--^--------------+ |\n"
3518 "                                \\_________|________________/\n"
3519 "                                          |\n"
3520 "                                   _______v______\n"
3521 "                                  /              \\\n"
3522 "                                  | Device or    |\n"
3523 "                                  | disk image   |\n"
3524 "                                  \\______________/\n"
3525 "\n"
3526 msgstr ""
3527
3528 #. type: textblock
3529 #: ../src/guestfs.pod:1818
3530 msgid ""
3531 "The library, linked to the main program, creates the child process and hence "
3532 "the appliance in the L</guestfs_launch> function."
3533 msgstr ""
3534
3535 #. type: textblock
3536 #: ../src/guestfs.pod:1821
3537 msgid ""
3538 "Inside the appliance is a Linux kernel and a complete stack of userspace "
3539 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
3540 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
3541 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
3542 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
3543 "attached to the qemu process which translates device access by the "
3544 "appliance's Linux kernel into accesses to the image."
3545 msgstr ""
3546
3547 #. type: textblock
3548 #: ../src/guestfs.pod:1830
3549 msgid ""
3550 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
3551 "Although the disk image you are attached to might also be used by some "
3552 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
3553 "care if both libguestfs's qemu process and your virtual machine are trying "
3554 "to update the disk image at the same time, since these usually results in "
3555 "massive disk corruption)."
3556 msgstr ""
3557
3558 #. type: =head1
3559 #: ../src/guestfs.pod:1837
3560 msgid "STATE MACHINE"
3561 msgstr ""
3562
3563 #. type: textblock
3564 #: ../src/guestfs.pod:1839
3565 msgid "libguestfs uses a state machine to model the child process:"
3566 msgstr ""
3567
3568 #. type: verbatim
3569 #: ../src/guestfs.pod:1841
3570 #, no-wrap
3571 msgid ""
3572 "                         |\n"
3573 "                    guestfs_create\n"
3574 "                         |\n"
3575 "                         |\n"
3576 "                     ____V_____\n"
3577 "                    /          \\\n"
3578 "                    |  CONFIG  |\n"
3579 "                    \\__________/\n"
3580 "                     ^ ^   ^  \\\n"
3581 "                    /  |    \\  \\ guestfs_launch\n"
3582 "                   /   |    _\\__V______\n"
3583 "                  /    |   /           \\\n"
3584 "                 /     |   | LAUNCHING |\n"
3585 "                /      |   \\___________/\n"
3586 "               /       |       /\n"
3587 "              /        |  guestfs_launch\n"
3588 "             /         |     /\n"
3589 "    ______  /        __|____V\n"
3590 "   /      \\ ------> /        \\\n"
3591 "   | BUSY |         | READY  |\n"
3592 "   \\______/ <------ \\________/\n"
3593 "\n"
3594 msgstr ""
3595
3596 #. type: textblock
3597 #: ../src/guestfs.pod:1863
3598 msgid ""
3599 "The normal transitions are (1) CONFIG (when the handle is created, but there "
3600 "is no child process), (2) LAUNCHING (when the child process is booting up), "
3601 "(3) alternating between READY and BUSY as commands are issued to, and "
3602 "carried out by, the child process."
3603 msgstr ""
3604
3605 #. type: textblock
3606 #: ../src/guestfs.pod:1868
3607 msgid ""
3608 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
3609 "asynchronously at any time (eg. due to some internal error), and that causes "
3610 "the state to transition back to CONFIG."
3611 msgstr ""
3612
3613 #. type: textblock
3614 #: ../src/guestfs.pod:1872
3615 msgid ""
3616 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
3617 "issued when in the CONFIG state."
3618 msgstr ""
3619
3620 #. type: textblock
3621 #: ../src/guestfs.pod:1875
3622 msgid ""
3623 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
3624 "L</guestfs_launch> blocks until the child process is READY to accept "
3625 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
3626 "moves the state from CONFIG to LAUNCHING while it is running."
3627 msgstr ""
3628
3629 #. type: textblock
3630 #: ../src/guestfs.pod:1881
3631 msgid ""
3632 "API actions such as L</guestfs_mount> can only be issued when in the READY "
3633 "state.  These API calls block waiting for the command to be carried out "
3634 "(ie. the state to transition to BUSY and then back to READY).  There are no "
3635 "non-blocking versions, and no way to issue more than one command per handle "
3636 "at the same time."
3637 msgstr ""
3638
3639 #. type: textblock
3640 #: ../src/guestfs.pod:1887
3641 msgid ""
3642 "Finally, the child process sends asynchronous messages back to the main "
3643 "program, such as kernel log messages.  You can register a callback to "
3644 "receive these messages."
3645 msgstr ""
3646
3647 #. type: =head1
3648 #: ../src/guestfs.pod:1891
3649 msgid "INTERNALS"
3650 msgstr ""
3651
3652 #. type: =head2
3653 #: ../src/guestfs.pod:1893
3654 msgid "COMMUNICATION PROTOCOL"
3655 msgstr ""
3656
3657 #. type: textblock
3658 #: ../src/guestfs.pod:1895
3659 msgid ""
3660 "Don't rely on using this protocol directly.  This section documents how it "
3661 "currently works, but it may change at any time."
3662 msgstr ""
3663
3664 #. type: textblock
3665 #: ../src/guestfs.pod:1898
3666 msgid ""
3667 "The protocol used to talk between the library and the daemon running inside "
3668 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
3669 "1014, RFC 1832, RFC 4506)."
3670 msgstr ""
3671
3672 #. type: textblock
3673 #: ../src/guestfs.pod:1902
3674 msgid ""
3675 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
3676 "this file is automatically generated)."
3677 msgstr ""
3678
3679 #. type: textblock
3680 #: ../src/guestfs.pod:1905
3681 msgid ""
3682 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
3683 "and C<FileOut> parameters, which are handled with very simple request/reply "
3684 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
3685 "parameters, which use the same request and reply messages, but they may also "
3686 "be followed by files sent using a chunked encoding."
3687 msgstr ""
3688
3689 #. type: =head3
3690 #: ../src/guestfs.pod:1912
3691 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
3692 msgstr ""
3693
3694 #. type: textblock
3695 #: ../src/guestfs.pod:1914
3696 msgid "For ordinary functions, the request message is:"
3697 msgstr ""
3698
3699 #. type: verbatim
3700 #: ../src/guestfs.pod:1916
3701 #, no-wrap
3702 msgid ""
3703 " total length (header + arguments,\n"
3704 "      but not including the length word itself)\n"
3705 " struct guestfs_message_header (encoded as XDR)\n"
3706 " struct guestfs_<foo>_args (encoded as XDR)\n"
3707 "\n"
3708 msgstr ""
3709
3710 #. type: textblock
3711 #: ../src/guestfs.pod:1921
3712 msgid ""
3713 "The total length field allows the daemon to allocate a fixed size buffer "
3714 "into which it slurps the rest of the message.  As a result, the total length "
3715 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
3716 "effective size of any request is limited to somewhere under this size."
3717 msgstr ""
3718
3719 #. type: textblock
3720 #: ../src/guestfs.pod:1927
3721 msgid ""
3722 "Note also that many functions don't take any arguments, in which case the "
3723 "C<guestfs_I<foo>_args> is completely omitted."
3724 msgstr ""
3725
3726 #. type: textblock
3727 #: ../src/guestfs.pod:1930
3728 msgid ""
3729 "The header contains the procedure number (C<guestfs_proc>) which is how the "
3730 "receiver knows what type of args structure to expect, or none at all."
3731 msgstr ""
3732
3733 #. type: textblock
3734 #: ../src/guestfs.pod:1934
3735 msgid ""
3736 "For functions that take optional arguments, the optional arguments are "
3737 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
3738 "arguments.  A bitmask in the header indicates which optional arguments are "
3739 "meaningful.  The bitmask is also checked to see if it contains bits set "
3740 "which the daemon does not know about (eg. if more optional arguments were "
3741 "added in a later version of the library), and this causes the call to be "
3742 "rejected."
3743 msgstr ""
3744
3745 #. type: textblock
3746 #: ../src/guestfs.pod:1942
3747 msgid "The reply message for ordinary functions is:"
3748 msgstr ""
3749
3750 #. type: verbatim
3751 #: ../src/guestfs.pod:1944
3752 #, no-wrap
3753 msgid ""
3754 " total length (header + ret,\n"
3755 "      but not including the length word itself)\n"
3756 " struct guestfs_message_header (encoded as XDR)\n"
3757 " struct guestfs_<foo>_ret (encoded as XDR)\n"
3758 "\n"
3759 msgstr ""
3760
3761 #. type: textblock
3762 #: ../src/guestfs.pod:1949
3763 msgid ""
3764 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
3765 "functions that return no formal return values."
3766 msgstr ""
3767
3768 #. type: textblock
3769 #: ../src/guestfs.pod:1952
3770 msgid "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
3771 msgstr ""
3772
3773 #. type: textblock
3774 #: ../src/guestfs.pod:1955
3775 msgid ""
3776 "In the case of an error, a flag is set in the header, and the reply message "
3777 "is slightly changed:"
3778 msgstr ""
3779
3780 #. type: verbatim
3781 #: ../src/guestfs.pod:1958
3782 #, no-wrap
3783 msgid ""
3784 " total length (header + error,\n"
3785 "      but not including the length word itself)\n"
3786 " struct guestfs_message_header (encoded as XDR)\n"
3787 " struct guestfs_message_error (encoded as XDR)\n"
3788 "\n"
3789 msgstr ""
3790
3791 #. type: textblock
3792 #: ../src/guestfs.pod:1963
3793 msgid ""
3794 "The C<guestfs_message_error> structure contains the error message as a "
3795 "string."
3796 msgstr ""
3797
3798 #. type: =head3
3799 #: ../src/guestfs.pod:1966
3800 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
3801 msgstr ""
3802
3803 #. type: textblock
3804 #: ../src/guestfs.pod:1968
3805 msgid ""
3806 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
3807 "The normal request message is sent (see above).  However this is followed by "
3808 "a sequence of file chunks."
3809 msgstr ""
3810
3811 #. type: verbatim
3812 #: ../src/guestfs.pod:1972
3813 #, no-wrap
3814 msgid ""
3815 " total length (header + arguments,\n"
3816 "      but not including the length word itself,\n"
3817 "      and not including the chunks)\n"
3818 " struct guestfs_message_header (encoded as XDR)\n"
3819 " struct guestfs_<foo>_args (encoded as XDR)\n"
3820 " sequence of chunks for FileIn param #0\n"
3821 " sequence of chunks for FileIn param #1 etc.\n"
3822 "\n"
3823 msgstr ""
3824
3825 #. type: textblock
3826 #: ../src/guestfs.pod:1980
3827 msgid "The \"sequence of chunks\" is:"
3828 msgstr ""
3829
3830 #. type: verbatim
3831 #: ../src/guestfs.pod:1982
3832 #, no-wrap
3833 msgid ""
3834 " length of chunk (not including length word itself)\n"
3835 " struct guestfs_chunk (encoded as XDR)\n"
3836 " length of chunk\n"
3837 " struct guestfs_chunk (encoded as XDR)\n"
3838 "   ...\n"
3839 " length of chunk\n"
3840 " struct guestfs_chunk (with data.data_len == 0)\n"
3841 "\n"
3842 msgstr ""
3843
3844 #. type: textblock
3845 #: ../src/guestfs.pod:1990
3846 msgid ""
3847 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
3848 "is set in the final chunk to indicate either successful completion or early "
3849 "cancellation."
3850 msgstr ""
3851
3852 #. type: textblock
3853 #: ../src/guestfs.pod:1994
3854 msgid ""
3855 "At time of writing there are no functions that have more than one FileIn "
3856 "parameter.  However this is (theoretically) supported, by sending the "
3857 "sequence of chunks for each FileIn parameter one after another (from left to "
3858 "right)."
3859 msgstr ""
3860
3861 #. type: textblock
3862 #: ../src/guestfs.pod:1999
3863 msgid ""
3864 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
3865 "transfer.  The library does this by sending a chunk with a special flag set "
3866 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
3867 "RPC, does I<not> send any reply, and goes back to reading the next request."
3868 msgstr ""
3869
3870 #. type: textblock
3871 #: ../src/guestfs.pod:2005
3872 msgid ""
3873 "The daemon may also cancel.  It does this by writing a special word "
3874 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
3875 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
3876 "cancel chunk).  The special word is chosen so that even if cancellation "
3877 "happens right at the end of the transfer (after the library has finished "
3878 "writing and has started listening for the reply), the \"spurious\" cancel "
3879 "flag will not be confused with the reply message."
3880 msgstr ""
3881
3882 #. type: textblock
3883 #: ../src/guestfs.pod:2014
3884 msgid ""
3885 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
3886 "limit), and also files where the size is not known in advance (eg. from "
3887 "pipes or sockets).  However the chunks are rather small "
3888 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
3889 "to keep much in memory."
3890 msgstr ""
3891
3892 #. type: =head3
3893 #: ../src/guestfs.pod:2020
3894 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
3895 msgstr ""
3896
3897 #. type: textblock
3898 #: ../src/guestfs.pod:2022
3899 msgid ""
3900 "The protocol for FileOut parameters is exactly the same as for FileIn "
3901 "parameters, but with the roles of daemon and library reversed."
3902 msgstr ""
3903
3904 #. type: verbatim
3905 #: ../src/guestfs.pod:2025
3906 #, no-wrap
3907 msgid ""
3908 " total length (header + ret,\n"
3909 "      but not including the length word itself,\n"
3910 "      and not including the chunks)\n"
3911 " struct guestfs_message_header (encoded as XDR)\n"
3912 " struct guestfs_<foo>_ret (encoded as XDR)\n"
3913 " sequence of chunks for FileOut param #0\n"
3914 " sequence of chunks for FileOut param #1 etc.\n"
3915 "\n"
3916 msgstr ""
3917
3918 #. type: =head3
3919 #: ../src/guestfs.pod:2033
3920 msgid "INITIAL MESSAGE"
3921 msgstr ""
3922
3923 #. type: textblock
3924 #: ../src/guestfs.pod:2035
3925 msgid ""
3926 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
3927 "which indicates that the guest and daemon is alive.  This is what "
3928 "L</guestfs_launch> waits for."
3929 msgstr ""
3930
3931 #. type: =head3
3932 #: ../src/guestfs.pod:2039
3933 msgid "PROGRESS NOTIFICATION MESSAGES"
3934 msgstr ""
3935
3936 #. type: textblock
3937 #: ../src/guestfs.pod:2041
3938 msgid ""
3939 "The daemon may send progress notification messages at any time.  These are "
3940 "distinguished by the normal length word being replaced by "
3941 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
3942 msgstr ""
3943
3944 #. type: textblock
3945 #: ../src/guestfs.pod:2045
3946 msgid ""
3947 "The library turns them into progress callbacks (see "
3948 "C<guestfs_set_progress_callback>) if there is a callback registered, or "
3949 "discards them if not."
3950 msgstr ""
3951
3952 #. type: textblock
3953 #: ../src/guestfs.pod:2049
3954 msgid ""
3955 "The daemon self-limits the frequency of progress messages it sends (see "
3956 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
3957 "messages."
3958 msgstr ""
3959
3960 #. type: =head1
3961 #: ../src/guestfs.pod:2053
3962 msgid "LIBGUESTFS VERSION NUMBERS"
3963 msgstr ""
3964
3965 #. type: textblock
3966 #: ../src/guestfs.pod:2055
3967 msgid ""
3968 "Since April 2010, libguestfs has started to make separate development and "
3969 "stable releases, along with corresponding branches in our git repository.  "
3970 "These separate releases can be identified by version number:"
3971 msgstr ""
3972
3973 #. type: verbatim
3974 #: ../src/guestfs.pod:2060
3975 #, no-wrap
3976 msgid ""
3977 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
3978 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
3979 "       |\n"
3980 "       v\n"
3981 " 1  .  3  .  5\n"
3982 " ^           ^\n"
3983 " |           |\n"
3984 " |           `-------- sub-version\n"
3985 " |\n"
3986 " `------ always '1' because we don't change the ABI\n"
3987 "\n"
3988 msgstr ""
3989
3990 #. type: textblock
3991 #: ../src/guestfs.pod:2071
3992 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
3993 msgstr ""
3994
3995 #. type: textblock
3996 #: ../src/guestfs.pod:2073
3997 msgid ""
3998 "As time passes we cherry pick fixes from the development branch and backport "
3999 "those into the stable branch, the effect being that the stable branch should "
4000 "get more stable and less buggy over time.  So the stable releases are ideal "
4001 "for people who don't need new features but would just like the software to "
4002 "work."
4003 msgstr ""
4004
4005 #. type: textblock
4006 #: ../src/guestfs.pod:2079
4007 msgid "Our criteria for backporting changes are:"
4008 msgstr ""
4009
4010 #. type: textblock
4011 #: ../src/guestfs.pod:2085
4012 msgid ""
4013 "Documentation changes which don't affect any code are backported unless the "
4014 "documentation refers to a future feature which is not in stable."
4015 msgstr ""
4016
4017 #. type: textblock
4018 #: ../src/guestfs.pod:2091
4019 msgid ""
4020 "Bug fixes which are not controversial, fix obvious problems, and have been "
4021 "well tested are backported."
4022 msgstr ""
4023
4024 #. type: textblock
4025 #: ../src/guestfs.pod:2096
4026 msgid ""
4027 "Simple rearrangements of code which shouldn't affect how it works get "
4028 "backported.  This is so that the code in the two branches doesn't get too "
4029 "far out of step, allowing us to backport future fixes more easily."
4030 msgstr ""
4031
4032 #. type: textblock
4033 #: ../src/guestfs.pod:2102
4034 msgid ""
4035 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4036 "exceptional case: the new feature is required in order to implement an "
4037 "important bug fix."
4038 msgstr ""
4039
4040 #. type: textblock
4041 #: ../src/guestfs.pod:2108
4042 msgid ""
4043 "A new stable branch starts when we think the new features in development are "
4044 "substantial and compelling enough over the current stable branch to warrant "
4045 "it.  When that happens we create new stable and development versions 1.N.0 "
4046 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4047 "stable at this point, but by backporting fixes from development, that branch "
4048 "will stabilize over time."
4049 msgstr ""
4050
4051 #. type: =head1
4052 #: ../src/guestfs.pod:2116
4053 msgid "EXTENDING LIBGUESTFS"
4054 msgstr ""
4055
4056 #. type: =head2
4057 #: ../src/guestfs.pod:2118
4058 msgid "ADDING A NEW API ACTION"
4059 msgstr ""
4060
4061 #. type: textblock
4062 #: ../src/guestfs.pod:2120
4063 msgid ""
4064 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4065 "documentation) are generated, and this makes it easy to extend the "
4066 "libguestfs API."
4067 msgstr ""
4068
4069 #. type: textblock
4070 #: ../src/guestfs.pod:2124
4071 msgid "To add a new API action there are two changes:"
4072 msgstr ""
4073
4074 #. type: textblock
4075 #: ../src/guestfs.pod:2130
4076 msgid ""
4077 "You need to add a description of the call (name, parameters, return type, "
4078 "tests, documentation) to C<generator/generator_actions.ml>."
4079 msgstr ""
4080
4081 #. type: textblock
4082 #: ../src/guestfs.pod:2133
4083 msgid ""
4084 "There are two sorts of API action, depending on whether the call goes "
4085 "through to the daemon in the appliance, or is serviced entirely by the "
4086 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4087 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4088 "an example of the latter, since a trace flag is maintained in the handle and "
4089 "all tracing is done on the library side."
4090 msgstr ""
4091
4092 #. type: textblock
4093 #: ../src/guestfs.pod:2141
4094 msgid ""
4095 "Most new actions are of the first type, and get added to the "
4096 "C<daemon_functions> list.  Each function has a unique procedure number used "
4097 "in the RPC protocol which is assigned to that action when we publish "
4098 "libguestfs and cannot be reused.  Take the latest procedure number and "
4099 "increment it."
4100 msgstr ""
4101
4102 #. type: textblock
4103 #: ../src/guestfs.pod:2147
4104 msgid ""
4105 "For library-only actions of the second type, add to the "
4106 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4107 "library and do not travel over the RPC mechanism to the daemon, these "
4108 "functions do not need a procedure number, and so the procedure number is set "
4109 "to C<-1>."
4110 msgstr ""
4111
4112 #. type: textblock
4113 #: ../src/guestfs.pod:2155
4114 msgid "Implement the action (in C):"
4115 msgstr ""
4116
4117 #. type: textblock
4118 #: ../src/guestfs.pod:2157
4119 msgid ""
4120 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4121 "C<daemon/> directory."
4122 msgstr ""
4123
4124 #. type: textblock
4125 #: ../src/guestfs.pod:2160
4126 msgid ""
4127 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4128 "(note: double underscore) in the C<src/> directory."
4129 msgstr ""
4130
4131 #. type: textblock
4132 #: ../src/guestfs.pod:2163
4133 msgid "In either case, use another function as an example of what to do."
4134 msgstr ""
4135
4136 #. type: textblock
4137 #: ../src/guestfs.pod:2167
4138 msgid "After making these changes, use C<make> to compile."
4139 msgstr ""
4140
4141 #. type: textblock
4142 #: ../src/guestfs.pod:2169
4143 msgid ""
4144 "Note that you don't need to implement the RPC, language bindings, manual "
4145 "pages or anything else.  It's all automatically generated from the OCaml "
4146 "description."
4147 msgstr ""
4148
4149 #. type: =head2
4150 #: ../src/guestfs.pod:2173
4151 msgid "ADDING TESTS FOR AN API ACTION"
4152 msgstr ""
4153
4154 #. type: textblock
4155 #: ../src/guestfs.pod:2175
4156 msgid ""
4157 "You can supply zero or as many tests as you want per API call.  The tests "
4158 "can either be added as part of the API description "
4159 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4160 "drop a script into C<regressions/>.  Note that adding a script to "
4161 "C<regressions/> is slower, so if possible use the first method."
4162 msgstr ""
4163
4164 #. type: textblock
4165 #: ../src/guestfs.pod:2181
4166 msgid ""
4167 "The following describes the test environment used when you add an API test "
4168 "in C<generator_actions.ml>."
4169 msgstr ""
4170
4171 #. type: textblock
4172 #: ../src/guestfs.pod:2184
4173 msgid "The test environment has 4 block devices:"
4174 msgstr ""
4175
4176 #. type: =item
4177 #: ../src/guestfs.pod:2188
4178 msgid "C</dev/sda> 500MB"
4179 msgstr ""
4180
4181 #. type: textblock
4182 #: ../src/guestfs.pod:2190
4183 msgid "General block device for testing."
4184 msgstr ""
4185
4186 #. type: =item
4187 #: ../src/guestfs.pod:2192
4188 msgid "C</dev/sdb> 50MB"
4189 msgstr ""
4190
4191 #. type: textblock
4192 #: ../src/guestfs.pod:2194
4193 msgid ""
4194 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4195 "operations."
4196 msgstr ""
4197
4198 #. type: =item
4199 #: ../src/guestfs.pod:2197
4200 msgid "C</dev/sdc> 10MB"
4201 msgstr ""
4202
4203 #. type: textblock
4204 #: ../src/guestfs.pod:2199
4205 msgid "Used in a few tests where two block devices are needed."
4206 msgstr ""
4207
4208 #. type: =item
4209 #: ../src/guestfs.pod:2201
4210 msgid "C</dev/sdd>"
4211 msgstr ""
4212
4213 #. type: textblock
4214 #: ../src/guestfs.pod:2203
4215 msgid "ISO with fixed content (see C<images/test.iso>)."
4216 msgstr ""
4217
4218 #. type: textblock
4219 #: ../src/guestfs.pod:2207
4220 msgid ""
4221 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4222 "appliance and block devices are reused between tests.  So don't try testing "
4223 "L</guestfs_kill_subprocess> :-x"
4224 msgstr ""
4225
4226 #. type: textblock
4227 #: ../src/guestfs.pod:2211
4228 msgid ""
4229 "Each test starts with an initial scenario, selected using one of the "
4230 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4231 "initialize the disks mentioned above in a particular way as documented in "
4232 "C<generator_types.ml>.  You should not assume anything about the previous "
4233 "contents of other disks that are not initialized."
4234 msgstr ""
4235
4236 #. type: textblock
4237 #: ../src/guestfs.pod:2217
4238 msgid ""
4239 "You can add a prerequisite clause to any individual test.  This is a "
4240 "run-time check, which, if it fails, causes the test to be skipped.  Useful "
4241 "if testing a command which might not work on all variations of libguestfs "
4242 "builds.  A test that has prerequisite of C<Always> means to run "
4243 "unconditionally."
4244 msgstr ""
4245
4246 #. type: textblock
4247 #: ../src/guestfs.pod:2223
4248 msgid ""
4249 "In addition, packagers can skip individual tests by setting environment "
4250 "variables before running C<make check>."
4251 msgstr ""
4252
4253 #. type: verbatim
4254 #: ../src/guestfs.pod:2226
4255 #, no-wrap
4256 msgid ""
4257 " SKIP_TEST_<CMD>_<NUM>=1\n"
4258 "\n"
4259 msgstr ""
4260
4261 #. type: textblock
4262 #: ../src/guestfs.pod:2228
4263 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4264 msgstr ""
4265
4266 #. type: textblock
4267 #: ../src/guestfs.pod:2230
4268 msgid "or:"
4269 msgstr ""
4270
4271 #. type: verbatim
4272 #: ../src/guestfs.pod:2232
4273 #, no-wrap
4274 msgid ""
4275 " SKIP_TEST_<CMD>=1\n"
4276 "\n"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2234
4281 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4282 msgstr ""
4283
4284 #. type: textblock
4285 #: ../src/guestfs.pod:2236
4286 msgid "Packagers can run only certain tests by setting for example:"
4287 msgstr ""
4288
4289 #. type: verbatim
4290 #: ../src/guestfs.pod:2238
4291 #, no-wrap
4292 msgid ""
4293 " TEST_ONLY=\"vfs_type zerofree\"\n"
4294 "\n"
4295 msgstr ""
4296
4297 #. type: textblock
4298 #: ../src/guestfs.pod:2240
4299 msgid ""
4300 "See C<capitests/tests.c> for more details of how these environment variables "
4301 "work."
4302 msgstr ""
4303
4304 #. type: =head2
4305 #: ../src/guestfs.pod:2243
4306 msgid "DEBUGGING NEW API ACTIONS"
4307 msgstr ""
4308
4309 #. type: textblock
4310 #: ../src/guestfs.pod:2245
4311 msgid "Test new actions work before submitting them."
4312 msgstr ""
4313
4314 #. type: textblock
4315 #: ../src/guestfs.pod:2247
4316 msgid "You can use guestfish to try out new commands."
4317 msgstr ""
4318
4319 #. type: textblock
4320 #: ../src/guestfs.pod:2249
4321 msgid ""
4322 "Debugging the daemon is a problem because it runs inside a minimal "
4323 "environment.  However you can fprintf messages in the daemon to stderr, and "
4324 "they will show up if you use C<guestfish -v>."
4325 msgstr ""
4326
4327 #. type: =head2
4328 #: ../src/guestfs.pod:2253
4329 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4330 msgstr ""
4331
4332 #. type: textblock
4333 #: ../src/guestfs.pod:2255
4334 msgid ""
4335 "Our C source code generally adheres to some basic code-formatting "
4336 "conventions.  The existing code base is not totally consistent on this "
4337 "front, but we do prefer that contributed code be formatted similarly.  In "
4338 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4339 "indentation level, and other than that, follow the K&R style."
4340 msgstr ""
4341
4342 #. type: textblock
4343 #: ../src/guestfs.pod:2261
4344 msgid ""
4345 "If you use Emacs, add the following to one of one of your start-up files "
4346 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
4347 msgstr ""
4348
4349 #. type: verbatim
4350 #: ../src/guestfs.pod:2264
4351 #, no-wrap
4352 msgid ""
4353 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4354 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4355 " (add-hook 'find-file-hook\n"
4356 "     '(lambda () (if (and buffer-file-name\n"
4357 "                          (string-match \"/libguestfs\\\\>\"\n"
4358 "                              (buffer-file-name))\n"
4359 "                          (not (string-equal mode-name \"Change Log\"))\n"
4360 "                          (not (string-equal mode-name \"Makefile\")))\n"
4361 "                     (setq indent-tabs-mode nil))))\n"
4362 " \n"
4363 msgstr ""
4364
4365 #. type: verbatim
4366 #: ../src/guestfs.pod:2274
4367 #, no-wrap
4368 msgid ""
4369 " ;;; When editing C sources in libguestfs, use this style.\n"
4370 " (defun libguestfs-c-mode ()\n"
4371 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4372 "   (interactive)\n"
4373 "   (c-set-style \"K&R\")\n"
4374 "   (setq c-indent-level 2)\n"
4375 "   (setq c-basic-offset 2))\n"
4376 " (add-hook 'c-mode-hook\n"
4377 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
4378 "                               (buffer-file-name))\n"
4379 "                           (libguestfs-c-mode))))\n"
4380 "\n"
4381 msgstr ""
4382
4383 #. type: textblock
4384 #: ../src/guestfs.pod:2286
4385 msgid "Enable warnings when compiling (and fix any problems this finds):"
4386 msgstr ""
4387
4388 #. type: verbatim
4389 #: ../src/guestfs.pod:2289
4390 #, no-wrap
4391 msgid ""
4392 " ./configure --enable-gcc-warnings\n"
4393 "\n"
4394 msgstr ""
4395
4396 #. type: textblock
4397 #: ../src/guestfs.pod:2291
4398 msgid "Useful targets are:"
4399 msgstr ""
4400
4401 #. type: verbatim
4402 #: ../src/guestfs.pod:2293
4403 #, no-wrap
4404 msgid ""
4405 " make syntax-check  # checks the syntax of the C code\n"
4406 " make check         # runs the test suite\n"
4407 "\n"
4408 msgstr ""
4409
4410 #. type: =head2
4411 #: ../src/guestfs.pod:2296
4412 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
4413 msgstr ""
4414
4415 #. type: textblock
4416 #: ../src/guestfs.pod:2298
4417 msgid ""
4418 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
4419 "which are used to do shell quoting."
4420 msgstr ""
4421
4422 #. type: =item
4423 #: ../src/guestfs.pod:2303
4424 msgid "%Q"
4425 msgstr ""
4426
4427 #. type: textblock
4428 #: ../src/guestfs.pod:2305
4429 msgid ""
4430 "Simple shell quoted string.  Any spaces or other shell characters are "
4431 "escaped for you."
4432 msgstr ""
4433
4434 #. type: =item
4435 #: ../src/guestfs.pod:2308
4436 msgid "%R"
4437 msgstr ""
4438
4439 #. type: textblock
4440 #: ../src/guestfs.pod:2310
4441 msgid ""
4442 "Same as C<%Q> except the string is treated as a path which is prefixed by "
4443 "the sysroot."
4444 msgstr ""
4445
4446 #. type: textblock
4447 #: ../src/guestfs.pod:2315 ../fish/guestfish.pod:240 ../fish/guestfish.pod:594
4448 msgid "For example:"
4449 msgstr ""
4450
4451 #. type: verbatim
4452 #: ../src/guestfs.pod:2317
4453 #, no-wrap
4454 msgid ""
4455 " asprintf (&cmd, \"cat %R\", path);\n"
4456 "\n"
4457 msgstr ""
4458
4459 #. type: textblock
4460 #: ../src/guestfs.pod:2319
4461 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
4462 msgstr ""
4463
4464 #. type: textblock
4465 #: ../src/guestfs.pod:2321
4466 msgid ""
4467 "I<Note:> Do I<not> use these when you are passing parameters to the "
4468 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
4469 "because they are not passed via the shell (instead, straight to exec).  You "
4470 "probably want to use the C<sysroot_path()> function however."
4471 msgstr ""
4472
4473 #. type: =head2
4474 #: ../src/guestfs.pod:2327
4475 msgid "SUBMITTING YOUR NEW API ACTIONS"
4476 msgstr ""
4477
4478 #. type: textblock
4479 #: ../src/guestfs.pod:2329
4480 msgid ""
4481 "Submit patches to the mailing list: "
4482 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
4483 "L<rjones@redhat.com>."
4484 msgstr ""
4485
4486 #. type: =head2
4487 #: ../src/guestfs.pod:2333
4488 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
4489 msgstr ""
4490
4491 #. type: textblock
4492 #: ../src/guestfs.pod:2335
4493 msgid "We support i18n (gettext anyhow) in the library."
4494 msgstr ""
4495
4496 #. type: textblock
4497 #: ../src/guestfs.pod:2337
4498 msgid ""
4499 "However many messages come from the daemon, and we don't translate those at "
4500 "the moment.  One reason is that the appliance generally has all locale files "
4501 "removed from it, because they take up a lot of space.  So we'd have to readd "
4502 "some of those, as well as copying our PO files into the appliance."
4503 msgstr ""
4504
4505 #. type: textblock
4506 #: ../src/guestfs.pod:2343
4507 msgid ""
4508 "Debugging messages are never translated, since they are intended for the "
4509 "programmers."
4510 msgstr ""
4511
4512 #. type: =head2
4513 #: ../src/guestfs.pod:2346
4514 msgid "SOURCE CODE SUBDIRECTORIES"
4515 msgstr ""
4516
4517 #. type: =item
4518 #: ../src/guestfs.pod:2350
4519 msgid "C<appliance>"
4520 msgstr ""
4521
4522 #. type: textblock
4523 #: ../src/guestfs.pod:2352
4524 msgid "The libguestfs appliance, build scripts and so on."
4525 msgstr ""
4526
4527 #. type: =item
4528 #: ../src/guestfs.pod:2354
4529 msgid "C<capitests>"
4530 msgstr ""
4531
4532 #. type: textblock
4533 #: ../src/guestfs.pod:2356
4534 msgid "Automated tests of the C API."
4535 msgstr ""
4536
4537 #. type: =item
4538 #: ../src/guestfs.pod:2358
4539 msgid "C<cat>"
4540 msgstr ""
4541
4542 #. type: textblock
4543 #: ../src/guestfs.pod:2360
4544 msgid ""
4545 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
4546 "documentation."
4547 msgstr ""
4548
4549 #. type: =item
4550 #: ../src/guestfs.pod:2363
4551 msgid "C<contrib>"
4552 msgstr ""
4553
4554 #. type: textblock
4555 #: ../src/guestfs.pod:2365
4556 msgid "Outside contributions, experimental parts."
4557 msgstr ""
4558
4559 #. type: =item
4560 #: ../src/guestfs.pod:2367
4561 msgid "C<daemon>"
4562 msgstr ""
4563
4564 #. type: textblock
4565 #: ../src/guestfs.pod:2369
4566 msgid ""
4567 "The daemon that runs inside the libguestfs appliance and carries out "
4568 "actions."
4569 msgstr ""
4570
4571 #. type: =item
4572 #: ../src/guestfs.pod:2372
4573 msgid "C<df>"
4574 msgstr ""
4575
4576 #. type: textblock
4577 #: ../src/guestfs.pod:2374
4578 msgid "L<virt-df(1)> command and documentation."
4579 msgstr ""
4580
4581 #. type: =item
4582 #: ../src/guestfs.pod:2376
4583 msgid "C<examples>"
4584 msgstr ""
4585
4586 #. type: textblock
4587 #: ../src/guestfs.pod:2378
4588 msgid "C API example code."
4589 msgstr ""
4590
4591 #. type: =item
4592 #: ../src/guestfs.pod:2380
4593 msgid "C<fish>"
4594 msgstr ""
4595
4596 #. type: textblock
4597 #: ../src/guestfs.pod:2382
4598 msgid ""
4599 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
4600 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
4601 "L<virt-tar-out(1)>."
4602 msgstr ""
4603
4604 #. type: =item
4605 #: ../src/guestfs.pod:2386
4606 msgid "C<fuse>"
4607 msgstr ""
4608
4609 #. type: textblock
4610 #: ../src/guestfs.pod:2388
4611 msgid "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
4612 msgstr ""
4613
4614 #. type: =item
4615 #: ../src/guestfs.pod:2390
4616 msgid "C<generator>"
4617 msgstr ""
4618
4619 #. type: textblock
4620 #: ../src/guestfs.pod:2392
4621 msgid ""
4622 "The crucially important generator, used to automatically generate large "
4623 "amounts of boilerplate C code for things like RPC and bindings."
4624 msgstr ""
4625
4626 #. type: =item
4627 #: ../src/guestfs.pod:2395
4628 msgid "C<images>"
4629 msgstr ""
4630
4631 #. type: textblock
4632 #: ../src/guestfs.pod:2397
4633 msgid "Files used by the test suite."
4634 msgstr ""
4635
4636 #. type: textblock
4637 #: ../src/guestfs.pod:2399
4638 msgid "Some \"phony\" guest images which we test against."
4639 msgstr ""
4640
4641 #. type: =item
4642 #: ../src/guestfs.pod:2401
4643 msgid "C<inspector>"
4644 msgstr ""
4645
4646 #. type: textblock
4647 #: ../src/guestfs.pod:2403
4648 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
4649 msgstr ""
4650
4651 #. type: =item
4652 #: ../src/guestfs.pod:2405
4653 msgid "C<logo>"
4654 msgstr ""
4655
4656 #. type: textblock
4657 #: ../src/guestfs.pod:2407
4658 msgid "Logo used on the website.  The fish is called Arthur by the way."
4659 msgstr ""
4660
4661 #. type: =item
4662 #: ../src/guestfs.pod:2409
4663 msgid "C<m4>"
4664 msgstr ""
4665
4666 #. type: textblock
4667 #: ../src/guestfs.pod:2411
4668 msgid "M4 macros used by autoconf."
4669 msgstr ""
4670
4671 #. type: =item
4672 #: ../src/guestfs.pod:2413
4673 msgid "C<po>"
4674 msgstr ""
4675
4676 #. type: textblock
4677 #: ../src/guestfs.pod:2415
4678 msgid "Translations of simple gettext strings."
4679 msgstr ""
4680
4681 #. type: =item
4682 #: ../src/guestfs.pod:2417
4683 msgid "C<po-docs>"
4684 msgstr ""
4685
4686 #. type: textblock
4687 #: ../src/guestfs.pod:2419
4688 msgid ""
4689 "The build infrastructure and PO files for translations of manpages and POD "
4690 "files.  Eventually this will be combined with the C<po> directory, but that "
4691 "is rather complicated."
4692 msgstr ""
4693
4694 #. type: =item
4695 #: ../src/guestfs.pod:2423
4696 msgid "C<regressions>"
4697 msgstr ""
4698
4699 #. type: textblock
4700 #: ../src/guestfs.pod:2425
4701 msgid "Regression tests."
4702 msgstr ""
4703
4704 #. type: =item
4705 #: ../src/guestfs.pod:2427
4706 msgid "C<rescue>"
4707 msgstr ""
4708
4709 #. type: textblock
4710 #: ../src/guestfs.pod:2429
4711 msgid "L<virt-rescue(1)> command and documentation."
4712 msgstr ""
4713
4714 #. type: =item
4715 #: ../src/guestfs.pod:2431
4716 msgid "C<src>"
4717 msgstr ""
4718
4719 #. type: textblock
4720 #: ../src/guestfs.pod:2433
4721 msgid "Source code to the C library."
4722 msgstr ""
4723
4724 #. type: =item
4725 #: ../src/guestfs.pod:2435
4726 msgid "C<tools>"
4727 msgstr ""
4728
4729 #. type: textblock
4730 #: ../src/guestfs.pod:2437
4731 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
4732 msgstr ""
4733
4734 #. type: =item
4735 #: ../src/guestfs.pod:2439
4736 msgid "C<test-tool>"
4737 msgstr ""
4738
4739 #. type: textblock
4740 #: ../src/guestfs.pod:2441
4741 msgid ""
4742 "Test tool for end users to test if their qemu/kernel combination will work "
4743 "with libguestfs."
4744 msgstr ""
4745
4746 #. type: =item
4747 #: ../src/guestfs.pod:2444
4748 msgid "C<csharp>"
4749 msgstr ""
4750
4751 #. type: =item
4752 #: ../src/guestfs.pod:2446
4753 msgid "C<haskell>"
4754 msgstr ""
4755
4756 #. type: =item
4757 #: ../src/guestfs.pod:2448
4758 msgid "C<java>"
4759 msgstr ""
4760
4761 #. type: =item
4762 #: ../src/guestfs.pod:2450
4763 msgid "C<ocaml>"
4764 msgstr ""
4765
4766 #. type: =item
4767 #: ../src/guestfs.pod:2452
4768 msgid "C<php>"
4769 msgstr ""
4770
4771 #. type: =item
4772 #: ../src/guestfs.pod:2454
4773 msgid "C<perl>"
4774 msgstr ""
4775
4776 #. type: =item
4777 #: ../src/guestfs.pod:2456
4778 msgid "C<python>"
4779 msgstr ""
4780
4781 #. type: =item
4782 #: ../src/guestfs.pod:2458
4783 msgid "C<ruby>"
4784 msgstr ""
4785
4786 #. type: textblock
4787 #: ../src/guestfs.pod:2460
4788 msgid "Language bindings."
4789 msgstr ""
4790
4791 #. type: =head1
4792 #: ../src/guestfs.pod:2464 ../fish/guestfish.pod:991 ../test-tool/libguestfs-test-tool.pod:104 ../tools/virt-edit.pl:330
4793 msgid "ENVIRONMENT VARIABLES"
4794 msgstr ""
4795
4796 #. type: =item
4797 #: ../src/guestfs.pod:2468 ../fish/guestfish.pod:1017
4798 msgid "LIBGUESTFS_APPEND"
4799 msgstr ""
4800
4801 #. type: textblock
4802 #: ../src/guestfs.pod:2470 ../fish/guestfish.pod:1019
4803 msgid "Pass additional options to the guest kernel."
4804 msgstr ""
4805
4806 #. type: =item
4807 #: ../src/guestfs.pod:2472 ../fish/guestfish.pod:1021
4808 msgid "LIBGUESTFS_DEBUG"
4809 msgstr ""
4810
4811 #. type: textblock
4812 #: ../src/guestfs.pod:2474
4813 msgid ""
4814 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
4815 "effect as calling C<guestfs_set_verbose (g, 1)>."
4816 msgstr ""
4817
4818 #. type: =item
4819 #: ../src/guestfs.pod:2477 ../fish/guestfish.pod:1026
4820 msgid "LIBGUESTFS_MEMSIZE"
4821 msgstr ""
4822
4823 #. type: textblock
4824 #: ../src/guestfs.pod:2479 ../fish/guestfish.pod:1028
4825 msgid "Set the memory allocated to the qemu process, in megabytes.  For example:"
4826 msgstr ""
4827
4828 #. type: verbatim
4829 #: ../src/guestfs.pod:2482 ../fish/guestfish.pod:1031
4830 #, no-wrap
4831 msgid ""
4832 " LIBGUESTFS_MEMSIZE=700\n"
4833 "\n"
4834 msgstr ""
4835
4836 #. type: =item
4837 #: ../src/guestfs.pod:2484 ../fish/guestfish.pod:1033
4838 msgid "LIBGUESTFS_PATH"
4839 msgstr ""
4840
4841 #. type: textblock
4842 #: ../src/guestfs.pod:2486
4843 msgid ""
4844 "Set the path that libguestfs uses to search for kernel and initrd.img.  See "
4845 "the discussion of paths in section PATH above."
4846 msgstr ""
4847
4848 #. type: =item
4849 #: ../src/guestfs.pod:2489 ../fish/guestfish.pod:1038
4850 msgid "LIBGUESTFS_QEMU"
4851 msgstr ""
4852
4853 #. type: textblock
4854 #: ../src/guestfs.pod:2491 ../fish/guestfish.pod:1040
4855 msgid ""
4856 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
4857 "which was found at compile time by the configure script is used."
4858 msgstr ""
4859
4860 #. type: textblock
4861 #: ../src/guestfs.pod:2495
4862 msgid "See also L</QEMU WRAPPERS> above."
4863 msgstr ""
4864
4865 #. type: =item
4866 #: ../src/guestfs.pod:2497 ../fish/guestfish.pod:1044
4867 msgid "LIBGUESTFS_TRACE"
4868 msgstr ""
4869
4870 #. type: textblock
4871 #: ../src/guestfs.pod:2499
4872 msgid ""
4873 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
4874 "effect as calling C<guestfs_set_trace (g, 1)>."
4875 msgstr ""
4876
4877 #. type: =item
4878 #: ../src/guestfs.pod:2502 ../fish/guestfish.pod:1053
4879 msgid "TMPDIR"
4880 msgstr ""
4881
4882 #. type: textblock
4883 #: ../src/guestfs.pod:2504 ../fish/guestfish.pod:1055
4884 msgid ""
4885 "Location of temporary directory, defaults to C</tmp> except for the cached "
4886 "supermin appliance which defaults to C</var/tmp>."
4887 msgstr ""
4888
4889 #. type: textblock
4890 #: ../src/guestfs.pod:2507 ../fish/guestfish.pod:1058
4891 msgid ""
4892 "If libguestfs was compiled to use the supermin appliance then the real "
4893 "appliance is cached in this directory, shared between all handles belonging "
4894 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
4895 "use in case C</var/tmp> is not large enough."
4896 msgstr ""
4897
4898 #. type: =head1
4899 #: ../src/guestfs.pod:2515 ../fish/guestfish.pod:1116 ../test-tool/libguestfs-test-tool.pod:109 ../fuse/guestmount.pod:233 ../tools/virt-edit.pl:350 ../tools/virt-win-reg.pl:572 ../tools/virt-resize.pl:1483 ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:257
4900 msgid "SEE ALSO"
4901 msgstr ""
4902
4903 #. type: textblock
4904 #: ../src/guestfs.pod:2517
4905 msgid ""
4906 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, "
4907 "L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, "
4908 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
4909 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
4910 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
4911 "L<virt-rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
4912 "L<virt-win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
4913 "L<http://libguestfs.org/>."
4914 msgstr ""
4915
4916 #. type: textblock
4917 #: ../src/guestfs.pod:2544
4918 msgid ""
4919 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
4920 "L<lvm(8)>, L<disktype(1)>."
4921 msgstr ""
4922
4923 #. type: =head1
4924 #: ../src/guestfs.pod:2551 ../tools/virt-win-reg.pl:587 ../tools/virt-make-fs.pl:548
4925 msgid "BUGS"
4926 msgstr ""
4927
4928 #. type: textblock
4929 #: ../src/guestfs.pod:2553
4930 msgid "To get a list of bugs against libguestfs use this link:"
4931 msgstr ""
4932
4933 #. type: textblock
4934 #: ../src/guestfs.pod:2555
4935 msgid "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
4936 msgstr ""
4937
4938 #. type: textblock
4939 #: ../src/guestfs.pod:2557
4940 msgid "To report a new bug against libguestfs use this link:"
4941 msgstr ""
4942
4943 #. type: textblock
4944 #: ../src/guestfs.pod:2559
4945 msgid "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
4946 msgstr ""
4947
4948 #. type: textblock
4949 #: ../src/guestfs.pod:2561
4950 msgid "When reporting a bug, please check:"
4951 msgstr ""
4952
4953 #. type: textblock
4954 #: ../src/guestfs.pod:2567
4955 msgid "That the bug hasn't been reported already."
4956 msgstr ""
4957
4958 #. type: textblock
4959 #: ../src/guestfs.pod:2571
4960 msgid "That you are testing a recent version."
4961 msgstr ""
4962
4963 #. type: textblock
4964 #: ../src/guestfs.pod:2575
4965 msgid "Describe the bug accurately, and give a way to reproduce it."
4966 msgstr ""
4967
4968 #. type: textblock
4969 #: ../src/guestfs.pod:2579
4970 msgid ""
4971 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
4972 "bug report."
4973 msgstr ""
4974
4975 #. type: =head1
4976 #: ../src/guestfs.pod:2584 ../fish/guestfish.pod:1139 ../test-tool/libguestfs-test-tool.pod:115 ../fuse/guestmount.pod:244
4977 msgid "AUTHORS"
4978 msgstr ""
4979
4980 #. type: textblock
4981 #: ../src/guestfs.pod:2586 ../fish/guestfish.pod:1141 ../test-tool/libguestfs-test-tool.pod:117 ../fuse/guestmount.pod:246
4982 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
4983 msgstr ""
4984
4985 #. type: =head1
4986 #: ../src/guestfs.pod:2588 ../fish/guestfish.pod:1143 ../test-tool/libguestfs-test-tool.pod:119 ../fuse/guestmount.pod:248 ../tools/virt-edit.pl:368 ../tools/virt-win-reg.pl:602 ../tools/virt-resize.pl:1508 ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:563 ../tools/virt-list-partitions.pl:273
4987 msgid "COPYRIGHT"
4988 msgstr ""
4989
4990 #. type: textblock
4991 #: ../src/guestfs.pod:2590 ../fish/guestfish.pod:1145 ../fuse/guestmount.pod:250
4992 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
4993 msgstr ""
4994
4995 #. type: textblock
4996 #: ../src/guestfs.pod:2593
4997 msgid ""
4998 "This library is free software; you can redistribute it and/or modify it "
4999 "under the terms of the GNU Lesser General Public License as published by the "
5000 "Free Software Foundation; either version 2 of the License, or (at your "
5001 "option) any later version."
5002 msgstr ""
5003
5004 #. type: textblock
5005 #: ../src/guestfs.pod:2598
5006 msgid ""
5007 "This library is distributed in the hope that it will be useful, but WITHOUT "
5008 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5009 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5010 "for more details."
5011 msgstr ""
5012
5013 #. type: textblock
5014 #: ../src/guestfs.pod:2603
5015 msgid ""
5016 "You should have received a copy of the GNU Lesser General Public License "
5017 "along with this library; if not, write to the Free Software Foundation, "
5018 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5019 msgstr ""
5020
5021 #. type: =head2
5022 #: ../src/guestfs-actions.pod:1
5023 msgid "guestfs_add_cdrom"
5024 msgstr ""
5025
5026 #. type: verbatim
5027 #: ../src/guestfs-actions.pod:3
5028 #, no-wrap
5029 msgid ""
5030 " int\n"
5031 " guestfs_add_cdrom (guestfs_h *g,\n"
5032 "                    const char *filename);\n"
5033 "\n"
5034 msgstr ""
5035
5036 #. type: textblock
5037 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5038 msgid "This function adds a virtual CD-ROM disk image to the guest."
5039 msgstr ""
5040
5041 #. type: textblock
5042 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5043 msgid "This is equivalent to the qemu parameter C<-cdrom filename>."
5044 msgstr ""
5045
5046 #. type: textblock
5047 #: ../src/guestfs-actions.pod:17
5048 msgid ""
5049 "This call checks for the existence of C<filename>.  This stops you from "
5050 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5051 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5052 "instead."
5053 msgstr ""
5054
5055 #. type: textblock
5056 #: ../src/guestfs-actions.pod:24
5057 msgid ""
5058 "If you just want to add an ISO file (often you use this as an efficient way "
5059 "to transfer large files into the guest), then you should probably use "
5060 "C<guestfs_add_drive_ro> instead."
5061 msgstr ""
5062
5063 #. type: textblock
5064 #: ../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:3318 ../src/guestfs-actions.pod:3333 ../src/guestfs-actions.pod:3353 ../src/guestfs-actions.pod:3508 ../src/guestfs-actions.pod:3522 ../src/guestfs-actions.pod:3535 ../src/guestfs-actions.pod:3549 ../src/guestfs-actions.pod:3564 ../src/guestfs-actions.pod:3600 ../src/guestfs-actions.pod:3672 ../src/guestfs-actions.pod:3692 ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3732 ../src/guestfs-actions.pod:3755 ../src/guestfs-actions.pod:3787 ../src/guestfs-actions.pod:3806 ../src/guestfs-actions.pod:3825 ../src/guestfs-actions.pod:3860 ../src/guestfs-actions.pod:3872 ../src/guestfs-actions.pod:3908 ../src/guestfs-actions.pod:3924 ../src/guestfs-actions.pod:3937 ../src/guestfs-actions.pod:3952 ../src/guestfs-actions.pod:3969 ../src/guestfs-actions.pod:4062 ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:4095 ../src/guestfs-actions.pod:4146 ../src/guestfs-actions.pod:4164 ../src/guestfs-actions.pod:4182 ../src/guestfs-actions.pod:4198 ../src/guestfs-actions.pod:4212 ../src/guestfs-actions.pod:4226 ../src/guestfs-actions.pod:4243 ../src/guestfs-actions.pod:4258 ../src/guestfs-actions.pod:4278 ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:4409 ../src/guestfs-actions.pod:4440 ../src/guestfs-actions.pod:4459 ../src/guestfs-actions.pod:4478 ../src/guestfs-actions.pod:4490 ../src/guestfs-actions.pod:4507 ../src/guestfs-actions.pod:4520 ../src/guestfs-actions.pod:4535 ../src/guestfs-actions.pod:4550 ../src/guestfs-actions.pod:4585 ../src/guestfs-actions.pod:4600 ../src/guestfs-actions.pod:4620 ../src/guestfs-actions.pod:4634 ../src/guestfs-actions.pod:4651 ../src/guestfs-actions.pod:4700 ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:4751 ../src/guestfs-actions.pod:4779 ../src/guestfs-actions.pod:4796 ../src/guestfs-actions.pod:4814 ../src/guestfs-actions.pod:4948 ../src/guestfs-actions.pod:5005 ../src/guestfs-actions.pod:5027 ../src/guestfs-actions.pod:5045 ../src/guestfs-actions.pod:5077 ../src/guestfs-actions.pod:5143 ../src/guestfs-actions.pod:5160 ../src/guestfs-actions.pod:5173 ../src/guestfs-actions.pod:5187 ../src/guestfs-actions.pod:5476 ../src/guestfs-actions.pod:5495 ../src/guestfs-actions.pod:5514 ../src/guestfs-actions.pod:5526 ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5552 ../src/guestfs-actions.pod:5564 ../src/guestfs-actions.pod:5578 ../src/guestfs-actions.pod:5594 ../src/guestfs-actions.pod:5615 ../src/guestfs-actions.pod:5634 ../src/guestfs-actions.pod:5653 ../src/guestfs-actions.pod:5671 ../src/guestfs-actions.pod:5694 ../src/guestfs-actions.pod:5712 ../src/guestfs-actions.pod:5731 ../src/guestfs-actions.pod:5752 ../src/guestfs-actions.pod:5771 ../src/guestfs-actions.pod:5788 ../src/guestfs-actions.pod:5816 ../src/guestfs-actions.pod:5840 ../src/guestfs-actions.pod:5859 ../src/guestfs-actions.pod:5883 ../src/guestfs-actions.pod:5898 ../src/guestfs-actions.pod:5913 ../src/guestfs-actions.pod:5932 ../src/guestfs-actions.pod:5969 ../src/guestfs-actions.pod:5992 ../src/guestfs-actions.pod:6018 ../src/guestfs-actions.pod:6126 ../src/guestfs-actions.pod:6247 ../src/guestfs-actions.pod:6259 ../src/guestfs-actions.pod:6272 ../src/guestfs-actions.pod:6285 ../src/guestfs-actions.pod:6307 ../src/guestfs-actions.pod:6320 ../src/guestfs-actions.pod:6333 ../src/guestfs-actions.pod:6346 ../src/guestfs-actions.pod:6361 ../src/guestfs-actions.pod:6420 ../src/guestfs-actions.pod:6437 ../src/guestfs-actions.pod:6453 ../src/guestfs-actions.pod:6469 ../src/guestfs-actions.pod:6486 ../src/guestfs-actions.pod:6499 ../src/guestfs-actions.pod:6519 ../src/guestfs-actions.pod:6555 ../src/guestfs-actions.pod:6569 ../src/guestfs-actions.pod:6610 ../src/guestfs-actions.pod:6623 ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:6675 ../src/guestfs-actions.pod:6711 ../src/guestfs-actions.pod:6830 ../src/guestfs-actions.pod:6848 ../src/guestfs-actions.pod:6862 ../src/guestfs-actions.pod:6917 ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:6975 ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7062 ../src/guestfs-actions.pod:7088 ../src/guestfs-actions.pod:7154 ../src/guestfs-actions.pod:7173 ../src/guestfs-actions.pod:7202
5065 msgid "This function returns 0 on success or -1 on error."
5066 msgstr ""
5067
5068 #. type: textblock
5069 #: ../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
5070 msgid ""
5071 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
5072 "instead."
5073 msgstr ""
5074
5075 #. type: textblock
5076 #: ../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:4283 ../src/guestfs-actions.pod:7096 ../src/guestfs-actions.pod:7265 ../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:2895 ../fish/guestfish-actions.pod:4723 ../fish/guestfish-actions.pod:4820
5077 msgid ""
5078 "Deprecated functions will not be removed from the API, but the fact that "
5079 "they are deprecated indicates that there are problems with correct use of "
5080 "these functions."
5081 msgstr ""
5082
5083 #. type: textblock
5084 #: ../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:3320 ../src/guestfs-actions.pod:3335 ../src/guestfs-actions.pod:4587 ../src/guestfs-actions.pod:5673 ../src/guestfs-actions.pod:5790 ../src/guestfs-actions.pod:5900 ../src/guestfs-actions.pod:6363 ../src/guestfs-actions.pod:6488 ../src/guestfs-actions.pod:7010
5085 msgid "(Added in 0.3)"
5086 msgstr ""
5087
5088 #. type: =head2
5089 #: ../src/guestfs-actions.pod:41
5090 msgid "guestfs_add_domain"
5091 msgstr ""
5092
5093 #. type: verbatim
5094 #: ../src/guestfs-actions.pod:43
5095 #, no-wrap
5096 msgid ""
5097 " int\n"
5098 " guestfs_add_domain (guestfs_h *g,\n"
5099 "                     const char *dom,\n"
5100 "                     ...);\n"
5101 "\n"
5102 msgstr ""
5103
5104 #. type: textblock
5105 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:137 ../src/guestfs-actions.pod:4297
5106 msgid ""
5107 "You may supply a list of optional arguments to this call.  Use zero or more "
5108 "of the following pairs of parameters, and terminate the list with C<-1> on "
5109 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5110 msgstr ""
5111
5112 #. type: verbatim
5113 #: ../src/guestfs-actions.pod:53
5114 #, no-wrap
5115 msgid ""
5116 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5117 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5118 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5119 "\n"
5120 msgstr ""
5121
5122 #. type: textblock
5123 #: ../src/guestfs-actions.pod:57
5124 msgid ""
5125 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5126 "It works by connecting to libvirt, requesting the domain and domain XML from "
5127 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5128 "one."
5129 msgstr ""
5130
5131 #. type: textblock
5132 #: ../src/guestfs-actions.pod:62 ../fish/guestfish-actions.pod:46
5133 msgid ""
5134 "The number of disks added is returned.  This operation is atomic: if an "
5135 "error is returned, then no disks are added."
5136 msgstr ""
5137
5138 #. type: textblock
5139 #: ../src/guestfs-actions.pod:65 ../fish/guestfish-actions.pod:49
5140 msgid ""
5141 "This function does some minimal checks to make sure the libvirt domain is "
5142 "not running (unless C<readonly> is true).  In a future version we will try "
5143 "to acquire the libvirt lock on each disk."
5144 msgstr ""
5145
5146 #. type: textblock
5147 #: ../src/guestfs-actions.pod:69 ../fish/guestfish-actions.pod:53
5148 msgid ""
5149 "Disks must be accessible locally.  This often means that adding disks from a "
5150 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5151 "unless those disks are accessible via the same device path locally too."
5152 msgstr ""
5153
5154 #. type: textblock
5155 #: ../src/guestfs-actions.pod:74 ../fish/guestfish-actions.pod:58
5156 msgid ""
5157 "The optional C<libvirturi> parameter sets the libvirt URI (see "
5158 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
5159 "default libvirt URI (or one set through an environment variable, see the "
5160 "libvirt documentation for full details)."
5161 msgstr ""
5162
5163 #. type: textblock
5164 #: ../src/guestfs-actions.pod:80
5165 msgid ""
5166 "The other optional parameters are passed directly through to "
5167 "C<guestfs_add_drive_opts>."
5168 msgstr ""
5169
5170 #. type: textblock
5171 #: ../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:2701 ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:4723 ../src/guestfs-actions.pod:4851 ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:6596 ../src/guestfs-actions.pod:7021 ../src/guestfs-actions.pod:7034 ../src/guestfs-actions.pod:7047
5172 msgid "On error this function returns -1."
5173 msgstr ""
5174
5175 #. type: textblock
5176 #: ../src/guestfs-actions.pod:85
5177 msgid "(Added in 1.7.4)"
5178 msgstr ""
5179
5180 #. type: =head2
5181 #: ../src/guestfs-actions.pod:87
5182 msgid "guestfs_add_domain_va"
5183 msgstr ""
5184
5185 #. type: verbatim
5186 #: ../src/guestfs-actions.pod:89
5187 #, no-wrap
5188 msgid ""
5189 " int\n"
5190 " guestfs_add_domain_va (guestfs_h *g,\n"
5191 "                        const char *dom,\n"
5192 "                        va_list args);\n"
5193 "\n"
5194 msgstr ""
5195
5196 #. type: textblock
5197 #: ../src/guestfs-actions.pod:94
5198 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5199 msgstr ""
5200
5201 #. type: textblock
5202 #: ../src/guestfs-actions.pod:96 ../src/guestfs-actions.pod:107 ../src/guestfs-actions.pod:200 ../src/guestfs-actions.pod:211 ../src/guestfs-actions.pod:4350 ../src/guestfs-actions.pod:4362
5203 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
5204 msgstr ""
5205
5206 #. type: =head2
5207 #: ../src/guestfs-actions.pod:98
5208 msgid "guestfs_add_domain_argv"
5209 msgstr ""
5210
5211 #. type: verbatim
5212 #: ../src/guestfs-actions.pod:100
5213 #, no-wrap
5214 msgid ""
5215 " int\n"
5216 " guestfs_add_domain_argv (guestfs_h *g,\n"
5217 "                          const char *dom,\n"
5218 "                          const struct guestfs_add_domain_argv *optargs);\n"
5219 "\n"
5220 msgstr ""
5221
5222 #. type: textblock
5223 #: ../src/guestfs-actions.pod:105
5224 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
5225 msgstr ""
5226
5227 #. type: =head2
5228 #: ../src/guestfs-actions.pod:109
5229 msgid "guestfs_add_drive"
5230 msgstr ""
5231
5232 #. type: verbatim
5233 #: ../src/guestfs-actions.pod:111
5234 #, no-wrap
5235 msgid ""
5236 " int\n"
5237 " guestfs_add_drive (guestfs_h *g,\n"
5238 "                    const char *filename);\n"
5239 "\n"
5240 msgstr ""
5241
5242 #. type: textblock
5243 #: ../src/guestfs-actions.pod:115
5244 msgid ""
5245 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
5246 "optional parameters, so the disk is added writable, with the format being "
5247 "detected automatically."
5248 msgstr ""
5249
5250 #. type: textblock
5251 #: ../src/guestfs-actions.pod:119
5252 msgid ""
5253 "Automatic detection of the format opens you up to a potential security hole "
5254 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
5255 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
5256 "you should think about replacing calls to this function with calls to "
5257 "C<guestfs_add_drive_opts>, and specifying the format."
5258 msgstr ""
5259
5260 #. type: =head2
5261 #: ../src/guestfs-actions.pod:130
5262 msgid "guestfs_add_drive_opts"
5263 msgstr ""
5264
5265 #. type: verbatim
5266 #: ../src/guestfs-actions.pod:132
5267 #, no-wrap
5268 msgid ""
5269 " int\n"
5270 " guestfs_add_drive_opts (guestfs_h *g,\n"
5271 "                         const char *filename,\n"
5272 "                         ...);\n"
5273 "\n"
5274 msgstr ""
5275
5276 #. type: verbatim
5277 #: ../src/guestfs-actions.pod:142
5278 #, no-wrap
5279 msgid ""
5280 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
5281 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
5282 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
5283 "\n"
5284 msgstr ""
5285
5286 #. type: textblock
5287 #: ../src/guestfs-actions.pod:146 ../fish/guestfish-actions.pod:90
5288 msgid ""
5289 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
5290 "The first time you call this function, the disk appears as C</dev/sda>, the "
5291 "second time as C</dev/sdb>, and so on."
5292 msgstr ""
5293
5294 #. type: textblock
5295 #: ../src/guestfs-actions.pod:151 ../fish/guestfish-actions.pod:95
5296 msgid ""
5297 "You don't necessarily need to be root when using libguestfs.  However you "
5298 "obviously do need sufficient permissions to access the filename for whatever "
5299 "operations you want to perform (ie. read access if you just want to read the "
5300 "image or write access if you want to modify the image)."
5301 msgstr ""
5302
5303 #. type: textblock
5304 #: ../src/guestfs-actions.pod:157 ../fish/guestfish-actions.pod:101
5305 msgid "This call checks that C<filename> exists."
5306 msgstr ""
5307
5308 #. type: textblock
5309 #: ../src/guestfs-actions.pod:159 ../src/guestfs-actions.pod:4308 ../fish/guestfish-actions.pod:103 ../fish/guestfish-actions.pod:2906
5310 msgid "The optional arguments are:"
5311 msgstr ""
5312
5313 #. type: =item
5314 #: ../src/guestfs-actions.pod:163 ../fish/guestfish-actions.pod:107
5315 msgid "C<readonly>"
5316 msgstr ""
5317
5318 #. type: textblock
5319 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:109
5320 msgid ""
5321 "If true then the image is treated as read-only.  Writes are still allowed, "
5322 "but they are stored in a temporary snapshot overlay which is discarded at "
5323 "the end.  The disk that you add is not modified."
5324 msgstr ""
5325
5326 #. type: =item
5327 #: ../src/guestfs-actions.pod:169 ../fish/guestfish-actions.pod:113
5328 msgid "C<format>"
5329 msgstr ""
5330
5331 #. type: textblock
5332 #: ../src/guestfs-actions.pod:171
5333 msgid ""
5334 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
5335 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
5336 "Possible formats include C<raw> and C<qcow2>."
5337 msgstr ""
5338
5339 #. type: textblock
5340 #: ../src/guestfs-actions.pod:175 ../fish/guestfish-actions.pod:119
5341 msgid ""
5342 "Automatic detection of the format opens you up to a potential security hole "
5343 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
5344 "RHBZ#642934.  Specifying the format closes this security hole."
5345 msgstr ""
5346
5347 #. type: =item
5348 #: ../src/guestfs-actions.pod:180 ../fish/guestfish-actions.pod:124
5349 msgid "C<iface>"
5350 msgstr ""
5351
5352 #. type: textblock
5353 #: ../src/guestfs-actions.pod:182
5354 msgid ""
5355 "This rarely-used option lets you emulate the behaviour of the deprecated "
5356 "C<guestfs_add_drive_with_if> call (q.v.)"
5357 msgstr ""
5358
5359 #. type: textblock
5360 #: ../src/guestfs-actions.pod:189
5361 msgid "(Added in 1.5.23)"
5362 msgstr ""
5363
5364 #. type: =head2
5365 #: ../src/guestfs-actions.pod:191
5366 msgid "guestfs_add_drive_opts_va"
5367 msgstr ""
5368
5369 #. type: verbatim
5370 #: ../src/guestfs-actions.pod:193
5371 #, no-wrap
5372 msgid ""
5373 " int\n"
5374 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
5375 "                            const char *filename,\n"
5376 "                            va_list args);\n"
5377 "\n"
5378 msgstr ""
5379
5380 #. type: textblock
5381 #: ../src/guestfs-actions.pod:198
5382 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
5383 msgstr ""
5384
5385 #. type: =head2
5386 #: ../src/guestfs-actions.pod:202
5387 msgid "guestfs_add_drive_opts_argv"
5388 msgstr ""
5389
5390 #. type: verbatim
5391 #: ../src/guestfs-actions.pod:204
5392 #, no-wrap
5393 msgid ""
5394 " int\n"
5395 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
5396 "                              const char *filename,\n"
5397 "                              const struct guestfs_add_drive_opts_argv "
5398 "*optargs);\n"
5399 "\n"
5400 msgstr ""
5401
5402 #. type: textblock
5403 #: ../src/guestfs-actions.pod:209
5404 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
5405 msgstr ""
5406
5407 #. type: =head2
5408 #: ../src/guestfs-actions.pod:213
5409 msgid "guestfs_add_drive_ro"
5410 msgstr ""
5411
5412 #. type: verbatim
5413 #: ../src/guestfs-actions.pod:215
5414 #, no-wrap
5415 msgid ""
5416 " int\n"
5417 " guestfs_add_drive_ro (guestfs_h *g,\n"
5418 "                       const char *filename);\n"
5419 "\n"
5420 msgstr ""
5421
5422 #. type: textblock
5423 #: ../src/guestfs-actions.pod:219
5424 msgid ""
5425 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
5426 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
5427 "disk is added read-only, with the format being detected automatically."
5428 msgstr ""
5429
5430 #. type: textblock
5431 #: ../src/guestfs-actions.pod:226
5432 msgid "(Added in 1.0.38)"
5433 msgstr ""
5434
5435 #. type: =head2
5436 #: ../src/guestfs-actions.pod:228
5437 msgid "guestfs_add_drive_ro_with_if"
5438 msgstr ""
5439
5440 #. type: verbatim
5441 #: ../src/guestfs-actions.pod:230
5442 #, no-wrap
5443 msgid ""
5444 " int\n"
5445 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
5446 "                               const char *filename,\n"
5447 "                               const char *iface);\n"
5448 "\n"
5449 msgstr ""
5450
5451 #. type: textblock
5452 #: ../src/guestfs-actions.pod:235
5453 msgid ""
5454 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
5455 "QEMU interface emulation to use at run time."
5456 msgstr ""
5457
5458 #. type: textblock
5459 #: ../src/guestfs-actions.pod:247 ../src/guestfs-actions.pod:268 ../src/guestfs-actions.pod:2333
5460 msgid "(Added in 1.0.84)"
5461 msgstr ""
5462
5463 #. type: =head2
5464 #: ../src/guestfs-actions.pod:249
5465 msgid "guestfs_add_drive_with_if"
5466 msgstr ""
5467
5468 #. type: verbatim
5469 #: ../src/guestfs-actions.pod:251
5470 #, no-wrap
5471 msgid ""
5472 " int\n"
5473 " guestfs_add_drive_with_if (guestfs_h *g,\n"
5474 "                            const char *filename,\n"
5475 "                            const char *iface);\n"
5476 "\n"
5477 msgstr ""
5478
5479 #. type: textblock
5480 #: ../src/guestfs-actions.pod:256
5481 msgid ""
5482 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
5483 "QEMU interface emulation to use at run time."
5484 msgstr ""
5485
5486 #. type: =head2
5487 #: ../src/guestfs-actions.pod:270
5488 msgid "guestfs_aug_clear"
5489 msgstr ""
5490
5491 #. type: verbatim
5492 #: ../src/guestfs-actions.pod:272
5493 #, no-wrap
5494 msgid ""
5495 " int\n"
5496 " guestfs_aug_clear (guestfs_h *g,\n"
5497 "                    const char *augpath);\n"
5498 "\n"
5499 msgstr ""
5500
5501 #. type: textblock
5502 #: ../src/guestfs-actions.pod:276 ../fish/guestfish-actions.pod:176
5503 msgid ""
5504 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
5505 "L<augtool(1)> C<clear> command."
5506 msgstr ""
5507
5508 #. type: textblock
5509 #: ../src/guestfs-actions.pod:281 ../src/guestfs-actions.pod:2083
5510 msgid "(Added in 1.3.4)"
5511 msgstr ""
5512
5513 #. type: =head2
5514 #: ../src/guestfs-actions.pod:283
5515 msgid "guestfs_aug_close"
5516 msgstr ""
5517
5518 #. type: verbatim
5519 #: ../src/guestfs-actions.pod:285
5520 #, no-wrap
5521 msgid ""
5522 " int\n"
5523 " guestfs_aug_close (guestfs_h *g);\n"
5524 "\n"
5525 msgstr ""
5526
5527 #. type: textblock
5528 #: ../src/guestfs-actions.pod:288
5529 msgid ""
5530 "Close the current Augeas handle and free up any resources used by it.  After "
5531 "calling this, you have to call C<guestfs_aug_init> again before you can use "
5532 "any other Augeas functions."
5533 msgstr ""
5534
5535 #. type: textblock
5536 #: ../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:5334
5537 msgid "(Added in 0.7)"
5538 msgstr ""
5539
5540 #. type: =head2
5541 #: ../src/guestfs-actions.pod:297
5542 msgid "guestfs_aug_defnode"
5543 msgstr ""
5544
5545 #. type: verbatim
5546 #: ../src/guestfs-actions.pod:299
5547 #, no-wrap
5548 msgid ""
5549 " struct guestfs_int_bool *\n"
5550 " guestfs_aug_defnode (guestfs_h *g,\n"
5551 "                      const char *name,\n"
5552 "                      const char *expr,\n"
5553 "                      const char *val);\n"
5554 "\n"
5555 msgstr ""
5556
5557 #. type: textblock
5558 #: ../src/guestfs-actions.pod:305 ../fish/guestfish-actions.pod:192
5559 msgid "Defines a variable C<name> whose value is the result of evaluating C<expr>."
5560 msgstr ""
5561
5562 #. type: textblock
5563 #: ../src/guestfs-actions.pod:308
5564 msgid ""
5565 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
5566 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
5567 "containing that single node."
5568 msgstr ""
5569
5570 #. type: textblock
5571 #: ../src/guestfs-actions.pod:312 ../fish/guestfish-actions.pod:199
5572 msgid ""
5573 "On success this returns a pair containing the number of nodes in the "
5574 "nodeset, and a boolean flag if a node was created."
5575 msgstr ""
5576
5577 #. type: textblock
5578 #: ../src/guestfs-actions.pod:316
5579 msgid ""
5580 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
5581 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
5582 msgstr ""
5583
5584 #. type: =head2
5585 #: ../src/guestfs-actions.pod:322
5586 msgid "guestfs_aug_defvar"
5587 msgstr ""
5588
5589 #. type: verbatim
5590 #: ../src/guestfs-actions.pod:324
5591 #, no-wrap
5592 msgid ""
5593 " int\n"
5594 " guestfs_aug_defvar (guestfs_h *g,\n"
5595 "                     const char *name,\n"
5596 "                     const char *expr);\n"
5597 "\n"
5598 msgstr ""
5599
5600 #. type: textblock
5601 #: ../src/guestfs-actions.pod:329 ../fish/guestfish-actions.pod:207
5602 msgid ""
5603 "Defines an Augeas variable C<name> whose value is the result of evaluating "
5604 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
5605 msgstr ""
5606
5607 #. type: textblock
5608 #: ../src/guestfs-actions.pod:333 ../fish/guestfish-actions.pod:211
5609 msgid ""
5610 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
5611 "evaluates to something which is not a nodeset."
5612 msgstr ""
5613
5614 #. type: =head2
5615 #: ../src/guestfs-actions.pod:340
5616 msgid "guestfs_aug_get"
5617 msgstr ""
5618
5619 #. type: verbatim
5620 #: ../src/guestfs-actions.pod:342
5621 #, no-wrap
5622 msgid ""
5623 " char *\n"
5624 " guestfs_aug_get (guestfs_h *g,\n"
5625 "                  const char *augpath);\n"
5626 "\n"
5627 msgstr ""
5628
5629 #. type: textblock
5630 #: ../src/guestfs-actions.pod:346 ../fish/guestfish-actions.pod:218
5631 msgid ""
5632 "Look up the value associated with C<path>.  If C<path> matches exactly one "
5633 "node, the C<value> is returned."
5634 msgstr ""
5635
5636 #. type: textblock
5637 #: ../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:2653 ../src/guestfs-actions.pod:2673 ../src/guestfs-actions.pod:2787 ../src/guestfs-actions.pod:2818 ../src/guestfs-actions.pod:2842 ../src/guestfs-actions.pod:2904 ../src/guestfs-actions.pod:2927 ../src/guestfs-actions.pod:3494 ../src/guestfs-actions.pod:3844 ../src/guestfs-actions.pod:4014 ../src/guestfs-actions.pod:4124 ../src/guestfs-actions.pod:4869 ../src/guestfs-actions.pod:5062 ../src/guestfs-actions.pod:5232 ../src/guestfs-actions.pod:5410 ../src/guestfs-actions.pod:5459 ../src/guestfs-actions.pod:6039 ../src/guestfs-actions.pod:6055 ../src/guestfs-actions.pod:6072 ../src/guestfs-actions.pod:6096 ../src/guestfs-actions.pod:6770 ../src/guestfs-actions.pod:6789 ../src/guestfs-actions.pod:6807 ../src/guestfs-actions.pod:6987 ../src/guestfs-actions.pod:7259
5638 msgid ""
5639 "This function returns a string, or NULL on error.  I<The caller must free "
5640 "the returned string after use>."
5641 msgstr ""
5642
5643 #. type: =head2
5644 #: ../src/guestfs-actions.pod:354
5645 msgid "guestfs_aug_init"
5646 msgstr ""
5647
5648 #. type: verbatim
5649 #: ../src/guestfs-actions.pod:356
5650 #, no-wrap
5651 msgid ""
5652 " int\n"
5653 " guestfs_aug_init (guestfs_h *g,\n"
5654 "                   const char *root,\n"
5655 "                   int flags);\n"
5656 "\n"
5657 msgstr ""
5658
5659 #. type: textblock
5660 #: ../src/guestfs-actions.pod:361 ../fish/guestfish-actions.pod:225
5661 msgid ""
5662 "Create a new Augeas handle for editing configuration files.  If there was "
5663 "any previous Augeas handle associated with this guestfs session, then it is "
5664 "closed."
5665 msgstr ""
5666
5667 #. type: textblock
5668 #: ../src/guestfs-actions.pod:365
5669 msgid "You must call this before using any other C<guestfs_aug_*> commands."
5670 msgstr ""
5671
5672 #. type: textblock
5673 #: ../src/guestfs-actions.pod:368 ../fish/guestfish-actions.pod:232
5674 msgid "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
5675 msgstr ""
5676
5677 #. type: textblock
5678 #: ../src/guestfs-actions.pod:371 ../fish/guestfish-actions.pod:235
5679 msgid ""
5680 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
5681 "logical I<or> of the following integers:"
5682 msgstr ""
5683
5684 #. type: =item
5685 #: ../src/guestfs-actions.pod:377 ../fish/guestfish-actions.pod:241
5686 msgid "C<AUG_SAVE_BACKUP> = 1"
5687 msgstr ""
5688
5689 #. type: textblock
5690 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:243
5691 msgid "Keep the original file with a C<.augsave> extension."
5692 msgstr ""
5693
5694 #. type: =item
5695 #: ../src/guestfs-actions.pod:381 ../fish/guestfish-actions.pod:245
5696 msgid "C<AUG_SAVE_NEWFILE> = 2"
5697 msgstr ""
5698
5699 #. type: textblock
5700 #: ../src/guestfs-actions.pod:383 ../fish/guestfish-actions.pod:247
5701 msgid ""
5702 "Save changes into a file with extension C<.augnew>, and do not overwrite "
5703 "original.  Overrides C<AUG_SAVE_BACKUP>."
5704 msgstr ""
5705
5706 #. type: =item
5707 #: ../src/guestfs-actions.pod:386 ../fish/guestfish-actions.pod:250
5708 msgid "C<AUG_TYPE_CHECK> = 4"
5709 msgstr ""
5710
5711 #. type: textblock
5712 #: ../src/guestfs-actions.pod:388 ../fish/guestfish-actions.pod:252
5713 msgid "Typecheck lenses (can be expensive)."
5714 msgstr ""
5715
5716 #. type: =item
5717 #: ../src/guestfs-actions.pod:390 ../fish/guestfish-actions.pod:254
5718 msgid "C<AUG_NO_STDINC> = 8"
5719 msgstr ""
5720
5721 #. type: textblock
5722 #: ../src/guestfs-actions.pod:392 ../fish/guestfish-actions.pod:256
5723 msgid "Do not use standard load path for modules."
5724 msgstr ""
5725
5726 #. type: =item
5727 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:258
5728 msgid "C<AUG_SAVE_NOOP> = 16"
5729 msgstr ""
5730
5731 #. type: textblock
5732 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:260
5733 msgid "Make save a no-op, just record what would have been changed."
5734 msgstr ""
5735
5736 #. type: =item
5737 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:262
5738 msgid "C<AUG_NO_LOAD> = 32"
5739 msgstr ""
5740
5741 #. type: textblock
5742 #: ../src/guestfs-actions.pod:400
5743 msgid "Do not load the tree in C<guestfs_aug_init>."
5744 msgstr ""
5745
5746 #. type: textblock
5747 #: ../src/guestfs-actions.pod:404
5748 msgid "To close the handle, you can call C<guestfs_aug_close>."
5749 msgstr ""
5750
5751 #. type: textblock
5752 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:270
5753 msgid "To find out more about Augeas, see L<http://augeas.net/>."
5754 msgstr ""
5755
5756 #. type: =head2
5757 #: ../src/guestfs-actions.pod:412
5758 msgid "guestfs_aug_insert"
5759 msgstr ""
5760
5761 #. type: verbatim
5762 #: ../src/guestfs-actions.pod:414
5763 #, no-wrap
5764 msgid ""
5765 " int\n"
5766 " guestfs_aug_insert (guestfs_h *g,\n"
5767 "                     const char *augpath,\n"
5768 "                     const char *label,\n"
5769 "                     int before);\n"
5770 "\n"
5771 msgstr ""
5772
5773 #. type: textblock
5774 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:276
5775 msgid ""
5776 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
5777 "or after C<path> (depending on the boolean flag C<before>)."
5778 msgstr ""
5779
5780 #. type: textblock
5781 #: ../src/guestfs-actions.pod:424 ../fish/guestfish-actions.pod:280
5782 msgid ""
5783 "C<path> must match exactly one existing node in the tree, and C<label> must "
5784 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
5785 msgstr ""
5786
5787 #. type: =head2
5788 #: ../src/guestfs-actions.pod:432
5789 msgid "guestfs_aug_load"
5790 msgstr ""
5791
5792 #. type: verbatim
5793 #: ../src/guestfs-actions.pod:434
5794 #, no-wrap
5795 msgid ""
5796 " int\n"
5797 " guestfs_aug_load (guestfs_h *g);\n"
5798 "\n"
5799 msgstr ""
5800
5801 #. type: textblock
5802 #: ../src/guestfs-actions.pod:437 ../fish/guestfish-actions.pod:288
5803 msgid "Load files into the tree."
5804 msgstr ""
5805
5806 #. type: textblock
5807 #: ../src/guestfs-actions.pod:439 ../fish/guestfish-actions.pod:290
5808 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
5809 msgstr ""
5810
5811 #. type: =head2
5812 #: ../src/guestfs-actions.pod:446
5813 msgid "guestfs_aug_ls"
5814 msgstr ""
5815
5816 #. type: verbatim
5817 #: ../src/guestfs-actions.pod:448
5818 #, no-wrap
5819 msgid ""
5820 " char **\n"
5821 " guestfs_aug_ls (guestfs_h *g,\n"
5822 "                 const char *augpath);\n"
5823 "\n"
5824 msgstr ""
5825
5826 #. type: textblock
5827 #: ../src/guestfs-actions.pod:452
5828 msgid ""
5829 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
5830 "sorting the resulting nodes into alphabetical order."
5831 msgstr ""
5832
5833 #. type: textblock
5834 #: ../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:2861 ../src/guestfs-actions.pod:3129 ../src/guestfs-actions.pod:3414 ../src/guestfs-actions.pod:3476 ../src/guestfs-actions.pod:3581 ../src/guestfs-actions.pod:3986 ../src/guestfs-actions.pod:4684 ../src/guestfs-actions.pod:5204 ../src/guestfs-actions.pod:5330 ../src/guestfs-actions.pod:5444 ../src/guestfs-actions.pod:6112 ../src/guestfs-actions.pod:6173 ../src/guestfs-actions.pod:6228 ../src/guestfs-actions.pod:6374 ../src/guestfs-actions.pod:6398 ../src/guestfs-actions.pod:6880 ../src/guestfs-actions.pod:6900 ../src/guestfs-actions.pod:6947 ../src/guestfs-actions.pod:7112 ../src/guestfs-actions.pod:7131 ../src/guestfs-actions.pod:7216 ../src/guestfs-actions.pod:7235 ../src/guestfs-actions.pod:7281 ../src/guestfs-actions.pod:7300
5835 msgid ""
5836 "This function returns a NULL-terminated array of strings (like "
5837 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
5838 "strings and the array after use>."
5839 msgstr ""
5840
5841 #. type: textblock
5842 #: ../src/guestfs-actions.pod:459 ../src/guestfs-actions.pod:990 ../src/guestfs-actions.pod:1008 ../src/guestfs-actions.pod:1413 ../src/guestfs-actions.pod:3207 ../src/guestfs-actions.pod:3238 ../src/guestfs-actions.pod:3827 ../src/guestfs-actions.pod:3877 ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:4097 ../src/guestfs-actions.pod:4260 ../src/guestfs-actions.pod:4688 ../src/guestfs-actions.pod:5145 ../src/guestfs-actions.pod:5540 ../src/guestfs-actions.pod:5554 ../src/guestfs-actions.pod:5566 ../src/guestfs-actions.pod:5974 ../src/guestfs-actions.pod:6612 ../src/guestfs-actions.pod:6625 ../src/guestfs-actions.pod:6864 ../src/guestfs-actions.pod:7100
5843 msgid "(Added in 0.8)"
5844 msgstr ""
5845
5846 #. type: =head2
5847 #: ../src/guestfs-actions.pod:461
5848 msgid "guestfs_aug_match"
5849 msgstr ""
5850
5851 #. type: verbatim
5852 #: ../src/guestfs-actions.pod:463
5853 #, no-wrap
5854 msgid ""
5855 " char **\n"
5856 " guestfs_aug_match (guestfs_h *g,\n"
5857 "                    const char *augpath);\n"
5858 "\n"
5859 msgstr ""
5860
5861 #. type: textblock
5862 #: ../src/guestfs-actions.pod:467 ../fish/guestfish-actions.pod:304
5863 msgid ""
5864 "Returns a list of paths which match the path expression C<path>.  The "
5865 "returned paths are sufficiently qualified so that they match exactly one "
5866 "node in the current tree."
5867 msgstr ""
5868
5869 #. type: =head2
5870 #: ../src/guestfs-actions.pod:477
5871 msgid "guestfs_aug_mv"
5872 msgstr ""
5873
5874 #. type: verbatim
5875 #: ../src/guestfs-actions.pod:479
5876 #, no-wrap
5877 msgid ""
5878 " int\n"
5879 " guestfs_aug_mv (guestfs_h *g,\n"
5880 "                 const char *src,\n"
5881 "                 const char *dest);\n"
5882 "\n"
5883 msgstr ""
5884
5885 #. type: textblock
5886 #: ../src/guestfs-actions.pod:484 ../fish/guestfish-actions.pod:312
5887 msgid ""
5888 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
5889 "C<dest> is overwritten if it exists."
5890 msgstr ""
5891
5892 #. type: =head2
5893 #: ../src/guestfs-actions.pod:491
5894 msgid "guestfs_aug_rm"
5895 msgstr ""
5896
5897 #. type: verbatim
5898 #: ../src/guestfs-actions.pod:493
5899 #, no-wrap
5900 msgid ""
5901 " int\n"
5902 " guestfs_aug_rm (guestfs_h *g,\n"
5903 "                 const char *augpath);\n"
5904 "\n"
5905 msgstr ""
5906
5907 #. type: textblock
5908 #: ../src/guestfs-actions.pod:497 ../fish/guestfish-actions.pod:319
5909 msgid "Remove C<path> and all of its children."
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs-actions.pod:499 ../fish/guestfish-actions.pod:321
5914 msgid "On success this returns the number of entries which were removed."
5915 msgstr ""
5916
5917 #. type: =head2
5918 #: ../src/guestfs-actions.pod:505
5919 msgid "guestfs_aug_save"
5920 msgstr ""
5921
5922 #. type: verbatim
5923 #: ../src/guestfs-actions.pod:507
5924 #, no-wrap
5925 msgid ""
5926 " int\n"
5927 " guestfs_aug_save (guestfs_h *g);\n"
5928 "\n"
5929 msgstr ""
5930
5931 #. type: textblock
5932 #: ../src/guestfs-actions.pod:510 ../fish/guestfish-actions.pod:327
5933 msgid "This writes all pending changes to disk."
5934 msgstr ""
5935
5936 #. type: textblock
5937 #: ../src/guestfs-actions.pod:512
5938 msgid ""
5939 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
5940 "are saved."
5941 msgstr ""
5942
5943 #. type: =head2
5944 #: ../src/guestfs-actions.pod:519
5945 msgid "guestfs_aug_set"
5946 msgstr ""
5947
5948 #. type: verbatim
5949 #: ../src/guestfs-actions.pod:521
5950 #, no-wrap
5951 msgid ""
5952 " int\n"
5953 " guestfs_aug_set (guestfs_h *g,\n"
5954 "                  const char *augpath,\n"
5955 "                  const char *val);\n"
5956 "\n"
5957 msgstr ""
5958
5959 #. type: textblock
5960 #: ../src/guestfs-actions.pod:526 ../fish/guestfish-actions.pod:336
5961 msgid "Set the value associated with C<path> to C<val>."
5962 msgstr ""
5963
5964 #. type: textblock
5965 #: ../src/guestfs-actions.pod:528
5966 msgid ""
5967 "In the Augeas API, it is possible to clear a node by setting the value to "
5968 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
5969 "this call.  Instead you must use the C<guestfs_aug_clear> call."
5970 msgstr ""
5971
5972 #. type: =head2
5973 #: ../src/guestfs-actions.pod:537
5974 msgid "guestfs_available"
5975 msgstr ""
5976
5977 #. type: verbatim
5978 #: ../src/guestfs-actions.pod:539
5979 #, no-wrap
5980 msgid ""
5981 " int\n"
5982 " guestfs_available (guestfs_h *g,\n"
5983 "                    char *const *groups);\n"
5984 "\n"
5985 msgstr ""
5986
5987 #. type: textblock
5988 #: ../src/guestfs-actions.pod:543 ../fish/guestfish-actions.pod:347
5989 msgid ""
5990 "This command is used to check the availability of some groups of "
5991 "functionality in the appliance, which not all builds of the libguestfs "
5992 "appliance will be able to provide."
5993 msgstr ""
5994
5995 #. type: textblock
5996 #: ../src/guestfs-actions.pod:547
5997 msgid ""
5998 "The libguestfs groups, and the functions that those groups correspond to, "
5999 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
6000 "runtime by calling C<guestfs_available_all_groups>."
6001 msgstr ""
6002
6003 #. type: textblock
6004 #: ../src/guestfs-actions.pod:552 ../fish/guestfish-actions.pod:356
6005 msgid ""
6006 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
6007 "\"augeas\"]> would check for the availability of the Linux inotify functions "
6008 "and Augeas (configuration file editing) functions."
6009 msgstr ""
6010
6011 #. type: textblock
6012 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:361
6013 msgid "The command returns no error if I<all> requested groups are available."
6014 msgstr ""
6015
6016 #. type: textblock
6017 #: ../src/guestfs-actions.pod:559 ../fish/guestfish-actions.pod:363
6018 msgid ""
6019 "It fails with an error if one or more of the requested groups is unavailable "
6020 "in the appliance."
6021 msgstr ""
6022
6023 #. type: textblock
6024 #: ../src/guestfs-actions.pod:562 ../fish/guestfish-actions.pod:366
6025 msgid ""
6026 "If an unknown group name is included in the list of groups then an error is "
6027 "always returned."
6028 msgstr ""
6029
6030 #. type: textblock
6031 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:369
6032 msgid "I<Notes:>"
6033 msgstr ""
6034
6035 #. type: textblock
6036 #: ../src/guestfs-actions.pod:571
6037 msgid "You must call C<guestfs_launch> before calling this function."
6038 msgstr ""
6039
6040 #. type: textblock
6041 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:377
6042 msgid ""
6043 "The reason is because we don't know what groups are supported by the "
6044 "appliance/daemon until it is running and can be queried."
6045 msgstr ""
6046
6047 #. type: textblock
6048 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:383
6049 msgid ""
6050 "If a group of functions is available, this does not necessarily mean that "
6051 "they will work.  You still have to check for errors when calling individual "
6052 "API functions even if they are available."
6053 msgstr ""
6054
6055 #. type: textblock
6056 #: ../src/guestfs-actions.pod:586 ../fish/guestfish-actions.pod:390
6057 msgid ""
6058 "It is usually the job of distro packagers to build complete functionality "
6059 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6060 "with all requirements satisfied, will support everything."
6061 msgstr ""
6062
6063 #. type: textblock
6064 #: ../src/guestfs-actions.pod:593
6065 msgid ""
6066 "This call was added in version C<1.0.80>.  In previous versions of "
6067 "libguestfs all you could do would be to speculatively execute a command to "
6068 "find out if the daemon implemented it.  See also C<guestfs_version>."
6069 msgstr ""
6070
6071 #. type: textblock
6072 #: ../src/guestfs-actions.pod:602 ../src/guestfs-actions.pod:1163
6073 msgid "(Added in 1.0.80)"
6074 msgstr ""
6075
6076 #. type: =head2
6077 #: ../src/guestfs-actions.pod:604
6078 msgid "guestfs_available_all_groups"
6079 msgstr ""
6080
6081 #. type: verbatim
6082 #: ../src/guestfs-actions.pod:606
6083 #, no-wrap
6084 msgid ""
6085 " char **\n"
6086 " guestfs_available_all_groups (guestfs_h *g);\n"
6087 "\n"
6088 msgstr ""
6089
6090 #. type: textblock
6091 #: ../src/guestfs-actions.pod:609
6092 msgid ""
6093 "This command returns a list of all optional groups that this daemon knows "
6094 "about.  Note this returns both supported and unsupported groups.  To find "
6095 "out which ones the daemon can actually support you have to call "
6096 "C<guestfs_available> on each member of the returned list."
6097 msgstr ""
6098
6099 #. type: textblock
6100 #: ../src/guestfs-actions.pod:615
6101 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6102 msgstr ""
6103
6104 #. type: textblock
6105 #: ../src/guestfs-actions.pod:621
6106 msgid "(Added in 1.3.15)"
6107 msgstr ""
6108
6109 #. type: =head2
6110 #: ../src/guestfs-actions.pod:623
6111 msgid "guestfs_base64_in"
6112 msgstr ""
6113
6114 #. type: verbatim
6115 #: ../src/guestfs-actions.pod:625
6116 #, no-wrap
6117 msgid ""
6118 " int\n"
6119 " guestfs_base64_in (guestfs_h *g,\n"
6120 "                    const char *base64file,\n"
6121 "                    const char *filename);\n"
6122 "\n"
6123 msgstr ""
6124
6125 #. type: textblock
6126 #: ../src/guestfs-actions.pod:630 ../fish/guestfish-actions.pod:420
6127 msgid "This command uploads base64-encoded data from C<base64file> to C<filename>."
6128 msgstr ""
6129
6130 #. type: textblock
6131 #: ../src/guestfs-actions.pod:635 ../src/guestfs-actions.pod:649
6132 msgid "(Added in 1.3.5)"
6133 msgstr ""
6134
6135 #. type: =head2
6136 #: ../src/guestfs-actions.pod:637
6137 msgid "guestfs_base64_out"
6138 msgstr ""
6139
6140 #. type: verbatim
6141 #: ../src/guestfs-actions.pod:639
6142 #, no-wrap
6143 msgid ""
6144 " int\n"
6145 " guestfs_base64_out (guestfs_h *g,\n"
6146 "                     const char *filename,\n"
6147 "                     const char *base64file);\n"
6148 "\n"
6149 msgstr ""
6150
6151 #. type: textblock
6152 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:429
6153 msgid ""
6154 "This command downloads the contents of C<filename>, writing it out to local "
6155 "file C<base64file> encoded as base64."
6156 msgstr ""
6157
6158 #. type: =head2
6159 #: ../src/guestfs-actions.pod:651
6160 msgid "guestfs_blockdev_flushbufs"
6161 msgstr ""
6162
6163 #. type: verbatim
6164 #: ../src/guestfs-actions.pod:653
6165 #, no-wrap
6166 msgid ""
6167 " int\n"
6168 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
6169 "                             const char *device);\n"
6170 "\n"
6171 msgstr ""
6172
6173 #. type: textblock
6174 #: ../src/guestfs-actions.pod:657 ../fish/guestfish-actions.pod:438
6175 msgid "This tells the kernel to flush internal buffers associated with C<device>."
6176 msgstr ""
6177
6178 #. type: textblock
6179 #: ../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
6180 msgid "This uses the L<blockdev(8)> command."
6181 msgstr ""
6182
6183 #. type: textblock
6184 #: ../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
6185 msgid "(Added in 0.9.3)"
6186 msgstr ""
6187
6188 #. type: =head2
6189 #: ../src/guestfs-actions.pod:666
6190 msgid "guestfs_blockdev_getbsz"
6191 msgstr ""
6192
6193 #. type: verbatim
6194 #: ../src/guestfs-actions.pod:668
6195 #, no-wrap
6196 msgid ""
6197 " int\n"
6198 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
6199 "                          const char *device);\n"
6200 "\n"
6201 msgstr ""
6202
6203 #. type: textblock
6204 #: ../src/guestfs-actions.pod:672 ../fish/guestfish-actions.pod:447
6205 msgid "This returns the block size of a device."
6206 msgstr ""
6207
6208 #. type: textblock
6209 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:774 ../fish/guestfish-actions.pod:449 ../fish/guestfish-actions.pod:512
6210 msgid ""
6211 "(Note this is different from both I<size in blocks> and I<filesystem block "
6212 "size>)."
6213 msgstr ""
6214
6215 #. type: =head2
6216 #: ../src/guestfs-actions.pod:683
6217 msgid "guestfs_blockdev_getro"
6218 msgstr ""
6219
6220 #. type: verbatim
6221 #: ../src/guestfs-actions.pod:685
6222 #, no-wrap
6223 msgid ""
6224 " int\n"
6225 " guestfs_blockdev_getro (guestfs_h *g,\n"
6226 "                         const char *device);\n"
6227 "\n"
6228 msgstr ""
6229
6230 #. type: textblock
6231 #: ../src/guestfs-actions.pod:689 ../fish/guestfish-actions.pod:458
6232 msgid ""
6233 "Returns a boolean indicating if the block device is read-only (true if "
6234 "read-only, false if not)."
6235 msgstr ""
6236
6237 #. type: textblock
6238 #: ../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:2947 ../src/guestfs-actions.pod:2964 ../src/guestfs-actions.pod:2983 ../src/guestfs-actions.pod:3146 ../src/guestfs-actions.pod:3160 ../src/guestfs-actions.pod:3175 ../src/guestfs-actions.pod:3189 ../src/guestfs-actions.pod:3205 ../src/guestfs-actions.pod:3220 ../src/guestfs-actions.pod:3236 ../src/guestfs-actions.pod:3250 ../src/guestfs-actions.pod:3263 ../src/guestfs-actions.pod:3277 ../src/guestfs-actions.pod:3292 ../src/guestfs-actions.pod:3307 ../src/guestfs-actions.pod:4833
6239 msgid "This function returns a C truth value on success or -1 on error."
6240 msgstr ""
6241
6242 #. type: =head2
6243 #: ../src/guestfs-actions.pod:698
6244 msgid "guestfs_blockdev_getsize64"
6245 msgstr ""
6246
6247 #. type: verbatim
6248 #: ../src/guestfs-actions.pod:700
6249 #, no-wrap
6250 msgid ""
6251 " int64_t\n"
6252 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
6253 "                             const char *device);\n"
6254 "\n"
6255 msgstr ""
6256
6257 #. type: textblock
6258 #: ../src/guestfs-actions.pod:704 ../fish/guestfish-actions.pod:467
6259 msgid "This returns the size of the device in bytes."
6260 msgstr ""
6261
6262 #. type: textblock
6263 #: ../src/guestfs-actions.pod:706
6264 msgid "See also C<guestfs_blockdev_getsz>."
6265 msgstr ""
6266
6267 #. type: =head2
6268 #: ../src/guestfs-actions.pod:714
6269 msgid "guestfs_blockdev_getss"
6270 msgstr ""
6271
6272 #. type: verbatim
6273 #: ../src/guestfs-actions.pod:716
6274 #, no-wrap
6275 msgid ""
6276 " int\n"
6277 " guestfs_blockdev_getss (guestfs_h *g,\n"
6278 "                         const char *device);\n"
6279 "\n"
6280 msgstr ""
6281
6282 #. type: textblock
6283 #: ../src/guestfs-actions.pod:720 ../fish/guestfish-actions.pod:477
6284 msgid ""
6285 "This returns the size of sectors on a block device.  Usually 512, but can be "
6286 "larger for modern devices."
6287 msgstr ""
6288
6289 #. type: textblock
6290 #: ../src/guestfs-actions.pod:723
6291 msgid ""
6292 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
6293 "that)."
6294 msgstr ""
6295
6296 #. type: =head2
6297 #: ../src/guestfs-actions.pod:732
6298 msgid "guestfs_blockdev_getsz"
6299 msgstr ""
6300
6301 #. type: verbatim
6302 #: ../src/guestfs-actions.pod:734
6303 #, no-wrap
6304 msgid ""
6305 " int64_t\n"
6306 " guestfs_blockdev_getsz (guestfs_h *g,\n"
6307 "                         const char *device);\n"
6308 "\n"
6309 msgstr ""
6310
6311 #. type: textblock
6312 #: ../src/guestfs-actions.pod:738 ../fish/guestfish-actions.pod:489
6313 msgid ""
6314 "This returns the size of the device in units of 512-byte sectors (even if "
6315 "the sectorsize isn't 512 bytes ... weird)."
6316 msgstr ""
6317
6318 #. type: textblock
6319 #: ../src/guestfs-actions.pod:741
6320 msgid ""
6321 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
6322 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
6323 msgstr ""
6324
6325 #. type: =head2
6326 #: ../src/guestfs-actions.pod:751
6327 msgid "guestfs_blockdev_rereadpt"
6328 msgstr ""
6329
6330 #. type: verbatim
6331 #: ../src/guestfs-actions.pod:753
6332 #, no-wrap
6333 msgid ""
6334 " int\n"
6335 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
6336 "                            const char *device);\n"
6337 "\n"
6338 msgstr ""
6339
6340 #. type: textblock
6341 #: ../src/guestfs-actions.pod:757 ../fish/guestfish-actions.pod:502
6342 msgid "Reread the partition table on C<device>."
6343 msgstr ""
6344
6345 #. type: =head2
6346 #: ../src/guestfs-actions.pod:765
6347 msgid "guestfs_blockdev_setbsz"
6348 msgstr ""
6349
6350 #. type: verbatim
6351 #: ../src/guestfs-actions.pod:767
6352 #, no-wrap
6353 msgid ""
6354 " int\n"
6355 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
6356 "                          const char *device,\n"
6357 "                          int blocksize);\n"
6358 "\n"
6359 msgstr ""
6360
6361 #. type: textblock
6362 #: ../src/guestfs-actions.pod:772 ../fish/guestfish-actions.pod:510
6363 msgid "This sets the block size of a device."
6364 msgstr ""
6365
6366 #. type: =head2
6367 #: ../src/guestfs-actions.pod:783
6368 msgid "guestfs_blockdev_setro"
6369 msgstr ""
6370
6371 #. type: verbatim
6372 #: ../src/guestfs-actions.pod:785
6373 #, no-wrap
6374 msgid ""
6375 " int\n"
6376 " guestfs_blockdev_setro (guestfs_h *g,\n"
6377 "                         const char *device);\n"
6378 "\n"
6379 msgstr ""
6380
6381 #. type: textblock
6382 #: ../src/guestfs-actions.pod:789 ../fish/guestfish-actions.pod:521
6383 msgid "Sets the block device named C<device> to read-only."
6384 msgstr ""
6385
6386 #. type: =head2
6387 #: ../src/guestfs-actions.pod:797
6388 msgid "guestfs_blockdev_setrw"
6389 msgstr ""
6390
6391 #. type: verbatim
6392 #: ../src/guestfs-actions.pod:799
6393 #, no-wrap
6394 msgid ""
6395 " int\n"
6396 " guestfs_blockdev_setrw (guestfs_h *g,\n"
6397 "                         const char *device);\n"
6398 "\n"
6399 msgstr ""
6400
6401 #. type: textblock
6402 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:529
6403 msgid "Sets the block device named C<device> to read-write."
6404 msgstr ""
6405
6406 #. type: =head2
6407 #: ../src/guestfs-actions.pod:811
6408 msgid "guestfs_case_sensitive_path"
6409 msgstr ""
6410
6411 #. type: verbatim
6412 #: ../src/guestfs-actions.pod:813
6413 #, no-wrap
6414 msgid ""
6415 " char *\n"
6416 " guestfs_case_sensitive_path (guestfs_h *g,\n"
6417 "                              const char *path);\n"
6418 "\n"
6419 msgstr ""
6420
6421 #. type: textblock
6422 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:537
6423 msgid ""
6424 "This can be used to resolve case insensitive paths on a filesystem which is "
6425 "case sensitive.  The use case is to resolve paths which you have read from "
6426 "Windows configuration files or the Windows Registry, to the true path."
6427 msgstr ""
6428
6429 #. type: textblock
6430 #: ../src/guestfs-actions.pod:822 ../fish/guestfish-actions.pod:542
6431 msgid ""
6432 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
6433 "(and probably others), which is that although the underlying filesystem is "
6434 "case-insensitive, the driver exports the filesystem to Linux as "
6435 "case-sensitive."
6436 msgstr ""
6437
6438 #. type: textblock
6439 #: ../src/guestfs-actions.pod:827 ../fish/guestfish-actions.pod:547
6440 msgid ""
6441 "One consequence of this is that special directories such as C<c:\\windows> "
6442 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
6443 "precise details of how they were created.  In Windows itself this would not "
6444 "be a problem."
6445 msgstr ""
6446
6447 #. type: textblock
6448 #: ../src/guestfs-actions.pod:833 ../fish/guestfish-actions.pod:553
6449 msgid ""
6450 "Bug or feature? You decide: "
6451 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
6452 msgstr ""
6453
6454 #. type: textblock
6455 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:556
6456 msgid ""
6457 "This function resolves the true case of each element in the path and returns "
6458 "the case-sensitive path."
6459 msgstr ""
6460
6461 #. type: textblock
6462 #: ../src/guestfs-actions.pod:839
6463 msgid ""
6464 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
6465 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
6466 "how the directories were originally created under Windows)."
6467 msgstr ""
6468
6469 #. type: textblock
6470 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:564
6471 msgid "I<Note>: This function does not handle drive names, backslashes etc."
6472 msgstr ""
6473
6474 #. type: textblock
6475 #: ../src/guestfs-actions.pod:847
6476 msgid "See also C<guestfs_realpath>."
6477 msgstr ""
6478
6479 #. type: textblock
6480 #: ../src/guestfs-actions.pod:852 ../src/guestfs-actions.pod:6792
6481 msgid "(Added in 1.0.75)"
6482 msgstr ""
6483
6484 #. type: =head2
6485 #: ../src/guestfs-actions.pod:854
6486 msgid "guestfs_cat"
6487 msgstr ""
6488
6489 #. type: verbatim
6490 #: ../src/guestfs-actions.pod:856
6491 #, no-wrap
6492 msgid ""
6493 " char *\n"
6494 " guestfs_cat (guestfs_h *g,\n"
6495 "              const char *path);\n"
6496 "\n"
6497 msgstr ""
6498
6499 #. type: textblock
6500 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:5320 ../fish/guestfish-actions.pod:573 ../fish/guestfish-actions.pod:3554
6501 msgid "Return the contents of the file named C<path>."
6502 msgstr ""
6503
6504 #. type: textblock
6505 #: ../src/guestfs-actions.pod:862
6506 msgid ""
6507 "Note that this function cannot correctly handle binary files (specifically, "
6508 "files containing C<\\0> character which is treated as end of string).  For "
6509 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
6510 "functions which have a more complex interface."
6511 msgstr ""
6512
6513 #. type: textblock
6514 #: ../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:5102 ../src/guestfs-actions.pod:5128 ../src/guestfs-actions.pod:5259 ../src/guestfs-actions.pod:5285 ../src/guestfs-actions.pod:5309 ../src/guestfs-actions.pod:6177 ../src/guestfs-actions.pod:6232 ../src/guestfs-actions.pod:6378 ../src/guestfs-actions.pod:6402 ../src/guestfs-actions.pod:7064 ../src/guestfs-actions.pod:7090 ../src/guestfs-actions.pod:7116 ../src/guestfs-actions.pod:7135 ../src/guestfs-actions.pod:7220 ../src/guestfs-actions.pod:7239 ../src/guestfs-actions.pod:7285 ../src/guestfs-actions.pod:7304 ../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:3424 ../fish/guestfish-actions.pod:3439 ../fish/guestfish-actions.pod:3515 ../fish/guestfish-actions.pod:3532 ../fish/guestfish-actions.pod:3547 ../fish/guestfish-actions.pod:4143 ../fish/guestfish-actions.pod:4189 ../fish/guestfish-actions.pod:4274 ../fish/guestfish-actions.pod:4289 ../fish/guestfish-actions.pod:4699 ../fish/guestfish-actions.pod:4717 ../fish/guestfish-actions.pod:4734 ../fish/guestfish-actions.pod:4744 ../fish/guestfish-actions.pod:4792 ../fish/guestfish-actions.pod:4802 ../fish/guestfish-actions.pod:4831 ../fish/guestfish-actions.pod:4841
6515 msgid ""
6516 "Because of the message protocol, there is a transfer limit of somewhere "
6517 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
6518 msgstr ""
6519
6520 #. type: textblock
6521 #: ../src/guestfs-actions.pod:873 ../src/guestfs-actions.pod:3418 ../src/guestfs-actions.pod:3480 ../src/guestfs-actions.pod:3497 ../src/guestfs-actions.pod:3585 ../src/guestfs-actions.pod:3990 ../src/guestfs-actions.pod:4004 ../src/guestfs-actions.pod:5208 ../src/guestfs-actions.pod:5222 ../src/guestfs-actions.pod:6951 ../src/guestfs-actions.pod:6965
6522 msgid "(Added in 0.4)"
6523 msgstr ""
6524
6525 #. type: =head2
6526 #: ../src/guestfs-actions.pod:875
6527 msgid "guestfs_checksum"
6528 msgstr ""
6529
6530 #. type: verbatim
6531 #: ../src/guestfs-actions.pod:877
6532 #, no-wrap
6533 msgid ""
6534 " char *\n"
6535 " guestfs_checksum (guestfs_h *g,\n"
6536 "                   const char *csumtype,\n"
6537 "                   const char *path);\n"
6538 "\n"
6539 msgstr ""
6540
6541 #. type: textblock
6542 #: ../src/guestfs-actions.pod:882 ../fish/guestfish-actions.pod:587
6543 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
6544 msgstr ""
6545
6546 #. type: textblock
6547 #: ../src/guestfs-actions.pod:885 ../fish/guestfish-actions.pod:590
6548 msgid ""
6549 "The type of checksum to compute is given by the C<csumtype> parameter which "
6550 "must have one of the following values:"
6551 msgstr ""
6552
6553 #. type: =item
6554 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:595
6555 msgid "C<crc>"
6556 msgstr ""
6557
6558 #. type: textblock
6559 #: ../src/guestfs-actions.pod:892 ../fish/guestfish-actions.pod:597
6560 msgid ""
6561 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
6562 "C<cksum> command."
6563 msgstr ""
6564
6565 #. type: =item
6566 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:600
6567 msgid "C<md5>"
6568 msgstr ""
6569
6570 #. type: textblock
6571 #: ../src/guestfs-actions.pod:897 ../fish/guestfish-actions.pod:602
6572 msgid "Compute the MD5 hash (using the C<md5sum> program)."
6573 msgstr ""
6574
6575 #. type: =item
6576 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:604
6577 msgid "C<sha1>"
6578 msgstr ""
6579
6580 #. type: textblock
6581 #: ../src/guestfs-actions.pod:901 ../fish/guestfish-actions.pod:606
6582 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
6583 msgstr ""
6584
6585 #. type: =item
6586 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:608
6587 msgid "C<sha224>"
6588 msgstr ""
6589
6590 #. type: textblock
6591 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:610
6592 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
6593 msgstr ""
6594
6595 #. type: =item
6596 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:612
6597 msgid "C<sha256>"
6598 msgstr ""
6599
6600 #. type: textblock
6601 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:614
6602 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
6603 msgstr ""
6604
6605 #. type: =item
6606 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:616
6607 msgid "C<sha384>"
6608 msgstr ""
6609
6610 #. type: textblock
6611 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:618
6612 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
6613 msgstr ""
6614
6615 #. type: =item
6616 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:620
6617 msgid "C<sha512>"
6618 msgstr ""
6619
6620 #. type: textblock
6621 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:622
6622 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
6623 msgstr ""
6624
6625 #. type: textblock
6626 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:626
6627 msgid "The checksum is returned as a printable string."
6628 msgstr ""
6629
6630 #. type: textblock
6631 #: ../src/guestfs-actions.pod:923
6632 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
6633 msgstr ""
6634
6635 #. type: textblock
6636 #: ../src/guestfs-actions.pod:925
6637 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
6638 msgstr ""
6639
6640 #. type: textblock
6641 #: ../src/guestfs-actions.pod:930 ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:2060 ../src/guestfs-actions.pod:3162 ../src/guestfs-actions.pod:3191 ../src/guestfs-actions.pod:3252 ../src/guestfs-actions.pod:3279 ../src/guestfs-actions.pod:6648
6642 msgid "(Added in 1.0.2)"
6643 msgstr ""
6644
6645 #. type: =head2
6646 #: ../src/guestfs-actions.pod:932
6647 msgid "guestfs_checksum_device"
6648 msgstr ""
6649
6650 #. type: verbatim
6651 #: ../src/guestfs-actions.pod:934
6652 #, no-wrap
6653 msgid ""
6654 " char *\n"
6655 " guestfs_checksum_device (guestfs_h *g,\n"
6656 "                          const char *csumtype,\n"
6657 "                          const char *device);\n"
6658 "\n"
6659 msgstr ""
6660
6661 #. type: textblock
6662 #: ../src/guestfs-actions.pod:939
6663 msgid ""
6664 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
6665 "device named C<device>.  For the types of checksums supported see the "
6666 "C<guestfs_checksum> command."
6667 msgstr ""
6668
6669 #. type: textblock
6670 #: ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:4739 ../src/guestfs-actions.pod:4798 ../src/guestfs-actions.pod:4835 ../src/guestfs-actions.pod:4853 ../src/guestfs-actions.pod:5029 ../src/guestfs-actions.pod:6557 ../src/guestfs-actions.pod:6571 ../src/guestfs-actions.pod:6977
6671 msgid "(Added in 1.3.2)"
6672 msgstr ""
6673
6674 #. type: =head2
6675 #: ../src/guestfs-actions.pod:948
6676 msgid "guestfs_checksums_out"
6677 msgstr ""
6678
6679 #. type: verbatim
6680 #: ../src/guestfs-actions.pod:950
6681 #, no-wrap
6682 msgid ""
6683 " int\n"
6684 " guestfs_checksums_out (guestfs_h *g,\n"
6685 "                        const char *csumtype,\n"
6686 "                        const char *directory,\n"
6687 "                        const char *sumsfile);\n"
6688 "\n"
6689 msgstr ""
6690
6691 #. type: textblock
6692 #: ../src/guestfs-actions.pod:956 ../fish/guestfish-actions.pod:644
6693 msgid ""
6694 "This command computes the checksums of all regular files in C<directory> and "
6695 "then emits a list of those checksums to the local output file C<sumsfile>."
6696 msgstr ""
6697
6698 #. type: textblock
6699 #: ../src/guestfs-actions.pod:960 ../fish/guestfish-actions.pod:648
6700 msgid ""
6701 "This can be used for verifying the integrity of a virtual machine.  However "
6702 "to be properly secure you should pay attention to the output of the checksum "
6703 "command (it uses the ones from GNU coreutils).  In particular when the "
6704 "filename is not printable, coreutils uses a special backslash syntax.  For "
6705 "more information, see the GNU coreutils info file."
6706 msgstr ""
6707
6708 #. type: textblock
6709 #: ../src/guestfs-actions.pod:970
6710 msgid "(Added in 1.3.7)"
6711 msgstr ""
6712
6713 #. type: =head2
6714 #: ../src/guestfs-actions.pod:972
6715 msgid "guestfs_chmod"
6716 msgstr ""
6717
6718 #. type: verbatim
6719 #: ../src/guestfs-actions.pod:974
6720 #, no-wrap
6721 msgid ""
6722 " int\n"
6723 " guestfs_chmod (guestfs_h *g,\n"
6724 "                int mode,\n"
6725 "                const char *path);\n"
6726 "\n"
6727 msgstr ""
6728
6729 #. type: textblock
6730 #: ../src/guestfs-actions.pod:979 ../fish/guestfish-actions.pod:662
6731 msgid ""
6732 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
6733 "supported."
6734 msgstr ""
6735
6736 #. type: textblock
6737 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:665
6738 msgid ""
6739 "I<Note>: When using this command from guestfish, C<mode> by default would be "
6740 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
6741 "C<700>."
6742 msgstr ""
6743
6744 #. type: textblock
6745 #: ../src/guestfs-actions.pod:986 ../src/guestfs-actions.pod:4241 ../src/guestfs-actions.pod:4438 ../src/guestfs-actions.pod:4457 ../src/guestfs-actions.pod:4476 ../fish/guestfish-actions.pod:669 ../fish/guestfish-actions.pod:2870 ../fish/guestfish-actions.pod:2999 ../fish/guestfish-actions.pod:3009 ../fish/guestfish-actions.pod:3019
6746 msgid "The mode actually set is affected by the umask."
6747 msgstr ""
6748
6749 #. type: =head2
6750 #: ../src/guestfs-actions.pod:992
6751 msgid "guestfs_chown"
6752 msgstr ""
6753
6754 #. type: verbatim
6755 #: ../src/guestfs-actions.pod:994
6756 #, no-wrap
6757 msgid ""
6758 " int\n"
6759 " guestfs_chown (guestfs_h *g,\n"
6760 "                int owner,\n"
6761 "                int group,\n"
6762 "                const char *path);\n"
6763 "\n"
6764 msgstr ""
6765
6766 #. type: textblock
6767 #: ../src/guestfs-actions.pod:1000 ../fish/guestfish-actions.pod:675
6768 msgid "Change the file owner to C<owner> and group to C<group>."
6769 msgstr ""
6770
6771 #. type: textblock
6772 #: ../src/guestfs-actions.pod:1002 ../src/guestfs-actions.pod:3349 ../fish/guestfish-actions.pod:677 ../fish/guestfish-actions.pod:2328
6773 msgid ""
6774 "Only numeric uid and gid are supported.  If you want to use names, you will "
6775 "need to locate and parse the password file yourself (Augeas support makes "
6776 "this relatively easy)."
6777 msgstr ""
6778
6779 #. type: =head2
6780 #: ../src/guestfs-actions.pod:1010
6781 msgid "guestfs_command"
6782 msgstr ""
6783
6784 #. type: verbatim
6785 #: ../src/guestfs-actions.pod:1012
6786 #, no-wrap
6787 msgid ""
6788 " char *\n"
6789 " guestfs_command (guestfs_h *g,\n"
6790 "                  char *const *arguments);\n"
6791 "\n"
6792 msgstr ""
6793
6794 #. type: textblock
6795 #: ../src/guestfs-actions.pod:1016 ../fish/guestfish-actions.pod:685
6796 msgid ""
6797 "This call runs a command from the guest filesystem.  The filesystem must be "
6798 "mounted, and must contain a compatible operating system (ie. something "
6799 "Linux, with the same or compatible processor architecture)."
6800 msgstr ""
6801
6802 #. type: textblock
6803 #: ../src/guestfs-actions.pod:1021
6804 msgid ""
6805 "The single parameter is an argv-style list of arguments.  The first element "
6806 "is the name of the program to run.  Subsequent elements are parameters.  The "
6807 "list must be non-empty (ie. must contain a program name).  Note that the "
6808 "command runs directly, and is I<not> invoked via the shell (see "
6809 "C<guestfs_sh>)."
6810 msgstr ""
6811
6812 #. type: textblock
6813 #: ../src/guestfs-actions.pod:1028 ../fish/guestfish-actions.pod:697
6814 msgid "The return value is anything printed to I<stdout> by the command."
6815 msgstr ""
6816
6817 #. type: textblock
6818 #: ../src/guestfs-actions.pod:1031 ../fish/guestfish-actions.pod:700
6819 msgid ""
6820 "If the command returns a non-zero exit status, then this function returns an "
6821 "error message.  The error message string is the content of I<stderr> from "
6822 "the command."
6823 msgstr ""
6824
6825 #. type: textblock
6826 #: ../src/guestfs-actions.pod:1035 ../fish/guestfish-actions.pod:704
6827 msgid ""
6828 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
6829 "C</bin>.  If you require a program from another location, you should provide "
6830 "the full path in the first parameter."
6831 msgstr ""
6832
6833 #. type: textblock
6834 #: ../src/guestfs-actions.pod:1040 ../fish/guestfish-actions.pod:709
6835 msgid ""
6836 "Shared libraries and data files required by the program must be available on "
6837 "filesystems which are mounted in the correct places.  It is the caller's "
6838 "responsibility to ensure all filesystems that are needed are mounted at the "
6839 "right locations."
6840 msgstr ""
6841
6842 #. type: textblock
6843 #: ../src/guestfs-actions.pod:1052 ../src/guestfs-actions.pod:1072 ../src/guestfs-actions.pod:1535
6844 msgid "(Added in 0.9.1)"
6845 msgstr ""
6846
6847 #. type: =head2
6848 #: ../src/guestfs-actions.pod:1054
6849 msgid "guestfs_command_lines"
6850 msgstr ""
6851
6852 #. type: verbatim
6853 #: ../src/guestfs-actions.pod:1056
6854 #, no-wrap
6855 msgid ""
6856 " char **\n"
6857 " guestfs_command_lines (guestfs_h *g,\n"
6858 "                        char *const *arguments);\n"
6859 "\n"
6860 msgstr ""
6861
6862 #. type: textblock
6863 #: ../src/guestfs-actions.pod:1060
6864 msgid ""
6865 "This is the same as C<guestfs_command>, but splits the result into a list of "
6866 "lines."
6867 msgstr ""
6868
6869 #. type: textblock
6870 #: ../src/guestfs-actions.pod:1063
6871 msgid "See also: C<guestfs_sh_lines>"
6872 msgstr ""
6873
6874 #. type: =head2
6875 #: ../src/guestfs-actions.pod:1074
6876 msgid "guestfs_config"
6877 msgstr ""
6878
6879 #. type: verbatim
6880 #: ../src/guestfs-actions.pod:1076
6881 #, no-wrap
6882 msgid ""
6883 " int\n"
6884 " guestfs_config (guestfs_h *g,\n"
6885 "                 const char *qemuparam,\n"
6886 "                 const char *qemuvalue);\n"
6887 "\n"
6888 msgstr ""
6889
6890 #. type: textblock
6891 #: ../src/guestfs-actions.pod:1081 ../fish/guestfish-actions.pod:734
6892 msgid ""
6893 "This can be used to add arbitrary qemu command line parameters of the form "
6894 "C<-param value>.  Actually it's not quite arbitrary - we prevent you from "
6895 "setting some parameters which would interfere with parameters that we use."
6896 msgstr ""
6897
6898 #. type: textblock
6899 #: ../src/guestfs-actions.pod:1086 ../fish/guestfish-actions.pod:739
6900 msgid "The first character of C<param> string must be a C<-> (dash)."
6901 msgstr ""
6902
6903 #. type: textblock
6904 #: ../src/guestfs-actions.pod:1088 ../fish/guestfish-actions.pod:741
6905 msgid "C<value> can be NULL."
6906 msgstr ""
6907
6908 #. type: =head2
6909 #: ../src/guestfs-actions.pod:1094
6910 msgid "guestfs_copy_size"
6911 msgstr ""
6912
6913 #. type: verbatim
6914 #: ../src/guestfs-actions.pod:1096
6915 #, no-wrap
6916 msgid ""
6917 " int\n"
6918 " guestfs_copy_size (guestfs_h *g,\n"
6919 "                    const char *src,\n"
6920 "                    const char *dest,\n"
6921 "                    int64_t size);\n"
6922 "\n"
6923 msgstr ""
6924
6925 #. type: textblock
6926 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:747
6927 msgid ""
6928 "This command copies exactly C<size> bytes from one source device or file "
6929 "C<src> to another destination device or file C<dest>."
6930 msgstr ""
6931
6932 #. type: textblock
6933 #: ../src/guestfs-actions.pod:1105 ../fish/guestfish-actions.pod:750
6934 msgid ""
6935 "Note this will fail if the source is too short or if the destination is not "
6936 "large enough."
6937 msgstr ""
6938
6939 #. type: textblock
6940 #: ../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:6643 ../src/guestfs-actions.pod:6677 ../src/guestfs-actions.pod:7156 ../src/guestfs-actions.pod:7175
6941 msgid ""
6942 "This long-running command can generate progress notification messages so "
6943 "that the caller can display a progress bar or indicator.  To receive these "
6944 "messages, the caller must register a progress callback.  See "
6945 "L<guestfs(3)/guestfs_set_progress_callback>."
6946 msgstr ""
6947
6948 #. type: textblock
6949 #: ../src/guestfs-actions.pod:1115 ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:5235 ../src/guestfs-actions.pod:6884 ../src/guestfs-actions.pod:6904 ../src/guestfs-actions.pod:6990
6950 msgid "(Added in 1.0.87)"
6951 msgstr ""
6952
6953 #. type: =head2
6954 #: ../src/guestfs-actions.pod:1117
6955 msgid "guestfs_cp"
6956 msgstr ""
6957
6958 #. type: verbatim
6959 #: ../src/guestfs-actions.pod:1119
6960 #, no-wrap
6961 msgid ""
6962 " int\n"
6963 " guestfs_cp (guestfs_h *g,\n"
6964 "             const char *src,\n"
6965 "             const char *dest);\n"
6966 "\n"
6967 msgstr ""
6968
6969 #. type: textblock
6970 #: ../src/guestfs-actions.pod:1124 ../fish/guestfish-actions.pod:757
6971 msgid ""
6972 "This copies a file from C<src> to C<dest> where C<dest> is either a "
6973 "destination filename or destination directory."
6974 msgstr ""
6975
6976 #. type: textblock
6977 #: ../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:4702 ../src/guestfs-actions.pod:5079
6978 msgid "(Added in 1.0.18)"
6979 msgstr ""
6980
6981 #. type: =head2
6982 #: ../src/guestfs-actions.pod:1131
6983 msgid "guestfs_cp_a"
6984 msgstr ""
6985
6986 #. type: verbatim
6987 #: ../src/guestfs-actions.pod:1133
6988 #, no-wrap
6989 msgid ""
6990 " int\n"
6991 " guestfs_cp_a (guestfs_h *g,\n"
6992 "               const char *src,\n"
6993 "               const char *dest);\n"
6994 "\n"
6995 msgstr ""
6996
6997 #. type: textblock
6998 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:764
6999 msgid ""
7000 "This copies a file or directory from C<src> to C<dest> recursively using the "
7001 "C<cp -a> command."
7002 msgstr ""
7003
7004 #. type: =head2
7005 #: ../src/guestfs-actions.pod:1145
7006 msgid "guestfs_dd"
7007 msgstr ""
7008
7009 #. type: verbatim
7010 #: ../src/guestfs-actions.pod:1147
7011 #, no-wrap
7012 msgid ""
7013 " int\n"
7014 " guestfs_dd (guestfs_h *g,\n"
7015 "             const char *src,\n"
7016 "             const char *dest);\n"
7017 "\n"
7018 msgstr ""
7019
7020 #. type: textblock
7021 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:771
7022 msgid ""
7023 "This command copies from one source device or file C<src> to another "
7024 "destination device or file C<dest>.  Normally you would use this to copy to "
7025 "or from a device or partition, for example to duplicate a filesystem."
7026 msgstr ""
7027
7028 #. type: textblock
7029 #: ../src/guestfs-actions.pod:1157
7030 msgid ""
7031 "If the destination is a device, it must be as large or larger than the "
7032 "source file or device, otherwise the copy will fail.  This command cannot do "
7033 "partial copies (see C<guestfs_copy_size>)."
7034 msgstr ""
7035
7036 #. type: =head2
7037 #: ../src/guestfs-actions.pod:1165
7038 msgid "guestfs_df"
7039 msgstr ""
7040
7041 #. type: verbatim
7042 #: ../src/guestfs-actions.pod:1167
7043 #, no-wrap
7044 msgid ""
7045 " char *\n"
7046 " guestfs_df (guestfs_h *g);\n"
7047 "\n"
7048 msgstr ""
7049
7050 #. type: textblock
7051 #: ../src/guestfs-actions.pod:1170 ../fish/guestfish-actions.pod:784
7052 msgid "This command runs the C<df> command to report disk space used."
7053 msgstr ""
7054
7055 #. type: textblock
7056 #: ../src/guestfs-actions.pod:1172 ../src/guestfs-actions.pod:1189
7057 msgid ""
7058 "This command is mostly useful for interactive sessions.  It is I<not> "
7059 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7060 "from programs."
7061 msgstr ""
7062
7063 #. type: textblock
7064 #: ../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:4127 ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6405 ../src/guestfs-actions.pod:7023 ../src/guestfs-actions.pod:7036 ../src/guestfs-actions.pod:7049
7065 msgid "(Added in 1.0.54)"
7066 msgstr ""
7067
7068 #. type: =head2
7069 #: ../src/guestfs-actions.pod:1181
7070 msgid "guestfs_df_h"
7071 msgstr ""
7072
7073 #. type: verbatim
7074 #: ../src/guestfs-actions.pod:1183
7075 #, no-wrap
7076 msgid ""
7077 " char *\n"
7078 " guestfs_df_h (guestfs_h *g);\n"
7079 "\n"
7080 msgstr ""
7081
7082 #. type: textblock
7083 #: ../src/guestfs-actions.pod:1186 ../fish/guestfish-actions.pod:794
7084 msgid ""
7085 "This command runs the C<df -h> command to report disk space used in "
7086 "human-readable format."
7087 msgstr ""
7088
7089 #. type: =head2
7090 #: ../src/guestfs-actions.pod:1198
7091 msgid "guestfs_dmesg"
7092 msgstr ""
7093
7094 #. type: verbatim
7095 #: ../src/guestfs-actions.pod:1200
7096 #, no-wrap
7097 msgid ""
7098 " char *\n"
7099 " guestfs_dmesg (guestfs_h *g);\n"
7100 "\n"
7101 msgstr ""
7102
7103 #. type: textblock
7104 #: ../src/guestfs-actions.pod:1203 ../fish/guestfish-actions.pod:805
7105 msgid ""
7106 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7107 "This is sometimes useful for extended debugging of problems."
7108 msgstr ""
7109
7110 #. type: textblock
7111 #: ../src/guestfs-actions.pod:1207
7112 msgid ""
7113 "Another way to get the same information is to enable verbose messages with "
7114 "C<guestfs_set_verbose> or by setting the environment variable "
7115 "C<LIBGUESTFS_DEBUG=1> before running the program."
7116 msgstr ""
7117
7118 #. type: =head2
7119 #: ../src/guestfs-actions.pod:1217
7120 msgid "guestfs_download"
7121 msgstr ""
7122
7123 #. type: verbatim
7124 #: ../src/guestfs-actions.pod:1219
7125 #, no-wrap
7126 msgid ""
7127 " int\n"
7128 " guestfs_download (guestfs_h *g,\n"
7129 "                   const char *remotefilename,\n"
7130 "                   const char *filename);\n"
7131 "\n"
7132 msgstr ""
7133
7134 #. type: textblock
7135 #: ../src/guestfs-actions.pod:1224 ../src/guestfs-actions.pod:1249 ../fish/guestfish-actions.pod:818 ../fish/guestfish-actions.pod:831
7136 msgid ""
7137 "Download file C<remotefilename> and save it as C<filename> on the local "
7138 "machine."
7139 msgstr ""
7140
7141 #. type: textblock
7142 #: ../src/guestfs-actions.pod:1227 ../src/guestfs-actions.pod:6637 ../fish/guestfish-actions.pod:821 ../fish/guestfish-actions.pod:4447
7143 msgid "C<filename> can also be a named pipe."
7144 msgstr ""
7145
7146 #. type: textblock
7147 #: ../src/guestfs-actions.pod:1229
7148 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
7149 msgstr ""
7150
7151 #. type: =head2
7152 #: ../src/guestfs-actions.pod:1240
7153 msgid "guestfs_download_offset"
7154 msgstr ""
7155
7156 #. type: verbatim
7157 #: ../src/guestfs-actions.pod:1242
7158 #, no-wrap
7159 msgid ""
7160 " int\n"
7161 " guestfs_download_offset (guestfs_h *g,\n"
7162 "                          const char *remotefilename,\n"
7163 "                          const char *filename,\n"
7164 "                          int64_t offset,\n"
7165 "                          int64_t size);\n"
7166 "\n"
7167 msgstr ""
7168
7169 #. type: textblock
7170 #: ../src/guestfs-actions.pod:1252 ../fish/guestfish-actions.pod:834
7171 msgid ""
7172 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
7173 "region must be within the file or device)."
7174 msgstr ""
7175
7176 #. type: textblock
7177 #: ../src/guestfs-actions.pod:1255
7178 msgid ""
7179 "Note that there is no limit on the amount of data that can be downloaded "
7180 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
7181 "full amount unless an error occurs."
7182 msgstr ""
7183
7184 #. type: textblock
7185 #: ../src/guestfs-actions.pod:1260
7186 msgid "See also C<guestfs_download>, C<guestfs_pread>."
7187 msgstr ""
7188
7189 #. type: textblock
7190 #: ../src/guestfs-actions.pod:1269 ../src/guestfs-actions.pod:6682
7191 msgid "(Added in 1.5.17)"
7192 msgstr ""
7193
7194 #. type: =head2
7195 #: ../src/guestfs-actions.pod:1271
7196 msgid "guestfs_drop_caches"
7197 msgstr ""
7198
7199 #. type: verbatim
7200 #: ../src/guestfs-actions.pod:1273
7201 #, no-wrap
7202 msgid ""
7203 " int\n"
7204 " guestfs_drop_caches (guestfs_h *g,\n"
7205 "                      int whattodrop);\n"
7206 "\n"
7207 msgstr ""
7208
7209 #. type: textblock
7210 #: ../src/guestfs-actions.pod:1277 ../fish/guestfish-actions.pod:850
7211 msgid ""
7212 "This instructs the guest kernel to drop its page cache, and/or dentries and "
7213 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
7214 "to drop, see L<http://linux-mm.org/Drop_Caches>"
7215 msgstr ""
7216
7217 #. type: textblock
7218 #: ../src/guestfs-actions.pod:1282 ../fish/guestfish-actions.pod:855
7219 msgid "Setting C<whattodrop> to 3 should drop everything."
7220 msgstr ""
7221
7222 #. type: textblock
7223 #: ../src/guestfs-actions.pod:1284 ../fish/guestfish-actions.pod:857
7224 msgid ""
7225 "This automatically calls L<sync(2)> before the operation, so that the "
7226 "maximum guest memory is freed."
7227 msgstr ""
7228
7229 #. type: =head2
7230 #: ../src/guestfs-actions.pod:1291
7231 msgid "guestfs_du"
7232 msgstr ""
7233
7234 #. type: verbatim
7235 #: ../src/guestfs-actions.pod:1293
7236 #, no-wrap
7237 msgid ""
7238 " int64_t\n"
7239 " guestfs_du (guestfs_h *g,\n"
7240 "             const char *path);\n"
7241 "\n"
7242 msgstr ""
7243
7244 #. type: textblock
7245 #: ../src/guestfs-actions.pod:1297 ../fish/guestfish-actions.pod:864
7246 msgid ""
7247 "This command runs the C<du -s> command to estimate file space usage for "
7248 "C<path>."
7249 msgstr ""
7250
7251 #. type: textblock
7252 #: ../src/guestfs-actions.pod:1300 ../fish/guestfish-actions.pod:867
7253 msgid ""
7254 "C<path> can be a file or a directory.  If C<path> is a directory then the "
7255 "estimate includes the contents of the directory and all subdirectories "
7256 "(recursively)."
7257 msgstr ""
7258
7259 #. type: textblock
7260 #: ../src/guestfs-actions.pod:1304 ../fish/guestfish-actions.pod:871
7261 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
7262 msgstr ""
7263
7264 #. type: =head2
7265 #: ../src/guestfs-actions.pod:1311
7266 msgid "guestfs_e2fsck_f"
7267 msgstr ""
7268
7269 #. type: verbatim
7270 #: ../src/guestfs-actions.pod:1313
7271 #, no-wrap
7272 msgid ""
7273 " int\n"
7274 " guestfs_e2fsck_f (guestfs_h *g,\n"
7275 "                   const char *device);\n"
7276 "\n"
7277 msgstr ""
7278
7279 #. type: textblock
7280 #: ../src/guestfs-actions.pod:1317 ../fish/guestfish-actions.pod:878
7281 msgid ""
7282 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
7283 "on C<device>, noninteractively (C<-p>), even if the filesystem appears to be "
7284 "clean (C<-f>)."
7285 msgstr ""
7286
7287 #. type: textblock
7288 #: ../src/guestfs-actions.pod:1321
7289 msgid ""
7290 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
7291 "Normally you should use C<guestfs_fsck>."
7292 msgstr ""
7293
7294 #. type: textblock
7295 #: ../src/guestfs-actions.pod:1326
7296 msgid "(Added in 1.0.29)"
7297 msgstr ""
7298
7299 #. type: =head2
7300 #: ../src/guestfs-actions.pod:1328
7301 msgid "guestfs_echo_daemon"
7302 msgstr ""
7303
7304 #. type: verbatim
7305 #: ../src/guestfs-actions.pod:1330
7306 #, no-wrap
7307 msgid ""
7308 " char *\n"
7309 " guestfs_echo_daemon (guestfs_h *g,\n"
7310 "                      char *const *words);\n"
7311 "\n"
7312 msgstr ""
7313
7314 #. type: textblock
7315 #: ../src/guestfs-actions.pod:1334 ../fish/guestfish-actions.pod:889
7316 msgid ""
7317 "This command concatenates the list of C<words> passed with single spaces "
7318 "between them and returns the resulting string."
7319 msgstr ""
7320
7321 #. type: textblock
7322 #: ../src/guestfs-actions.pod:1337 ../fish/guestfish-actions.pod:892
7323 msgid "You can use this command to test the connection through to the daemon."
7324 msgstr ""
7325
7326 #. type: textblock
7327 #: ../src/guestfs-actions.pod:1339
7328 msgid "See also C<guestfs_ping_daemon>."
7329 msgstr ""
7330
7331 #. type: textblock
7332 #: ../src/guestfs-actions.pod:1344 ../src/guestfs-actions.pod:2071 ../src/guestfs-actions.pod:5885
7333 msgid "(Added in 1.0.69)"
7334 msgstr ""
7335
7336 #. type: =head2
7337 #: ../src/guestfs-actions.pod:1346
7338 msgid "guestfs_egrep"
7339 msgstr ""
7340
7341 #. type: verbatim
7342 #: ../src/guestfs-actions.pod:1348
7343 #, no-wrap
7344 msgid ""
7345 " char **\n"
7346 " guestfs_egrep (guestfs_h *g,\n"
7347 "                const char *regex,\n"
7348 "                const char *path);\n"
7349 "\n"
7350 msgstr ""
7351
7352 #. type: textblock
7353 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:900
7354 msgid "This calls the external C<egrep> program and returns the matching lines."
7355 msgstr ""
7356
7357 #. type: textblock
7358 #: ../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:3510 ../src/guestfs-actions.pod:3524 ../src/guestfs-actions.pod:3537 ../src/guestfs-actions.pod:3551 ../src/guestfs-actions.pod:4537 ../src/guestfs-actions.pod:5413 ../src/guestfs-actions.pod:5462 ../src/guestfs-actions.pod:6249 ../src/guestfs-actions.pod:6261 ../src/guestfs-actions.pod:6274 ../src/guestfs-actions.pod:6287 ../src/guestfs-actions.pod:6309 ../src/guestfs-actions.pod:6322 ../src/guestfs-actions.pod:6335 ../src/guestfs-actions.pod:6348 ../src/guestfs-actions.pod:7119 ../src/guestfs-actions.pod:7138 ../src/guestfs-actions.pod:7223 ../src/guestfs-actions.pod:7242 ../src/guestfs-actions.pod:7288 ../src/guestfs-actions.pod:7307
7359 msgid "(Added in 1.0.66)"
7360 msgstr ""
7361
7362 #. type: =head2
7363 #: ../src/guestfs-actions.pod:1365
7364 msgid "guestfs_egrepi"
7365 msgstr ""
7366
7367 #. type: verbatim
7368 #: ../src/guestfs-actions.pod:1367
7369 #, no-wrap
7370 msgid ""
7371 " char **\n"
7372 " guestfs_egrepi (guestfs_h *g,\n"
7373 "                 const char *regex,\n"
7374 "                 const char *path);\n"
7375 "\n"
7376 msgstr ""
7377
7378 #. type: textblock
7379 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:910
7380 msgid "This calls the external C<egrep -i> program and returns the matching lines."
7381 msgstr ""
7382
7383 #. type: =head2
7384 #: ../src/guestfs-actions.pod:1384
7385 msgid "guestfs_equal"
7386 msgstr ""
7387
7388 #. type: verbatim
7389 #: ../src/guestfs-actions.pod:1386
7390 #, no-wrap
7391 msgid ""
7392 " int\n"
7393 " guestfs_equal (guestfs_h *g,\n"
7394 "                const char *file1,\n"
7395 "                const char *file2);\n"
7396 "\n"
7397 msgstr ""
7398
7399 #. type: textblock
7400 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:920
7401 msgid ""
7402 "This compares the two files C<file1> and C<file2> and returns true if their "
7403 "content is exactly equal, or false otherwise."
7404 msgstr ""
7405
7406 #. type: textblock
7407 #: ../src/guestfs-actions.pod:1394 ../fish/guestfish-actions.pod:923
7408 msgid "The external L<cmp(1)> program is used for the comparison."
7409 msgstr ""
7410
7411 #. type: =head2
7412 #: ../src/guestfs-actions.pod:1400
7413 msgid "guestfs_exists"
7414 msgstr ""
7415
7416 #. type: verbatim
7417 #: ../src/guestfs-actions.pod:1402
7418 #, no-wrap
7419 msgid ""
7420 " int\n"
7421 " guestfs_exists (guestfs_h *g,\n"
7422 "                 const char *path);\n"
7423 "\n"
7424 msgstr ""
7425
7426 #. type: textblock
7427 #: ../src/guestfs-actions.pod:1406 ../fish/guestfish-actions.pod:929
7428 msgid ""
7429 "This returns C<true> if and only if there is a file, directory (or anything) "
7430 "with the given C<path> name."
7431 msgstr ""
7432
7433 #. type: textblock
7434 #: ../src/guestfs-actions.pod:1409
7435 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
7436 msgstr ""
7437
7438 #. type: =head2
7439 #: ../src/guestfs-actions.pod:1415
7440 msgid "guestfs_fallocate"
7441 msgstr ""
7442
7443 #. type: verbatim
7444 #: ../src/guestfs-actions.pod:1417
7445 #, no-wrap
7446 msgid ""
7447 " int\n"
7448 " guestfs_fallocate (guestfs_h *g,\n"
7449 "                    const char *path,\n"
7450 "                    int len);\n"
7451 "\n"
7452 msgstr ""
7453
7454 #. type: textblock
7455 #: ../src/guestfs-actions.pod:1422 ../src/guestfs-actions.pod:1448 ../fish/guestfish-actions.pod:938 ../fish/guestfish-actions.pod:957
7456 msgid ""
7457 "This command preallocates a file (containing zero bytes) named C<path> of "
7458 "size C<len> bytes.  If the file exists already, it is overwritten."
7459 msgstr ""
7460
7461 #. type: textblock
7462 #: ../src/guestfs-actions.pod:1426 ../fish/guestfish-actions.pod:942
7463 msgid ""
7464 "Do not confuse this with the guestfish-specific C<alloc> command which "
7465 "allocates a file in the host and attaches it as a device."
7466 msgstr ""
7467
7468 #. type: textblock
7469 #: ../src/guestfs-actions.pod:1432 ../fish/guestfish-actions.pod:946
7470 msgid ""
7471 "This function is deprecated.  In new code, use the C<fallocate64> call "
7472 "instead."
7473 msgstr ""
7474
7475 #. type: =head2
7476 #: ../src/guestfs-actions.pod:1441
7477 msgid "guestfs_fallocate64"
7478 msgstr ""
7479
7480 #. type: verbatim
7481 #: ../src/guestfs-actions.pod:1443
7482 #, no-wrap
7483 msgid ""
7484 " int\n"
7485 " guestfs_fallocate64 (guestfs_h *g,\n"
7486 "                      const char *path,\n"
7487 "                      int64_t len);\n"
7488 "\n"
7489 msgstr ""
7490
7491 #. type: textblock
7492 #: ../src/guestfs-actions.pod:1452
7493 msgid ""
7494 "Note that this call allocates disk blocks for the file.  To create a sparse "
7495 "file use C<guestfs_truncate_size> instead."
7496 msgstr ""
7497
7498 #. type: textblock
7499 #: ../src/guestfs-actions.pod:1455
7500 msgid ""
7501 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
7502 "oversight it only allowed 30 bit lengths to be specified, effectively "
7503 "limiting the maximum size of files created through that call to 1GB."
7504 msgstr ""
7505
7506 #. type: textblock
7507 #: ../src/guestfs-actions.pod:1460 ../fish/guestfish-actions.pod:969
7508 msgid ""
7509 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
7510 "commands which create a file in the host and attach it as a device."
7511 msgstr ""
7512
7513 #. type: textblock
7514 #: ../src/guestfs-actions.pod:1466
7515 msgid "(Added in 1.3.17)"
7516 msgstr ""
7517
7518 #. type: =head2
7519 #: ../src/guestfs-actions.pod:1468
7520 msgid "guestfs_fgrep"
7521 msgstr ""
7522
7523 #. type: verbatim
7524 #: ../src/guestfs-actions.pod:1470
7525 #, no-wrap
7526 msgid ""
7527 " char **\n"
7528 " guestfs_fgrep (guestfs_h *g,\n"
7529 "                const char *pattern,\n"
7530 "                const char *path);\n"
7531 "\n"
7532 msgstr ""
7533
7534 #. type: textblock
7535 #: ../src/guestfs-actions.pod:1475 ../fish/guestfish-actions.pod:977
7536 msgid "This calls the external C<fgrep> program and returns the matching lines."
7537 msgstr ""
7538
7539 #. type: =head2
7540 #: ../src/guestfs-actions.pod:1487
7541 msgid "guestfs_fgrepi"
7542 msgstr ""
7543
7544 #. type: verbatim
7545 #: ../src/guestfs-actions.pod:1489
7546 #, no-wrap
7547 msgid ""
7548 " char **\n"
7549 " guestfs_fgrepi (guestfs_h *g,\n"
7550 "                 const char *pattern,\n"
7551 "                 const char *path);\n"
7552 "\n"
7553 msgstr ""
7554
7555 #. type: textblock
7556 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:987
7557 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
7558 msgstr ""
7559
7560 #. type: =head2
7561 #: ../src/guestfs-actions.pod:1506
7562 msgid "guestfs_file"
7563 msgstr ""
7564
7565 #. type: verbatim
7566 #: ../src/guestfs-actions.pod:1508
7567 #, no-wrap
7568 msgid ""
7569 " char *\n"
7570 " guestfs_file (guestfs_h *g,\n"
7571 "               const char *path);\n"
7572 "\n"
7573 msgstr ""
7574
7575 #. type: textblock
7576 #: ../src/guestfs-actions.pod:1512 ../fish/guestfish-actions.pod:997
7577 msgid ""
7578 "This call uses the standard L<file(1)> command to determine the type or "
7579 "contents of the file."
7580 msgstr ""
7581
7582 #. type: textblock
7583 #: ../src/guestfs-actions.pod:1515 ../fish/guestfish-actions.pod:1000
7584 msgid ""
7585 "This call will also transparently look inside various types of compressed "
7586 "file."
7587 msgstr ""
7588
7589 #. type: textblock
7590 #: ../src/guestfs-actions.pod:1518 ../fish/guestfish-actions.pod:1003
7591 msgid ""
7592 "The exact command which runs is C<file -zb path>.  Note in particular that "
7593 "the filename is not prepended to the output (the C<-b> option)."
7594 msgstr ""
7595
7596 #. type: textblock
7597 #: ../src/guestfs-actions.pod:1522
7598 msgid ""
7599 "This command can also be used on C</dev/> devices (and partitions, LV "
7600 "names).  You can for example use this to determine if a device contains a "
7601 "filesystem, although it's usually better to use C<guestfs_vfs_type>."
7602 msgstr ""
7603
7604 #. type: textblock
7605 #: ../src/guestfs-actions.pod:1527 ../fish/guestfish-actions.pod:1012
7606 msgid ""
7607 "If the C<path> does not begin with C</dev/> then this command only works for "
7608 "the content of regular files.  For other file types (directory, symbolic "
7609 "link etc) it will just return the string C<directory> etc."
7610 msgstr ""
7611
7612 #. type: =head2
7613 #: ../src/guestfs-actions.pod:1537
7614 msgid "guestfs_file_architecture"
7615 msgstr ""
7616
7617 #. type: verbatim
7618 #: ../src/guestfs-actions.pod:1539
7619 #, no-wrap
7620 msgid ""
7621 " char *\n"
7622 " guestfs_file_architecture (guestfs_h *g,\n"
7623 "                            const char *filename);\n"
7624 "\n"
7625 msgstr ""
7626
7627 #. type: textblock
7628 #: ../src/guestfs-actions.pod:1543 ../fish/guestfish-actions.pod:1021
7629 msgid ""
7630 "This detects the architecture of the binary C<filename>, and returns it if "
7631 "known."
7632 msgstr ""
7633
7634 #. type: textblock
7635 #: ../src/guestfs-actions.pod:1546 ../fish/guestfish-actions.pod:1024
7636 msgid "Currently defined architectures are:"
7637 msgstr ""
7638
7639 #. type: =item
7640 #: ../src/guestfs-actions.pod:1550 ../fish/guestfish-actions.pod:1028
7641 msgid "\"i386\""
7642 msgstr ""
7643
7644 #. type: textblock
7645 #: ../src/guestfs-actions.pod:1552 ../fish/guestfish-actions.pod:1030
7646 msgid ""
7647 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
7648 "irrespective of the precise processor requirements of the binary."
7649 msgstr ""
7650
7651 #. type: =item
7652 #: ../src/guestfs-actions.pod:1555 ../fish/guestfish-actions.pod:1033
7653 msgid "\"x86_64\""
7654 msgstr ""
7655
7656 #. type: textblock
7657 #: ../src/guestfs-actions.pod:1557 ../fish/guestfish-actions.pod:1035
7658 msgid "64 bit x86-64."
7659 msgstr ""
7660
7661 #. type: =item
7662 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1037
7663 msgid "\"sparc\""
7664 msgstr ""
7665
7666 #. type: textblock
7667 #: ../src/guestfs-actions.pod:1561 ../fish/guestfish-actions.pod:1039
7668 msgid "32 bit SPARC."
7669 msgstr ""
7670
7671 #. type: =item
7672 #: ../src/guestfs-actions.pod:1563 ../fish/guestfish-actions.pod:1041
7673 msgid "\"sparc64\""
7674 msgstr ""
7675
7676 #. type: textblock
7677 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1043
7678 msgid "64 bit SPARC V9 and above."
7679 msgstr ""
7680
7681 #. type: =item
7682 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1045
7683 msgid "\"ia64\""
7684 msgstr ""
7685
7686 #. type: textblock
7687 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1047
7688 msgid "Intel Itanium."
7689 msgstr ""
7690
7691 #. type: =item
7692 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1049
7693 msgid "\"ppc\""
7694 msgstr ""
7695
7696 #. type: textblock
7697 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1051
7698 msgid "32 bit Power PC."
7699 msgstr ""
7700
7701 #. type: =item
7702 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1053
7703 msgid "\"ppc64\""
7704 msgstr ""
7705
7706 #. type: textblock
7707 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1055
7708 msgid "64 bit Power PC."
7709 msgstr ""
7710
7711 #. type: textblock
7712 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1059
7713 msgid "Libguestfs may return other architecture strings in future."
7714 msgstr ""
7715
7716 #. type: textblock
7717 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1061
7718 msgid "The function works on at least the following types of files:"
7719 msgstr ""
7720
7721 #. type: textblock
7722 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1067
7723 msgid "many types of Un*x and Linux binary"
7724 msgstr ""
7725
7726 #. type: textblock
7727 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1071
7728 msgid "many types of Un*x and Linux shared library"
7729 msgstr ""
7730
7731 #. type: textblock
7732 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1075
7733 msgid "Windows Win32 and Win64 binaries"
7734 msgstr ""
7735
7736 #. type: textblock
7737 #: ../src/guestfs-actions.pod:1601 ../fish/guestfish-actions.pod:1079
7738 msgid "Windows Win32 and Win64 DLLs"
7739 msgstr ""
7740
7741 #. type: textblock
7742 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1081
7743 msgid "Win32 binaries and DLLs return C<i386>."
7744 msgstr ""
7745
7746 #. type: textblock
7747 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1083
7748 msgid "Win64 binaries and DLLs return C<x86_64>."
7749 msgstr ""
7750
7751 #. type: textblock
7752 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1087
7753 msgid "Linux kernel modules"
7754 msgstr ""
7755
7756 #. type: textblock
7757 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1091
7758 msgid "Linux new-style initrd images"
7759 msgstr ""
7760
7761 #. type: textblock
7762 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1095
7763 msgid "some non-x86 Linux vmlinuz kernels"
7764 msgstr ""
7765
7766 #. type: textblock
7767 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1099
7768 msgid "What it can't do currently:"
7769 msgstr ""
7770
7771 #. type: textblock
7772 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1105
7773 msgid "static libraries (libfoo.a)"
7774 msgstr ""
7775
7776 #. type: textblock
7777 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1109
7778 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
7779 msgstr ""
7780
7781 #. type: textblock
7782 #: ../src/guestfs-actions.pod:1635 ../fish/guestfish-actions.pod:1113
7783 msgid "x86 Linux vmlinuz kernels"
7784 msgstr ""
7785
7786 #. type: textblock
7787 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1115
7788 msgid ""
7789 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
7790 "compressed code, and are horribly hard to unpack.  If you want to find the "
7791 "architecture of a kernel, use the architecture of the associated initrd or "
7792 "kernel module(s) instead."
7793 msgstr ""
7794
7795 #. type: textblock
7796 #: ../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:2703 ../src/guestfs-actions.pod:2724 ../src/guestfs-actions.pod:2761 ../src/guestfs-actions.pod:2845 ../src/guestfs-actions.pod:2907 ../src/guestfs-actions.pod:3133 ../src/guestfs-actions.pod:3265
7797 msgid "(Added in 1.5.3)"
7798 msgstr ""
7799
7800 #. type: =head2
7801 #: ../src/guestfs-actions.pod:1649
7802 msgid "guestfs_filesize"
7803 msgstr ""
7804
7805 #. type: verbatim
7806 #: ../src/guestfs-actions.pod:1651
7807 #, no-wrap
7808 msgid ""
7809 " int64_t\n"
7810 " guestfs_filesize (guestfs_h *g,\n"
7811 "                   const char *file);\n"
7812 "\n"
7813 msgstr ""
7814
7815 #. type: textblock
7816 #: ../src/guestfs-actions.pod:1655 ../fish/guestfish-actions.pod:1126
7817 msgid "This command returns the size of C<file> in bytes."
7818 msgstr ""
7819
7820 #. type: textblock
7821 #: ../src/guestfs-actions.pod:1657
7822 msgid ""
7823 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
7824 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
7825 "devices, use C<guestfs_blockdev_getsize64>."
7826 msgstr ""
7827
7828 #. type: textblock
7829 #: ../src/guestfs-actions.pod:1663
7830 msgid "(Added in 1.0.82)"
7831 msgstr ""
7832
7833 #. type: =head2
7834 #: ../src/guestfs-actions.pod:1665
7835 msgid "guestfs_fill"
7836 msgstr ""
7837
7838 #. type: verbatim
7839 #: ../src/guestfs-actions.pod:1667
7840 #, no-wrap
7841 msgid ""
7842 " int\n"
7843 " guestfs_fill (guestfs_h *g,\n"
7844 "               int c,\n"
7845 "               int len,\n"
7846 "               const char *path);\n"
7847 "\n"
7848 msgstr ""
7849
7850 #. type: textblock
7851 #: ../src/guestfs-actions.pod:1673 ../fish/guestfish-actions.pod:1136
7852 msgid ""
7853 "This command creates a new file called C<path>.  The initial content of the "
7854 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
7855 "C<[0..255]>."
7856 msgstr ""
7857
7858 #. type: textblock
7859 #: ../src/guestfs-actions.pod:1677
7860 msgid ""
7861 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
7862 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
7863 "bytes use C<guestfs_fill_pattern>."
7864 msgstr ""
7865
7866 #. type: textblock
7867 #: ../src/guestfs-actions.pod:1689
7868 msgid "(Added in 1.0.79)"
7869 msgstr ""
7870
7871 #. type: =head2
7872 #: ../src/guestfs-actions.pod:1691
7873 msgid "guestfs_fill_pattern"
7874 msgstr ""
7875
7876 #. type: verbatim
7877 #: ../src/guestfs-actions.pod:1693
7878 #, no-wrap
7879 msgid ""
7880 " int\n"
7881 " guestfs_fill_pattern (guestfs_h *g,\n"
7882 "                       const char *pattern,\n"
7883 "                       int len,\n"
7884 "                       const char *path);\n"
7885 "\n"
7886 msgstr ""
7887
7888 #. type: textblock
7889 #: ../src/guestfs-actions.pod:1699
7890 msgid ""
7891 "This function is like C<guestfs_fill> except that it creates a new file of "
7892 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
7893 "pattern is truncated if necessary to ensure the length of the file is "
7894 "exactly C<len> bytes."
7895 msgstr ""
7896
7897 #. type: textblock
7898 #: ../src/guestfs-actions.pod:1711
7899 msgid "(Added in 1.3.12)"
7900 msgstr ""
7901
7902 #. type: =head2
7903 #: ../src/guestfs-actions.pod:1713
7904 msgid "guestfs_find"
7905 msgstr ""
7906
7907 #. type: verbatim
7908 #: ../src/guestfs-actions.pod:1715
7909 #, no-wrap
7910 msgid ""
7911 " char **\n"
7912 " guestfs_find (guestfs_h *g,\n"
7913 "               const char *directory);\n"
7914 "\n"
7915 msgstr ""
7916
7917 #. type: textblock
7918 #: ../src/guestfs-actions.pod:1719 ../fish/guestfish-actions.pod:1158
7919 msgid ""
7920 "This command lists out all files and directories, recursively, starting at "
7921 "C<directory>.  It is essentially equivalent to running the shell command "
7922 "C<find directory -print> but some post-processing happens on the output, "
7923 "described below."
7924 msgstr ""
7925
7926 #. type: textblock
7927 #: ../src/guestfs-actions.pod:1724 ../fish/guestfish-actions.pod:1163
7928 msgid ""
7929 "This returns a list of strings I<without any prefix>.  Thus if the directory "
7930 "structure was:"
7931 msgstr ""
7932
7933 #. type: verbatim
7934 #: ../src/guestfs-actions.pod:1727 ../fish/guestfish-actions.pod:1166
7935 #, no-wrap
7936 msgid ""
7937 " /tmp/a\n"
7938 " /tmp/b\n"
7939 " /tmp/c/d\n"
7940 "\n"
7941 msgstr ""
7942
7943 #. type: textblock
7944 #: ../src/guestfs-actions.pod:1731
7945 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
7946 msgstr ""
7947
7948 #. type: verbatim
7949 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1173
7950 #, no-wrap
7951 msgid ""
7952 " a\n"
7953 " b\n"
7954 " c\n"
7955 " c/d\n"
7956 "\n"
7957 msgstr ""
7958
7959 #. type: textblock
7960 #: ../src/guestfs-actions.pod:1739 ../fish/guestfish-actions.pod:1178
7961 msgid "If C<directory> is not a directory, then this command returns an error."
7962 msgstr ""
7963
7964 #. type: textblock
7965 #: ../src/guestfs-actions.pod:1742 ../fish/guestfish-actions.pod:1181
7966 msgid "The returned list is sorted."
7967 msgstr ""
7968
7969 #. type: textblock
7970 #: ../src/guestfs-actions.pod:1744
7971 msgid "See also C<guestfs_find0>."
7972 msgstr ""
7973
7974 #. type: textblock
7975 #: ../src/guestfs-actions.pod:1753 ../src/guestfs-actions.pod:3954 ../src/guestfs-actions.pod:5497
7976 msgid "(Added in 1.0.27)"
7977 msgstr ""
7978
7979 #. type: =head2
7980 #: ../src/guestfs-actions.pod:1755
7981 msgid "guestfs_find0"
7982 msgstr ""
7983
7984 #. type: verbatim
7985 #: ../src/guestfs-actions.pod:1757
7986 #, no-wrap
7987 msgid ""
7988 " int\n"
7989 " guestfs_find0 (guestfs_h *g,\n"
7990 "                const char *directory,\n"
7991 "                const char *files);\n"
7992 "\n"
7993 msgstr ""
7994
7995 #. type: textblock
7996 #: ../src/guestfs-actions.pod:1762 ../fish/guestfish-actions.pod:1192
7997 msgid ""
7998 "This command lists out all files and directories, recursively, starting at "
7999 "C<directory>, placing the resulting list in the external file called "
8000 "C<files>."
8001 msgstr ""
8002
8003 #. type: textblock
8004 #: ../src/guestfs-actions.pod:1766
8005 msgid ""
8006 "This command works the same way as C<guestfs_find> with the following "
8007 "exceptions:"
8008 msgstr ""
8009
8010 #. type: textblock
8011 #: ../src/guestfs-actions.pod:1773 ../fish/guestfish-actions.pod:1203
8012 msgid "The resulting list is written to an external file."
8013 msgstr ""
8014
8015 #. type: textblock
8016 #: ../src/guestfs-actions.pod:1777 ../fish/guestfish-actions.pod:1207
8017 msgid ""
8018 "Items (filenames) in the result are separated by C<\\0> characters.  See "
8019 "L<find(1)> option I<-print0>."
8020 msgstr ""
8021
8022 #. type: textblock
8023 #: ../src/guestfs-actions.pod:1782 ../fish/guestfish-actions.pod:1212
8024 msgid "This command is not limited in the number of names that it can return."
8025 msgstr ""
8026
8027 #. type: textblock
8028 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1217
8029 msgid "The result list is not sorted."
8030 msgstr ""
8031
8032 #. type: textblock
8033 #: ../src/guestfs-actions.pod:1793
8034 msgid "(Added in 1.0.74)"
8035 msgstr ""
8036
8037 #. type: =head2
8038 #: ../src/guestfs-actions.pod:1795
8039 msgid "guestfs_findfs_label"
8040 msgstr ""
8041
8042 #. type: verbatim
8043 #: ../src/guestfs-actions.pod:1797
8044 #, no-wrap
8045 msgid ""
8046 " char *\n"
8047 " guestfs_findfs_label (guestfs_h *g,\n"
8048 "                       const char *label);\n"
8049 "\n"
8050 msgstr ""
8051
8052 #. type: textblock
8053 #: ../src/guestfs-actions.pod:1801 ../fish/guestfish-actions.pod:1227
8054 msgid ""
8055 "This command searches the filesystems and returns the one which has the "
8056 "given label.  An error is returned if no such filesystem can be found."
8057 msgstr ""
8058
8059 #. type: textblock
8060 #: ../src/guestfs-actions.pod:1805
8061 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8062 msgstr ""
8063
8064 #. type: =head2
8065 #: ../src/guestfs-actions.pod:1812
8066 msgid "guestfs_findfs_uuid"
8067 msgstr ""
8068
8069 #. type: verbatim
8070 #: ../src/guestfs-actions.pod:1814
8071 #, no-wrap
8072 msgid ""
8073 " char *\n"
8074 " guestfs_findfs_uuid (guestfs_h *g,\n"
8075 "                      const char *uuid);\n"
8076 "\n"
8077 msgstr ""
8078
8079 #. type: textblock
8080 #: ../src/guestfs-actions.pod:1818 ../fish/guestfish-actions.pod:1237
8081 msgid ""
8082 "This command searches the filesystems and returns the one which has the "
8083 "given UUID.  An error is returned if no such filesystem can be found."
8084 msgstr ""
8085
8086 #. type: textblock
8087 #: ../src/guestfs-actions.pod:1822
8088 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8089 msgstr ""
8090
8091 #. type: =head2
8092 #: ../src/guestfs-actions.pod:1829
8093 msgid "guestfs_fsck"
8094 msgstr ""
8095
8096 #. type: verbatim
8097 #: ../src/guestfs-actions.pod:1831
8098 #, no-wrap
8099 msgid ""
8100 " int\n"
8101 " guestfs_fsck (guestfs_h *g,\n"
8102 "               const char *fstype,\n"
8103 "               const char *device);\n"
8104 "\n"
8105 msgstr ""
8106
8107 #. type: textblock
8108 #: ../src/guestfs-actions.pod:1836 ../fish/guestfish-actions.pod:1247
8109 msgid ""
8110 "This runs the filesystem checker (fsck) on C<device> which should have "
8111 "filesystem type C<fstype>."
8112 msgstr ""
8113
8114 #. type: textblock
8115 #: ../src/guestfs-actions.pod:1839 ../fish/guestfish-actions.pod:1250
8116 msgid ""
8117 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8118 "codes from C<fsck>."
8119 msgstr ""
8120
8121 #. type: textblock
8122 #: ../src/guestfs-actions.pod:1848 ../fish/guestfish-actions.pod:1259
8123 msgid "Multiple status codes can be summed together."
8124 msgstr ""
8125
8126 #. type: textblock
8127 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1263
8128 msgid ""
8129 "A non-zero return code can mean \"success\", for example if errors have been "
8130 "corrected on the filesystem."
8131 msgstr ""
8132
8133 #. type: textblock
8134 #: ../src/guestfs-actions.pod:1857 ../fish/guestfish-actions.pod:1268
8135 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8136 msgstr ""
8137
8138 #. type: textblock
8139 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1273
8140 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8141 msgstr ""
8142
8143 #. type: textblock
8144 #: ../src/guestfs-actions.pod:1866 ../src/guestfs-actions.pod:7161
8145 msgid "(Added in 1.0.16)"
8146 msgstr ""
8147
8148 #. type: =head2
8149 #: ../src/guestfs-actions.pod:1868
8150 msgid "guestfs_get_append"
8151 msgstr ""
8152
8153 #. type: verbatim
8154 #: ../src/guestfs-actions.pod:1870
8155 #, no-wrap
8156 msgid ""
8157 " const char *\n"
8158 " guestfs_get_append (guestfs_h *g);\n"
8159 "\n"
8160 msgstr ""
8161
8162 #. type: textblock
8163 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1279
8164 msgid ""
8165 "Return the additional kernel options which are added to the guest kernel "
8166 "command line."
8167 msgstr ""
8168
8169 #. type: textblock
8170 #: ../src/guestfs-actions.pod:1876 ../fish/guestfish-actions.pod:1282
8171 msgid "If C<NULL> then no options are added."
8172 msgstr ""
8173
8174 #. type: textblock
8175 #: ../src/guestfs-actions.pod:1878
8176 msgid ""
8177 "This function returns a string which may be NULL.  There is no way to return "
8178 "an error from this function.  The string is owned by the guest handle and "
8179 "must I<not> be freed."
8180 msgstr ""
8181
8182 #. type: textblock
8183 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:5175 ../src/guestfs-actions.pod:5655 ../src/guestfs-actions.pod:6023 ../src/guestfs-actions.pod:6042 ../src/guestfs-actions.pod:6058 ../src/guestfs-actions.pod:6075 ../src/guestfs-actions.pod:6832 ../src/guestfs-actions.pod:6850 ../src/guestfs-actions.pod:7204
8184 msgid "(Added in 1.0.26)"
8185 msgstr ""
8186
8187 #. type: =head2
8188 #: ../src/guestfs-actions.pod:1884
8189 msgid "guestfs_get_autosync"
8190 msgstr ""
8191
8192 #. type: verbatim
8193 #: ../src/guestfs-actions.pod:1886
8194 #, no-wrap
8195 msgid ""
8196 " int\n"
8197 " guestfs_get_autosync (guestfs_h *g);\n"
8198 "\n"
8199 msgstr ""
8200
8201 #. type: textblock
8202 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
8203 msgid "Get the autosync flag."
8204 msgstr ""
8205
8206 #. type: =head2
8207 #: ../src/guestfs-actions.pod:1895
8208 msgid "guestfs_get_direct"
8209 msgstr ""
8210
8211 #. type: verbatim
8212 #: ../src/guestfs-actions.pod:1897
8213 #, no-wrap
8214 msgid ""
8215 " int\n"
8216 " guestfs_get_direct (guestfs_h *g);\n"
8217 "\n"
8218 msgstr ""
8219
8220 #. type: textblock
8221 #: ../src/guestfs-actions.pod:1900 ../fish/guestfish-actions.pod:1294
8222 msgid "Return the direct appliance mode flag."
8223 msgstr ""
8224
8225 #. type: textblock
8226 #: ../src/guestfs-actions.pod:1904 ../src/guestfs-actions.pod:5696
8227 msgid "(Added in 1.0.72)"
8228 msgstr ""
8229
8230 #. type: =head2
8231 #: ../src/guestfs-actions.pod:1906
8232 msgid "guestfs_get_e2label"
8233 msgstr ""
8234
8235 #. type: verbatim
8236 #: ../src/guestfs-actions.pod:1908
8237 #, no-wrap
8238 msgid ""
8239 " char *\n"
8240 " guestfs_get_e2label (guestfs_h *g,\n"
8241 "                      const char *device);\n"
8242 "\n"
8243 msgstr ""
8244
8245 #. type: textblock
8246 #: ../src/guestfs-actions.pod:1912 ../fish/guestfish-actions.pod:1300
8247 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
8248 msgstr ""
8249
8250 #. type: textblock
8251 #: ../src/guestfs-actions.pod:1918 ../fish/guestfish-actions.pod:1303
8252 msgid ""
8253 "This function is deprecated.  In new code, use the C<vfs_label> call "
8254 "instead."
8255 msgstr ""
8256
8257 #. type: textblock
8258 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1946 ../src/guestfs-actions.pod:5714 ../src/guestfs-actions.pod:5733
8259 msgid "(Added in 1.0.15)"
8260 msgstr ""
8261
8262 #. type: =head2
8263 #: ../src/guestfs-actions.pod:1927
8264 msgid "guestfs_get_e2uuid"
8265 msgstr ""
8266
8267 #. type: verbatim
8268 #: ../src/guestfs-actions.pod:1929
8269 #, no-wrap
8270 msgid ""
8271 " char *\n"
8272 " guestfs_get_e2uuid (guestfs_h *g,\n"
8273 "                     const char *device);\n"
8274 "\n"
8275 msgstr ""
8276
8277 #. type: textblock
8278 #: ../src/guestfs-actions.pod:1933 ../fish/guestfish-actions.pod:1314
8279 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
8280 msgstr ""
8281
8282 #. type: textblock
8283 #: ../src/guestfs-actions.pod:1939 ../fish/guestfish-actions.pod:1317
8284 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
8285 msgstr ""
8286
8287 #. type: =head2
8288 #: ../src/guestfs-actions.pod:1948
8289 msgid "guestfs_get_memsize"
8290 msgstr ""
8291
8292 #. type: verbatim
8293 #: ../src/guestfs-actions.pod:1950
8294 #, no-wrap
8295 msgid ""
8296 " int\n"
8297 " guestfs_get_memsize (guestfs_h *g);\n"
8298 "\n"
8299 msgstr ""
8300
8301 #. type: textblock
8302 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1328
8303 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
8304 msgstr ""
8305
8306 #. type: textblock
8307 #: ../src/guestfs-actions.pod:1956
8308 msgid ""
8309 "If C<guestfs_set_memsize> was not called on this handle, and if "
8310 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
8311 "value for memsize."
8312 msgstr ""
8313
8314 #. type: textblock
8315 #: ../src/guestfs-actions.pod:1960 ../src/guestfs-actions.pod:2041 ../src/guestfs-actions.pod:5749 ../src/guestfs-actions.pod:5856 ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:1386 ../fish/guestfish-actions.pod:3854 ../fish/guestfish-actions.pod:3941
8316 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
8317 msgstr ""
8318
8319 #. type: textblock
8320 #: ../src/guestfs-actions.pod:1965 ../src/guestfs-actions.pod:4245 ../src/guestfs-actions.pod:4442 ../src/guestfs-actions.pod:4461 ../src/guestfs-actions.pod:4480 ../src/guestfs-actions.pod:4492 ../src/guestfs-actions.pod:4509 ../src/guestfs-actions.pod:4522 ../src/guestfs-actions.pod:5400 ../src/guestfs-actions.pod:5754 ../src/guestfs-actions.pod:5997 ../src/guestfs-actions.pod:6598
8321 msgid "(Added in 1.0.55)"
8322 msgstr ""
8323
8324 #. type: =head2
8325 #: ../src/guestfs-actions.pod:1967
8326 msgid "guestfs_get_network"
8327 msgstr ""
8328
8329 #. type: verbatim
8330 #: ../src/guestfs-actions.pod:1969
8331 #, no-wrap
8332 msgid ""
8333 " int\n"
8334 " guestfs_get_network (guestfs_h *g);\n"
8335 "\n"
8336 msgstr ""
8337
8338 #. type: textblock
8339 #: ../src/guestfs-actions.pod:1972 ../fish/guestfish-actions.pod:1342
8340 msgid "This returns the enable network flag."
8341 msgstr ""
8342
8343 #. type: textblock
8344 #: ../src/guestfs-actions.pod:1976 ../src/guestfs-actions.pod:5773
8345 msgid "(Added in 1.5.4)"
8346 msgstr ""
8347
8348 #. type: =head2
8349 #: ../src/guestfs-actions.pod:1978
8350 msgid "guestfs_get_path"
8351 msgstr ""
8352
8353 #. type: verbatim
8354 #: ../src/guestfs-actions.pod:1980
8355 #, no-wrap
8356 msgid ""
8357 " const char *\n"
8358 " guestfs_get_path (guestfs_h *g);\n"
8359 "\n"
8360 msgstr ""
8361
8362 #. type: textblock
8363 #: ../src/guestfs-actions.pod:1983 ../fish/guestfish-actions.pod:1348
8364 msgid "Return the current search path."
8365 msgstr ""
8366
8367 #. type: textblock
8368 #: ../src/guestfs-actions.pod:1985 ../fish/guestfish-actions.pod:1350
8369 msgid ""
8370 "This is always non-NULL.  If it wasn't set already, then this will return "
8371 "the default path."
8372 msgstr ""
8373
8374 #. type: textblock
8375 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2017
8376 msgid ""
8377 "This function returns a string, or NULL on error.  The string is owned by "
8378 "the guest handle and must I<not> be freed."
8379 msgstr ""
8380
8381 #. type: =head2
8382 #: ../src/guestfs-actions.pod:1993
8383 msgid "guestfs_get_pid"
8384 msgstr ""
8385
8386 #. type: verbatim
8387 #: ../src/guestfs-actions.pod:1995
8388 #, no-wrap
8389 msgid ""
8390 " int\n"
8391 " guestfs_get_pid (guestfs_h *g);\n"
8392 "\n"
8393 msgstr ""
8394
8395 #. type: textblock
8396 #: ../src/guestfs-actions.pod:1998 ../fish/guestfish-actions.pod:1359
8397 msgid ""
8398 "Return the process ID of the qemu subprocess.  If there is no qemu "
8399 "subprocess, then this will return an error."
8400 msgstr ""
8401
8402 #. type: textblock
8403 #: ../src/guestfs-actions.pod:2001 ../fish/guestfish-actions.pod:1362
8404 msgid "This is an internal call used for debugging and testing."
8405 msgstr ""
8406
8407 #. type: textblock
8408 #: ../src/guestfs-actions.pod:2005
8409 msgid "(Added in 1.0.56)"
8410 msgstr ""
8411
8412 #. type: =head2
8413 #: ../src/guestfs-actions.pod:2007
8414 msgid "guestfs_get_qemu"
8415 msgstr ""
8416
8417 #. type: verbatim
8418 #: ../src/guestfs-actions.pod:2009
8419 #, no-wrap
8420 msgid ""
8421 " const char *\n"
8422 " guestfs_get_qemu (guestfs_h *g);\n"
8423 "\n"
8424 msgstr ""
8425
8426 #. type: textblock
8427 #: ../src/guestfs-actions.pod:2012 ../fish/guestfish-actions.pod:1368
8428 msgid "Return the current qemu binary."
8429 msgstr ""
8430
8431 #. type: textblock
8432 #: ../src/guestfs-actions.pod:2014 ../fish/guestfish-actions.pod:1370
8433 msgid ""
8434 "This is always non-NULL.  If it wasn't set already, then this will return "
8435 "the default qemu binary name."
8436 msgstr ""
8437
8438 #. type: textblock
8439 #: ../src/guestfs-actions.pod:2020 ../src/guestfs-actions.pod:5818
8440 msgid "(Added in 1.0.6)"
8441 msgstr ""
8442
8443 #. type: =head2
8444 #: ../src/guestfs-actions.pod:2022
8445 msgid "guestfs_get_recovery_proc"
8446 msgstr ""
8447
8448 #. type: verbatim
8449 #: ../src/guestfs-actions.pod:2024
8450 #, no-wrap
8451 msgid ""
8452 " int\n"
8453 " guestfs_get_recovery_proc (guestfs_h *g);\n"
8454 "\n"
8455 msgstr ""
8456
8457 #. type: textblock
8458 #: ../src/guestfs-actions.pod:2027 ../fish/guestfish-actions.pod:1377
8459 msgid "Return the recovery process enabled flag."
8460 msgstr ""
8461
8462 #. type: textblock
8463 #: ../src/guestfs-actions.pod:2031 ../src/guestfs-actions.pod:3355 ../src/guestfs-actions.pod:3652 ../src/guestfs-actions.pod:4052 ../src/guestfs-actions.pod:4084 ../src/guestfs-actions.pod:5105 ../src/guestfs-actions.pod:5448 ../src/guestfs-actions.pod:5842 ../src/guestfs-actions.pod:6501 ../src/guestfs-actions.pod:6521 ../src/guestfs-actions.pod:6713
8464 msgid "(Added in 1.0.77)"
8465 msgstr ""
8466
8467 #. type: =head2
8468 #: ../src/guestfs-actions.pod:2033
8469 msgid "guestfs_get_selinux"
8470 msgstr ""
8471
8472 #. type: verbatim
8473 #: ../src/guestfs-actions.pod:2035
8474 #, no-wrap
8475 msgid ""
8476 " int\n"
8477 " guestfs_get_selinux (guestfs_h *g);\n"
8478 "\n"
8479 msgstr ""
8480
8481 #. type: textblock
8482 #: ../src/guestfs-actions.pod:2038
8483 msgid ""
8484 "This returns the current setting of the selinux flag which is passed to the "
8485 "appliance at boot time.  See C<guestfs_set_selinux>."
8486 msgstr ""
8487
8488 #. type: textblock
8489 #: ../src/guestfs-actions.pod:2046 ../src/guestfs-actions.pod:2109 ../src/guestfs-actions.pod:5861 ../src/guestfs-actions.pod:5915
8490 msgid "(Added in 1.0.67)"
8491 msgstr ""
8492
8493 #. type: =head2
8494 #: ../src/guestfs-actions.pod:2048
8495 msgid "guestfs_get_state"
8496 msgstr ""
8497
8498 #. type: verbatim
8499 #: ../src/guestfs-actions.pod:2050
8500 #, no-wrap
8501 msgid ""
8502 " int\n"
8503 " guestfs_get_state (guestfs_h *g);\n"
8504 "\n"
8505 msgstr ""
8506
8507 #. type: textblock
8508 #: ../src/guestfs-actions.pod:2053 ../fish/guestfish-actions.pod:1393
8509 msgid ""
8510 "This returns the current state as an opaque integer.  This is only useful "
8511 "for printing debug and internal error messages."
8512 msgstr ""
8513
8514 #. type: textblock
8515 #: ../src/guestfs-actions.pod:2056 ../src/guestfs-actions.pod:3158 ../src/guestfs-actions.pod:3187 ../src/guestfs-actions.pod:3248 ../src/guestfs-actions.pod:3275 ../fish/guestfish-actions.pod:1396 ../fish/guestfish-actions.pod:2210 ../fish/guestfish-actions.pod:2228 ../fish/guestfish-actions.pod:2266 ../fish/guestfish-actions.pod:2282
8516 msgid "For more information on states, see L<guestfs(3)>."
8517 msgstr ""
8518
8519 #. type: =head2
8520 #: ../src/guestfs-actions.pod:2062
8521 msgid "guestfs_get_trace"
8522 msgstr ""
8523
8524 #. type: verbatim
8525 #: ../src/guestfs-actions.pod:2064
8526 #, no-wrap
8527 msgid ""
8528 " int\n"
8529 " guestfs_get_trace (guestfs_h *g);\n"
8530 "\n"
8531 msgstr ""
8532
8533 #. type: textblock
8534 #: ../src/guestfs-actions.pod:2067 ../fish/guestfish-actions.pod:1402
8535 msgid "Return the command trace flag."
8536 msgstr ""
8537
8538 #. type: =head2
8539 #: ../src/guestfs-actions.pod:2073
8540 msgid "guestfs_get_umask"
8541 msgstr ""
8542
8543 #. type: verbatim
8544 #: ../src/guestfs-actions.pod:2075
8545 #, no-wrap
8546 msgid ""
8547 " int\n"
8548 " guestfs_get_umask (guestfs_h *g);\n"
8549 "\n"
8550 msgstr ""
8551
8552 #. type: textblock
8553 #: ../src/guestfs-actions.pod:2078
8554 msgid ""
8555 "Return the current umask.  By default the umask is C<022> unless it has been "
8556 "set by calling C<guestfs_umask>."
8557 msgstr ""
8558
8559 #. type: =head2
8560 #: ../src/guestfs-actions.pod:2085
8561 msgid "guestfs_get_verbose"
8562 msgstr ""
8563
8564 #. type: verbatim
8565 #: ../src/guestfs-actions.pod:2087
8566 #, no-wrap
8567 msgid ""
8568 " int\n"
8569 " guestfs_get_verbose (guestfs_h *g);\n"
8570 "\n"
8571 msgstr ""
8572
8573 #. type: textblock
8574 #: ../src/guestfs-actions.pod:2090 ../fish/guestfish-actions.pod:1415
8575 msgid "This returns the verbose messages flag."
8576 msgstr ""
8577
8578 #. type: =head2
8579 #: ../src/guestfs-actions.pod:2096
8580 msgid "guestfs_getcon"
8581 msgstr ""
8582
8583 #. type: verbatim
8584 #: ../src/guestfs-actions.pod:2098
8585 #, no-wrap
8586 msgid ""
8587 " char *\n"
8588 " guestfs_getcon (guestfs_h *g);\n"
8589 "\n"
8590 msgstr ""
8591
8592 #. type: textblock
8593 #: ../src/guestfs-actions.pod:2101 ../fish/guestfish-actions.pod:1421
8594 msgid "This gets the SELinux security context of the daemon."
8595 msgstr ""
8596
8597 #. type: textblock
8598 #: ../src/guestfs-actions.pod:2103
8599 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
8600 msgstr ""
8601
8602 #. type: =head2
8603 #: ../src/guestfs-actions.pod:2111
8604 msgid "guestfs_getxattr"
8605 msgstr ""
8606
8607 #. type: verbatim
8608 #: ../src/guestfs-actions.pod:2113
8609 #, no-wrap
8610 msgid ""
8611 " char *\n"
8612 " guestfs_getxattr (guestfs_h *g,\n"
8613 "                   const char *path,\n"
8614 "                   const char *name,\n"
8615 "                   size_t *size_r);\n"
8616 "\n"
8617 msgstr ""
8618
8619 #. type: textblock
8620 #: ../src/guestfs-actions.pod:2119
8621 msgid ""
8622 "Get a single extended attribute from file C<path> named C<name>.  This call "
8623 "follows symlinks.  If you want to lookup an extended attribute for the "
8624 "symlink itself, use C<guestfs_lgetxattr>."
8625 msgstr ""
8626
8627 #. type: textblock
8628 #: ../src/guestfs-actions.pod:2123 ../src/guestfs-actions.pod:3369
8629 msgid ""
8630 "Normally it is better to get all extended attributes from a file in one go "
8631 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
8632 "implementations are buggy and do not provide a way to list out attributes.  "
8633 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
8634 "extended attributes you want in advance and call this function."
8635 msgstr ""
8636
8637 #. type: textblock
8638 #: ../src/guestfs-actions.pod:2130 ../src/guestfs-actions.pod:3376 ../fish/guestfish-actions.pod:1441 ../fish/guestfish-actions.pod:2347
8639 msgid ""
8640 "Extended attribute values are blobs of binary data.  If there is no extended "
8641 "attribute named C<name>, this returns an error."
8642 msgstr ""
8643
8644 #. type: textblock
8645 #: ../src/guestfs-actions.pod:2133
8646 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
8647 msgstr ""
8648
8649 #. type: textblock
8650 #: ../src/guestfs-actions.pod:2135 ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:3381 ../src/guestfs-actions.pod:5098 ../src/guestfs-actions.pod:5124 ../src/guestfs-actions.pod:5305
8651 msgid ""
8652 "This function returns a buffer, or NULL on error.  The size of the returned "
8653 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
8654 "after use>."
8655 msgstr ""
8656
8657 #. type: textblock
8658 #: ../src/guestfs-actions.pod:2139 ../src/guestfs-actions.pod:3385
8659 msgid "(Added in 1.7.24)"
8660 msgstr ""
8661
8662 #. type: =head2
8663 #: ../src/guestfs-actions.pod:2141
8664 msgid "guestfs_getxattrs"
8665 msgstr ""
8666
8667 #. type: verbatim
8668 #: ../src/guestfs-actions.pod:2143
8669 #, no-wrap
8670 msgid ""
8671 " struct guestfs_xattr_list *\n"
8672 " guestfs_getxattrs (guestfs_h *g,\n"
8673 "                    const char *path);\n"
8674 "\n"
8675 msgstr ""
8676
8677 #. type: textblock
8678 #: ../src/guestfs-actions.pod:2147 ../fish/guestfish-actions.pod:1450
8679 msgid "This call lists the extended attributes of the file or directory C<path>."
8680 msgstr ""
8681
8682 #. type: textblock
8683 #: ../src/guestfs-actions.pod:2150 ../fish/guestfish-actions.pod:1453
8684 msgid ""
8685 "At the system call level, this is a combination of the L<listxattr(2)> and "
8686 "L<getxattr(2)> calls."
8687 msgstr ""
8688
8689 #. type: textblock
8690 #: ../src/guestfs-actions.pod:2153
8691 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
8692 msgstr ""
8693
8694 #. type: textblock
8695 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:4048
8696 msgid ""
8697 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
8698 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
8699 msgstr ""
8700
8701 #. type: textblock
8702 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3602 ../src/guestfs-actions.pod:5478 ../src/guestfs-actions.pod:5934 ../src/guestfs-actions.pod:7269
8703 msgid "(Added in 1.0.59)"
8704 msgstr ""
8705
8706 #. type: =head2
8707 #: ../src/guestfs-actions.pod:2161
8708 msgid "guestfs_glob_expand"
8709 msgstr ""
8710
8711 #. type: verbatim
8712 #: ../src/guestfs-actions.pod:2163
8713 #, no-wrap
8714 msgid ""
8715 " char **\n"
8716 " guestfs_glob_expand (guestfs_h *g,\n"
8717 "                      const char *pattern);\n"
8718 "\n"
8719 msgstr ""
8720
8721 #. type: textblock
8722 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1462
8723 msgid ""
8724 "This command searches for all the pathnames matching C<pattern> according to "
8725 "the wildcard expansion rules used by the shell."
8726 msgstr ""
8727
8728 #. type: textblock
8729 #: ../src/guestfs-actions.pod:2171 ../fish/guestfish-actions.pod:1466
8730 msgid "If no paths match, then this returns an empty list (note: not an error)."
8731 msgstr ""
8732
8733 #. type: textblock
8734 #: ../src/guestfs-actions.pod:2174 ../fish/guestfish-actions.pod:1469
8735 msgid ""
8736 "It is just a wrapper around the C L<glob(3)> function with flags "
8737 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
8738 msgstr ""
8739
8740 #. type: textblock
8741 #: ../src/guestfs-actions.pod:2182 ../src/guestfs-actions.pod:6099 ../src/guestfs-actions.pod:6116
8742 msgid "(Added in 1.0.50)"
8743 msgstr ""
8744
8745 #. type: =head2
8746 #: ../src/guestfs-actions.pod:2184
8747 msgid "guestfs_grep"
8748 msgstr ""
8749
8750 #. type: verbatim
8751 #: ../src/guestfs-actions.pod:2186
8752 #, no-wrap
8753 msgid ""
8754 " char **\n"
8755 " guestfs_grep (guestfs_h *g,\n"
8756 "               const char *regex,\n"
8757 "               const char *path);\n"
8758 "\n"
8759 msgstr ""
8760
8761 #. type: textblock
8762 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1477
8763 msgid "This calls the external C<grep> program and returns the matching lines."
8764 msgstr ""
8765
8766 #. type: =head2
8767 #: ../src/guestfs-actions.pod:2203
8768 msgid "guestfs_grepi"
8769 msgstr ""
8770
8771 #. type: verbatim
8772 #: ../src/guestfs-actions.pod:2205
8773 #, no-wrap
8774 msgid ""
8775 " char **\n"
8776 " guestfs_grepi (guestfs_h *g,\n"
8777 "                const char *regex,\n"
8778 "                const char *path);\n"
8779 "\n"
8780 msgstr ""
8781
8782 #. type: textblock
8783 #: ../src/guestfs-actions.pod:2210 ../fish/guestfish-actions.pod:1487
8784 msgid "This calls the external C<grep -i> program and returns the matching lines."
8785 msgstr ""
8786
8787 #. type: =head2
8788 #: ../src/guestfs-actions.pod:2222
8789 msgid "guestfs_grub_install"
8790 msgstr ""
8791
8792 #. type: verbatim
8793 #: ../src/guestfs-actions.pod:2224
8794 #, no-wrap
8795 msgid ""
8796 " int\n"
8797 " guestfs_grub_install (guestfs_h *g,\n"
8798 "                       const char *root,\n"
8799 "                       const char *device);\n"
8800 "\n"
8801 msgstr ""
8802
8803 #. type: textblock
8804 #: ../src/guestfs-actions.pod:2229 ../fish/guestfish-actions.pod:1497
8805 msgid ""
8806 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
8807 "the root directory being C<root>."
8808 msgstr ""
8809
8810 #. type: textblock
8811 #: ../src/guestfs-actions.pod:2232 ../fish/guestfish-actions.pod:1500
8812 msgid ""
8813 "Note: If grub-install reports the error \"No suitable drive was found in the "
8814 "generated device map.\" it may be that you need to create a "
8815 "C</boot/grub/device.map> file first that contains the mapping between grub "
8816 "device names and Linux device names.  It is usually sufficient to create a "
8817 "file containing:"
8818 msgstr ""
8819
8820 #. type: verbatim
8821 #: ../src/guestfs-actions.pod:2239 ../fish/guestfish-actions.pod:1507
8822 #, no-wrap
8823 msgid ""
8824 " (hd0) /dev/vda\n"
8825 "\n"
8826 msgstr ""
8827
8828 #. type: textblock
8829 #: ../src/guestfs-actions.pod:2241 ../fish/guestfish-actions.pod:1509
8830 msgid "replacing C</dev/vda> with the name of the installation device."
8831 msgstr ""
8832
8833 #. type: textblock
8834 #: ../src/guestfs-actions.pod:2245
8835 msgid "(Added in 1.0.17)"
8836 msgstr ""
8837
8838 #. type: =head2
8839 #: ../src/guestfs-actions.pod:2247
8840 msgid "guestfs_head"
8841 msgstr ""
8842
8843 #. type: verbatim
8844 #: ../src/guestfs-actions.pod:2249
8845 #, no-wrap
8846 msgid ""
8847 " char **\n"
8848 " guestfs_head (guestfs_h *g,\n"
8849 "               const char *path);\n"
8850 "\n"
8851 msgstr ""
8852
8853 #. type: textblock
8854 #: ../src/guestfs-actions.pod:2253 ../fish/guestfish-actions.pod:1515
8855 msgid ""
8856 "This command returns up to the first 10 lines of a file as a list of "
8857 "strings."
8858 msgstr ""
8859
8860 #. type: =head2
8861 #: ../src/guestfs-actions.pod:2265
8862 msgid "guestfs_head_n"
8863 msgstr ""
8864
8865 #. type: verbatim
8866 #: ../src/guestfs-actions.pod:2267
8867 #, no-wrap
8868 msgid ""
8869 " char **\n"
8870 " guestfs_head_n (guestfs_h *g,\n"
8871 "                 int nrlines,\n"
8872 "                 const char *path);\n"
8873 "\n"
8874 msgstr ""
8875
8876 #. type: textblock
8877 #: ../src/guestfs-actions.pod:2272 ../fish/guestfish-actions.pod:1525
8878 msgid ""
8879 "If the parameter C<nrlines> is a positive number, this returns the first "
8880 "C<nrlines> lines of the file C<path>."
8881 msgstr ""
8882
8883 #. type: textblock
8884 #: ../src/guestfs-actions.pod:2275 ../fish/guestfish-actions.pod:1528
8885 msgid ""
8886 "If the parameter C<nrlines> is a negative number, this returns lines from "
8887 "the file C<path>, excluding the last C<nrlines> lines."
8888 msgstr ""
8889
8890 #. type: textblock
8891 #: ../src/guestfs-actions.pod:2278 ../src/guestfs-actions.pod:6396 ../fish/guestfish-actions.pod:1531 ../fish/guestfish-actions.pod:4287
8892 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
8893 msgstr ""
8894
8895 #. type: =head2
8896 #: ../src/guestfs-actions.pod:2289
8897 msgid "guestfs_hexdump"
8898 msgstr ""
8899
8900 #. type: verbatim
8901 #: ../src/guestfs-actions.pod:2291
8902 #, no-wrap
8903 msgid ""
8904 " char *\n"
8905 " guestfs_hexdump (guestfs_h *g,\n"
8906 "                  const char *path);\n"
8907 "\n"
8908 msgstr ""
8909
8910 #. type: textblock
8911 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1540
8912 msgid ""
8913 "This runs C<hexdump -C> on the given C<path>.  The result is the "
8914 "human-readable, canonical hex dump of the file."
8915 msgstr ""
8916
8917 #. type: textblock
8918 #: ../src/guestfs-actions.pod:2304 ../src/guestfs-actions.pod:6180 ../src/guestfs-actions.pod:6235
8919 msgid "(Added in 1.0.22)"
8920 msgstr ""
8921
8922 #. type: =head2
8923 #: ../src/guestfs-actions.pod:2306
8924 msgid "guestfs_initrd_cat"
8925 msgstr ""
8926
8927 #. type: verbatim
8928 #: ../src/guestfs-actions.pod:2308
8929 #, no-wrap
8930 msgid ""
8931 " char *\n"
8932 " guestfs_initrd_cat (guestfs_h *g,\n"
8933 "                     const char *initrdpath,\n"
8934 "                     const char *filename,\n"
8935 "                     size_t *size_r);\n"
8936 "\n"
8937 msgstr ""
8938
8939 #. type: textblock
8940 #: ../src/guestfs-actions.pod:2314 ../fish/guestfish-actions.pod:1550
8941 msgid ""
8942 "This command unpacks the file C<filename> from the initrd file called "
8943 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
8944 "character."
8945 msgstr ""
8946
8947 #. type: textblock
8948 #: ../src/guestfs-actions.pod:2318 ../fish/guestfish-actions.pod:1554
8949 msgid ""
8950 "For example, in guestfish you could use the following command to examine the "
8951 "boot script (usually called C</init>)  contained in a Linux initrd or "
8952 "initramfs image:"
8953 msgstr ""
8954
8955 #. type: verbatim
8956 #: ../src/guestfs-actions.pod:2322 ../fish/guestfish-actions.pod:1558
8957 #, no-wrap
8958 msgid ""
8959 " initrd-cat /boot/initrd-<version>.img init\n"
8960 "\n"
8961 msgstr ""
8962
8963 #. type: textblock
8964 #: ../src/guestfs-actions.pod:2324
8965 msgid "See also C<guestfs_initrd_list>."
8966 msgstr ""
8967
8968 #. type: =head2
8969 #: ../src/guestfs-actions.pod:2335
8970 msgid "guestfs_initrd_list"
8971 msgstr ""
8972
8973 #. type: verbatim
8974 #: ../src/guestfs-actions.pod:2337
8975 #, no-wrap
8976 msgid ""
8977 " char **\n"
8978 " guestfs_initrd_list (guestfs_h *g,\n"
8979 "                      const char *path);\n"
8980 "\n"
8981 msgstr ""
8982
8983 #. type: textblock
8984 #: ../src/guestfs-actions.pod:2341 ../fish/guestfish-actions.pod:1569
8985 msgid "This command lists out files contained in an initrd."
8986 msgstr ""
8987
8988 #. type: textblock
8989 #: ../src/guestfs-actions.pod:2343 ../fish/guestfish-actions.pod:1571
8990 msgid ""
8991 "The files are listed without any initial C</> character.  The files are "
8992 "listed in the order they appear (not necessarily alphabetical).  Directory "
8993 "names are listed as separate items."
8994 msgstr ""
8995
8996 #. type: textblock
8997 #: ../src/guestfs-actions.pod:2347 ../fish/guestfish-actions.pod:1575
8998 msgid ""
8999 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
9000 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
9001 "files)."
9002 msgstr ""
9003
9004 #. type: =head2
9005 #: ../src/guestfs-actions.pod:2357
9006 msgid "guestfs_inotify_add_watch"
9007 msgstr ""
9008
9009 #. type: verbatim
9010 #: ../src/guestfs-actions.pod:2359
9011 #, no-wrap
9012 msgid ""
9013 " int64_t\n"
9014 " guestfs_inotify_add_watch (guestfs_h *g,\n"
9015 "                            const char *path,\n"
9016 "                            int mask);\n"
9017 "\n"
9018 msgstr ""
9019
9020 #. type: textblock
9021 #: ../src/guestfs-actions.pod:2364 ../fish/guestfish-actions.pod:1583
9022 msgid "Watch C<path> for the events listed in C<mask>."
9023 msgstr ""
9024
9025 #. type: textblock
9026 #: ../src/guestfs-actions.pod:2366 ../fish/guestfish-actions.pod:1585
9027 msgid ""
9028 "Note that if C<path> is a directory then events within that directory are "
9029 "watched, but this does I<not> happen recursively (in subdirectories)."
9030 msgstr ""
9031
9032 #. type: textblock
9033 #: ../src/guestfs-actions.pod:2370 ../fish/guestfish-actions.pod:1589
9034 msgid ""
9035 "Note for non-C or non-Linux callers: the inotify events are defined by the "
9036 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
9037 msgstr ""
9038
9039 #. type: =head2
9040 #: ../src/guestfs-actions.pod:2378
9041 msgid "guestfs_inotify_close"
9042 msgstr ""
9043
9044 #. type: verbatim
9045 #: ../src/guestfs-actions.pod:2380
9046 #, no-wrap
9047 msgid ""
9048 " int\n"
9049 " guestfs_inotify_close (guestfs_h *g);\n"
9050 "\n"
9051 msgstr ""
9052
9053 #. type: textblock
9054 #: ../src/guestfs-actions.pod:2383 ../fish/guestfish-actions.pod:1597
9055 msgid ""
9056 "This closes the inotify handle which was previously opened by inotify_init.  "
9057 "It removes all watches, throws away any pending events, and deallocates all "
9058 "resources."
9059 msgstr ""
9060
9061 #. type: =head2
9062 #: ../src/guestfs-actions.pod:2391
9063 msgid "guestfs_inotify_files"
9064 msgstr ""
9065
9066 #. type: verbatim
9067 #: ../src/guestfs-actions.pod:2393
9068 #, no-wrap
9069 msgid ""
9070 " char **\n"
9071 " guestfs_inotify_files (guestfs_h *g);\n"
9072 "\n"
9073 msgstr ""
9074
9075 #. type: textblock
9076 #: ../src/guestfs-actions.pod:2396
9077 msgid ""
9078 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9079 "returns a list of pathnames of objects that were touched.  The returned "
9080 "pathnames are sorted and deduplicated."
9081 msgstr ""
9082
9083 #. type: =head2
9084 #: ../src/guestfs-actions.pod:2406
9085 msgid "guestfs_inotify_init"
9086 msgstr ""
9087
9088 #. type: verbatim
9089 #: ../src/guestfs-actions.pod:2408
9090 #, no-wrap
9091 msgid ""
9092 " int\n"
9093 " guestfs_inotify_init (guestfs_h *g,\n"
9094 "                       int maxevents);\n"
9095 "\n"
9096 msgstr ""
9097
9098 #. type: textblock
9099 #: ../src/guestfs-actions.pod:2412 ../fish/guestfish-actions.pod:1613
9100 msgid ""
9101 "This command creates a new inotify handle.  The inotify subsystem can be "
9102 "used to notify events which happen to objects in the guest filesystem."
9103 msgstr ""
9104
9105 #. type: textblock
9106 #: ../src/guestfs-actions.pod:2416
9107 msgid ""
9108 "C<maxevents> is the maximum number of events which will be queued up between "
9109 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9110 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9111 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9112 "throws away events, but records the fact that it threw them away by setting "
9113 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9114 "C<guestfs_inotify_read>)."
9115 msgstr ""
9116
9117 #. type: textblock
9118 #: ../src/guestfs-actions.pod:2426
9119 msgid ""
9120 "Before any events are generated, you have to add some watches to the "
9121 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9122 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9123 msgstr ""
9124
9125 #. type: textblock
9126 #: ../src/guestfs-actions.pod:2432
9127 msgid ""
9128 "Queued up events should be read periodically by calling "
9129 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9130 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9131 "often enough then you risk the internal queue overflowing."
9132 msgstr ""
9133
9134 #. type: textblock
9135 #: ../src/guestfs-actions.pod:2439
9136 msgid ""
9137 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9138 "This also removes any watches automatically."
9139 msgstr ""
9140
9141 #. type: textblock
9142 #: ../src/guestfs-actions.pod:2443 ../fish/guestfish-actions.pod:1644
9143 msgid ""
9144 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9145 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9146 "that there is one global inotify handle per libguestfs instance."
9147 msgstr ""
9148
9149 #. type: =head2
9150 #: ../src/guestfs-actions.pod:2452
9151 msgid "guestfs_inotify_read"
9152 msgstr ""
9153
9154 #. type: verbatim
9155 #: ../src/guestfs-actions.pod:2454
9156 #, no-wrap
9157 msgid ""
9158 " struct guestfs_inotify_event_list *\n"
9159 " guestfs_inotify_read (guestfs_h *g);\n"
9160 "\n"
9161 msgstr ""
9162
9163 #. type: textblock
9164 #: ../src/guestfs-actions.pod:2457 ../fish/guestfish-actions.pod:1653
9165 msgid ""
9166 "Return the complete queue of events that have happened since the previous "
9167 "read call."
9168 msgstr ""
9169
9170 #. type: textblock
9171 #: ../src/guestfs-actions.pod:2460 ../fish/guestfish-actions.pod:1656
9172 msgid "If no events have happened, this returns an empty list."
9173 msgstr ""
9174
9175 #. type: textblock
9176 #: ../src/guestfs-actions.pod:2462 ../fish/guestfish-actions.pod:1658
9177 msgid ""
9178 "I<Note>: In order to make sure that all events have been read, you must call "
9179 "this function repeatedly until it returns an empty list.  The reason is that "
9180 "the call will read events up to the maximum appliance-to-host message size "
9181 "and leave remaining events in the queue."
9182 msgstr ""
9183
9184 #. type: textblock
9185 #: ../src/guestfs-actions.pod:2468
9186 msgid ""
9187 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9188 "there was an error.  I<The caller must call "
9189 "C<guestfs_free_inotify_event_list> after use>."
9190 msgstr ""
9191
9192 #. type: =head2
9193 #: ../src/guestfs-actions.pod:2474
9194 msgid "guestfs_inotify_rm_watch"
9195 msgstr ""
9196
9197 #. type: verbatim
9198 #: ../src/guestfs-actions.pod:2476
9199 #, no-wrap
9200 msgid ""
9201 " int\n"
9202 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9203 "                           int wd);\n"
9204 "\n"
9205 msgstr ""
9206
9207 #. type: textblock
9208 #: ../src/guestfs-actions.pod:2480
9209 msgid ""
9210 "Remove a previously defined inotify watch.  See "
9211 "C<guestfs_inotify_add_watch>."
9212 msgstr ""
9213
9214 #. type: =head2
9215 #: ../src/guestfs-actions.pod:2487
9216 msgid "guestfs_inspect_get_arch"
9217 msgstr ""
9218
9219 #. type: verbatim
9220 #: ../src/guestfs-actions.pod:2489
9221 #, no-wrap
9222 msgid ""
9223 " char *\n"
9224 " guestfs_inspect_get_arch (guestfs_h *g,\n"
9225 "                           const char *root);\n"
9226 "\n"
9227 msgstr ""
9228
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:2493 ../src/guestfs-actions.pod:2516 ../src/guestfs-actions.pod:2597 ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2662 ../src/guestfs-actions.pod:2684 ../src/guestfs-actions.pod:2711 ../src/guestfs-actions.pod:2732 ../src/guestfs-actions.pod:2769 ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:2829 ../src/guestfs-actions.pod:2873 ../src/guestfs-actions.pod:2915 ../src/guestfs-actions.pod:2938 ../src/guestfs-actions.pod:2955 ../src/guestfs-actions.pod:2972 ../src/guestfs-actions.pod:2991
9231 msgid ""
9232 "This function should only be called with a root device string as returned by "
9233 "C<guestfs_inspect_os>."
9234 msgstr ""
9235
9236 #. type: textblock
9237 #: ../src/guestfs-actions.pod:2496
9238 msgid ""
9239 "This returns the architecture of the inspected operating system.  The "
9240 "possible return values are listed under C<guestfs_file_architecture>."
9241 msgstr ""
9242
9243 #. type: textblock
9244 #: ../src/guestfs-actions.pod:2500 ../fish/guestfish-actions.pod:1682
9245 msgid ""
9246 "If the architecture could not be determined, then the string C<unknown> is "
9247 "returned."
9248 msgstr ""
9249
9250 #. type: textblock
9251 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:2584 ../src/guestfs-actions.pod:2651 ../src/guestfs-actions.pod:2671 ../src/guestfs-actions.pod:2699 ../src/guestfs-actions.pod:2785 ../src/guestfs-actions.pod:2816 ../src/guestfs-actions.pod:2840 ../src/guestfs-actions.pod:2859 ../src/guestfs-actions.pod:2902 ../src/guestfs-actions.pod:2925 ../src/guestfs-actions.pod:2945 ../src/guestfs-actions.pod:2962 ../src/guestfs-actions.pod:2981 ../src/guestfs-actions.pod:3084 ../src/guestfs-actions.pod:3125 ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1759 ../fish/guestfish-actions.pod:1811 ../fish/guestfish-actions.pod:1826 ../fish/guestfish-actions.pod:1847 ../fish/guestfish-actions.pod:1911 ../fish/guestfish-actions.pod:1935 ../fish/guestfish-actions.pod:1952 ../fish/guestfish-actions.pod:1965 ../fish/guestfish-actions.pod:2000 ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2029 ../fish/guestfish-actions.pod:2042 ../fish/guestfish-actions.pod:2057 ../fish/guestfish-actions.pod:2156 ../fish/guestfish-actions.pod:2190
9252 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
9253 msgstr ""
9254
9255 #. type: =head2
9256 #: ../src/guestfs-actions.pod:2510
9257 msgid "guestfs_inspect_get_distro"
9258 msgstr ""
9259
9260 #. type: verbatim
9261 #: ../src/guestfs-actions.pod:2512
9262 #, no-wrap
9263 msgid ""
9264 " char *\n"
9265 " guestfs_inspect_get_distro (guestfs_h *g,\n"
9266 "                             const char *root);\n"
9267 "\n"
9268 msgstr ""
9269
9270 #. type: textblock
9271 #: ../src/guestfs-actions.pod:2519 ../fish/guestfish-actions.pod:1694
9272 msgid "This returns the distro (distribution) of the inspected operating system."
9273 msgstr ""
9274
9275 #. type: textblock
9276 #: ../src/guestfs-actions.pod:2522 ../fish/guestfish-actions.pod:1697
9277 msgid "Currently defined distros are:"
9278 msgstr ""
9279
9280 #. type: =item
9281 #: ../src/guestfs-actions.pod:2526 ../fish/guestfish-actions.pod:1701
9282 msgid "\"archlinux\""
9283 msgstr ""
9284
9285 #. type: textblock
9286 #: ../src/guestfs-actions.pod:2528 ../fish/guestfish-actions.pod:1703
9287 msgid "Arch Linux."
9288 msgstr ""
9289
9290 #. type: =item
9291 #: ../src/guestfs-actions.pod:2530 ../fish/guestfish-actions.pod:1705
9292 msgid "\"debian\""
9293 msgstr ""
9294
9295 #. type: textblock
9296 #: ../src/guestfs-actions.pod:2532 ../fish/guestfish-actions.pod:1707
9297 msgid "Debian."
9298 msgstr ""
9299
9300 #. type: =item
9301 #: ../src/guestfs-actions.pod:2534 ../fish/guestfish-actions.pod:1709
9302 msgid "\"fedora\""
9303 msgstr ""
9304
9305 #. type: textblock
9306 #: ../src/guestfs-actions.pod:2536 ../fish/guestfish-actions.pod:1711
9307 msgid "Fedora."
9308 msgstr ""
9309
9310 #. type: =item
9311 #: ../src/guestfs-actions.pod:2538 ../fish/guestfish-actions.pod:1713
9312 msgid "\"gentoo\""
9313 msgstr ""
9314
9315 #. type: textblock
9316 #: ../src/guestfs-actions.pod:2540 ../fish/guestfish-actions.pod:1715
9317 msgid "Gentoo."
9318 msgstr ""
9319
9320 #. type: =item
9321 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1717
9322 msgid "\"linuxmint\""
9323 msgstr ""
9324
9325 #. type: textblock
9326 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1719
9327 msgid "Linux Mint."
9328 msgstr ""
9329
9330 #. type: =item
9331 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1721
9332 msgid "\"mandriva\""
9333 msgstr ""
9334
9335 #. type: textblock
9336 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1723
9337 msgid "Mandriva."
9338 msgstr ""
9339
9340 #. type: =item
9341 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1725
9342 msgid "\"meego\""
9343 msgstr ""
9344
9345 #. type: textblock
9346 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1727
9347 msgid "MeeGo."
9348 msgstr ""
9349
9350 #. type: =item
9351 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1729
9352 msgid "\"pardus\""
9353 msgstr ""
9354
9355 #. type: textblock
9356 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1731
9357 msgid "Pardus."
9358 msgstr ""
9359
9360 #. type: =item
9361 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1733
9362 msgid "\"redhat-based\""
9363 msgstr ""
9364
9365 #. type: textblock
9366 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1735
9367 msgid "Some Red Hat-derived distro."
9368 msgstr ""
9369
9370 #. type: =item
9371 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1737
9372 msgid "\"rhel\""
9373 msgstr ""
9374
9375 #. type: textblock
9376 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1739
9377 msgid "Red Hat Enterprise Linux and some derivatives."
9378 msgstr ""
9379
9380 #. type: =item
9381 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1741
9382 msgid "\"ubuntu\""
9383 msgstr ""
9384
9385 #. type: textblock
9386 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1743
9387 msgid "Ubuntu."
9388 msgstr ""
9389
9390 #. type: =item
9391 #: ../src/guestfs-actions.pod:2570 ../src/guestfs-actions.pod:2642 ../src/guestfs-actions.pod:2893 ../fish/guestfish-actions.pod:1745 ../fish/guestfish-actions.pod:1802 ../fish/guestfish-actions.pod:1991
9392 msgid "\"unknown\""
9393 msgstr ""
9394
9395 #. type: textblock
9396 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1747
9397 msgid "The distro could not be determined."
9398 msgstr ""
9399
9400 #. type: =item
9401 #: ../src/guestfs-actions.pod:2574 ../src/guestfs-actions.pod:2885 ../fish/guestfish-actions.pod:1749 ../fish/guestfish-actions.pod:1983
9402 msgid "\"windows\""
9403 msgstr ""
9404
9405 #. type: textblock
9406 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1751
9407 msgid ""
9408 "Windows does not have distributions.  This string is returned if the OS type "
9409 "is Windows."
9410 msgstr ""
9411
9412 #. type: textblock
9413 #: ../src/guestfs-actions.pod:2581 ../src/guestfs-actions.pod:2648 ../src/guestfs-actions.pod:2899 ../fish/guestfish-actions.pod:1756 ../fish/guestfish-actions.pod:1808 ../fish/guestfish-actions.pod:1997
9414 msgid ""
9415 "Future versions of libguestfs may return other strings here.  The caller "
9416 "should be prepared to handle any string."
9417 msgstr ""
9418
9419 #. type: =head2
9420 #: ../src/guestfs-actions.pod:2591
9421 msgid "guestfs_inspect_get_filesystems"
9422 msgstr ""
9423
9424 #. type: verbatim
9425 #: ../src/guestfs-actions.pod:2593
9426 #, no-wrap
9427 msgid ""
9428 " char **\n"
9429 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
9430 "                                  const char *root);\n"
9431 "\n"
9432 msgstr ""
9433
9434 #. type: textblock
9435 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1768
9436 msgid ""
9437 "This returns a list of all the filesystems that we think are associated with "
9438 "this operating system.  This includes the root filesystem, other ordinary "
9439 "filesystems, and non-mounted devices like swap partitions."
9440 msgstr ""
9441
9442 #. type: textblock
9443 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1773
9444 msgid ""
9445 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
9446 "to be shared between operating systems."
9447 msgstr ""
9448
9449 #. type: textblock
9450 #: ../src/guestfs-actions.pod:2608
9451 msgid ""
9452 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9453 "C<guestfs_inspect_get_mountpoints>."
9454 msgstr ""
9455
9456 #. type: =head2
9457 #: ../src/guestfs-actions.pod:2617
9458 msgid "guestfs_inspect_get_format"
9459 msgstr ""
9460
9461 #. type: verbatim
9462 #: ../src/guestfs-actions.pod:2619
9463 #, no-wrap
9464 msgid ""
9465 " char *\n"
9466 " guestfs_inspect_get_format (guestfs_h *g,\n"
9467 "                             const char *root);\n"
9468 "\n"
9469 msgstr ""
9470
9471 #. type: textblock
9472 #: ../src/guestfs-actions.pod:2626 ../fish/guestfish-actions.pod:1786
9473 msgid ""
9474 "This returns the format of the inspected operating system.  You can use it "
9475 "to detect install images, live CDs and similar."
9476 msgstr ""
9477
9478 #. type: textblock
9479 #: ../src/guestfs-actions.pod:2629 ../fish/guestfish-actions.pod:1789
9480 msgid "Currently defined formats are:"
9481 msgstr ""
9482
9483 #. type: =item
9484 #: ../src/guestfs-actions.pod:2633 ../fish/guestfish-actions.pod:1793
9485 msgid "\"installed\""
9486 msgstr ""
9487
9488 #. type: textblock
9489 #: ../src/guestfs-actions.pod:2635 ../fish/guestfish-actions.pod:1795
9490 msgid "This is an installed operating system."
9491 msgstr ""
9492
9493 #. type: =item
9494 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1797
9495 msgid "\"installer\""
9496 msgstr ""
9497
9498 #. type: textblock
9499 #: ../src/guestfs-actions.pod:2639 ../fish/guestfish-actions.pod:1799
9500 msgid ""
9501 "The disk image being inspected is not an installed operating system, but a "
9502 "I<bootable> install disk, live CD, or similar."
9503 msgstr ""
9504
9505 #. type: textblock
9506 #: ../src/guestfs-actions.pod:2644 ../fish/guestfish-actions.pod:1804
9507 msgid "The format of this disk image is not known."
9508 msgstr ""
9509
9510 #. type: =head2
9511 #: ../src/guestfs-actions.pod:2656
9512 msgid "guestfs_inspect_get_hostname"
9513 msgstr ""
9514
9515 #. type: verbatim
9516 #: ../src/guestfs-actions.pod:2658
9517 #, no-wrap
9518 msgid ""
9519 " char *\n"
9520 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
9521 "                               const char *root);\n"
9522 "\n"
9523 msgstr ""
9524
9525 #. type: textblock
9526 #: ../src/guestfs-actions.pod:2665 ../fish/guestfish-actions.pod:1820
9527 msgid ""
9528 "This function returns the hostname of the operating system as found by "
9529 "inspection of the guest's configuration files."
9530 msgstr ""
9531
9532 #. type: textblock
9533 #: ../src/guestfs-actions.pod:2668 ../fish/guestfish-actions.pod:1823
9534 msgid ""
9535 "If the hostname could not be determined, then the string C<unknown> is "
9536 "returned."
9537 msgstr ""
9538
9539 #. type: textblock
9540 #: ../src/guestfs-actions.pod:2676
9541 msgid "(Added in 1.7.9)"
9542 msgstr ""
9543
9544 #. type: =head2
9545 #: ../src/guestfs-actions.pod:2678
9546 msgid "guestfs_inspect_get_major_version"
9547 msgstr ""
9548
9549 #. type: verbatim
9550 #: ../src/guestfs-actions.pod:2680
9551 #, no-wrap
9552 msgid ""
9553 " int\n"
9554 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
9555 "                                    const char *root);\n"
9556 "\n"
9557 msgstr ""
9558
9559 #. type: textblock
9560 #: ../src/guestfs-actions.pod:2687 ../fish/guestfish-actions.pod:1835
9561 msgid "This returns the major version number of the inspected operating system."
9562 msgstr ""
9563
9564 #. type: textblock
9565 #: ../src/guestfs-actions.pod:2690 ../fish/guestfish-actions.pod:1838
9566 msgid ""
9567 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
9568 "popular public names used by the operating system.  Notably the operating "
9569 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
9570 "1).  You can find out the real versions corresponding to releases of Windows "
9571 "by consulting Wikipedia or MSDN."
9572 msgstr ""
9573
9574 #. type: textblock
9575 #: ../src/guestfs-actions.pod:2697 ../src/guestfs-actions.pod:2717 ../fish/guestfish-actions.pod:1845 ../fish/guestfish-actions.pod:1859
9576 msgid "If the version could not be determined, then C<0> is returned."
9577 msgstr ""
9578
9579 #. type: =head2
9580 #: ../src/guestfs-actions.pod:2705
9581 msgid "guestfs_inspect_get_minor_version"
9582 msgstr ""
9583
9584 #. type: verbatim
9585 #: ../src/guestfs-actions.pod:2707
9586 #, no-wrap
9587 msgid ""
9588 " int\n"
9589 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
9590 "                                    const char *root);\n"
9591 "\n"
9592 msgstr ""
9593
9594 #. type: textblock
9595 #: ../src/guestfs-actions.pod:2714 ../fish/guestfish-actions.pod:1856
9596 msgid "This returns the minor version number of the inspected operating system."
9597 msgstr ""
9598
9599 #. type: textblock
9600 #: ../src/guestfs-actions.pod:2719
9601 msgid ""
9602 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9603 "C<guestfs_inspect_get_major_version>."
9604 msgstr ""
9605
9606 #. type: =head2
9607 #: ../src/guestfs-actions.pod:2726
9608 msgid "guestfs_inspect_get_mountpoints"
9609 msgstr ""
9610
9611 #. type: verbatim
9612 #: ../src/guestfs-actions.pod:2728
9613 #, no-wrap
9614 msgid ""
9615 " char **\n"
9616 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
9617 "                                  const char *root);\n"
9618 "\n"
9619 msgstr ""
9620
9621 #. type: textblock
9622 #: ../src/guestfs-actions.pod:2735 ../fish/guestfish-actions.pod:1871
9623 msgid ""
9624 "This returns a hash of where we think the filesystems associated with this "
9625 "operating system should be mounted.  Callers should note that this is at "
9626 "best an educated guess made by reading configuration files such as "
9627 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
9628 "are non-existent or not mountable and callers should be prepared to handle "
9629 "or ignore failures if they try to mount them."
9630 msgstr ""
9631
9632 #. type: textblock
9633 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1880
9634 msgid ""
9635 "Each element in the returned hashtable has a key which is the path of the "
9636 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
9637 "mounted there (eg. C</dev/sda1>)."
9638 msgstr ""
9639
9640 #. type: textblock
9641 #: ../src/guestfs-actions.pod:2749 ../fish/guestfish-actions.pod:1885
9642 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
9643 msgstr ""
9644
9645 #. type: textblock
9646 #: ../src/guestfs-actions.pod:2752
9647 msgid ""
9648 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
9649 "C<guestfs_inspect_get_filesystems>."
9650 msgstr ""
9651
9652 #. type: textblock
9653 #: ../src/guestfs-actions.pod:2755 ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:4664 ../src/guestfs-actions.pod:6537
9654 msgid ""
9655 "This function returns a NULL-terminated array of strings, or NULL if there "
9656 "was an error.  The array of strings will always have length C<2n+1>, where "
9657 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
9658 "caller must free the strings and the array after use>."
9659 msgstr ""
9660
9661 #. type: =head2
9662 #: ../src/guestfs-actions.pod:2763
9663 msgid "guestfs_inspect_get_package_format"
9664 msgstr ""
9665
9666 #. type: verbatim
9667 #: ../src/guestfs-actions.pod:2765
9668 #, no-wrap
9669 msgid ""
9670 " char *\n"
9671 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
9672 "                                     const char *root);\n"
9673 "\n"
9674 msgstr ""
9675
9676 #. type: textblock
9677 #: ../src/guestfs-actions.pod:2772
9678 msgid ""
9679 "This function and C<guestfs_inspect_get_package_management> return the "
9680 "package format and package management tool used by the inspected operating "
9681 "system.  For example for Fedora these functions would return C<rpm> (package "
9682 "format) and C<yum> (package management)."
9683 msgstr ""
9684
9685 #. type: textblock
9686 #: ../src/guestfs-actions.pod:2778 ../fish/guestfish-actions.pod:1904
9687 msgid ""
9688 "This returns the string C<unknown> if we could not determine the package "
9689 "format I<or> if the operating system does not have a real packaging system "
9690 "(eg. Windows)."
9691 msgstr ""
9692
9693 #. type: textblock
9694 #: ../src/guestfs-actions.pod:2782 ../fish/guestfish-actions.pod:1908
9695 msgid ""
9696 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
9697 "Future versions of libguestfs may return other strings."
9698 msgstr ""
9699
9700 #. type: textblock
9701 #: ../src/guestfs-actions.pod:2790 ../src/guestfs-actions.pod:2821
9702 msgid "(Added in 1.7.5)"
9703 msgstr ""
9704
9705 #. type: =head2
9706 #: ../src/guestfs-actions.pod:2792
9707 msgid "guestfs_inspect_get_package_management"
9708 msgstr ""
9709
9710 #. type: verbatim
9711 #: ../src/guestfs-actions.pod:2794
9712 #, no-wrap
9713 msgid ""
9714 " char *\n"
9715 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
9716 "                                         const char *root);\n"
9717 "\n"
9718 msgstr ""
9719
9720 #. type: textblock
9721 #: ../src/guestfs-actions.pod:2801
9722 msgid ""
9723 "C<guestfs_inspect_get_package_format> and this function return the package "
9724 "format and package management tool used by the inspected operating system.  "
9725 "For example for Fedora these functions would return C<rpm> (package format) "
9726 "and C<yum> (package management)."
9727 msgstr ""
9728
9729 #. type: textblock
9730 #: ../src/guestfs-actions.pod:2807 ../fish/guestfish-actions.pod:1926
9731 msgid ""
9732 "This returns the string C<unknown> if we could not determine the package "
9733 "management tool I<or> if the operating system does not have a real packaging "
9734 "system (eg. Windows)."
9735 msgstr ""
9736
9737 #. type: textblock
9738 #: ../src/guestfs-actions.pod:2811 ../fish/guestfish-actions.pod:1930
9739 msgid ""
9740 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
9741 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
9742 "libguestfs may return other strings."
9743 msgstr ""
9744
9745 #. type: =head2
9746 #: ../src/guestfs-actions.pod:2823
9747 msgid "guestfs_inspect_get_product_name"
9748 msgstr ""
9749
9750 #. type: verbatim
9751 #: ../src/guestfs-actions.pod:2825
9752 #, no-wrap
9753 msgid ""
9754 " char *\n"
9755 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
9756 "                                   const char *root);\n"
9757 "\n"
9758 msgstr ""
9759
9760 #. type: textblock
9761 #: ../src/guestfs-actions.pod:2832 ../fish/guestfish-actions.pod:1944
9762 msgid ""
9763 "This returns the product name of the inspected operating system.  The "
9764 "product name is generally some freeform string which can be displayed to the "
9765 "user, but should not be parsed by programs."
9766 msgstr ""
9767
9768 #. type: textblock
9769 #: ../src/guestfs-actions.pod:2837 ../fish/guestfish-actions.pod:1949
9770 msgid ""
9771 "If the product name could not be determined, then the string C<unknown> is "
9772 "returned."
9773 msgstr ""
9774
9775 #. type: =head2
9776 #: ../src/guestfs-actions.pod:2847
9777 msgid "guestfs_inspect_get_roots"
9778 msgstr ""
9779
9780 #. type: verbatim
9781 #: ../src/guestfs-actions.pod:2849
9782 #, no-wrap
9783 msgid ""
9784 " char **\n"
9785 " guestfs_inspect_get_roots (guestfs_h *g);\n"
9786 "\n"
9787 msgstr ""
9788
9789 #. type: textblock
9790 #: ../src/guestfs-actions.pod:2852
9791 msgid ""
9792 "This function is a convenient way to get the list of root devices, as "
9793 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
9794 "the whole inspection process."
9795 msgstr ""
9796
9797 #. type: textblock
9798 #: ../src/guestfs-actions.pod:2856
9799 msgid ""
9800 "This returns an empty list if either no root devices were found or the "
9801 "caller has not called C<guestfs_inspect_os>."
9802 msgstr ""
9803
9804 #. type: textblock
9805 #: ../src/guestfs-actions.pod:2865
9806 msgid "(Added in 1.7.3)"
9807 msgstr ""
9808
9809 #. type: =head2
9810 #: ../src/guestfs-actions.pod:2867
9811 msgid "guestfs_inspect_get_type"
9812 msgstr ""
9813
9814 #. type: verbatim
9815 #: ../src/guestfs-actions.pod:2869
9816 #, no-wrap
9817 msgid ""
9818 " char *\n"
9819 " guestfs_inspect_get_type (guestfs_h *g,\n"
9820 "                           const char *root);\n"
9821 "\n"
9822 msgstr ""
9823
9824 #. type: textblock
9825 #: ../src/guestfs-actions.pod:2876 ../fish/guestfish-actions.pod:1974
9826 msgid ""
9827 "This returns the type of the inspected operating system.  Currently defined "
9828 "types are:"
9829 msgstr ""
9830
9831 #. type: =item
9832 #: ../src/guestfs-actions.pod:2881 ../fish/guestfish-actions.pod:1979
9833 msgid "\"linux\""
9834 msgstr ""
9835
9836 #. type: textblock
9837 #: ../src/guestfs-actions.pod:2883 ../fish/guestfish-actions.pod:1981
9838 msgid "Any Linux-based operating system."
9839 msgstr ""
9840
9841 #. type: textblock
9842 #: ../src/guestfs-actions.pod:2887 ../fish/guestfish-actions.pod:1985
9843 msgid "Any Microsoft Windows operating system."
9844 msgstr ""
9845
9846 #. type: =item
9847 #: ../src/guestfs-actions.pod:2889 ../fish/guestfish-actions.pod:1987
9848 msgid "\"freebsd\""
9849 msgstr ""
9850
9851 #. type: textblock
9852 #: ../src/guestfs-actions.pod:2891 ../fish/guestfish-actions.pod:1989
9853 msgid "FreeBSD."
9854 msgstr ""
9855
9856 #. type: textblock
9857 #: ../src/guestfs-actions.pod:2895 ../fish/guestfish-actions.pod:1993
9858 msgid "The operating system type could not be determined."
9859 msgstr ""
9860
9861 #. type: =head2
9862 #: ../src/guestfs-actions.pod:2909
9863 msgid "guestfs_inspect_get_windows_systemroot"
9864 msgstr ""
9865
9866 #. type: verbatim
9867 #: ../src/guestfs-actions.pod:2911
9868 #, no-wrap
9869 msgid ""
9870 " char *\n"
9871 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
9872 "                                         const char *root);\n"
9873 "\n"
9874 msgstr ""
9875
9876 #. type: textblock
9877 #: ../src/guestfs-actions.pod:2918 ../fish/guestfish-actions.pod:2009
9878 msgid ""
9879 "This returns the Windows systemroot of the inspected guest.  The systemroot "
9880 "is a directory path such as C</WINDOWS>."
9881 msgstr ""
9882
9883 #. type: textblock
9884 #: ../src/guestfs-actions.pod:2921 ../fish/guestfish-actions.pod:2012
9885 msgid ""
9886 "This call assumes that the guest is Windows and that the systemroot could be "
9887 "determined by inspection.  If this is not the case then an error is "
9888 "returned."
9889 msgstr ""
9890
9891 #. type: textblock
9892 #: ../src/guestfs-actions.pod:2930
9893 msgid "(Added in 1.5.25)"
9894 msgstr ""
9895
9896 #. type: =head2
9897 #: ../src/guestfs-actions.pod:2932
9898 msgid "guestfs_inspect_is_live"
9899 msgstr ""
9900
9901 #. type: verbatim
9902 #: ../src/guestfs-actions.pod:2934
9903 #, no-wrap
9904 msgid ""
9905 " int\n"
9906 " guestfs_inspect_is_live (guestfs_h *g,\n"
9907 "                          const char *root);\n"
9908 "\n"
9909 msgstr ""
9910
9911 #. type: textblock
9912 #: ../src/guestfs-actions.pod:2941
9913 msgid ""
9914 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
9915 "disk), then this returns true if a live image was detected on the disk."
9916 msgstr ""
9917
9918 #. type: =head2
9919 #: ../src/guestfs-actions.pod:2949
9920 msgid "guestfs_inspect_is_multipart"
9921 msgstr ""
9922
9923 #. type: verbatim
9924 #: ../src/guestfs-actions.pod:2951
9925 #, no-wrap
9926 msgid ""
9927 " int\n"
9928 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
9929 "                               const char *root);\n"
9930 "\n"
9931 msgstr ""
9932
9933 #. type: textblock
9934 #: ../src/guestfs-actions.pod:2958
9935 msgid ""
9936 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
9937 "disk), then this returns true if the disk is part of a set."
9938 msgstr ""
9939
9940 #. type: =head2
9941 #: ../src/guestfs-actions.pod:2966
9942 msgid "guestfs_inspect_is_netinst"
9943 msgstr ""
9944
9945 #. type: verbatim
9946 #: ../src/guestfs-actions.pod:2968
9947 #, no-wrap
9948 msgid ""
9949 " int\n"
9950 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
9951 "                             const char *root);\n"
9952 "\n"
9953 msgstr ""
9954
9955 #. type: textblock
9956 #: ../src/guestfs-actions.pod:2975
9957 msgid ""
9958 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
9959 "disk), then this returns true if the disk is a network installer, ie. not a "
9960 "self-contained install CD but one which is likely to require network access "
9961 "to complete the install."
9962 msgstr ""
9963
9964 #. type: =head2
9965 #: ../src/guestfs-actions.pod:2985
9966 msgid "guestfs_inspect_list_applications"
9967 msgstr ""
9968
9969 #. type: verbatim
9970 #: ../src/guestfs-actions.pod:2987
9971 #, no-wrap
9972 msgid ""
9973 " struct guestfs_application_list *\n"
9974 " guestfs_inspect_list_applications (guestfs_h *g,\n"
9975 "                                    const char *root);\n"
9976 "\n"
9977 msgstr ""
9978
9979 #. type: textblock
9980 #: ../src/guestfs-actions.pod:2994 ../fish/guestfish-actions.pod:2066
9981 msgid "Return the list of applications installed in the operating system."
9982 msgstr ""
9983
9984 #. type: textblock
9985 #: ../src/guestfs-actions.pod:2996
9986 msgid ""
9987 "I<Note:> This call works differently from other parts of the inspection "
9988 "API.  You have to call C<guestfs_inspect_os>, then "
9989 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
9990 "this.  Listing applications is a significantly more difficult operation "
9991 "which requires access to the full filesystem.  Also note that unlike the "
9992 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
9993 "the libguestfs handle, this call actually reads parts of the mounted "
9994 "filesystems during the call."
9995 msgstr ""
9996
9997 #. type: textblock
9998 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2078
9999 msgid ""
10000 "This returns an empty list if the inspection code was not able to determine "
10001 "the list of applications."
10002 msgstr ""
10003
10004 #. type: textblock
10005 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2081
10006 msgid "The application structure contains the following fields:"
10007 msgstr ""
10008
10009 #. type: =item
10010 #: ../src/guestfs-actions.pod:3013 ../fish/guestfish-actions.pod:2085
10011 msgid "C<app_name>"
10012 msgstr ""
10013
10014 #. type: textblock
10015 #: ../src/guestfs-actions.pod:3015 ../fish/guestfish-actions.pod:2087
10016 msgid ""
10017 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
10018 "guests, this is the package name."
10019 msgstr ""
10020
10021 #. type: =item
10022 #: ../src/guestfs-actions.pod:3018 ../fish/guestfish-actions.pod:2090
10023 msgid "C<app_display_name>"
10024 msgstr ""
10025
10026 #. type: textblock
10027 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2092
10028 msgid ""
10029 "The display name of the application, sometimes localized to the install "
10030 "language of the guest operating system."
10031 msgstr ""
10032
10033 #. type: textblock
10034 #: ../src/guestfs-actions.pod:3023 ../fish/guestfish-actions.pod:2095
10035 msgid ""
10036 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
10037 "to display something can use C<app_name> instead."
10038 msgstr ""
10039
10040 #. type: =item
10041 #: ../src/guestfs-actions.pod:3026 ../fish/guestfish-actions.pod:2098
10042 msgid "C<app_epoch>"
10043 msgstr ""
10044
10045 #. type: textblock
10046 #: ../src/guestfs-actions.pod:3028 ../fish/guestfish-actions.pod:2100
10047 msgid ""
10048 "For package managers which use epochs, this contains the epoch of the "
10049 "package (an integer).  If unavailable, this is returned as C<0>."
10050 msgstr ""
10051
10052 #. type: =item
10053 #: ../src/guestfs-actions.pod:3031 ../fish/guestfish-actions.pod:2103
10054 msgid "C<app_version>"
10055 msgstr ""
10056
10057 #. type: textblock
10058 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2105
10059 msgid ""
10060 "The version string of the application or package.  If unavailable this is "
10061 "returned as an empty string C<\"\">."
10062 msgstr ""
10063
10064 #. type: =item
10065 #: ../src/guestfs-actions.pod:3036 ../fish/guestfish-actions.pod:2108
10066 msgid "C<app_release>"
10067 msgstr ""
10068
10069 #. type: textblock
10070 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2110
10071 msgid ""
10072 "The release string of the application or package, for package managers that "
10073 "use this.  If unavailable this is returned as an empty string C<\"\">."
10074 msgstr ""
10075
10076 #. type: =item
10077 #: ../src/guestfs-actions.pod:3042 ../fish/guestfish-actions.pod:2114
10078 msgid "C<app_install_path>"
10079 msgstr ""
10080
10081 #. type: textblock
10082 #: ../src/guestfs-actions.pod:3044 ../fish/guestfish-actions.pod:2116
10083 msgid ""
10084 "The installation path of the application (on operating systems such as "
10085 "Windows which use installation paths).  This path is in the format used by "
10086 "the guest operating system, it is not a libguestfs path."
10087 msgstr ""
10088
10089 #. type: textblock
10090 #: ../src/guestfs-actions.pod:3049 ../fish/guestfish-actions.pod:2121
10091 msgid "If unavailable this is returned as an empty string C<\"\">."
10092 msgstr ""
10093
10094 #. type: =item
10095 #: ../src/guestfs-actions.pod:3051 ../fish/guestfish-actions.pod:2123
10096 msgid "C<app_trans_path>"
10097 msgstr ""
10098
10099 #. type: textblock
10100 #: ../src/guestfs-actions.pod:3053 ../fish/guestfish-actions.pod:2125
10101 msgid ""
10102 "The install path translated into a libguestfs path.  If unavailable this is "
10103 "returned as an empty string C<\"\">."
10104 msgstr ""
10105
10106 #. type: =item
10107 #: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2128
10108 msgid "C<app_publisher>"
10109 msgstr ""
10110
10111 #. type: textblock
10112 #: ../src/guestfs-actions.pod:3058 ../fish/guestfish-actions.pod:2130
10113 msgid ""
10114 "The name of the publisher of the application, for package managers that use "
10115 "this.  If unavailable this is returned as an empty string C<\"\">."
10116 msgstr ""
10117
10118 #. type: =item
10119 #: ../src/guestfs-actions.pod:3062 ../fish/guestfish-actions.pod:2134
10120 msgid "C<app_url>"
10121 msgstr ""
10122
10123 #. type: textblock
10124 #: ../src/guestfs-actions.pod:3064 ../fish/guestfish-actions.pod:2136
10125 msgid ""
10126 "The URL (eg. upstream URL) of the application.  If unavailable this is "
10127 "returned as an empty string C<\"\">."
10128 msgstr ""
10129
10130 #. type: =item
10131 #: ../src/guestfs-actions.pod:3067 ../fish/guestfish-actions.pod:2139
10132 msgid "C<app_source_package>"
10133 msgstr ""
10134
10135 #. type: textblock
10136 #: ../src/guestfs-actions.pod:3069 ../fish/guestfish-actions.pod:2141
10137 msgid ""
10138 "For packaging systems which support this, the name of the source package.  "
10139 "If unavailable this is returned as an empty string C<\"\">."
10140 msgstr ""
10141
10142 #. type: =item
10143 #: ../src/guestfs-actions.pod:3072 ../fish/guestfish-actions.pod:2144
10144 msgid "C<app_summary>"
10145 msgstr ""
10146
10147 #. type: textblock
10148 #: ../src/guestfs-actions.pod:3074 ../fish/guestfish-actions.pod:2146
10149 msgid ""
10150 "A short (usually one line) description of the application or package.  If "
10151 "unavailable this is returned as an empty string C<\"\">."
10152 msgstr ""
10153
10154 #. type: =item
10155 #: ../src/guestfs-actions.pod:3077 ../fish/guestfish-actions.pod:2149
10156 msgid "C<app_description>"
10157 msgstr ""
10158
10159 #. type: textblock
10160 #: ../src/guestfs-actions.pod:3079 ../fish/guestfish-actions.pod:2151
10161 msgid ""
10162 "A longer description of the application or package.  If unavailable this is "
10163 "returned as an empty string C<\"\">."
10164 msgstr ""
10165
10166 #. type: textblock
10167 #: ../src/guestfs-actions.pod:3086
10168 msgid ""
10169 "This function returns a C<struct guestfs_application_list *>, or NULL if "
10170 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
10171 "after use>."
10172 msgstr ""
10173
10174 #. type: textblock
10175 #: ../src/guestfs-actions.pod:3090
10176 msgid "(Added in 1.7.8)"
10177 msgstr ""
10178
10179 #. type: =head2
10180 #: ../src/guestfs-actions.pod:3092
10181 msgid "guestfs_inspect_os"
10182 msgstr ""
10183
10184 #. type: verbatim
10185 #: ../src/guestfs-actions.pod:3094
10186 #, no-wrap
10187 msgid ""
10188 " char **\n"
10189 " guestfs_inspect_os (guestfs_h *g);\n"
10190 "\n"
10191 msgstr ""
10192
10193 #. type: textblock
10194 #: ../src/guestfs-actions.pod:3097 ../fish/guestfish-actions.pod:2162
10195 msgid ""
10196 "This function uses other libguestfs functions and certain heuristics to "
10197 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
10198 "for operating systems."
10199 msgstr ""
10200
10201 #. type: textblock
10202 #: ../src/guestfs-actions.pod:3101 ../fish/guestfish-actions.pod:2166
10203 msgid "The list returned is empty if no operating systems were found."
10204 msgstr ""
10205
10206 #. type: textblock
10207 #: ../src/guestfs-actions.pod:3103 ../fish/guestfish-actions.pod:2168
10208 msgid ""
10209 "If one operating system was found, then this returns a list with a single "
10210 "element, which is the name of the root filesystem of this operating system.  "
10211 "It is also possible for this function to return a list containing more than "
10212 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
10213 "element being the root filesystem of one of the operating systems."
10214 msgstr ""
10215
10216 #. type: textblock
10217 #: ../src/guestfs-actions.pod:3110
10218 msgid ""
10219 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
10220 "functions in order to query further information about each operating system, "
10221 "such as the name and version."
10222 msgstr ""
10223
10224 #. type: textblock
10225 #: ../src/guestfs-actions.pod:3115
10226 msgid ""
10227 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
10228 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
10229 "the contents.  This should be called with no disks currently mounted.  The "
10230 "function may also use Augeas, so any existing Augeas handle will be closed."
10231 msgstr ""
10232
10233 #. type: textblock
10234 #: ../src/guestfs-actions.pod:3121 ../fish/guestfish-actions.pod:2186
10235 msgid ""
10236 "This function cannot decrypt encrypted disks.  The caller must do that first "
10237 "(supplying the necessary keys) if the disk is encrypted."
10238 msgstr ""
10239
10240 #. type: textblock
10241 #: ../src/guestfs-actions.pod:3127 ../src/guestfs-actions.pod:3412 ../src/guestfs-actions.pod:3474
10242 msgid "See also C<guestfs_list_filesystems>."
10243 msgstr ""
10244
10245 #. type: =head2
10246 #: ../src/guestfs-actions.pod:3135
10247 msgid "guestfs_is_blockdev"
10248 msgstr ""
10249
10250 #. type: verbatim
10251 #: ../src/guestfs-actions.pod:3137
10252 #, no-wrap
10253 msgid ""
10254 " int\n"
10255 " guestfs_is_blockdev (guestfs_h *g,\n"
10256 "                      const char *path);\n"
10257 "\n"
10258 msgstr ""
10259
10260 #. type: textblock
10261 #: ../src/guestfs-actions.pod:3141 ../fish/guestfish-actions.pod:2198
10262 msgid ""
10263 "This returns C<true> if and only if there is a block device with the given "
10264 "C<path> name."
10265 msgstr ""
10266
10267 #. type: textblock
10268 #: ../src/guestfs-actions.pod:3144 ../src/guestfs-actions.pod:3173 ../src/guestfs-actions.pod:3203 ../src/guestfs-actions.pod:3218 ../src/guestfs-actions.pod:3234 ../src/guestfs-actions.pod:3290 ../src/guestfs-actions.pod:3305
10269 msgid "See also C<guestfs_stat>."
10270 msgstr ""
10271
10272 #. type: textblock
10273 #: ../src/guestfs-actions.pod:3148 ../src/guestfs-actions.pod:3177 ../src/guestfs-actions.pod:3222 ../src/guestfs-actions.pod:3294 ../src/guestfs-actions.pod:3309
10274 msgid "(Added in 1.5.10)"
10275 msgstr ""
10276
10277 #. type: =head2
10278 #: ../src/guestfs-actions.pod:3150
10279 msgid "guestfs_is_busy"
10280 msgstr ""
10281
10282 #. type: verbatim
10283 #: ../src/guestfs-actions.pod:3152
10284 #, no-wrap
10285 msgid ""
10286 " int\n"
10287 " guestfs_is_busy (guestfs_h *g);\n"
10288 "\n"
10289 msgstr ""
10290
10291 #. type: textblock
10292 #: ../src/guestfs-actions.pod:3155 ../fish/guestfish-actions.pod:2207
10293 msgid ""
10294 "This returns true iff this handle is busy processing a command (in the "
10295 "C<BUSY> state)."
10296 msgstr ""
10297
10298 #. type: =head2
10299 #: ../src/guestfs-actions.pod:3164
10300 msgid "guestfs_is_chardev"
10301 msgstr ""
10302
10303 #. type: verbatim
10304 #: ../src/guestfs-actions.pod:3166
10305 #, no-wrap
10306 msgid ""
10307 " int\n"
10308 " guestfs_is_chardev (guestfs_h *g,\n"
10309 "                     const char *path);\n"
10310 "\n"
10311 msgstr ""
10312
10313 #. type: textblock
10314 #: ../src/guestfs-actions.pod:3170 ../fish/guestfish-actions.pod:2216
10315 msgid ""
10316 "This returns C<true> if and only if there is a character device with the "
10317 "given C<path> name."
10318 msgstr ""
10319
10320 #. type: =head2
10321 #: ../src/guestfs-actions.pod:3179
10322 msgid "guestfs_is_config"
10323 msgstr ""
10324
10325 #. type: verbatim
10326 #: ../src/guestfs-actions.pod:3181
10327 #, no-wrap
10328 msgid ""
10329 " int\n"
10330 " guestfs_is_config (guestfs_h *g);\n"
10331 "\n"
10332 msgstr ""
10333
10334 #. type: textblock
10335 #: ../src/guestfs-actions.pod:3184 ../fish/guestfish-actions.pod:2225
10336 msgid ""
10337 "This returns true iff this handle is being configured (in the C<CONFIG> "
10338 "state)."
10339 msgstr ""
10340
10341 #. type: =head2
10342 #: ../src/guestfs-actions.pod:3193
10343 msgid "guestfs_is_dir"
10344 msgstr ""
10345
10346 #. type: verbatim
10347 #: ../src/guestfs-actions.pod:3195
10348 #, no-wrap
10349 msgid ""
10350 " int\n"
10351 " guestfs_is_dir (guestfs_h *g,\n"
10352 "                 const char *path);\n"
10353 "\n"
10354 msgstr ""
10355
10356 #. type: textblock
10357 #: ../src/guestfs-actions.pod:3199 ../fish/guestfish-actions.pod:2234
10358 msgid ""
10359 "This returns C<true> if and only if there is a directory with the given "
10360 "C<path> name.  Note that it returns false for other objects like files."
10361 msgstr ""
10362
10363 #. type: =head2
10364 #: ../src/guestfs-actions.pod:3209
10365 msgid "guestfs_is_fifo"
10366 msgstr ""
10367
10368 #. type: verbatim
10369 #: ../src/guestfs-actions.pod:3211
10370 #, no-wrap
10371 msgid ""
10372 " int\n"
10373 " guestfs_is_fifo (guestfs_h *g,\n"
10374 "                  const char *path);\n"
10375 "\n"
10376 msgstr ""
10377
10378 #. type: textblock
10379 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2244
10380 msgid ""
10381 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
10382 "given C<path> name."
10383 msgstr ""
10384
10385 #. type: =head2
10386 #: ../src/guestfs-actions.pod:3224
10387 msgid "guestfs_is_file"
10388 msgstr ""
10389
10390 #. type: verbatim
10391 #: ../src/guestfs-actions.pod:3226
10392 #, no-wrap
10393 msgid ""
10394 " int\n"
10395 " guestfs_is_file (guestfs_h *g,\n"
10396 "                  const char *path);\n"
10397 "\n"
10398 msgstr ""
10399
10400 #. type: textblock
10401 #: ../src/guestfs-actions.pod:3230 ../fish/guestfish-actions.pod:2253
10402 msgid ""
10403 "This returns C<true> if and only if there is a regular file with the given "
10404 "C<path> name.  Note that it returns false for other objects like "
10405 "directories."
10406 msgstr ""
10407
10408 #. type: =head2
10409 #: ../src/guestfs-actions.pod:3240
10410 msgid "guestfs_is_launching"
10411 msgstr ""
10412
10413 #. type: verbatim
10414 #: ../src/guestfs-actions.pod:3242
10415 #, no-wrap
10416 msgid ""
10417 " int\n"
10418 " guestfs_is_launching (guestfs_h *g);\n"
10419 "\n"
10420 msgstr ""
10421
10422 #. type: textblock
10423 #: ../src/guestfs-actions.pod:3245 ../fish/guestfish-actions.pod:2263
10424 msgid ""
10425 "This returns true iff this handle is launching the subprocess (in the "
10426 "C<LAUNCHING> state)."
10427 msgstr ""
10428
10429 #. type: =head2
10430 #: ../src/guestfs-actions.pod:3254
10431 msgid "guestfs_is_lv"
10432 msgstr ""
10433
10434 #. type: verbatim
10435 #: ../src/guestfs-actions.pod:3256
10436 #, no-wrap
10437 msgid ""
10438 " int\n"
10439 " guestfs_is_lv (guestfs_h *g,\n"
10440 "                const char *device);\n"
10441 "\n"
10442 msgstr ""
10443
10444 #. type: textblock
10445 #: ../src/guestfs-actions.pod:3260 ../fish/guestfish-actions.pod:2272
10446 msgid ""
10447 "This command tests whether C<device> is a logical volume, and returns true "
10448 "iff this is the case."
10449 msgstr ""
10450
10451 #. type: =head2
10452 #: ../src/guestfs-actions.pod:3267
10453 msgid "guestfs_is_ready"
10454 msgstr ""
10455
10456 #. type: verbatim
10457 #: ../src/guestfs-actions.pod:3269
10458 #, no-wrap
10459 msgid ""
10460 " int\n"
10461 " guestfs_is_ready (guestfs_h *g);\n"
10462 "\n"
10463 msgstr ""
10464
10465 #. type: textblock
10466 #: ../src/guestfs-actions.pod:3272 ../fish/guestfish-actions.pod:2279
10467 msgid ""
10468 "This returns true iff this handle is ready to accept commands (in the "
10469 "C<READY> state)."
10470 msgstr ""
10471
10472 #. type: =head2
10473 #: ../src/guestfs-actions.pod:3281
10474 msgid "guestfs_is_socket"
10475 msgstr ""
10476
10477 #. type: verbatim
10478 #: ../src/guestfs-actions.pod:3283
10479 #, no-wrap
10480 msgid ""
10481 " int\n"
10482 " guestfs_is_socket (guestfs_h *g,\n"
10483 "                    const char *path);\n"
10484 "\n"
10485 msgstr ""
10486
10487 #. type: textblock
10488 #: ../src/guestfs-actions.pod:3287 ../fish/guestfish-actions.pod:2288
10489 msgid ""
10490 "This returns C<true> if and only if there is a Unix domain socket with the "
10491 "given C<path> name."
10492 msgstr ""
10493
10494 #. type: =head2
10495 #: ../src/guestfs-actions.pod:3296
10496 msgid "guestfs_is_symlink"
10497 msgstr ""
10498
10499 #. type: verbatim
10500 #: ../src/guestfs-actions.pod:3298
10501 #, no-wrap
10502 msgid ""
10503 " int\n"
10504 " guestfs_is_symlink (guestfs_h *g,\n"
10505 "                     const char *path);\n"
10506 "\n"
10507 msgstr ""
10508
10509 #. type: textblock
10510 #: ../src/guestfs-actions.pod:3302 ../fish/guestfish-actions.pod:2297
10511 msgid ""
10512 "This returns C<true> if and only if there is a symbolic link with the given "
10513 "C<path> name."
10514 msgstr ""
10515
10516 #. type: =head2
10517 #: ../src/guestfs-actions.pod:3311
10518 msgid "guestfs_kill_subprocess"
10519 msgstr ""
10520
10521 #. type: verbatim
10522 #: ../src/guestfs-actions.pod:3313
10523 #, no-wrap
10524 msgid ""
10525 " int\n"
10526 " guestfs_kill_subprocess (guestfs_h *g);\n"
10527 "\n"
10528 msgstr ""
10529
10530 #. type: textblock
10531 #: ../src/guestfs-actions.pod:3316 ../fish/guestfish-actions.pod:2306
10532 msgid "This kills the qemu subprocess.  You should never need to call this."
10533 msgstr ""
10534
10535 #. type: =head2
10536 #: ../src/guestfs-actions.pod:3322
10537 msgid "guestfs_launch"
10538 msgstr ""
10539
10540 #. type: verbatim
10541 #: ../src/guestfs-actions.pod:3324
10542 #, no-wrap
10543 msgid ""
10544 " int\n"
10545 " guestfs_launch (guestfs_h *g);\n"
10546 "\n"
10547 msgstr ""
10548
10549 #. type: textblock
10550 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2314
10551 msgid ""
10552 "Internally libguestfs is implemented by running a virtual machine using "
10553 "L<qemu(1)>."
10554 msgstr ""
10555
10556 #. type: textblock
10557 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2317
10558 msgid ""
10559 "You should call this after configuring the handle (eg. adding drives) but "
10560 "before performing any actions."
10561 msgstr ""
10562
10563 #. type: =head2
10564 #: ../src/guestfs-actions.pod:3337
10565 msgid "guestfs_lchown"
10566 msgstr ""
10567
10568 #. type: verbatim
10569 #: ../src/guestfs-actions.pod:3339
10570 #, no-wrap
10571 msgid ""
10572 " int\n"
10573 " guestfs_lchown (guestfs_h *g,\n"
10574 "                 int owner,\n"
10575 "                 int group,\n"
10576 "                 const char *path);\n"
10577 "\n"
10578 msgstr ""
10579
10580 #. type: textblock
10581 #: ../src/guestfs-actions.pod:3345
10582 msgid ""
10583 "Change the file owner to C<owner> and group to C<group>.  This is like "
10584 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
10585 "changed, not the target."
10586 msgstr ""
10587
10588 #. type: =head2
10589 #: ../src/guestfs-actions.pod:3357
10590 msgid "guestfs_lgetxattr"
10591 msgstr ""
10592
10593 #. type: verbatim
10594 #: ../src/guestfs-actions.pod:3359
10595 #, no-wrap
10596 msgid ""
10597 " char *\n"
10598 " guestfs_lgetxattr (guestfs_h *g,\n"
10599 "                    const char *path,\n"
10600 "                    const char *name,\n"
10601 "                    size_t *size_r);\n"
10602 "\n"
10603 msgstr ""
10604
10605 #. type: textblock
10606 #: ../src/guestfs-actions.pod:3365 ../fish/guestfish-actions.pod:2336
10607 msgid ""
10608 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
10609 "is a symlink, then this call returns an extended attribute from the symlink."
10610 msgstr ""
10611
10612 #. type: textblock
10613 #: ../src/guestfs-actions.pod:3379
10614 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
10615 msgstr ""
10616
10617 #. type: =head2
10618 #: ../src/guestfs-actions.pod:3387
10619 msgid "guestfs_lgetxattrs"
10620 msgstr ""
10621
10622 #. type: verbatim
10623 #: ../src/guestfs-actions.pod:3389
10624 #, no-wrap
10625 msgid ""
10626 " struct guestfs_xattr_list *\n"
10627 " guestfs_lgetxattrs (guestfs_h *g,\n"
10628 "                     const char *path);\n"
10629 "\n"
10630 msgstr ""
10631
10632 #. type: textblock
10633 #: ../src/guestfs-actions.pod:3393
10634 msgid ""
10635 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
10636 "then it returns the extended attributes of the link itself."
10637 msgstr ""
10638
10639 #. type: =head2
10640 #: ../src/guestfs-actions.pod:3403
10641 msgid "guestfs_list_devices"
10642 msgstr ""
10643
10644 #. type: verbatim
10645 #: ../src/guestfs-actions.pod:3405
10646 #, no-wrap
10647 msgid ""
10648 " char **\n"
10649 " guestfs_list_devices (guestfs_h *g);\n"
10650 "\n"
10651 msgstr ""
10652
10653 #. type: textblock
10654 #: ../src/guestfs-actions.pod:3408 ../fish/guestfish-actions.pod:2364
10655 msgid "List all the block devices."
10656 msgstr ""
10657
10658 #. type: textblock
10659 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2366
10660 msgid "The full block device names are returned, eg. C</dev/sda>."
10661 msgstr ""
10662
10663 #. type: =head2
10664 #: ../src/guestfs-actions.pod:3420
10665 msgid "guestfs_list_filesystems"
10666 msgstr ""
10667
10668 #. type: verbatim
10669 #: ../src/guestfs-actions.pod:3422
10670 #, no-wrap
10671 msgid ""
10672 " char **\n"
10673 " guestfs_list_filesystems (guestfs_h *g);\n"
10674 "\n"
10675 msgstr ""
10676
10677 #. type: textblock
10678 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2374
10679 msgid ""
10680 "This inspection command looks for filesystems on partitions, block devices "
10681 "and logical volumes, returning a list of devices containing filesystems and "
10682 "their type."
10683 msgstr ""
10684
10685 #. type: textblock
10686 #: ../src/guestfs-actions.pod:3429 ../fish/guestfish-actions.pod:2378
10687 msgid ""
10688 "The return value is a hash, where the keys are the devices containing "
10689 "filesystems, and the values are the filesystem types.  For example:"
10690 msgstr ""
10691
10692 #. type: verbatim
10693 #: ../src/guestfs-actions.pod:3433 ../fish/guestfish-actions.pod:2382
10694 #, no-wrap
10695 msgid ""
10696 " \"/dev/sda1\" => \"ntfs\"\n"
10697 " \"/dev/sda2\" => \"ext2\"\n"
10698 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
10699 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
10700 "\n"
10701 msgstr ""
10702
10703 #. type: textblock
10704 #: ../src/guestfs-actions.pod:3438 ../fish/guestfish-actions.pod:2387
10705 msgid ""
10706 "The value can have the special value \"unknown\", meaning the content of the "
10707 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
10708 msgstr ""
10709
10710 #. type: textblock
10711 #: ../src/guestfs-actions.pod:3442
10712 msgid ""
10713 "This command runs other libguestfs commands, which might include "
10714 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
10715 "soon after launch and only when nothing is mounted."
10716 msgstr ""
10717
10718 #. type: textblock
10719 #: ../src/guestfs-actions.pod:3446
10720 msgid ""
10721 "Not all of the filesystems returned will be mountable.  In particular, swap "
10722 "partitions are returned in the list.  Also this command does not check that "
10723 "each filesystem found is valid and mountable, and some filesystems might be "
10724 "mountable but require special options.  Filesystems may not all belong to a "
10725 "single logical operating system (use C<guestfs_inspect_os> to look for "
10726 "OSes)."
10727 msgstr ""
10728
10729 #. type: textblock
10730 #: ../src/guestfs-actions.pod:3460 ../src/guestfs-actions.pod:5065
10731 msgid "(Added in 1.5.15)"
10732 msgstr ""
10733
10734 #. type: =head2
10735 #: ../src/guestfs-actions.pod:3462
10736 msgid "guestfs_list_partitions"
10737 msgstr ""
10738
10739 #. type: verbatim
10740 #: ../src/guestfs-actions.pod:3464
10741 #, no-wrap
10742 msgid ""
10743 " char **\n"
10744 " guestfs_list_partitions (guestfs_h *g);\n"
10745 "\n"
10746 msgstr ""
10747
10748 #. type: textblock
10749 #: ../src/guestfs-actions.pod:3467 ../fish/guestfish-actions.pod:2407
10750 msgid "List all the partitions detected on all block devices."
10751 msgstr ""
10752
10753 #. type: textblock
10754 #: ../src/guestfs-actions.pod:3469 ../fish/guestfish-actions.pod:2409
10755 msgid "The full partition device names are returned, eg. C</dev/sda1>"
10756 msgstr ""
10757
10758 #. type: textblock
10759 #: ../src/guestfs-actions.pod:3471
10760 msgid ""
10761 "This does not return logical volumes.  For that you will need to call "
10762 "C<guestfs_lvs>."
10763 msgstr ""
10764
10765 #. type: =head2
10766 #: ../src/guestfs-actions.pod:3482
10767 msgid "guestfs_ll"
10768 msgstr ""
10769
10770 #. type: verbatim
10771 #: ../src/guestfs-actions.pod:3484
10772 #, no-wrap
10773 msgid ""
10774 " char *\n"
10775 " guestfs_ll (guestfs_h *g,\n"
10776 "             const char *directory);\n"
10777 "\n"
10778 msgstr ""
10779
10780 #. type: textblock
10781 #: ../src/guestfs-actions.pod:3488 ../fish/guestfish-actions.pod:2420
10782 msgid ""
10783 "List the files in C<directory> (relative to the root directory, there is no "
10784 "cwd) in the format of 'ls -la'."
10785 msgstr ""
10786
10787 #. type: textblock
10788 #: ../src/guestfs-actions.pod:3491 ../fish/guestfish-actions.pod:2423
10789 msgid ""
10790 "This command is mostly useful for interactive sessions.  It is I<not> "
10791 "intended that you try to parse the output string."
10792 msgstr ""
10793
10794 #. type: =head2
10795 #: ../src/guestfs-actions.pod:3499
10796 msgid "guestfs_ln"
10797 msgstr ""
10798
10799 #. type: verbatim
10800 #: ../src/guestfs-actions.pod:3501
10801 #, no-wrap
10802 msgid ""
10803 " int\n"
10804 " guestfs_ln (guestfs_h *g,\n"
10805 "             const char *target,\n"
10806 "             const char *linkname);\n"
10807 "\n"
10808 msgstr ""
10809
10810 #. type: textblock
10811 #: ../src/guestfs-actions.pod:3506 ../fish/guestfish-actions.pod:2430
10812 msgid "This command creates a hard link using the C<ln> command."
10813 msgstr ""
10814
10815 #. type: =head2
10816 #: ../src/guestfs-actions.pod:3512
10817 msgid "guestfs_ln_f"
10818 msgstr ""
10819
10820 #. type: verbatim
10821 #: ../src/guestfs-actions.pod:3514
10822 #, no-wrap
10823 msgid ""
10824 " int\n"
10825 " guestfs_ln_f (guestfs_h *g,\n"
10826 "               const char *target,\n"
10827 "               const char *linkname);\n"
10828 "\n"
10829 msgstr ""
10830
10831 #. type: textblock
10832 #: ../src/guestfs-actions.pod:3519 ../fish/guestfish-actions.pod:2436
10833 msgid ""
10834 "This command creates a hard link using the C<ln -f> command.  The C<-f> "
10835 "option removes the link (C<linkname>) if it exists already."
10836 msgstr ""
10837
10838 #. type: =head2
10839 #: ../src/guestfs-actions.pod:3526
10840 msgid "guestfs_ln_s"
10841 msgstr ""
10842
10843 #. type: verbatim
10844 #: ../src/guestfs-actions.pod:3528
10845 #, no-wrap
10846 msgid ""
10847 " int\n"
10848 " guestfs_ln_s (guestfs_h *g,\n"
10849 "               const char *target,\n"
10850 "               const char *linkname);\n"
10851 "\n"
10852 msgstr ""
10853
10854 #. type: textblock
10855 #: ../src/guestfs-actions.pod:3533 ../fish/guestfish-actions.pod:2443
10856 msgid "This command creates a symbolic link using the C<ln -s> command."
10857 msgstr ""
10858
10859 #. type: =head2
10860 #: ../src/guestfs-actions.pod:3539
10861 msgid "guestfs_ln_sf"
10862 msgstr ""
10863
10864 #. type: verbatim
10865 #: ../src/guestfs-actions.pod:3541
10866 #, no-wrap
10867 msgid ""
10868 " int\n"
10869 " guestfs_ln_sf (guestfs_h *g,\n"
10870 "                const char *target,\n"
10871 "                const char *linkname);\n"
10872 "\n"
10873 msgstr ""
10874
10875 #. type: textblock
10876 #: ../src/guestfs-actions.pod:3546 ../fish/guestfish-actions.pod:2449
10877 msgid ""
10878 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
10879 "option removes the link (C<linkname>) if it exists already."
10880 msgstr ""
10881
10882 #. type: =head2
10883 #: ../src/guestfs-actions.pod:3553
10884 msgid "guestfs_lremovexattr"
10885 msgstr ""
10886
10887 #. type: verbatim
10888 #: ../src/guestfs-actions.pod:3555
10889 #, no-wrap
10890 msgid ""
10891 " int\n"
10892 " guestfs_lremovexattr (guestfs_h *g,\n"
10893 "                       const char *xattr,\n"
10894 "                       const char *path);\n"
10895 "\n"
10896 msgstr ""
10897
10898 #. type: textblock
10899 #: ../src/guestfs-actions.pod:3560
10900 msgid ""
10901 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
10902 "link, then it removes an extended attribute of the link itself."
10903 msgstr ""
10904
10905 #. type: =head2
10906 #: ../src/guestfs-actions.pod:3568
10907 msgid "guestfs_ls"
10908 msgstr ""
10909
10910 #. type: verbatim
10911 #: ../src/guestfs-actions.pod:3570
10912 #, no-wrap
10913 msgid ""
10914 " char **\n"
10915 " guestfs_ls (guestfs_h *g,\n"
10916 "             const char *directory);\n"
10917 "\n"
10918 msgstr ""
10919
10920 #. type: textblock
10921 #: ../src/guestfs-actions.pod:3574 ../fish/guestfish-actions.pod:2464
10922 msgid ""
10923 "List the files in C<directory> (relative to the root directory, there is no "
10924 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
10925 "shown."
10926 msgstr ""
10927
10928 #. type: textblock
10929 #: ../src/guestfs-actions.pod:3578
10930 msgid ""
10931 "This command is mostly useful for interactive sessions.  Programs should "
10932 "probably use C<guestfs_readdir> instead."
10933 msgstr ""
10934
10935 #. type: =head2
10936 #: ../src/guestfs-actions.pod:3587
10937 msgid "guestfs_lsetxattr"
10938 msgstr ""
10939
10940 #. type: verbatim
10941 #: ../src/guestfs-actions.pod:3589
10942 #, no-wrap
10943 msgid ""
10944 " int\n"
10945 " guestfs_lsetxattr (guestfs_h *g,\n"
10946 "                    const char *xattr,\n"
10947 "                    const char *val,\n"
10948 "                    int vallen,\n"
10949 "                    const char *path);\n"
10950 "\n"
10951 msgstr ""
10952
10953 #. type: textblock
10954 #: ../src/guestfs-actions.pod:3596
10955 msgid ""
10956 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
10957 "then it sets an extended attribute of the link itself."
10958 msgstr ""
10959
10960 #. type: =head2
10961 #: ../src/guestfs-actions.pod:3604
10962 msgid "guestfs_lstat"
10963 msgstr ""
10964
10965 #. type: verbatim
10966 #: ../src/guestfs-actions.pod:3606
10967 #, no-wrap
10968 msgid ""
10969 " struct guestfs_stat *\n"
10970 " guestfs_lstat (guestfs_h *g,\n"
10971 "                const char *path);\n"
10972 "\n"
10973 msgstr ""
10974
10975 #. type: textblock
10976 #: ../src/guestfs-actions.pod:3610 ../src/guestfs-actions.pod:6136 ../fish/guestfish-actions.pod:2483 ../fish/guestfish-actions.pod:4122
10977 msgid "Returns file information for the given C<path>."
10978 msgstr ""
10979
10980 #. type: textblock
10981 #: ../src/guestfs-actions.pod:3612
10982 msgid ""
10983 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
10984 "link, then the link is stat-ed, not the file it refers to."
10985 msgstr ""
10986
10987 #. type: textblock
10988 #: ../src/guestfs-actions.pod:3616 ../fish/guestfish-actions.pod:2489
10989 msgid "This is the same as the C<lstat(2)> system call."
10990 msgstr ""
10991
10992 #. type: textblock
10993 #: ../src/guestfs-actions.pod:3618 ../src/guestfs-actions.pod:6140
10994 msgid ""
10995 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
10996 "error.  I<The caller must call C<guestfs_free_stat> after use>."
10997 msgstr ""
10998
10999 #. type: textblock
11000 #: ../src/guestfs-actions.pod:3622 ../src/guestfs-actions.pod:6144 ../src/guestfs-actions.pod:6162 ../src/guestfs-actions.pod:6543
11001 msgid "(Added in 0.9.2)"
11002 msgstr ""
11003
11004 #. type: =head2
11005 #: ../src/guestfs-actions.pod:3624
11006 msgid "guestfs_lstatlist"
11007 msgstr ""
11008
11009 #. type: verbatim
11010 #: ../src/guestfs-actions.pod:3626
11011 #, no-wrap
11012 msgid ""
11013 " struct guestfs_stat_list *\n"
11014 " guestfs_lstatlist (guestfs_h *g,\n"
11015 "                    const char *path,\n"
11016 "                    char *const *names);\n"
11017 "\n"
11018 msgstr ""
11019
11020 #. type: textblock
11021 #: ../src/guestfs-actions.pod:3631
11022 msgid ""
11023 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
11024 "files, where all files are in the directory C<path>.  C<names> is the list "
11025 "of files from this directory."
11026 msgstr ""
11027
11028 #. type: textblock
11029 #: ../src/guestfs-actions.pod:3635 ../fish/guestfish-actions.pod:2499
11030 msgid ""
11031 "On return you get a list of stat structs, with a one-to-one correspondence "
11032 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
11033 "then the C<ino> field of that structure is set to C<-1>."
11034 msgstr ""
11035
11036 #. type: textblock
11037 #: ../src/guestfs-actions.pod:3640
11038 msgid ""
11039 "This call is intended for programs that want to efficiently list a directory "
11040 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
11041 "for a similarly efficient call for getting extended attributes.  Very long "
11042 "directory listings might cause the protocol message size to be exceeded, "
11043 "causing this call to fail.  The caller must split up such requests into "
11044 "smaller groups of names."
11045 msgstr ""
11046
11047 #. type: textblock
11048 #: ../src/guestfs-actions.pod:3648
11049 msgid ""
11050 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
11051 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
11052 msgstr ""
11053
11054 #. type: =head2
11055 #: ../src/guestfs-actions.pod:3654
11056 msgid "guestfs_luks_add_key"
11057 msgstr ""
11058
11059 #. type: verbatim
11060 #: ../src/guestfs-actions.pod:3656
11061 #, no-wrap
11062 msgid ""
11063 " int\n"
11064 " guestfs_luks_add_key (guestfs_h *g,\n"
11065 "                       const char *device,\n"
11066 "                       const char *key,\n"
11067 "                       const char *newkey,\n"
11068 "                       int keyslot);\n"
11069 "\n"
11070 msgstr ""
11071
11072 #. type: textblock
11073 #: ../src/guestfs-actions.pod:3663 ../fish/guestfish-actions.pod:2516
11074 msgid ""
11075 "This command adds a new key on LUKS device C<device>.  C<key> is any "
11076 "existing key, and is used to access the device.  C<newkey> is the new key to "
11077 "add.  C<keyslot> is the key slot that will be replaced."
11078 msgstr ""
11079
11080 #. type: textblock
11081 #: ../src/guestfs-actions.pod:3668
11082 msgid ""
11083 "Note that if C<keyslot> already contains a key, then this command will "
11084 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
11085 msgstr ""
11086
11087 #. type: textblock
11088 #: ../src/guestfs-actions.pod:3674 ../src/guestfs-actions.pod:3714 ../src/guestfs-actions.pod:3737 ../src/guestfs-actions.pod:3757 ../src/guestfs-actions.pod:3789 ../src/guestfs-actions.pod:3808
11089 msgid ""
11090 "This function takes a key or passphrase parameter which could contain "
11091 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
11092 "information."
11093 msgstr ""
11094
11095 #. type: textblock
11096 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3718 ../src/guestfs-actions.pod:3741 ../src/guestfs-actions.pod:3761
11097 msgid "(Added in 1.5.2)"
11098 msgstr ""
11099
11100 #. type: =head2
11101 #: ../src/guestfs-actions.pod:3680
11102 msgid "guestfs_luks_close"
11103 msgstr ""
11104
11105 #. type: verbatim
11106 #: ../src/guestfs-actions.pod:3682
11107 #, no-wrap
11108 msgid ""
11109 " int\n"
11110 " guestfs_luks_close (guestfs_h *g,\n"
11111 "                     const char *device);\n"
11112 "\n"
11113 msgstr ""
11114
11115 #. type: textblock
11116 #: ../src/guestfs-actions.pod:3686
11117 msgid ""
11118 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
11119 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
11120 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
11121 "underlying block device."
11122 msgstr ""
11123
11124 #. type: textblock
11125 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:3793 ../src/guestfs-actions.pod:3812 ../src/guestfs-actions.pod:3862 ../src/guestfs-actions.pod:3910
11126 msgid "(Added in 1.5.1)"
11127 msgstr ""
11128
11129 #. type: =head2
11130 #: ../src/guestfs-actions.pod:3696
11131 msgid "guestfs_luks_format"
11132 msgstr ""
11133
11134 #. type: verbatim
11135 #: ../src/guestfs-actions.pod:3698
11136 #, no-wrap
11137 msgid ""
11138 " int\n"
11139 " guestfs_luks_format (guestfs_h *g,\n"
11140 "                      const char *device,\n"
11141 "                      const char *key,\n"
11142 "                      int keyslot);\n"
11143 "\n"
11144 msgstr ""
11145
11146 #. type: textblock
11147 #: ../src/guestfs-actions.pod:3704 ../fish/guestfish-actions.pod:2542
11148 msgid ""
11149 "This command erases existing data on C<device> and formats the device as a "
11150 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
11151 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
11152 msgstr ""
11153
11154 #. type: textblock
11155 #: ../src/guestfs-actions.pod:3711 ../src/guestfs-actions.pod:3734 ../src/guestfs-actions.pod:3874 ../src/guestfs-actions.pod:4816 ../src/guestfs-actions.pod:5596 ../src/guestfs-actions.pod:5971 ../src/guestfs-actions.pod:5994 ../src/guestfs-actions.pod:6020 ../src/guestfs-actions.pod:7180 ../fish/guestfish-actions.pod:2550 ../fish/guestfish-actions.pod:2563 ../fish/guestfish-actions.pod:2647 ../fish/guestfish-actions.pod:3221 ../fish/guestfish-actions.pod:3741 ../fish/guestfish-actions.pod:4021 ../fish/guestfish-actions.pod:4037 ../fish/guestfish-actions.pod:4052 ../fish/guestfish-actions.pod:4767
11156 msgid ""
11157 "B<This command is dangerous.  Without careful use you can easily destroy all "
11158 "your data>."
11159 msgstr ""
11160
11161 #. type: =head2
11162 #: ../src/guestfs-actions.pod:3720
11163 msgid "guestfs_luks_format_cipher"
11164 msgstr ""
11165
11166 #. type: verbatim
11167 #: ../src/guestfs-actions.pod:3722
11168 #, no-wrap
11169 msgid ""
11170 " int\n"
11171 " guestfs_luks_format_cipher (guestfs_h *g,\n"
11172 "                             const char *device,\n"
11173 "                             const char *key,\n"
11174 "                             int keyslot,\n"
11175 "                             const char *cipher);\n"
11176 "\n"
11177 msgstr ""
11178
11179 #. type: textblock
11180 #: ../src/guestfs-actions.pod:3729
11181 msgid ""
11182 "This command is the same as C<guestfs_luks_format> but it also allows you to "
11183 "set the C<cipher> used."
11184 msgstr ""
11185
11186 #. type: =head2
11187 #: ../src/guestfs-actions.pod:3743
11188 msgid "guestfs_luks_kill_slot"
11189 msgstr ""
11190
11191 #. type: verbatim
11192 #: ../src/guestfs-actions.pod:3745
11193 #, no-wrap
11194 msgid ""
11195 " int\n"
11196 " guestfs_luks_kill_slot (guestfs_h *g,\n"
11197 "                         const char *device,\n"
11198 "                         const char *key,\n"
11199 "                         int keyslot);\n"
11200 "\n"
11201 msgstr ""
11202
11203 #. type: textblock
11204 #: ../src/guestfs-actions.pod:3751 ../fish/guestfish-actions.pod:2570
11205 msgid ""
11206 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
11207 "device C<device>.  C<key> must be one of the I<other> keys."
11208 msgstr ""
11209
11210 #. type: =head2
11211 #: ../src/guestfs-actions.pod:3763
11212 msgid "guestfs_luks_open"
11213 msgstr ""
11214
11215 #. type: verbatim
11216 #: ../src/guestfs-actions.pod:3765
11217 #, no-wrap
11218 msgid ""
11219 " int\n"
11220 " guestfs_luks_open (guestfs_h *g,\n"
11221 "                    const char *device,\n"
11222 "                    const char *key,\n"
11223 "                    const char *mapname);\n"
11224 "\n"
11225 msgstr ""
11226
11227 #. type: textblock
11228 #: ../src/guestfs-actions.pod:3771 ../fish/guestfish-actions.pod:2581
11229 msgid ""
11230 "This command opens a block device which has been encrypted according to the "
11231 "Linux Unified Key Setup (LUKS) standard."
11232 msgstr ""
11233
11234 #. type: textblock
11235 #: ../src/guestfs-actions.pod:3774 ../fish/guestfish-actions.pod:2584
11236 msgid "C<device> is the encrypted block device or partition."
11237 msgstr ""
11238
11239 #. type: textblock
11240 #: ../src/guestfs-actions.pod:3776 ../fish/guestfish-actions.pod:2586
11241 msgid ""
11242 "The caller must supply one of the keys associated with the LUKS block "
11243 "device, in the C<key> parameter."
11244 msgstr ""
11245
11246 #. type: textblock
11247 #: ../src/guestfs-actions.pod:3779 ../fish/guestfish-actions.pod:2589
11248 msgid ""
11249 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
11250 "writes to this block device are decrypted from and encrypted to the "
11251 "underlying C<device> respectively."
11252 msgstr ""
11253
11254 #. type: textblock
11255 #: ../src/guestfs-actions.pod:3783
11256 msgid ""
11257 "If this block device contains LVM volume groups, then calling "
11258 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
11259 "visible."
11260 msgstr ""
11261
11262 #. type: =head2
11263 #: ../src/guestfs-actions.pod:3795
11264 msgid "guestfs_luks_open_ro"
11265 msgstr ""
11266
11267 #. type: verbatim
11268 #: ../src/guestfs-actions.pod:3797
11269 #, no-wrap
11270 msgid ""
11271 " int\n"
11272 " guestfs_luks_open_ro (guestfs_h *g,\n"
11273 "                       const char *device,\n"
11274 "                       const char *key,\n"
11275 "                       const char *mapname);\n"
11276 "\n"
11277 msgstr ""
11278
11279 #. type: textblock
11280 #: ../src/guestfs-actions.pod:3803
11281 msgid ""
11282 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
11283 "created."
11284 msgstr ""
11285
11286 #. type: =head2
11287 #: ../src/guestfs-actions.pod:3814
11288 msgid "guestfs_lvcreate"
11289 msgstr ""
11290
11291 #. type: verbatim
11292 #: ../src/guestfs-actions.pod:3816
11293 #, no-wrap
11294 msgid ""
11295 " int\n"
11296 " guestfs_lvcreate (guestfs_h *g,\n"
11297 "                   const char *logvol,\n"
11298 "                   const char *volgroup,\n"
11299 "                   int mbytes);\n"
11300 "\n"
11301 msgstr ""
11302
11303 #. type: textblock
11304 #: ../src/guestfs-actions.pod:3822 ../fish/guestfish-actions.pod:2614
11305 msgid ""
11306 "This creates an LVM logical volume called C<logvol> on the volume group "
11307 "C<volgroup>, with C<size> megabytes."
11308 msgstr ""
11309
11310 #. type: =head2
11311 #: ../src/guestfs-actions.pod:3829
11312 msgid "guestfs_lvm_canonical_lv_name"
11313 msgstr ""
11314
11315 #. type: verbatim
11316 #: ../src/guestfs-actions.pod:3831
11317 #, no-wrap
11318 msgid ""
11319 " char *\n"
11320 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
11321 "                                const char *lvname);\n"
11322 "\n"
11323 msgstr ""
11324
11325 #. type: textblock
11326 #: ../src/guestfs-actions.pod:3835 ../fish/guestfish-actions.pod:2621
11327 msgid ""
11328 "This converts alternative naming schemes for LVs that you might find to the "
11329 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
11330 "C</dev/VG/LV>."
11331 msgstr ""
11332
11333 #. type: textblock
11334 #: ../src/guestfs-actions.pod:3839 ../fish/guestfish-actions.pod:2625
11335 msgid ""
11336 "This command returns an error if the C<lvname> parameter does not refer to a "
11337 "logical volume."
11338 msgstr ""
11339
11340 #. type: textblock
11341 #: ../src/guestfs-actions.pod:3842
11342 msgid "See also C<guestfs_is_lv>."
11343 msgstr ""
11344
11345 #. type: textblock
11346 #: ../src/guestfs-actions.pod:3847
11347 msgid "(Added in 1.5.24)"
11348 msgstr ""
11349
11350 #. type: =head2
11351 #: ../src/guestfs-actions.pod:3849
11352 msgid "guestfs_lvm_clear_filter"
11353 msgstr ""
11354
11355 #. type: verbatim
11356 #: ../src/guestfs-actions.pod:3851
11357 #, no-wrap
11358 msgid ""
11359 " int\n"
11360 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
11361 "\n"
11362 msgstr ""
11363
11364 #. type: textblock
11365 #: ../src/guestfs-actions.pod:3854
11366 msgid ""
11367 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
11368 "see every block device."
11369 msgstr ""
11370
11371 #. type: textblock
11372 #: ../src/guestfs-actions.pod:3857 ../src/guestfs-actions.pod:3899 ../fish/guestfish-actions.pod:2637 ../fish/guestfish-actions.pod:2668
11373 msgid "This command also clears the LVM cache and performs a volume group scan."
11374 msgstr ""
11375
11376 #. type: =head2
11377 #: ../src/guestfs-actions.pod:3864
11378 msgid "guestfs_lvm_remove_all"
11379 msgstr ""
11380
11381 #. type: verbatim
11382 #: ../src/guestfs-actions.pod:3866
11383 #, no-wrap
11384 msgid ""
11385 " int\n"
11386 " guestfs_lvm_remove_all (guestfs_h *g);\n"
11387 "\n"
11388 msgstr ""
11389
11390 #. type: textblock
11391 #: ../src/guestfs-actions.pod:3869 ../fish/guestfish-actions.pod:2644
11392 msgid ""
11393 "This command removes all LVM logical volumes, volume groups and physical "
11394 "volumes."
11395 msgstr ""
11396
11397 #. type: =head2
11398 #: ../src/guestfs-actions.pod:3879
11399 msgid "guestfs_lvm_set_filter"
11400 msgstr ""
11401
11402 #. type: verbatim
11403 #: ../src/guestfs-actions.pod:3881
11404 #, no-wrap
11405 msgid ""
11406 " int\n"
11407 " guestfs_lvm_set_filter (guestfs_h *g,\n"
11408 "                         char *const *devices);\n"
11409 "\n"
11410 msgstr ""
11411
11412 #. type: textblock
11413 #: ../src/guestfs-actions.pod:3885 ../fish/guestfish-actions.pod:2654
11414 msgid ""
11415 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
11416 "block devices in the list C<devices>, and will ignore all other attached "
11417 "block devices."
11418 msgstr ""
11419
11420 #. type: textblock
11421 #: ../src/guestfs-actions.pod:3889 ../fish/guestfish-actions.pod:2658
11422 msgid ""
11423 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
11424 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
11425 "there are two types of duplication possible: either cloned PVs/VGs which "
11426 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
11427 "same name.  In normal operation you cannot create this situation, but you "
11428 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
11429 "inside the LVM metadata."
11430 msgstr ""
11431
11432 #. type: textblock
11433 #: ../src/guestfs-actions.pod:3902 ../fish/guestfish-actions.pod:2671
11434 msgid "You can filter whole block devices or individual partitions."
11435 msgstr ""
11436
11437 #. type: textblock
11438 #: ../src/guestfs-actions.pod:3904 ../fish/guestfish-actions.pod:2673
11439 msgid ""
11440 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
11441 "filesystem), even if you are not filtering out that VG."
11442 msgstr ""
11443
11444 #. type: =head2
11445 #: ../src/guestfs-actions.pod:3912
11446 msgid "guestfs_lvremove"
11447 msgstr ""
11448
11449 #. type: verbatim
11450 #: ../src/guestfs-actions.pod:3914
11451 #, no-wrap
11452 msgid ""
11453 " int\n"
11454 " guestfs_lvremove (guestfs_h *g,\n"
11455 "                   const char *device);\n"
11456 "\n"
11457 msgstr ""
11458
11459 #. type: textblock
11460 #: ../src/guestfs-actions.pod:3918 ../fish/guestfish-actions.pod:2681
11461 msgid ""
11462 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
11463 "LV, such as C</dev/VG/LV>."
11464 msgstr ""
11465
11466 #. type: textblock
11467 #: ../src/guestfs-actions.pod:3921 ../fish/guestfish-actions.pod:2684
11468 msgid ""
11469 "You can also remove all LVs in a volume group by specifying the VG name, "
11470 "C</dev/VG>."
11471 msgstr ""
11472
11473 #. type: textblock
11474 #: ../src/guestfs-actions.pod:3926 ../src/guestfs-actions.pod:5162 ../src/guestfs-actions.pod:6919
11475 msgid "(Added in 1.0.13)"
11476 msgstr ""
11477
11478 #. type: =head2
11479 #: ../src/guestfs-actions.pod:3928
11480 msgid "guestfs_lvrename"
11481 msgstr ""
11482
11483 #. type: verbatim
11484 #: ../src/guestfs-actions.pod:3930
11485 #, no-wrap
11486 msgid ""
11487 " int\n"
11488 " guestfs_lvrename (guestfs_h *g,\n"
11489 "                   const char *logvol,\n"
11490 "                   const char *newlogvol);\n"
11491 "\n"
11492 msgstr ""
11493
11494 #. type: textblock
11495 #: ../src/guestfs-actions.pod:3935 ../fish/guestfish-actions.pod:2691
11496 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
11497 msgstr ""
11498
11499 #. type: textblock
11500 #: ../src/guestfs-actions.pod:3939 ../src/guestfs-actions.pod:6932
11501 msgid "(Added in 1.0.83)"
11502 msgstr ""
11503
11504 #. type: =head2
11505 #: ../src/guestfs-actions.pod:3941
11506 msgid "guestfs_lvresize"
11507 msgstr ""
11508
11509 #. type: verbatim
11510 #: ../src/guestfs-actions.pod:3943
11511 #, no-wrap
11512 msgid ""
11513 " int\n"
11514 " guestfs_lvresize (guestfs_h *g,\n"
11515 "                   const char *device,\n"
11516 "                   int mbytes);\n"
11517 "\n"
11518 msgstr ""
11519
11520 #. type: textblock
11521 #: ../src/guestfs-actions.pod:3948 ../fish/guestfish-actions.pod:2697
11522 msgid ""
11523 "This resizes (expands or shrinks) an existing LVM logical volume to "
11524 "C<mbytes>.  When reducing, data in the reduced part is lost."
11525 msgstr ""
11526
11527 #. type: =head2
11528 #: ../src/guestfs-actions.pod:3956
11529 msgid "guestfs_lvresize_free"
11530 msgstr ""
11531
11532 #. type: verbatim
11533 #: ../src/guestfs-actions.pod:3958
11534 #, no-wrap
11535 msgid ""
11536 " int\n"
11537 " guestfs_lvresize_free (guestfs_h *g,\n"
11538 "                        const char *lv,\n"
11539 "                        int percent);\n"
11540 "\n"
11541 msgstr ""
11542
11543 #. type: textblock
11544 #: ../src/guestfs-actions.pod:3963 ../fish/guestfish-actions.pod:2705
11545 msgid ""
11546 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
11547 "remaining free space in the volume group.  Commonly you would call this with "
11548 "pc = 100 which expands the logical volume as much as possible, using all "
11549 "remaining free space in the volume group."
11550 msgstr ""
11551
11552 #. type: textblock
11553 #: ../src/guestfs-actions.pod:3971
11554 msgid "(Added in 1.3.3)"
11555 msgstr ""
11556
11557 #. type: =head2
11558 #: ../src/guestfs-actions.pod:3973
11559 msgid "guestfs_lvs"
11560 msgstr ""
11561
11562 #. type: verbatim
11563 #: ../src/guestfs-actions.pod:3975
11564 #, no-wrap
11565 msgid ""
11566 " char **\n"
11567 " guestfs_lvs (guestfs_h *g);\n"
11568 "\n"
11569 msgstr ""
11570
11571 #. type: textblock
11572 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2715
11573 msgid ""
11574 "List all the logical volumes detected.  This is the equivalent of the "
11575 "L<lvs(8)> command."
11576 msgstr ""
11577
11578 #. type: textblock
11579 #: ../src/guestfs-actions.pod:3981 ../fish/guestfish-actions.pod:2718
11580 msgid ""
11581 "This returns a list of the logical volume device names "
11582 "(eg. C</dev/VolGroup00/LogVol00>)."
11583 msgstr ""
11584
11585 #. type: textblock
11586 #: ../src/guestfs-actions.pod:3984
11587 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
11588 msgstr ""
11589
11590 #. type: =head2
11591 #: ../src/guestfs-actions.pod:3992
11592 msgid "guestfs_lvs_full"
11593 msgstr ""
11594
11595 #. type: verbatim
11596 #: ../src/guestfs-actions.pod:3994
11597 #, no-wrap
11598 msgid ""
11599 " struct guestfs_lvm_lv_list *\n"
11600 " guestfs_lvs_full (guestfs_h *g);\n"
11601 "\n"
11602 msgstr ""
11603
11604 #. type: textblock
11605 #: ../src/guestfs-actions.pod:3997 ../fish/guestfish-actions.pod:2727
11606 msgid ""
11607 "List all the logical volumes detected.  This is the equivalent of the "
11608 "L<lvs(8)> command.  The \"full\" version includes all fields."
11609 msgstr ""
11610
11611 #. type: textblock
11612 #: ../src/guestfs-actions.pod:4000
11613 msgid ""
11614 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
11615 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
11616 "use>."
11617 msgstr ""
11618
11619 #. type: =head2
11620 #: ../src/guestfs-actions.pod:4006
11621 msgid "guestfs_lvuuid"
11622 msgstr ""
11623
11624 #. type: verbatim
11625 #: ../src/guestfs-actions.pod:4008
11626 #, no-wrap
11627 msgid ""
11628 " char *\n"
11629 " guestfs_lvuuid (guestfs_h *g,\n"
11630 "                 const char *device);\n"
11631 "\n"
11632 msgstr ""
11633
11634 #. type: textblock
11635 #: ../src/guestfs-actions.pod:4012 ../fish/guestfish-actions.pod:2734
11636 msgid "This command returns the UUID of the LVM LV C<device>."
11637 msgstr ""
11638
11639 #. type: =head2
11640 #: ../src/guestfs-actions.pod:4019
11641 msgid "guestfs_lxattrlist"
11642 msgstr ""
11643
11644 #. type: verbatim
11645 #: ../src/guestfs-actions.pod:4021
11646 #, no-wrap
11647 msgid ""
11648 " struct guestfs_xattr_list *\n"
11649 " guestfs_lxattrlist (guestfs_h *g,\n"
11650 "                     const char *path,\n"
11651 "                     char *const *names);\n"
11652 "\n"
11653 msgstr ""
11654
11655 #. type: textblock
11656 #: ../src/guestfs-actions.pod:4026 ../fish/guestfish-actions.pod:2740
11657 msgid ""
11658 "This call allows you to get the extended attributes of multiple files, where "
11659 "all files are in the directory C<path>.  C<names> is the list of files from "
11660 "this directory."
11661 msgstr ""
11662
11663 #. type: textblock
11664 #: ../src/guestfs-actions.pod:4030 ../fish/guestfish-actions.pod:2744
11665 msgid ""
11666 "On return you get a flat list of xattr structs which must be interpreted "
11667 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
11668 "C<attrval> in this struct is zero-length to indicate there was an error "
11669 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
11670 "number (the number of following attributes for this file, which could be "
11671 "C<\"0\">).  Then after the first xattr struct are the zero or more "
11672 "attributes for the first named file.  This repeats for the second and "
11673 "subsequent files."
11674 msgstr ""
11675
11676 #. type: textblock
11677 #: ../src/guestfs-actions.pod:4040
11678 msgid ""
11679 "This call is intended for programs that want to efficiently list a directory "
11680 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
11681 "a similarly efficient call for getting standard stats.  Very long directory "
11682 "listings might cause the protocol message size to be exceeded, causing this "
11683 "call to fail.  The caller must split up such requests into smaller groups of "
11684 "names."
11685 msgstr ""
11686
11687 #. type: =head2
11688 #: ../src/guestfs-actions.pod:4054
11689 msgid "guestfs_mkdir"
11690 msgstr ""
11691
11692 #. type: verbatim
11693 #: ../src/guestfs-actions.pod:4056
11694 #, no-wrap
11695 msgid ""
11696 " int\n"
11697 " guestfs_mkdir (guestfs_h *g,\n"
11698 "                const char *path);\n"
11699 "\n"
11700 msgstr ""
11701
11702 #. type: textblock
11703 #: ../src/guestfs-actions.pod:4060 ../fish/guestfish-actions.pod:2766
11704 msgid "Create a directory named C<path>."
11705 msgstr ""
11706
11707 #. type: =head2
11708 #: ../src/guestfs-actions.pod:4066
11709 msgid "guestfs_mkdir_mode"
11710 msgstr ""
11711
11712 #. type: verbatim
11713 #: ../src/guestfs-actions.pod:4068
11714 #, no-wrap
11715 msgid ""
11716 " int\n"
11717 " guestfs_mkdir_mode (guestfs_h *g,\n"
11718 "                     const char *path,\n"
11719 "                     int mode);\n"
11720 "\n"
11721 msgstr ""
11722
11723 #. type: textblock
11724 #: ../src/guestfs-actions.pod:4073 ../fish/guestfish-actions.pod:2772
11725 msgid ""
11726 "This command creates a directory, setting the initial permissions of the "
11727 "directory to C<mode>."
11728 msgstr ""
11729
11730 #. type: textblock
11731 #: ../src/guestfs-actions.pod:4076 ../fish/guestfish-actions.pod:2775
11732 msgid ""
11733 "For common Linux filesystems, the actual mode which is set will be C<mode & "
11734 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
11735 "other ways."
11736 msgstr ""
11737
11738 #. type: textblock
11739 #: ../src/guestfs-actions.pod:4080
11740 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
11741 msgstr ""
11742
11743 #. type: =head2
11744 #: ../src/guestfs-actions.pod:4086
11745 msgid "guestfs_mkdir_p"
11746 msgstr ""
11747
11748 #. type: verbatim
11749 #: ../src/guestfs-actions.pod:4088
11750 #, no-wrap
11751 msgid ""
11752 " int\n"
11753 " guestfs_mkdir_p (guestfs_h *g,\n"
11754 "                  const char *path);\n"
11755 "\n"
11756 msgstr ""
11757
11758 #. type: textblock
11759 #: ../src/guestfs-actions.pod:4092 ../fish/guestfish-actions.pod:2785
11760 msgid ""
11761 "Create a directory named C<path>, creating any parent directories as "
11762 "necessary.  This is like the C<mkdir -p> shell command."
11763 msgstr ""
11764
11765 #. type: =head2
11766 #: ../src/guestfs-actions.pod:4099
11767 msgid "guestfs_mkdtemp"
11768 msgstr ""
11769
11770 #. type: verbatim
11771 #: ../src/guestfs-actions.pod:4101
11772 #, no-wrap
11773 msgid ""
11774 " char *\n"
11775 " guestfs_mkdtemp (guestfs_h *g,\n"
11776 "                  const char *template);\n"
11777 "\n"
11778 msgstr ""
11779
11780 #. type: textblock
11781 #: ../src/guestfs-actions.pod:4105 ../fish/guestfish-actions.pod:2792
11782 msgid ""
11783 "This command creates a temporary directory.  The C<template> parameter "
11784 "should be a full pathname for the temporary directory name with the final "
11785 "six characters being \"XXXXXX\"."
11786 msgstr ""
11787
11788 #. type: textblock
11789 #: ../src/guestfs-actions.pod:4110 ../fish/guestfish-actions.pod:2797
11790 msgid ""
11791 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
11792 "being suitable for Windows filesystems."
11793 msgstr ""
11794
11795 #. type: textblock
11796 #: ../src/guestfs-actions.pod:4113 ../fish/guestfish-actions.pod:2800
11797 msgid "The name of the temporary directory that was created is returned."
11798 msgstr ""
11799
11800 #. type: textblock
11801 #: ../src/guestfs-actions.pod:4116 ../fish/guestfish-actions.pod:2803
11802 msgid "The temporary directory is created with mode 0700 and is owned by root."
11803 msgstr ""
11804
11805 #. type: textblock
11806 #: ../src/guestfs-actions.pod:4119 ../fish/guestfish-actions.pod:2806
11807 msgid ""
11808 "The caller is responsible for deleting the temporary directory and its "
11809 "contents after use."
11810 msgstr ""
11811
11812 #. type: textblock
11813 #: ../src/guestfs-actions.pod:4122 ../fish/guestfish-actions.pod:2809
11814 msgid "See also: L<mkdtemp(3)>"
11815 msgstr ""
11816
11817 #. type: =head2
11818 #: ../src/guestfs-actions.pod:4129
11819 msgid "guestfs_mke2fs_J"
11820 msgstr ""
11821
11822 #. type: verbatim
11823 #: ../src/guestfs-actions.pod:4131
11824 #, no-wrap
11825 msgid ""
11826 " int\n"
11827 " guestfs_mke2fs_J (guestfs_h *g,\n"
11828 "                   const char *fstype,\n"
11829 "                   int blocksize,\n"
11830 "                   const char *device,\n"
11831 "                   const char *journal);\n"
11832 "\n"
11833 msgstr ""
11834
11835 #. type: textblock
11836 #: ../src/guestfs-actions.pod:4138 ../fish/guestfish-actions.pod:2815
11837 msgid ""
11838 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11839 "C<journal>.  It is equivalent to the command:"
11840 msgstr ""
11841
11842 #. type: verbatim
11843 #: ../src/guestfs-actions.pod:4142 ../fish/guestfish-actions.pod:2819
11844 #, no-wrap
11845 msgid ""
11846 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
11847 "\n"
11848 msgstr ""
11849
11850 #. type: textblock
11851 #: ../src/guestfs-actions.pod:4144
11852 msgid "See also C<guestfs_mke2journal>."
11853 msgstr ""
11854
11855 #. type: textblock
11856 #: ../src/guestfs-actions.pod:4148 ../src/guestfs-actions.pod:4166 ../src/guestfs-actions.pod:4184 ../src/guestfs-actions.pod:4200 ../src/guestfs-actions.pod:4214 ../src/guestfs-actions.pod:4228 ../src/guestfs-actions.pod:4287 ../src/guestfs-actions.pod:4552
11857 msgid "(Added in 1.0.68)"
11858 msgstr ""
11859
11860 #. type: =head2
11861 #: ../src/guestfs-actions.pod:4150
11862 msgid "guestfs_mke2fs_JL"
11863 msgstr ""
11864
11865 #. type: verbatim
11866 #: ../src/guestfs-actions.pod:4152
11867 #, no-wrap
11868 msgid ""
11869 " int\n"
11870 " guestfs_mke2fs_JL (guestfs_h *g,\n"
11871 "                    const char *fstype,\n"
11872 "                    int blocksize,\n"
11873 "                    const char *device,\n"
11874 "                    const char *label);\n"
11875 "\n"
11876 msgstr ""
11877
11878 #. type: textblock
11879 #: ../src/guestfs-actions.pod:4159 ../fish/guestfish-actions.pod:2827
11880 msgid ""
11881 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11882 "the journal labeled C<label>."
11883 msgstr ""
11884
11885 #. type: textblock
11886 #: ../src/guestfs-actions.pod:4162
11887 msgid "See also C<guestfs_mke2journal_L>."
11888 msgstr ""
11889
11890 #. type: =head2
11891 #: ../src/guestfs-actions.pod:4168
11892 msgid "guestfs_mke2fs_JU"
11893 msgstr ""
11894
11895 #. type: verbatim
11896 #: ../src/guestfs-actions.pod:4170
11897 #, no-wrap
11898 msgid ""
11899 " int\n"
11900 " guestfs_mke2fs_JU (guestfs_h *g,\n"
11901 "                    const char *fstype,\n"
11902 "                    int blocksize,\n"
11903 "                    const char *device,\n"
11904 "                    const char *uuid);\n"
11905 "\n"
11906 msgstr ""
11907
11908 #. type: textblock
11909 #: ../src/guestfs-actions.pod:4177 ../fish/guestfish-actions.pod:2836
11910 msgid ""
11911 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
11912 "the journal with UUID C<uuid>."
11913 msgstr ""
11914
11915 #. type: textblock
11916 #: ../src/guestfs-actions.pod:4180
11917 msgid "See also C<guestfs_mke2journal_U>."
11918 msgstr ""
11919
11920 #. type: =head2
11921 #: ../src/guestfs-actions.pod:4186
11922 msgid "guestfs_mke2journal"
11923 msgstr ""
11924
11925 #. type: verbatim
11926 #: ../src/guestfs-actions.pod:4188
11927 #, no-wrap
11928 msgid ""
11929 " int\n"
11930 " guestfs_mke2journal (guestfs_h *g,\n"
11931 "                      int blocksize,\n"
11932 "                      const char *device);\n"
11933 "\n"
11934 msgstr ""
11935
11936 #. type: textblock
11937 #: ../src/guestfs-actions.pod:4193 ../fish/guestfish-actions.pod:2845
11938 msgid ""
11939 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
11940 "command:"
11941 msgstr ""
11942
11943 #. type: verbatim
11944 #: ../src/guestfs-actions.pod:4196 ../fish/guestfish-actions.pod:2848
11945 #, no-wrap
11946 msgid ""
11947 " mke2fs -O journal_dev -b blocksize device\n"
11948 "\n"
11949 msgstr ""
11950
11951 #. type: =head2
11952 #: ../src/guestfs-actions.pod:4202
11953 msgid "guestfs_mke2journal_L"
11954 msgstr ""
11955
11956 #. type: verbatim
11957 #: ../src/guestfs-actions.pod:4204
11958 #, no-wrap
11959 msgid ""
11960 " int\n"
11961 " guestfs_mke2journal_L (guestfs_h *g,\n"
11962 "                        int blocksize,\n"
11963 "                        const char *label,\n"
11964 "                        const char *device);\n"
11965 "\n"
11966 msgstr ""
11967
11968 #. type: textblock
11969 #: ../src/guestfs-actions.pod:4210 ../fish/guestfish-actions.pod:2854
11970 msgid "This creates an ext2 external journal on C<device> with label C<label>."
11971 msgstr ""
11972
11973 #. type: =head2
11974 #: ../src/guestfs-actions.pod:4216
11975 msgid "guestfs_mke2journal_U"
11976 msgstr ""
11977
11978 #. type: verbatim
11979 #: ../src/guestfs-actions.pod:4218
11980 #, no-wrap
11981 msgid ""
11982 " int\n"
11983 " guestfs_mke2journal_U (guestfs_h *g,\n"
11984 "                        int blocksize,\n"
11985 "                        const char *uuid,\n"
11986 "                        const char *device);\n"
11987 "\n"
11988 msgstr ""
11989
11990 #. type: textblock
11991 #: ../src/guestfs-actions.pod:4224 ../fish/guestfish-actions.pod:2860
11992 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
11993 msgstr ""
11994
11995 #. type: =head2
11996 #: ../src/guestfs-actions.pod:4230
11997 msgid "guestfs_mkfifo"
11998 msgstr ""
11999
12000 #. type: verbatim
12001 #: ../src/guestfs-actions.pod:4232
12002 #, no-wrap
12003 msgid ""
12004 " int\n"
12005 " guestfs_mkfifo (guestfs_h *g,\n"
12006 "                 int mode,\n"
12007 "                 const char *path);\n"
12008 "\n"
12009 msgstr ""
12010
12011 #. type: textblock
12012 #: ../src/guestfs-actions.pod:4237
12013 msgid ""
12014 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
12015 "is just a convenient wrapper around C<guestfs_mknod>."
12016 msgstr ""
12017
12018 #. type: =head2
12019 #: ../src/guestfs-actions.pod:4247
12020 msgid "guestfs_mkfs"
12021 msgstr ""
12022
12023 #. type: verbatim
12024 #: ../src/guestfs-actions.pod:4249
12025 #, no-wrap
12026 msgid ""
12027 " int\n"
12028 " guestfs_mkfs (guestfs_h *g,\n"
12029 "               const char *fstype,\n"
12030 "               const char *device);\n"
12031 "\n"
12032 msgstr ""
12033
12034 #. type: textblock
12035 #: ../src/guestfs-actions.pod:4254 ../fish/guestfish-actions.pod:2876
12036 msgid ""
12037 "This creates a filesystem on C<device> (usually a partition or LVM logical "
12038 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
12039 msgstr ""
12040
12041 #. type: =head2
12042 #: ../src/guestfs-actions.pod:4262
12043 msgid "guestfs_mkfs_b"
12044 msgstr ""
12045
12046 #. type: verbatim
12047 #: ../src/guestfs-actions.pod:4264
12048 #, no-wrap
12049 msgid ""
12050 " int\n"
12051 " guestfs_mkfs_b (guestfs_h *g,\n"
12052 "                 const char *fstype,\n"
12053 "                 int blocksize,\n"
12054 "                 const char *device);\n"
12055 "\n"
12056 msgstr ""
12057
12058 #. type: textblock
12059 #: ../src/guestfs-actions.pod:4270
12060 msgid ""
12061 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
12062 "block size of the resulting filesystem.  Supported block sizes depend on the "
12063 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
12064 msgstr ""
12065
12066 #. type: textblock
12067 #: ../src/guestfs-actions.pod:4275 ../src/guestfs-actions.pod:4318 ../fish/guestfish-actions.pod:2889 ../fish/guestfish-actions.pod:2916
12068 msgid ""
12069 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
12070 "cluster size."
12071 msgstr ""
12072
12073 #. type: textblock
12074 #: ../src/guestfs-actions.pod:4280 ../fish/guestfish-actions.pod:2892
12075 msgid ""
12076 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
12077 "instead."
12078 msgstr ""
12079
12080 #. type: =head2
12081 #: ../src/guestfs-actions.pod:4289
12082 msgid "guestfs_mkfs_opts"
12083 msgstr ""
12084
12085 #. type: verbatim
12086 #: ../src/guestfs-actions.pod:4291
12087 #, no-wrap
12088 msgid ""
12089 " int\n"
12090 " guestfs_mkfs_opts (guestfs_h *g,\n"
12091 "                    const char *fstype,\n"
12092 "                    const char *device,\n"
12093 "                    ...);\n"
12094 "\n"
12095 msgstr ""
12096
12097 #. type: verbatim
12098 #: ../src/guestfs-actions.pod:4302
12099 #, no-wrap
12100 msgid ""
12101 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
12102 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
12103 "\n"
12104 msgstr ""
12105
12106 #. type: textblock
12107 #: ../src/guestfs-actions.pod:4305 ../fish/guestfish-actions.pod:2903
12108 msgid ""
12109 "This function creates a filesystem on C<device>.  The filesystem type is "
12110 "C<fstype>, for example C<ext3>."
12111 msgstr ""
12112
12113 #. type: =item
12114 #: ../src/guestfs-actions.pod:4312 ../fish/guestfish-actions.pod:2910
12115 msgid "C<blocksize>"
12116 msgstr ""
12117
12118 #. type: textblock
12119 #: ../src/guestfs-actions.pod:4314 ../fish/guestfish-actions.pod:2912
12120 msgid ""
12121 "The filesystem block size.  Supported block sizes depend on the filesystem "
12122 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
12123 "filesystems."
12124 msgstr ""
12125
12126 #. type: textblock
12127 #: ../src/guestfs-actions.pod:4321 ../fish/guestfish-actions.pod:2919
12128 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
12129 msgstr ""
12130
12131 #. type: =item
12132 #: ../src/guestfs-actions.pod:4323 ../fish/guestfish-actions.pod:2921
12133 msgid "C<features>"
12134 msgstr ""
12135
12136 #. type: textblock
12137 #: ../src/guestfs-actions.pod:4325 ../fish/guestfish-actions.pod:2923
12138 msgid "This passes the C<-O> parameter to the external mkfs program."
12139 msgstr ""
12140
12141 #. type: textblock
12142 #: ../src/guestfs-actions.pod:4327 ../fish/guestfish-actions.pod:2925
12143 msgid ""
12144 "For certain filesystem types, this allows extra filesystem features to be "
12145 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
12146 msgstr ""
12147
12148 #. type: textblock
12149 #: ../src/guestfs-actions.pod:4331 ../fish/guestfish-actions.pod:2929
12150 msgid ""
12151 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
12152 "type."
12153 msgstr ""
12154
12155 #. type: textblock
12156 #: ../src/guestfs-actions.pod:4338
12157 msgid "(Added in 1.7.19)"
12158 msgstr ""
12159
12160 #. type: =head2
12161 #: ../src/guestfs-actions.pod:4340
12162 msgid "guestfs_mkfs_opts_va"
12163 msgstr ""
12164
12165 #. type: verbatim
12166 #: ../src/guestfs-actions.pod:4342
12167 #, no-wrap
12168 msgid ""
12169 " int\n"
12170 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
12171 "                       const char *fstype,\n"
12172 "                       const char *device,\n"
12173 "                       va_list args);\n"
12174 "\n"
12175 msgstr ""
12176
12177 #. type: textblock
12178 #: ../src/guestfs-actions.pod:4348
12179 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
12180 msgstr ""
12181
12182 #. type: =head2
12183 #: ../src/guestfs-actions.pod:4352
12184 msgid "guestfs_mkfs_opts_argv"
12185 msgstr ""
12186
12187 #. type: verbatim
12188 #: ../src/guestfs-actions.pod:4354
12189 #, no-wrap
12190 msgid ""
12191 " int\n"
12192 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
12193 "                         const char *fstype,\n"
12194 "                         const char *device,\n"
12195 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
12196 "\n"
12197 msgstr ""
12198
12199 #. type: textblock
12200 #: ../src/guestfs-actions.pod:4360
12201 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
12202 msgstr ""
12203
12204 #. type: =head2
12205 #: ../src/guestfs-actions.pod:4364
12206 msgid "guestfs_mkmountpoint"
12207 msgstr ""
12208
12209 #. type: verbatim
12210 #: ../src/guestfs-actions.pod:4366
12211 #, no-wrap
12212 msgid ""
12213 " int\n"
12214 " guestfs_mkmountpoint (guestfs_h *g,\n"
12215 "                       const char *exemptpath);\n"
12216 "\n"
12217 msgstr ""
12218
12219 #. type: textblock
12220 #: ../src/guestfs-actions.pod:4370
12221 msgid ""
12222 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
12223 "that can be used to create extra mountpoints before mounting the first "
12224 "filesystem."
12225 msgstr ""
12226
12227 #. type: textblock
12228 #: ../src/guestfs-actions.pod:4374 ../fish/guestfish-actions.pod:2944
12229 msgid ""
12230 "These calls are I<only> necessary in some very limited circumstances, mainly "
12231 "the case where you want to mount a mix of unrelated and/or read-only "
12232 "filesystems together."
12233 msgstr ""
12234
12235 #. type: textblock
12236 #: ../src/guestfs-actions.pod:4378 ../fish/guestfish-actions.pod:2948
12237 msgid ""
12238 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
12239 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
12240 "inside that.  You can unpack this as follows in guestfish:"
12241 msgstr ""
12242
12243 #. type: verbatim
12244 #: ../src/guestfs-actions.pod:4383 ../fish/guestfish-actions.pod:2953
12245 #, no-wrap
12246 msgid ""
12247 " add-ro Fedora-11-i686-Live.iso\n"
12248 " run\n"
12249 " mkmountpoint /cd\n"
12250 " mkmountpoint /sqsh\n"
12251 " mkmountpoint /ext3fs\n"
12252 " mount /dev/sda /cd\n"
12253 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
12254 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
12255 "\n"
12256 msgstr ""
12257
12258 #. type: textblock
12259 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2962
12260 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
12261 msgstr ""
12262
12263 #. type: textblock
12264 #: ../src/guestfs-actions.pod:4394
12265 msgid ""
12266 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
12267 "may get unexpected errors if you try to mix these calls.  It is safest to "
12268 "manually unmount filesystems and remove mountpoints after use."
12269 msgstr ""
12270
12271 #. type: textblock
12272 #: ../src/guestfs-actions.pod:4398
12273 msgid ""
12274 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
12275 "first, so for this to work for manual mountpoints, you must ensure that the "
12276 "innermost mountpoints have the longest pathnames, as in the example code "
12277 "above."
12278 msgstr ""
12279
12280 #. type: textblock
12281 #: ../src/guestfs-actions.pod:4403 ../fish/guestfish-actions.pod:2973
12282 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
12283 msgstr ""
12284
12285 #. type: textblock
12286 #: ../src/guestfs-actions.pod:4405
12287 msgid ""
12288 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
12289 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
12290 "can also trigger these issues."
12291 msgstr ""
12292
12293 #. type: textblock
12294 #: ../src/guestfs-actions.pod:4411 ../src/guestfs-actions.pod:4670 ../src/guestfs-actions.pod:5580
12295 msgid "(Added in 1.0.62)"
12296 msgstr ""
12297
12298 #. type: =head2
12299 #: ../src/guestfs-actions.pod:4413
12300 msgid "guestfs_mknod"
12301 msgstr ""
12302
12303 #. type: verbatim
12304 #: ../src/guestfs-actions.pod:4415
12305 #, no-wrap
12306 msgid ""
12307 " int\n"
12308 " guestfs_mknod (guestfs_h *g,\n"
12309 "                int mode,\n"
12310 "                int devmajor,\n"
12311 "                int devminor,\n"
12312 "                const char *path);\n"
12313 "\n"
12314 msgstr ""
12315
12316 #. type: textblock
12317 #: ../src/guestfs-actions.pod:4422 ../fish/guestfish-actions.pod:2983
12318 msgid ""
12319 "This call creates block or character special devices, or named pipes "
12320 "(FIFOs)."
12321 msgstr ""
12322
12323 #. type: textblock
12324 #: ../src/guestfs-actions.pod:4425 ../fish/guestfish-actions.pod:2986
12325 msgid ""
12326 "The C<mode> parameter should be the mode, using the standard constants.  "
12327 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
12328 "used when creating block and character special devices."
12329 msgstr ""
12330
12331 #. type: textblock
12332 #: ../src/guestfs-actions.pod:4430
12333 msgid ""
12334 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
12335 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
12336 "regular file).  These constants are available in the standard Linux header "
12337 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
12338 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
12339 "the appropriate constant for you."
12340 msgstr ""
12341
12342 #. type: =head2
12343 #: ../src/guestfs-actions.pod:4444
12344 msgid "guestfs_mknod_b"
12345 msgstr ""
12346
12347 #. type: verbatim
12348 #: ../src/guestfs-actions.pod:4446
12349 #, no-wrap
12350 msgid ""
12351 " int\n"
12352 " guestfs_mknod_b (guestfs_h *g,\n"
12353 "                  int mode,\n"
12354 "                  int devmajor,\n"
12355 "                  int devminor,\n"
12356 "                  const char *path);\n"
12357 "\n"
12358 msgstr ""
12359
12360 #. type: textblock
12361 #: ../src/guestfs-actions.pod:4453
12362 msgid ""
12363 "This call creates a block device node called C<path> with mode C<mode> and "
12364 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12365 "wrapper around C<guestfs_mknod>."
12366 msgstr ""
12367
12368 #. type: =head2
12369 #: ../src/guestfs-actions.pod:4463
12370 msgid "guestfs_mknod_c"
12371 msgstr ""
12372
12373 #. type: verbatim
12374 #: ../src/guestfs-actions.pod:4465
12375 #, no-wrap
12376 msgid ""
12377 " int\n"
12378 " guestfs_mknod_c (guestfs_h *g,\n"
12379 "                  int mode,\n"
12380 "                  int devmajor,\n"
12381 "                  int devminor,\n"
12382 "                  const char *path);\n"
12383 "\n"
12384 msgstr ""
12385
12386 #. type: textblock
12387 #: ../src/guestfs-actions.pod:4472
12388 msgid ""
12389 "This call creates a char device node called C<path> with mode C<mode> and "
12390 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
12391 "wrapper around C<guestfs_mknod>."
12392 msgstr ""
12393
12394 #. type: =head2
12395 #: ../src/guestfs-actions.pod:4482
12396 msgid "guestfs_mkswap"
12397 msgstr ""
12398
12399 #. type: verbatim
12400 #: ../src/guestfs-actions.pod:4484
12401 #, no-wrap
12402 msgid ""
12403 " int\n"
12404 " guestfs_mkswap (guestfs_h *g,\n"
12405 "                 const char *device);\n"
12406 "\n"
12407 msgstr ""
12408
12409 #. type: textblock
12410 #: ../src/guestfs-actions.pod:4488 ../fish/guestfish-actions.pod:3025
12411 msgid "Create a swap partition on C<device>."
12412 msgstr ""
12413
12414 #. type: =head2
12415 #: ../src/guestfs-actions.pod:4494
12416 msgid "guestfs_mkswap_L"
12417 msgstr ""
12418
12419 #. type: verbatim
12420 #: ../src/guestfs-actions.pod:4496
12421 #, no-wrap
12422 msgid ""
12423 " int\n"
12424 " guestfs_mkswap_L (guestfs_h *g,\n"
12425 "                   const char *label,\n"
12426 "                   const char *device);\n"
12427 "\n"
12428 msgstr ""
12429
12430 #. type: textblock
12431 #: ../src/guestfs-actions.pod:4501 ../fish/guestfish-actions.pod:3031
12432 msgid "Create a swap partition on C<device> with label C<label>."
12433 msgstr ""
12434
12435 #. type: textblock
12436 #: ../src/guestfs-actions.pod:4503 ../fish/guestfish-actions.pod:3033
12437 msgid ""
12438 "Note that you cannot attach a swap label to a block device "
12439 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
12440 "the kernel or swap tools."
12441 msgstr ""
12442
12443 #. type: =head2
12444 #: ../src/guestfs-actions.pod:4511
12445 msgid "guestfs_mkswap_U"
12446 msgstr ""
12447
12448 #. type: verbatim
12449 #: ../src/guestfs-actions.pod:4513
12450 #, no-wrap
12451 msgid ""
12452 " int\n"
12453 " guestfs_mkswap_U (guestfs_h *g,\n"
12454 "                   const char *uuid,\n"
12455 "                   const char *device);\n"
12456 "\n"
12457 msgstr ""
12458
12459 #. type: textblock
12460 #: ../src/guestfs-actions.pod:4518 ../fish/guestfish-actions.pod:3041
12461 msgid "Create a swap partition on C<device> with UUID C<uuid>."
12462 msgstr ""
12463
12464 #. type: =head2
12465 #: ../src/guestfs-actions.pod:4524
12466 msgid "guestfs_mkswap_file"
12467 msgstr ""
12468
12469 #. type: verbatim
12470 #: ../src/guestfs-actions.pod:4526
12471 #, no-wrap
12472 msgid ""
12473 " int\n"
12474 " guestfs_mkswap_file (guestfs_h *g,\n"
12475 "                      const char *path);\n"
12476 "\n"
12477 msgstr ""
12478
12479 #. type: textblock
12480 #: ../src/guestfs-actions.pod:4530 ../fish/guestfish-actions.pod:3047
12481 msgid "Create a swap file."
12482 msgstr ""
12483
12484 #. type: textblock
12485 #: ../src/guestfs-actions.pod:4532
12486 msgid ""
12487 "This command just writes a swap file signature to an existing file.  To "
12488 "create the file itself, use something like C<guestfs_fallocate>."
12489 msgstr ""
12490
12491 #. type: =head2
12492 #: ../src/guestfs-actions.pod:4539
12493 msgid "guestfs_modprobe"
12494 msgstr ""
12495
12496 #. type: verbatim
12497 #: ../src/guestfs-actions.pod:4541
12498 #, no-wrap
12499 msgid ""
12500 " int\n"
12501 " guestfs_modprobe (guestfs_h *g,\n"
12502 "                   const char *modulename);\n"
12503 "\n"
12504 msgstr ""
12505
12506 #. type: textblock
12507 #: ../src/guestfs-actions.pod:4545 ../fish/guestfish-actions.pod:3056
12508 msgid "This loads a kernel module in the appliance."
12509 msgstr ""
12510
12511 #. type: textblock
12512 #: ../src/guestfs-actions.pod:4547 ../fish/guestfish-actions.pod:3058
12513 msgid ""
12514 "The kernel module must have been whitelisted when libguestfs was built (see "
12515 "C<appliance/kmod.whitelist.in> in the source)."
12516 msgstr ""
12517
12518 #. type: =head2
12519 #: ../src/guestfs-actions.pod:4554
12520 msgid "guestfs_mount"
12521 msgstr ""
12522
12523 #. type: verbatim
12524 #: ../src/guestfs-actions.pod:4556
12525 #, no-wrap
12526 msgid ""
12527 " int\n"
12528 " guestfs_mount (guestfs_h *g,\n"
12529 "                const char *device,\n"
12530 "                const char *mountpoint);\n"
12531 "\n"
12532 msgstr ""
12533
12534 #. type: textblock
12535 #: ../src/guestfs-actions.pod:4561 ../fish/guestfish-actions.pod:3065
12536 msgid ""
12537 "Mount a guest disk at a position in the filesystem.  Block devices are named "
12538 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
12539 "those block devices contain partitions, they will have the usual names "
12540 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
12541 msgstr ""
12542
12543 #. type: textblock
12544 #: ../src/guestfs-actions.pod:4567 ../fish/guestfish-actions.pod:3071
12545 msgid ""
12546 "The rules are the same as for L<mount(2)>: A filesystem must first be "
12547 "mounted on C</> before others can be mounted.  Other filesystems can only be "
12548 "mounted on directories which already exist."
12549 msgstr ""
12550
12551 #. type: textblock
12552 #: ../src/guestfs-actions.pod:4572 ../fish/guestfish-actions.pod:3076
12553 msgid ""
12554 "The mounted filesystem is writable, if we have sufficient permissions on the "
12555 "underlying device."
12556 msgstr ""
12557
12558 #. type: textblock
12559 #: ../src/guestfs-actions.pod:4575
12560 msgid ""
12561 "B<Important note:> When you use this call, the filesystem options C<sync> "
12562 "and C<noatime> are set implicitly.  This was originally done because we "
12563 "thought it would improve reliability, but it turns out that I<-o sync> has a "
12564 "very large negative performance impact and negligible effect on "
12565 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
12566 "in any code that needs performance, and instead use C<guestfs_mount_options> "
12567 "(use an empty string for the first parameter if you don't want any options)."
12568 msgstr ""
12569
12570 #. type: =head2
12571 #: ../src/guestfs-actions.pod:4589
12572 msgid "guestfs_mount_loop"
12573 msgstr ""
12574
12575 #. type: verbatim
12576 #: ../src/guestfs-actions.pod:4591
12577 #, no-wrap
12578 msgid ""
12579 " int\n"
12580 " guestfs_mount_loop (guestfs_h *g,\n"
12581 "                     const char *file,\n"
12582 "                     const char *mountpoint);\n"
12583 "\n"
12584 msgstr ""
12585
12586 #. type: textblock
12587 #: ../src/guestfs-actions.pod:4596 ../fish/guestfish-actions.pod:3093
12588 msgid ""
12589 "This command lets you mount C<file> (a filesystem image in a file) on a "
12590 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
12591 "mountpoint>."
12592 msgstr ""
12593
12594 #. type: =head2
12595 #: ../src/guestfs-actions.pod:4604
12596 msgid "guestfs_mount_options"
12597 msgstr ""
12598
12599 #. type: verbatim
12600 #: ../src/guestfs-actions.pod:4606
12601 #, no-wrap
12602 msgid ""
12603 " int\n"
12604 " guestfs_mount_options (guestfs_h *g,\n"
12605 "                        const char *options,\n"
12606 "                        const char *device,\n"
12607 "                        const char *mountpoint);\n"
12608 "\n"
12609 msgstr ""
12610
12611 #. type: textblock
12612 #: ../src/guestfs-actions.pod:4612
12613 msgid ""
12614 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12615 "the mount options as for the L<mount(8)> I<-o> flag."
12616 msgstr ""
12617
12618 #. type: textblock
12619 #: ../src/guestfs-actions.pod:4616 ../fish/guestfish-actions.pod:3105
12620 msgid ""
12621 "If the C<options> parameter is an empty string, then no options are passed "
12622 "(all options default to whatever the filesystem uses)."
12623 msgstr ""
12624
12625 #. type: textblock
12626 #: ../src/guestfs-actions.pod:4622 ../src/guestfs-actions.pod:4636 ../src/guestfs-actions.pod:4653
12627 msgid "(Added in 1.0.10)"
12628 msgstr ""
12629
12630 #. type: =head2
12631 #: ../src/guestfs-actions.pod:4624
12632 msgid "guestfs_mount_ro"
12633 msgstr ""
12634
12635 #. type: verbatim
12636 #: ../src/guestfs-actions.pod:4626
12637 #, no-wrap
12638 msgid ""
12639 " int\n"
12640 " guestfs_mount_ro (guestfs_h *g,\n"
12641 "                   const char *device,\n"
12642 "                   const char *mountpoint);\n"
12643 "\n"
12644 msgstr ""
12645
12646 #. type: textblock
12647 #: ../src/guestfs-actions.pod:4631
12648 msgid ""
12649 "This is the same as the C<guestfs_mount> command, but it mounts the "
12650 "filesystem with the read-only (I<-o ro>) flag."
12651 msgstr ""
12652
12653 #. type: =head2
12654 #: ../src/guestfs-actions.pod:4638
12655 msgid "guestfs_mount_vfs"
12656 msgstr ""
12657
12658 #. type: verbatim
12659 #: ../src/guestfs-actions.pod:4640
12660 #, no-wrap
12661 msgid ""
12662 " int\n"
12663 " guestfs_mount_vfs (guestfs_h *g,\n"
12664 "                    const char *options,\n"
12665 "                    const char *vfstype,\n"
12666 "                    const char *device,\n"
12667 "                    const char *mountpoint);\n"
12668 "\n"
12669 msgstr ""
12670
12671 #. type: textblock
12672 #: ../src/guestfs-actions.pod:4647
12673 msgid ""
12674 "This is the same as the C<guestfs_mount> command, but it allows you to set "
12675 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
12676 "I<-t> flags."
12677 msgstr ""
12678
12679 #. type: =head2
12680 #: ../src/guestfs-actions.pod:4655
12681 msgid "guestfs_mountpoints"
12682 msgstr ""
12683
12684 #. type: verbatim
12685 #: ../src/guestfs-actions.pod:4657
12686 #, no-wrap
12687 msgid ""
12688 " char **\n"
12689 " guestfs_mountpoints (guestfs_h *g);\n"
12690 "\n"
12691 msgstr ""
12692
12693 #. type: textblock
12694 #: ../src/guestfs-actions.pod:4660
12695 msgid ""
12696 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
12697 "devices.  This one returns a hash table (map) of device name to directory "
12698 "where the device is mounted."
12699 msgstr ""
12700
12701 #. type: =head2
12702 #: ../src/guestfs-actions.pod:4672
12703 msgid "guestfs_mounts"
12704 msgstr ""
12705
12706 #. type: verbatim
12707 #: ../src/guestfs-actions.pod:4674
12708 #, no-wrap
12709 msgid ""
12710 " char **\n"
12711 " guestfs_mounts (guestfs_h *g);\n"
12712 "\n"
12713 msgstr ""
12714
12715 #. type: textblock
12716 #: ../src/guestfs-actions.pod:4677 ../fish/guestfish-actions.pod:3136
12717 msgid ""
12718 "This returns the list of currently mounted filesystems.  It returns the list "
12719 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
12720 msgstr ""
12721
12722 #. type: textblock
12723 #: ../src/guestfs-actions.pod:4680 ../fish/guestfish-actions.pod:3139
12724 msgid "Some internal mounts are not shown."
12725 msgstr ""
12726
12727 #. type: textblock
12728 #: ../src/guestfs-actions.pod:4682
12729 msgid "See also: C<guestfs_mountpoints>"
12730 msgstr ""
12731
12732 #. type: =head2
12733 #: ../src/guestfs-actions.pod:4690
12734 msgid "guestfs_mv"
12735 msgstr ""
12736
12737 #. type: verbatim
12738 #: ../src/guestfs-actions.pod:4692
12739 #, no-wrap
12740 msgid ""
12741 " int\n"
12742 " guestfs_mv (guestfs_h *g,\n"
12743 "             const char *src,\n"
12744 "             const char *dest);\n"
12745 "\n"
12746 msgstr ""
12747
12748 #. type: textblock
12749 #: ../src/guestfs-actions.pod:4697 ../fish/guestfish-actions.pod:3147
12750 msgid ""
12751 "This moves a file from C<src> to C<dest> where C<dest> is either a "
12752 "destination filename or destination directory."
12753 msgstr ""
12754
12755 #. type: =head2
12756 #: ../src/guestfs-actions.pod:4704
12757 msgid "guestfs_ntfs_3g_probe"
12758 msgstr ""
12759
12760 #. type: verbatim
12761 #: ../src/guestfs-actions.pod:4706
12762 #, no-wrap
12763 msgid ""
12764 " int\n"
12765 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
12766 "                        int rw,\n"
12767 "                        const char *device);\n"
12768 "\n"
12769 msgstr ""
12770
12771 #. type: textblock
12772 #: ../src/guestfs-actions.pod:4711 ../fish/guestfish-actions.pod:3154
12773 msgid ""
12774 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
12775 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
12776 "read-write, and some cannot be mounted at all)."
12777 msgstr ""
12778
12779 #. type: textblock
12780 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3158
12781 msgid ""
12782 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
12783 "can be mounted read-write.  Set it to false if you want to test if the "
12784 "volume can be mounted read-only."
12785 msgstr ""
12786
12787 #. type: textblock
12788 #: ../src/guestfs-actions.pod:4719 ../fish/guestfish-actions.pod:3162
12789 msgid ""
12790 "The return value is an integer which C<0> if the operation would succeed, or "
12791 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
12792 msgstr ""
12793
12794 #. type: textblock
12795 #: ../src/guestfs-actions.pod:4725
12796 msgid "(Added in 1.0.43)"
12797 msgstr ""
12798
12799 #. type: =head2
12800 #: ../src/guestfs-actions.pod:4727
12801 msgid "guestfs_ntfsresize"
12802 msgstr ""
12803
12804 #. type: verbatim
12805 #: ../src/guestfs-actions.pod:4729
12806 #, no-wrap
12807 msgid ""
12808 " int\n"
12809 " guestfs_ntfsresize (guestfs_h *g,\n"
12810 "                     const char *device);\n"
12811 "\n"
12812 msgstr ""
12813
12814 #. type: textblock
12815 #: ../src/guestfs-actions.pod:4733 ../fish/guestfish-actions.pod:3170
12816 msgid ""
12817 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
12818 "size of the underlying device.  See also L<ntfsresize(8)>."
12819 msgstr ""
12820
12821 #. type: =head2
12822 #: ../src/guestfs-actions.pod:4741
12823 msgid "guestfs_ntfsresize_size"
12824 msgstr ""
12825
12826 #. type: verbatim
12827 #: ../src/guestfs-actions.pod:4743
12828 #, no-wrap
12829 msgid ""
12830 " int\n"
12831 " guestfs_ntfsresize_size (guestfs_h *g,\n"
12832 "                          const char *device,\n"
12833 "                          int64_t size);\n"
12834 "\n"
12835 msgstr ""
12836
12837 #. type: textblock
12838 #: ../src/guestfs-actions.pod:4748
12839 msgid ""
12840 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
12841 "to specify the new size (in bytes) explicitly."
12842 msgstr ""
12843
12844 #. type: textblock
12845 #: ../src/guestfs-actions.pod:4753 ../src/guestfs-actions.pod:5189 ../src/guestfs-actions.pod:5262 ../src/guestfs-actions.pod:5528 ../src/guestfs-actions.pod:7067
12846 msgid "(Added in 1.3.14)"
12847 msgstr ""
12848
12849 #. type: =head2
12850 #: ../src/guestfs-actions.pod:4755
12851 msgid "guestfs_part_add"
12852 msgstr ""
12853
12854 #. type: verbatim
12855 #: ../src/guestfs-actions.pod:4757
12856 #, no-wrap
12857 msgid ""
12858 " int\n"
12859 " guestfs_part_add (guestfs_h *g,\n"
12860 "                   const char *device,\n"
12861 "                   const char *prlogex,\n"
12862 "                   int64_t startsect,\n"
12863 "                   int64_t endsect);\n"
12864 "\n"
12865 msgstr ""
12866
12867 #. type: textblock
12868 #: ../src/guestfs-actions.pod:4764
12869 msgid ""
12870 "This command adds a partition to C<device>.  If there is no partition table "
12871 "on the device, call C<guestfs_part_init> first."
12872 msgstr ""
12873
12874 #. type: textblock
12875 #: ../src/guestfs-actions.pod:4767 ../fish/guestfish-actions.pod:3188
12876 msgid ""
12877 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
12878 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
12879 "C<logical>) and C<e> (or C<extended>) partition types."
12880 msgstr ""
12881
12882 #. type: textblock
12883 #: ../src/guestfs-actions.pod:4772 ../fish/guestfish-actions.pod:3193
12884 msgid ""
12885 "C<startsect> and C<endsect> are the start and end of the partition in "
12886 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
12887 "from the end of the disk (C<-1> is the last sector)."
12888 msgstr ""
12889
12890 #. type: textblock
12891 #: ../src/guestfs-actions.pod:4776
12892 msgid ""
12893 "Creating a partition which covers the whole disk is not so easy.  Use "
12894 "C<guestfs_part_disk> to do that."
12895 msgstr ""
12896
12897 #. type: textblock
12898 #: ../src/guestfs-actions.pod:4781 ../src/guestfs-actions.pod:4819 ../src/guestfs-actions.pod:4872 ../src/guestfs-actions.pod:4950 ../src/guestfs-actions.pod:4988 ../src/guestfs-actions.pod:5007 ../src/guestfs-actions.pod:5047
12899 msgid "(Added in 1.0.78)"
12900 msgstr ""
12901
12902 #. type: =head2
12903 #: ../src/guestfs-actions.pod:4783
12904 msgid "guestfs_part_del"
12905 msgstr ""
12906
12907 #. type: verbatim
12908 #: ../src/guestfs-actions.pod:4785
12909 #, no-wrap
12910 msgid ""
12911 " int\n"
12912 " guestfs_part_del (guestfs_h *g,\n"
12913 "                   const char *device,\n"
12914 "                   int partnum);\n"
12915 "\n"
12916 msgstr ""
12917
12918 #. type: textblock
12919 #: ../src/guestfs-actions.pod:4790 ../fish/guestfish-actions.pod:3204
12920 msgid "This command deletes the partition numbered C<partnum> on C<device>."
12921 msgstr ""
12922
12923 #. type: textblock
12924 #: ../src/guestfs-actions.pod:4792 ../fish/guestfish-actions.pod:3206
12925 msgid ""
12926 "Note that in the case of MBR partitioning, deleting an extended partition "
12927 "also deletes any logical partitions it contains."
12928 msgstr ""
12929
12930 #. type: =head2
12931 #: ../src/guestfs-actions.pod:4800
12932 msgid "guestfs_part_disk"
12933 msgstr ""
12934
12935 #. type: verbatim
12936 #: ../src/guestfs-actions.pod:4802
12937 #, no-wrap
12938 msgid ""
12939 " int\n"
12940 " guestfs_part_disk (guestfs_h *g,\n"
12941 "                    const char *device,\n"
12942 "                    const char *parttype);\n"
12943 "\n"
12944 msgstr ""
12945
12946 #. type: textblock
12947 #: ../src/guestfs-actions.pod:4807
12948 msgid ""
12949 "This command is simply a combination of C<guestfs_part_init> followed by "
12950 "C<guestfs_part_add> to create a single primary partition covering the whole "
12951 "disk."
12952 msgstr ""
12953
12954 #. type: textblock
12955 #: ../src/guestfs-actions.pod:4811
12956 msgid ""
12957 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
12958 "possible values are described in C<guestfs_part_init>."
12959 msgstr ""
12960
12961 #. type: =head2
12962 #: ../src/guestfs-actions.pod:4821
12963 msgid "guestfs_part_get_bootable"
12964 msgstr ""
12965
12966 #. type: verbatim
12967 #: ../src/guestfs-actions.pod:4823
12968 #, no-wrap
12969 msgid ""
12970 " int\n"
12971 " guestfs_part_get_bootable (guestfs_h *g,\n"
12972 "                            const char *device,\n"
12973 "                            int partnum);\n"
12974 "\n"
12975 msgstr ""
12976
12977 #. type: textblock
12978 #: ../src/guestfs-actions.pod:4828 ../fish/guestfish-actions.pod:3228
12979 msgid ""
12980 "This command returns true if the partition C<partnum> on C<device> has the "
12981 "bootable flag set."
12982 msgstr ""
12983
12984 #. type: textblock
12985 #: ../src/guestfs-actions.pod:4831
12986 msgid "See also C<guestfs_part_set_bootable>."
12987 msgstr ""
12988
12989 #. type: =head2
12990 #: ../src/guestfs-actions.pod:4837
12991 msgid "guestfs_part_get_mbr_id"
12992 msgstr ""
12993
12994 #. type: verbatim
12995 #: ../src/guestfs-actions.pod:4839
12996 #, no-wrap
12997 msgid ""
12998 " int\n"
12999 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
13000 "                          const char *device,\n"
13001 "                          int partnum);\n"
13002 "\n"
13003 msgstr ""
13004
13005 #. type: textblock
13006 #: ../src/guestfs-actions.pod:4844 ../fish/guestfish-actions.pod:3237
13007 msgid ""
13008 "Returns the MBR type byte (also known as the ID byte) from the numbered "
13009 "partition C<partnum>."
13010 msgstr ""
13011
13012 #. type: textblock
13013 #: ../src/guestfs-actions.pod:4847 ../src/guestfs-actions.pod:5023
13014 msgid ""
13015 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
13016 "undefined results for other partition table types (see "
13017 "C<guestfs_part_get_parttype>)."
13018 msgstr ""
13019
13020 #. type: =head2
13021 #: ../src/guestfs-actions.pod:4855
13022 msgid "guestfs_part_get_parttype"
13023 msgstr ""
13024
13025 #. type: verbatim
13026 #: ../src/guestfs-actions.pod:4857
13027 #, no-wrap
13028 msgid ""
13029 " char *\n"
13030 " guestfs_part_get_parttype (guestfs_h *g,\n"
13031 "                            const char *device);\n"
13032 "\n"
13033 msgstr ""
13034
13035 #. type: textblock
13036 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3248
13037 msgid ""
13038 "This command examines the partition table on C<device> and returns the "
13039 "partition table type (format) being used."
13040 msgstr ""
13041
13042 #. type: textblock
13043 #: ../src/guestfs-actions.pod:4864
13044 msgid ""
13045 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
13046 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
13047 "possible, although unusual.  See C<guestfs_part_init> for a full list."
13048 msgstr ""
13049
13050 #. type: =head2
13051 #: ../src/guestfs-actions.pod:4874
13052 msgid "guestfs_part_init"
13053 msgstr ""
13054
13055 #. type: verbatim
13056 #: ../src/guestfs-actions.pod:4876
13057 #, no-wrap
13058 msgid ""
13059 " int\n"
13060 " guestfs_part_init (guestfs_h *g,\n"
13061 "                    const char *device,\n"
13062 "                    const char *parttype);\n"
13063 "\n"
13064 msgstr ""
13065
13066 #. type: textblock
13067 #: ../src/guestfs-actions.pod:4881 ../fish/guestfish-actions.pod:3260
13068 msgid ""
13069 "This creates an empty partition table on C<device> of one of the partition "
13070 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
13071 "(for large disks)."
13072 msgstr ""
13073
13074 #. type: textblock
13075 #: ../src/guestfs-actions.pod:4885
13076 msgid ""
13077 "Initially there are no partitions.  Following this, you should call "
13078 "C<guestfs_part_add> for each partition required."
13079 msgstr ""
13080
13081 #. type: textblock
13082 #: ../src/guestfs-actions.pod:4888 ../fish/guestfish-actions.pod:3267
13083 msgid "Possible values for C<parttype> are:"
13084 msgstr ""
13085
13086 #. type: =item
13087 #: ../src/guestfs-actions.pod:4892 ../fish/guestfish-actions.pod:3271
13088 msgid "B<efi> | B<gpt>"
13089 msgstr ""
13090
13091 #. type: textblock
13092 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3273
13093 msgid "Intel EFI / GPT partition table."
13094 msgstr ""
13095
13096 #. type: textblock
13097 #: ../src/guestfs-actions.pod:4896 ../fish/guestfish-actions.pod:3275
13098 msgid ""
13099 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
13100 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
13101 "the C<mbr> format."
13102 msgstr ""
13103
13104 #. type: =item
13105 #: ../src/guestfs-actions.pod:4900 ../fish/guestfish-actions.pod:3279
13106 msgid "B<mbr> | B<msdos>"
13107 msgstr ""
13108
13109 #. type: textblock
13110 #: ../src/guestfs-actions.pod:4902 ../fish/guestfish-actions.pod:3281
13111 msgid ""
13112 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
13113 "Windows.  This partition type will B<only> work for device sizes up to 2 "
13114 "TB.  For large disks we recommend using C<gpt>."
13115 msgstr ""
13116
13117 #. type: textblock
13118 #: ../src/guestfs-actions.pod:4909 ../fish/guestfish-actions.pod:3288
13119 msgid "Other partition table types that may work but are not supported include:"
13120 msgstr ""
13121
13122 #. type: =item
13123 #: ../src/guestfs-actions.pod:4914 ../fish/guestfish-actions.pod:3293
13124 msgid "B<aix>"
13125 msgstr ""
13126
13127 #. type: textblock
13128 #: ../src/guestfs-actions.pod:4916 ../fish/guestfish-actions.pod:3295
13129 msgid "AIX disk labels."
13130 msgstr ""
13131
13132 #. type: =item
13133 #: ../src/guestfs-actions.pod:4918 ../fish/guestfish-actions.pod:3297
13134 msgid "B<amiga> | B<rdb>"
13135 msgstr ""
13136
13137 #. type: textblock
13138 #: ../src/guestfs-actions.pod:4920 ../fish/guestfish-actions.pod:3299
13139 msgid "Amiga \"Rigid Disk Block\" format."
13140 msgstr ""
13141
13142 #. type: =item
13143 #: ../src/guestfs-actions.pod:4922 ../fish/guestfish-actions.pod:3301
13144 msgid "B<bsd>"
13145 msgstr ""
13146
13147 #. type: textblock
13148 #: ../src/guestfs-actions.pod:4924 ../fish/guestfish-actions.pod:3303
13149 msgid "BSD disk labels."
13150 msgstr ""
13151
13152 #. type: =item
13153 #: ../src/guestfs-actions.pod:4926 ../fish/guestfish-actions.pod:3305
13154 msgid "B<dasd>"
13155 msgstr ""
13156
13157 #. type: textblock
13158 #: ../src/guestfs-actions.pod:4928 ../fish/guestfish-actions.pod:3307
13159 msgid "DASD, used on IBM mainframes."
13160 msgstr ""
13161
13162 #. type: =item
13163 #: ../src/guestfs-actions.pod:4930 ../fish/guestfish-actions.pod:3309
13164 msgid "B<dvh>"
13165 msgstr ""
13166
13167 #. type: textblock
13168 #: ../src/guestfs-actions.pod:4932 ../fish/guestfish-actions.pod:3311
13169 msgid "MIPS/SGI volumes."
13170 msgstr ""
13171
13172 #. type: =item
13173 #: ../src/guestfs-actions.pod:4934 ../fish/guestfish-actions.pod:3313
13174 msgid "B<mac>"
13175 msgstr ""
13176
13177 #. type: textblock
13178 #: ../src/guestfs-actions.pod:4936 ../fish/guestfish-actions.pod:3315
13179 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
13180 msgstr ""
13181
13182 #. type: =item
13183 #: ../src/guestfs-actions.pod:4938 ../fish/guestfish-actions.pod:3317
13184 msgid "B<pc98>"
13185 msgstr ""
13186
13187 #. type: textblock
13188 #: ../src/guestfs-actions.pod:4940 ../fish/guestfish-actions.pod:3319
13189 msgid "NEC PC-98 format, common in Japan apparently."
13190 msgstr ""
13191
13192 #. type: =item
13193 #: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3321
13194 msgid "B<sun>"
13195 msgstr ""
13196
13197 #. type: textblock
13198 #: ../src/guestfs-actions.pod:4944 ../fish/guestfish-actions.pod:3323
13199 msgid "Sun disk labels."
13200 msgstr ""
13201
13202 #. type: =head2
13203 #: ../src/guestfs-actions.pod:4952
13204 msgid "guestfs_part_list"
13205 msgstr ""
13206
13207 #. type: verbatim
13208 #: ../src/guestfs-actions.pod:4954
13209 #, no-wrap
13210 msgid ""
13211 " struct guestfs_partition_list *\n"
13212 " guestfs_part_list (guestfs_h *g,\n"
13213 "                    const char *device);\n"
13214 "\n"
13215 msgstr ""
13216
13217 #. type: textblock
13218 #: ../src/guestfs-actions.pod:4958 ../fish/guestfish-actions.pod:3331
13219 msgid ""
13220 "This command parses the partition table on C<device> and returns the list of "
13221 "partitions found."
13222 msgstr ""
13223
13224 #. type: textblock
13225 #: ../src/guestfs-actions.pod:4961 ../fish/guestfish-actions.pod:3334
13226 msgid "The fields in the returned structure are:"
13227 msgstr ""
13228
13229 #. type: =item
13230 #: ../src/guestfs-actions.pod:4965 ../fish/guestfish-actions.pod:3338
13231 msgid "B<part_num>"
13232 msgstr ""
13233
13234 #. type: textblock
13235 #: ../src/guestfs-actions.pod:4967 ../fish/guestfish-actions.pod:3340
13236 msgid "Partition number, counting from 1."
13237 msgstr ""
13238
13239 #. type: =item
13240 #: ../src/guestfs-actions.pod:4969 ../fish/guestfish-actions.pod:3342
13241 msgid "B<part_start>"
13242 msgstr ""
13243
13244 #. type: textblock
13245 #: ../src/guestfs-actions.pod:4971
13246 msgid ""
13247 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
13248 "the device's sector size, see C<guestfs_blockdev_getss>."
13249 msgstr ""
13250
13251 #. type: =item
13252 #: ../src/guestfs-actions.pod:4974 ../fish/guestfish-actions.pod:3347
13253 msgid "B<part_end>"
13254 msgstr ""
13255
13256 #. type: textblock
13257 #: ../src/guestfs-actions.pod:4976 ../fish/guestfish-actions.pod:3349
13258 msgid "End of the partition in bytes."
13259 msgstr ""
13260
13261 #. type: =item
13262 #: ../src/guestfs-actions.pod:4978 ../fish/guestfish-actions.pod:3351
13263 msgid "B<part_size>"
13264 msgstr ""
13265
13266 #. type: textblock
13267 #: ../src/guestfs-actions.pod:4980 ../fish/guestfish-actions.pod:3353
13268 msgid "Size of the partition in bytes."
13269 msgstr ""
13270
13271 #. type: textblock
13272 #: ../src/guestfs-actions.pod:4984
13273 msgid ""
13274 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
13275 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
13276 "use>."
13277 msgstr ""
13278
13279 #. type: =head2
13280 #: ../src/guestfs-actions.pod:4990
13281 msgid "guestfs_part_set_bootable"
13282 msgstr ""
13283
13284 #. type: verbatim
13285 #: ../src/guestfs-actions.pod:4992
13286 #, no-wrap
13287 msgid ""
13288 " int\n"
13289 " guestfs_part_set_bootable (guestfs_h *g,\n"
13290 "                            const char *device,\n"
13291 "                            int partnum,\n"
13292 "                            int bootable);\n"
13293 "\n"
13294 msgstr ""
13295
13296 #. type: textblock
13297 #: ../src/guestfs-actions.pod:4998 ../fish/guestfish-actions.pod:3361
13298 msgid ""
13299 "This sets the bootable flag on partition numbered C<partnum> on device "
13300 "C<device>.  Note that partitions are numbered from 1."
13301 msgstr ""
13302
13303 #. type: textblock
13304 #: ../src/guestfs-actions.pod:5001 ../fish/guestfish-actions.pod:3364
13305 msgid ""
13306 "The bootable flag is used by some operating systems (notably Windows) to "
13307 "determine which partition to boot from.  It is by no means universally "
13308 "recognized."
13309 msgstr ""
13310
13311 #. type: =head2
13312 #: ../src/guestfs-actions.pod:5009
13313 msgid "guestfs_part_set_mbr_id"
13314 msgstr ""
13315
13316 #. type: verbatim
13317 #: ../src/guestfs-actions.pod:5011
13318 #, no-wrap
13319 msgid ""
13320 " int\n"
13321 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
13322 "                          const char *device,\n"
13323 "                          int partnum,\n"
13324 "                          int idbyte);\n"
13325 "\n"
13326 msgstr ""
13327
13328 #. type: textblock
13329 #: ../src/guestfs-actions.pod:5017 ../fish/guestfish-actions.pod:3372
13330 msgid ""
13331 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
13332 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
13333 "documentation are in fact hexadecimal numbers, but usually documented "
13334 "without any leading \"0x\" which might be confusing."
13335 msgstr ""
13336
13337 #. type: =head2
13338 #: ../src/guestfs-actions.pod:5031
13339 msgid "guestfs_part_set_name"
13340 msgstr ""
13341
13342 #. type: verbatim
13343 #: ../src/guestfs-actions.pod:5033
13344 #, no-wrap
13345 msgid ""
13346 " int\n"
13347 " guestfs_part_set_name (guestfs_h *g,\n"
13348 "                        const char *device,\n"
13349 "                        int partnum,\n"
13350 "                        const char *name);\n"
13351 "\n"
13352 msgstr ""
13353
13354 #. type: textblock
13355 #: ../src/guestfs-actions.pod:5039 ../fish/guestfish-actions.pod:3386
13356 msgid ""
13357 "This sets the partition name on partition numbered C<partnum> on device "
13358 "C<device>.  Note that partitions are numbered from 1."
13359 msgstr ""
13360
13361 #. type: textblock
13362 #: ../src/guestfs-actions.pod:5042 ../fish/guestfish-actions.pod:3389
13363 msgid ""
13364 "The partition name can only be set on certain types of partition table.  "
13365 "This works on C<gpt> but not on C<mbr> partitions."
13366 msgstr ""
13367
13368 #. type: =head2
13369 #: ../src/guestfs-actions.pod:5049
13370 msgid "guestfs_part_to_dev"
13371 msgstr ""
13372
13373 #. type: verbatim
13374 #: ../src/guestfs-actions.pod:5051
13375 #, no-wrap
13376 msgid ""
13377 " char *\n"
13378 " guestfs_part_to_dev (guestfs_h *g,\n"
13379 "                      const char *partition);\n"
13380 "\n"
13381 msgstr ""
13382
13383 #. type: textblock
13384 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3396
13385 msgid ""
13386 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
13387 "partition number, returning the device name (eg. \"/dev/sdb\")."
13388 msgstr ""
13389
13390 #. type: textblock
13391 #: ../src/guestfs-actions.pod:5059
13392 msgid ""
13393 "The named partition must exist, for example as a string returned from "
13394 "C<guestfs_list_partitions>."
13395 msgstr ""
13396
13397 #. type: =head2
13398 #: ../src/guestfs-actions.pod:5067
13399 msgid "guestfs_ping_daemon"
13400 msgstr ""
13401
13402 #. type: verbatim
13403 #: ../src/guestfs-actions.pod:5069
13404 #, no-wrap
13405 msgid ""
13406 " int\n"
13407 " guestfs_ping_daemon (guestfs_h *g);\n"
13408 "\n"
13409 msgstr ""
13410
13411 #. type: textblock
13412 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3407
13413 msgid ""
13414 "This is a test probe into the guestfs daemon running inside the qemu "
13415 "subprocess.  Calling this function checks that the daemon responds to the "
13416 "ping message, without affecting the daemon or attached block device(s) in "
13417 "any other way."
13418 msgstr ""
13419
13420 #. type: =head2
13421 #: ../src/guestfs-actions.pod:5081
13422 msgid "guestfs_pread"
13423 msgstr ""
13424
13425 #. type: verbatim
13426 #: ../src/guestfs-actions.pod:5083
13427 #, no-wrap
13428 msgid ""
13429 " char *\n"
13430 " guestfs_pread (guestfs_h *g,\n"
13431 "                const char *path,\n"
13432 "                int count,\n"
13433 "                int64_t offset,\n"
13434 "                size_t *size_r);\n"
13435 "\n"
13436 msgstr ""
13437
13438 #. type: textblock
13439 #: ../src/guestfs-actions.pod:5090 ../fish/guestfish-actions.pod:3416
13440 msgid ""
13441 "This command lets you read part of a file.  It reads C<count> bytes of the "
13442 "file, starting at C<offset>, from file C<path>."
13443 msgstr ""
13444
13445 #. type: textblock
13446 #: ../src/guestfs-actions.pod:5093 ../src/guestfs-actions.pod:5119 ../fish/guestfish-actions.pod:3419 ../fish/guestfish-actions.pod:3434
13447 msgid ""
13448 "This may read fewer bytes than requested.  For further details see the "
13449 "L<pread(2)> system call."
13450 msgstr ""
13451
13452 #. type: textblock
13453 #: ../src/guestfs-actions.pod:5096
13454 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
13455 msgstr ""
13456
13457 #. type: =head2
13458 #: ../src/guestfs-actions.pod:5107
13459 msgid "guestfs_pread_device"
13460 msgstr ""
13461
13462 #. type: verbatim
13463 #: ../src/guestfs-actions.pod:5109
13464 #, no-wrap
13465 msgid ""
13466 " char *\n"
13467 " guestfs_pread_device (guestfs_h *g,\n"
13468 "                       const char *device,\n"
13469 "                       int count,\n"
13470 "                       int64_t offset,\n"
13471 "                       size_t *size_r);\n"
13472 "\n"
13473 msgstr ""
13474
13475 #. type: textblock
13476 #: ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3431
13477 msgid ""
13478 "This command lets you read part of a file.  It reads C<count> bytes of "
13479 "C<device>, starting at C<offset>."
13480 msgstr ""
13481
13482 #. type: textblock
13483 #: ../src/guestfs-actions.pod:5122
13484 msgid "See also C<guestfs_pread>."
13485 msgstr ""
13486
13487 #. type: textblock
13488 #: ../src/guestfs-actions.pod:5131
13489 msgid "(Added in 1.5.21)"
13490 msgstr ""
13491
13492 #. type: =head2
13493 #: ../src/guestfs-actions.pod:5133
13494 msgid "guestfs_pvcreate"
13495 msgstr ""
13496
13497 #. type: verbatim
13498 #: ../src/guestfs-actions.pod:5135
13499 #, no-wrap
13500 msgid ""
13501 " int\n"
13502 " guestfs_pvcreate (guestfs_h *g,\n"
13503 "                   const char *device);\n"
13504 "\n"
13505 msgstr ""
13506
13507 #. type: textblock
13508 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3446
13509 msgid ""
13510 "This creates an LVM physical volume on the named C<device>, where C<device> "
13511 "should usually be a partition name such as C</dev/sda1>."
13512 msgstr ""
13513
13514 #. type: =head2
13515 #: ../src/guestfs-actions.pod:5147
13516 msgid "guestfs_pvremove"
13517 msgstr ""
13518
13519 #. type: verbatim
13520 #: ../src/guestfs-actions.pod:5149
13521 #, no-wrap
13522 msgid ""
13523 " int\n"
13524 " guestfs_pvremove (guestfs_h *g,\n"
13525 "                   const char *device);\n"
13526 "\n"
13527 msgstr ""
13528
13529 #. type: textblock
13530 #: ../src/guestfs-actions.pod:5153 ../fish/guestfish-actions.pod:3454
13531 msgid ""
13532 "This wipes a physical volume C<device> so that LVM will no longer recognise "
13533 "it."
13534 msgstr ""
13535
13536 #. type: textblock
13537 #: ../src/guestfs-actions.pod:5156 ../fish/guestfish-actions.pod:3457
13538 msgid ""
13539 "The implementation uses the C<pvremove> command which refuses to wipe "
13540 "physical volumes that contain any volume groups, so you have to remove those "
13541 "first."
13542 msgstr ""
13543
13544 #. type: =head2
13545 #: ../src/guestfs-actions.pod:5164
13546 msgid "guestfs_pvresize"
13547 msgstr ""
13548
13549 #. type: verbatim
13550 #: ../src/guestfs-actions.pod:5166
13551 #, no-wrap
13552 msgid ""
13553 " int\n"
13554 " guestfs_pvresize (guestfs_h *g,\n"
13555 "                   const char *device);\n"
13556 "\n"
13557 msgstr ""
13558
13559 #. type: textblock
13560 #: ../src/guestfs-actions.pod:5170 ../fish/guestfish-actions.pod:3465
13561 msgid ""
13562 "This resizes (expands or shrinks) an existing LVM physical volume to match "
13563 "the new size of the underlying device."
13564 msgstr ""
13565
13566 #. type: =head2
13567 #: ../src/guestfs-actions.pod:5177
13568 msgid "guestfs_pvresize_size"
13569 msgstr ""
13570
13571 #. type: verbatim
13572 #: ../src/guestfs-actions.pod:5179
13573 #, no-wrap
13574 msgid ""
13575 " int\n"
13576 " guestfs_pvresize_size (guestfs_h *g,\n"
13577 "                        const char *device,\n"
13578 "                        int64_t size);\n"
13579 "\n"
13580 msgstr ""
13581
13582 #. type: textblock
13583 #: ../src/guestfs-actions.pod:5184
13584 msgid ""
13585 "This command is the same as C<guestfs_pvresize> except that it allows you to "
13586 "specify the new size (in bytes) explicitly."
13587 msgstr ""
13588
13589 #. type: =head2
13590 #: ../src/guestfs-actions.pod:5191
13591 msgid "guestfs_pvs"
13592 msgstr ""
13593
13594 #. type: verbatim
13595 #: ../src/guestfs-actions.pod:5193
13596 #, no-wrap
13597 msgid ""
13598 " char **\n"
13599 " guestfs_pvs (guestfs_h *g);\n"
13600 "\n"
13601 msgstr ""
13602
13603 #. type: textblock
13604 #: ../src/guestfs-actions.pod:5196 ../fish/guestfish-actions.pod:3479
13605 msgid ""
13606 "List all the physical volumes detected.  This is the equivalent of the "
13607 "L<pvs(8)> command."
13608 msgstr ""
13609
13610 #. type: textblock
13611 #: ../src/guestfs-actions.pod:5199 ../fish/guestfish-actions.pod:3482
13612 msgid ""
13613 "This returns a list of just the device names that contain PVs "
13614 "(eg. C</dev/sda2>)."
13615 msgstr ""
13616
13617 #. type: textblock
13618 #: ../src/guestfs-actions.pod:5202
13619 msgid "See also C<guestfs_pvs_full>."
13620 msgstr ""
13621
13622 #. type: =head2
13623 #: ../src/guestfs-actions.pod:5210
13624 msgid "guestfs_pvs_full"
13625 msgstr ""
13626
13627 #. type: verbatim
13628 #: ../src/guestfs-actions.pod:5212
13629 #, no-wrap
13630 msgid ""
13631 " struct guestfs_lvm_pv_list *\n"
13632 " guestfs_pvs_full (guestfs_h *g);\n"
13633 "\n"
13634 msgstr ""
13635
13636 #. type: textblock
13637 #: ../src/guestfs-actions.pod:5215 ../fish/guestfish-actions.pod:3491
13638 msgid ""
13639 "List all the physical volumes detected.  This is the equivalent of the "
13640 "L<pvs(8)> command.  The \"full\" version includes all fields."
13641 msgstr ""
13642
13643 #. type: textblock
13644 #: ../src/guestfs-actions.pod:5218
13645 msgid ""
13646 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
13647 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
13648 "use>."
13649 msgstr ""
13650
13651 #. type: =head2
13652 #: ../src/guestfs-actions.pod:5224
13653 msgid "guestfs_pvuuid"
13654 msgstr ""
13655
13656 #. type: verbatim
13657 #: ../src/guestfs-actions.pod:5226
13658 #, no-wrap
13659 msgid ""
13660 " char *\n"
13661 " guestfs_pvuuid (guestfs_h *g,\n"
13662 "                 const char *device);\n"
13663 "\n"
13664 msgstr ""
13665
13666 #. type: textblock
13667 #: ../src/guestfs-actions.pod:5230 ../fish/guestfish-actions.pod:3498
13668 msgid "This command returns the UUID of the LVM PV C<device>."
13669 msgstr ""
13670
13671 #. type: =head2
13672 #: ../src/guestfs-actions.pod:5237
13673 msgid "guestfs_pwrite"
13674 msgstr ""
13675
13676 #. type: verbatim
13677 #: ../src/guestfs-actions.pod:5239
13678 #, no-wrap
13679 msgid ""
13680 " int\n"
13681 " guestfs_pwrite (guestfs_h *g,\n"
13682 "                 const char *path,\n"
13683 "                 const char *content,\n"
13684 "                 size_t content_size,\n"
13685 "                 int64_t offset);\n"
13686 "\n"
13687 msgstr ""
13688
13689 #. type: textblock
13690 #: ../src/guestfs-actions.pod:5246 ../fish/guestfish-actions.pod:3504
13691 msgid ""
13692 "This command writes to part of a file.  It writes the data buffer C<content> "
13693 "to the file C<path> starting at offset C<offset>."
13694 msgstr ""
13695
13696 #. type: textblock
13697 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3507
13698 msgid ""
13699 "This command implements the L<pwrite(2)> system call, and like that system "
13700 "call it may not write the full data requested.  The return value is the "
13701 "number of bytes that were actually written to the file.  This could even be "
13702 "0, although short writes are unlikely for regular files in ordinary "
13703 "circumstances."
13704 msgstr ""
13705
13706 #. type: textblock
13707 #: ../src/guestfs-actions.pod:5255
13708 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
13709 msgstr ""
13710
13711 #. type: =head2
13712 #: ../src/guestfs-actions.pod:5264
13713 msgid "guestfs_pwrite_device"
13714 msgstr ""
13715
13716 #. type: verbatim
13717 #: ../src/guestfs-actions.pod:5266
13718 #, no-wrap
13719 msgid ""
13720 " int\n"
13721 " guestfs_pwrite_device (guestfs_h *g,\n"
13722 "                        const char *device,\n"
13723 "                        const char *content,\n"
13724 "                        size_t content_size,\n"
13725 "                        int64_t offset);\n"
13726 "\n"
13727 msgstr ""
13728
13729 #. type: textblock
13730 #: ../src/guestfs-actions.pod:5273 ../fish/guestfish-actions.pod:3522
13731 msgid ""
13732 "This command writes to part of a device.  It writes the data buffer "
13733 "C<content> to C<device> starting at offset C<offset>."
13734 msgstr ""
13735
13736 #. type: textblock
13737 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3525
13738 msgid ""
13739 "This command implements the L<pwrite(2)> system call, and like that system "
13740 "call it may not write the full data requested (although short writes to disk "
13741 "devices and partitions are probably impossible with standard Linux kernels)."
13742 msgstr ""
13743
13744 #. type: textblock
13745 #: ../src/guestfs-actions.pod:5281
13746 msgid "See also C<guestfs_pwrite>."
13747 msgstr ""
13748
13749 #. type: textblock
13750 #: ../src/guestfs-actions.pod:5288
13751 msgid "(Added in 1.5.20)"
13752 msgstr ""
13753
13754 #. type: =head2
13755 #: ../src/guestfs-actions.pod:5290
13756 msgid "guestfs_read_file"
13757 msgstr ""
13758
13759 #. type: verbatim
13760 #: ../src/guestfs-actions.pod:5292
13761 #, no-wrap
13762 msgid ""
13763 " char *\n"
13764 " guestfs_read_file (guestfs_h *g,\n"
13765 "                    const char *path,\n"
13766 "                    size_t *size_r);\n"
13767 "\n"
13768 msgstr ""
13769
13770 #. type: textblock
13771 #: ../src/guestfs-actions.pod:5297 ../fish/guestfish-actions.pod:3539
13772 msgid "This calls returns the contents of the file C<path> as a buffer."
13773 msgstr ""
13774
13775 #. type: textblock
13776 #: ../src/guestfs-actions.pod:5300
13777 msgid ""
13778 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
13779 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
13780 "function is limited in the total size of file that can be handled."
13781 msgstr ""
13782
13783 #. type: textblock
13784 #: ../src/guestfs-actions.pod:5312
13785 msgid "(Added in 1.0.63)"
13786 msgstr ""
13787
13788 #. type: =head2
13789 #: ../src/guestfs-actions.pod:5314
13790 msgid "guestfs_read_lines"
13791 msgstr ""
13792
13793 #. type: verbatim
13794 #: ../src/guestfs-actions.pod:5316
13795 #, no-wrap
13796 msgid ""
13797 " char **\n"
13798 " guestfs_read_lines (guestfs_h *g,\n"
13799 "                     const char *path);\n"
13800 "\n"
13801 msgstr ""
13802
13803 #. type: textblock
13804 #: ../src/guestfs-actions.pod:5322 ../fish/guestfish-actions.pod:3556
13805 msgid ""
13806 "The file contents are returned as a list of lines.  Trailing C<LF> and "
13807 "C<CRLF> character sequences are I<not> returned."
13808 msgstr ""
13809
13810 #. type: textblock
13811 #: ../src/guestfs-actions.pod:5325
13812 msgid ""
13813 "Note that this function cannot correctly handle binary files (specifically, "
13814 "files containing C<\\0> character which is treated as end of line).  For "
13815 "those you need to use the C<guestfs_read_file> function which has a more "
13816 "complex interface."
13817 msgstr ""
13818
13819 #. type: =head2
13820 #: ../src/guestfs-actions.pod:5336
13821 msgid "guestfs_readdir"
13822 msgstr ""
13823
13824 #. type: verbatim
13825 #: ../src/guestfs-actions.pod:5338
13826 #, no-wrap
13827 msgid ""
13828 " struct guestfs_dirent_list *\n"
13829 " guestfs_readdir (guestfs_h *g,\n"
13830 "                  const char *dir);\n"
13831 "\n"
13832 msgstr ""
13833
13834 #. type: textblock
13835 #: ../src/guestfs-actions.pod:5342 ../fish/guestfish-actions.pod:3568
13836 msgid "This returns the list of directory entries in directory C<dir>."
13837 msgstr ""
13838
13839 #. type: textblock
13840 #: ../src/guestfs-actions.pod:5344 ../fish/guestfish-actions.pod:3570
13841 msgid ""
13842 "All entries in the directory are returned, including C<.> and C<..>.  The "
13843 "entries are I<not> sorted, but returned in the same order as the underlying "
13844 "filesystem."
13845 msgstr ""
13846
13847 #. type: textblock
13848 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3574
13849 msgid ""
13850 "Also this call returns basic file type information about each file.  The "
13851 "C<ftyp> field will contain one of the following characters:"
13852 msgstr ""
13853
13854 #. type: =item
13855 #: ../src/guestfs-actions.pod:5353 ../fish/guestfish-actions.pod:3579
13856 msgid "'b'"
13857 msgstr ""
13858
13859 #. type: textblock
13860 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3581
13861 msgid "Block special"
13862 msgstr ""
13863
13864 #. type: =item
13865 #: ../src/guestfs-actions.pod:5357 ../fish/guestfish-actions.pod:3583
13866 msgid "'c'"
13867 msgstr ""
13868
13869 #. type: textblock
13870 #: ../src/guestfs-actions.pod:5359 ../fish/guestfish-actions.pod:3585
13871 msgid "Char special"
13872 msgstr ""
13873
13874 #. type: =item
13875 #: ../src/guestfs-actions.pod:5361 ../fish/guestfish-actions.pod:3587
13876 msgid "'d'"
13877 msgstr ""
13878
13879 #. type: textblock
13880 #: ../src/guestfs-actions.pod:5363 ../fish/guestfish-actions.pod:3589
13881 msgid "Directory"
13882 msgstr ""
13883
13884 #. type: =item
13885 #: ../src/guestfs-actions.pod:5365 ../fish/guestfish-actions.pod:3591
13886 msgid "'f'"
13887 msgstr ""
13888
13889 #. type: textblock
13890 #: ../src/guestfs-actions.pod:5367 ../fish/guestfish-actions.pod:3593
13891 msgid "FIFO (named pipe)"
13892 msgstr ""
13893
13894 #. type: =item
13895 #: ../src/guestfs-actions.pod:5369 ../fish/guestfish-actions.pod:3595
13896 msgid "'l'"
13897 msgstr ""
13898
13899 #. type: textblock
13900 #: ../src/guestfs-actions.pod:5371 ../fish/guestfish-actions.pod:3597
13901 msgid "Symbolic link"
13902 msgstr ""
13903
13904 #. type: =item
13905 #: ../src/guestfs-actions.pod:5373 ../fish/guestfish-actions.pod:3599
13906 msgid "'r'"
13907 msgstr ""
13908
13909 #. type: textblock
13910 #: ../src/guestfs-actions.pod:5375 ../fish/guestfish-actions.pod:3601
13911 msgid "Regular file"
13912 msgstr ""
13913
13914 #. type: =item
13915 #: ../src/guestfs-actions.pod:5377 ../fish/guestfish-actions.pod:3603
13916 msgid "'s'"
13917 msgstr ""
13918
13919 #. type: textblock
13920 #: ../src/guestfs-actions.pod:5379 ../fish/guestfish-actions.pod:3605
13921 msgid "Socket"
13922 msgstr ""
13923
13924 #. type: =item
13925 #: ../src/guestfs-actions.pod:5381 ../fish/guestfish-actions.pod:3607
13926 msgid "'u'"
13927 msgstr ""
13928
13929 #. type: textblock
13930 #: ../src/guestfs-actions.pod:5383 ../fish/guestfish-actions.pod:3609
13931 msgid "Unknown file type"
13932 msgstr ""
13933
13934 #. type: =item
13935 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3611
13936 msgid "'?'"
13937 msgstr ""
13938
13939 #. type: textblock
13940 #: ../src/guestfs-actions.pod:5387 ../fish/guestfish-actions.pod:3613
13941 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
13942 msgstr ""
13943
13944 #. type: textblock
13945 #: ../src/guestfs-actions.pod:5392
13946 msgid ""
13947 "This function is primarily intended for use by programs.  To get a simple "
13948 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
13949 "consumption, use C<guestfs_ll>."
13950 msgstr ""
13951
13952 #. type: textblock
13953 #: ../src/guestfs-actions.pod:5396
13954 msgid ""
13955 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
13956 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
13957 "use>."
13958 msgstr ""
13959
13960 #. type: =head2
13961 #: ../src/guestfs-actions.pod:5402
13962 msgid "guestfs_readlink"
13963 msgstr ""
13964
13965 #. type: verbatim
13966 #: ../src/guestfs-actions.pod:5404
13967 #, no-wrap
13968 msgid ""
13969 " char *\n"
13970 " guestfs_readlink (guestfs_h *g,\n"
13971 "                   const char *path);\n"
13972 "\n"
13973 msgstr ""
13974
13975 #. type: textblock
13976 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3626
13977 msgid "This command reads the target of a symbolic link."
13978 msgstr ""
13979
13980 #. type: =head2
13981 #: ../src/guestfs-actions.pod:5415
13982 msgid "guestfs_readlinklist"
13983 msgstr ""
13984
13985 #. type: verbatim
13986 #: ../src/guestfs-actions.pod:5417
13987 #, no-wrap
13988 msgid ""
13989 " char **\n"
13990 " guestfs_readlinklist (guestfs_h *g,\n"
13991 "                       const char *path,\n"
13992 "                       char *const *names);\n"
13993 "\n"
13994 msgstr ""
13995
13996 #. type: textblock
13997 #: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3632
13998 msgid ""
13999 "This call allows you to do a C<readlink> operation on multiple files, where "
14000 "all files are in the directory C<path>.  C<names> is the list of files from "
14001 "this directory."
14002 msgstr ""
14003
14004 #. type: textblock
14005 #: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3636
14006 msgid ""
14007 "On return you get a list of strings, with a one-to-one correspondence to the "
14008 "C<names> list.  Each string is the value of the symbolic link."
14009 msgstr ""
14010
14011 #. type: textblock
14012 #: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3640
14013 msgid ""
14014 "If the C<readlink(2)> operation fails on any name, then the corresponding "
14015 "result string is the empty string C<\"\">.  However the whole operation is "
14016 "completed even if there were C<readlink(2)> errors, and so you can call this "
14017 "function with names where you don't know if they are symbolic links already "
14018 "(albeit slightly less efficient)."
14019 msgstr ""
14020
14021 #. type: textblock
14022 #: ../src/guestfs-actions.pod:5437 ../fish/guestfish-actions.pod:3647
14023 msgid ""
14024 "This call is intended for programs that want to efficiently list a directory "
14025 "contents without making many round-trips.  Very long directory listings "
14026 "might cause the protocol message size to be exceeded, causing this call to "
14027 "fail.  The caller must split up such requests into smaller groups of names."
14028 msgstr ""
14029
14030 #. type: =head2
14031 #: ../src/guestfs-actions.pod:5450
14032 msgid "guestfs_realpath"
14033 msgstr ""
14034
14035 #. type: verbatim
14036 #: ../src/guestfs-actions.pod:5452
14037 #, no-wrap
14038 msgid ""
14039 " char *\n"
14040 " guestfs_realpath (guestfs_h *g,\n"
14041 "                   const char *path);\n"
14042 "\n"
14043 msgstr ""
14044
14045 #. type: textblock
14046 #: ../src/guestfs-actions.pod:5456 ../fish/guestfish-actions.pod:3658
14047 msgid ""
14048 "Return the canonicalized absolute pathname of C<path>.  The returned path "
14049 "has no C<.>, C<..> or symbolic link path elements."
14050 msgstr ""
14051
14052 #. type: =head2
14053 #: ../src/guestfs-actions.pod:5464
14054 msgid "guestfs_removexattr"
14055 msgstr ""
14056
14057 #. type: verbatim
14058 #: ../src/guestfs-actions.pod:5466
14059 #, no-wrap
14060 msgid ""
14061 " int\n"
14062 " guestfs_removexattr (guestfs_h *g,\n"
14063 "                      const char *xattr,\n"
14064 "                      const char *path);\n"
14065 "\n"
14066 msgstr ""
14067
14068 #. type: textblock
14069 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3665
14070 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
14071 msgstr ""
14072
14073 #. type: textblock
14074 #: ../src/guestfs-actions.pod:5474
14075 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
14076 msgstr ""
14077
14078 #. type: =head2
14079 #: ../src/guestfs-actions.pod:5480
14080 msgid "guestfs_resize2fs"
14081 msgstr ""
14082
14083 #. type: verbatim
14084 #: ../src/guestfs-actions.pod:5482
14085 #, no-wrap
14086 msgid ""
14087 " int\n"
14088 " guestfs_resize2fs (guestfs_h *g,\n"
14089 "                    const char *device);\n"
14090 "\n"
14091 msgstr ""
14092
14093 #. type: textblock
14094 #: ../src/guestfs-actions.pod:5486 ../fish/guestfish-actions.pod:3674
14095 msgid ""
14096 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
14097 "underlying device."
14098 msgstr ""
14099
14100 #. type: textblock
14101 #: ../src/guestfs-actions.pod:5489
14102 msgid ""
14103 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
14104 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
14105 "sometimes gives an error about this and sometimes not.  In any case, it is "
14106 "always safe to call C<guestfs_e2fsck_f> before calling this function."
14107 msgstr ""
14108
14109 #. type: =head2
14110 #: ../src/guestfs-actions.pod:5499
14111 msgid "guestfs_resize2fs_M"
14112 msgstr ""
14113
14114 #. type: verbatim
14115 #: ../src/guestfs-actions.pod:5501
14116 #, no-wrap
14117 msgid ""
14118 " int\n"
14119 " guestfs_resize2fs_M (guestfs_h *g,\n"
14120 "                      const char *device);\n"
14121 "\n"
14122 msgstr ""
14123
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:5505
14126 msgid ""
14127 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
14128 "resized to its minimum size.  This works like the C<-M> option to the "
14129 "C<resize2fs> command."
14130 msgstr ""
14131
14132 #. type: textblock
14133 #: ../src/guestfs-actions.pod:5509
14134 msgid ""
14135 "To get the resulting size of the filesystem you should call "
14136 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
14137 "These two numbers, multiplied together, give the resulting size of the "
14138 "minimal filesystem in bytes."
14139 msgstr ""
14140
14141 #. type: =head2
14142 #: ../src/guestfs-actions.pod:5516
14143 msgid "guestfs_resize2fs_size"
14144 msgstr ""
14145
14146 #. type: verbatim
14147 #: ../src/guestfs-actions.pod:5518
14148 #, no-wrap
14149 msgid ""
14150 " int\n"
14151 " guestfs_resize2fs_size (guestfs_h *g,\n"
14152 "                         const char *device,\n"
14153 "                         int64_t size);\n"
14154 "\n"
14155 msgstr ""
14156
14157 #. type: textblock
14158 #: ../src/guestfs-actions.pod:5523
14159 msgid ""
14160 "This command is the same as C<guestfs_resize2fs> except that it allows you "
14161 "to specify the new size (in bytes) explicitly."
14162 msgstr ""
14163
14164 #. type: =head2
14165 #: ../src/guestfs-actions.pod:5530
14166 msgid "guestfs_rm"
14167 msgstr ""
14168
14169 #. type: verbatim
14170 #: ../src/guestfs-actions.pod:5532
14171 #, no-wrap
14172 msgid ""
14173 " int\n"
14174 " guestfs_rm (guestfs_h *g,\n"
14175 "             const char *path);\n"
14176 "\n"
14177 msgstr ""
14178
14179 #. type: textblock
14180 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3707
14181 msgid "Remove the single file C<path>."
14182 msgstr ""
14183
14184 #. type: =head2
14185 #: ../src/guestfs-actions.pod:5542
14186 msgid "guestfs_rm_rf"
14187 msgstr ""
14188
14189 #. type: verbatim
14190 #: ../src/guestfs-actions.pod:5544
14191 #, no-wrap
14192 msgid ""
14193 " int\n"
14194 " guestfs_rm_rf (guestfs_h *g,\n"
14195 "                const char *path);\n"
14196 "\n"
14197 msgstr ""
14198
14199 #. type: textblock
14200 #: ../src/guestfs-actions.pod:5548 ../fish/guestfish-actions.pod:3713
14201 msgid ""
14202 "Remove the file or directory C<path>, recursively removing the contents if "
14203 "its a directory.  This is like the C<rm -rf> shell command."
14204 msgstr ""
14205
14206 #. type: =head2
14207 #: ../src/guestfs-actions.pod:5556
14208 msgid "guestfs_rmdir"
14209 msgstr ""
14210
14211 #. type: verbatim
14212 #: ../src/guestfs-actions.pod:5558
14213 #, no-wrap
14214 msgid ""
14215 " int\n"
14216 " guestfs_rmdir (guestfs_h *g,\n"
14217 "                const char *path);\n"
14218 "\n"
14219 msgstr ""
14220
14221 #. type: textblock
14222 #: ../src/guestfs-actions.pod:5562 ../fish/guestfish-actions.pod:3721
14223 msgid "Remove the single directory C<path>."
14224 msgstr ""
14225
14226 #. type: =head2
14227 #: ../src/guestfs-actions.pod:5568
14228 msgid "guestfs_rmmountpoint"
14229 msgstr ""
14230
14231 #. type: verbatim
14232 #: ../src/guestfs-actions.pod:5570
14233 #, no-wrap
14234 msgid ""
14235 " int\n"
14236 " guestfs_rmmountpoint (guestfs_h *g,\n"
14237 "                       const char *exemptpath);\n"
14238 "\n"
14239 msgstr ""
14240
14241 #. type: textblock
14242 #: ../src/guestfs-actions.pod:5574
14243 msgid ""
14244 "This calls removes a mountpoint that was previously created with "
14245 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
14246 msgstr ""
14247
14248 #. type: =head2
14249 #: ../src/guestfs-actions.pod:5582
14250 msgid "guestfs_scrub_device"
14251 msgstr ""
14252
14253 #. type: verbatim
14254 #: ../src/guestfs-actions.pod:5584
14255 #, no-wrap
14256 msgid ""
14257 " int\n"
14258 " guestfs_scrub_device (guestfs_h *g,\n"
14259 "                       const char *device);\n"
14260 "\n"
14261 msgstr ""
14262
14263 #. type: textblock
14264 #: ../src/guestfs-actions.pod:5588 ../fish/guestfish-actions.pod:3735
14265 msgid ""
14266 "This command writes patterns over C<device> to make data retrieval more "
14267 "difficult."
14268 msgstr ""
14269
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:5591 ../src/guestfs-actions.pod:5612 ../src/guestfs-actions.pod:5631 ../fish/guestfish-actions.pod:3738 ../fish/guestfish-actions.pod:3753 ../fish/guestfish-actions.pod:3766
14272 msgid ""
14273 "It is an interface to the L<scrub(1)> program.  See that manual page for "
14274 "more details."
14275 msgstr ""
14276
14277 #. type: textblock
14278 #: ../src/guestfs-actions.pod:5599 ../src/guestfs-actions.pod:5617 ../src/guestfs-actions.pod:5636
14279 msgid "(Added in 1.0.52)"
14280 msgstr ""
14281
14282 #. type: =head2
14283 #: ../src/guestfs-actions.pod:5601
14284 msgid "guestfs_scrub_file"
14285 msgstr ""
14286
14287 #. type: verbatim
14288 #: ../src/guestfs-actions.pod:5603
14289 #, no-wrap
14290 msgid ""
14291 " int\n"
14292 " guestfs_scrub_file (guestfs_h *g,\n"
14293 "                     const char *file);\n"
14294 "\n"
14295 msgstr ""
14296
14297 #. type: textblock
14298 #: ../src/guestfs-actions.pod:5607 ../fish/guestfish-actions.pod:3748
14299 msgid ""
14300 "This command writes patterns over a file to make data retrieval more "
14301 "difficult."
14302 msgstr ""
14303
14304 #. type: textblock
14305 #: ../src/guestfs-actions.pod:5610 ../fish/guestfish-actions.pod:3751
14306 msgid "The file is I<removed> after scrubbing."
14307 msgstr ""
14308
14309 #. type: =head2
14310 #: ../src/guestfs-actions.pod:5619
14311 msgid "guestfs_scrub_freespace"
14312 msgstr ""
14313
14314 #. type: verbatim
14315 #: ../src/guestfs-actions.pod:5621
14316 #, no-wrap
14317 msgid ""
14318 " int\n"
14319 " guestfs_scrub_freespace (guestfs_h *g,\n"
14320 "                          const char *dir);\n"
14321 "\n"
14322 msgstr ""
14323
14324 #. type: textblock
14325 #: ../src/guestfs-actions.pod:5625
14326 msgid ""
14327 "This command creates the directory C<dir> and then fills it with files until "
14328 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
14329 "and deletes them.  The intention is to scrub any free space on the partition "
14330 "containing C<dir>."
14331 msgstr ""
14332
14333 #. type: =head2
14334 #: ../src/guestfs-actions.pod:5638
14335 msgid "guestfs_set_append"
14336 msgstr ""
14337
14338 #. type: verbatim
14339 #: ../src/guestfs-actions.pod:5640
14340 #, no-wrap
14341 msgid ""
14342 " int\n"
14343 " guestfs_set_append (guestfs_h *g,\n"
14344 "                     const char *append);\n"
14345 "\n"
14346 msgstr ""
14347
14348 #. type: textblock
14349 #: ../src/guestfs-actions.pod:5644 ../fish/guestfish-actions.pod:3775
14350 msgid ""
14351 "This function is used to add additional options to the guest kernel command "
14352 "line."
14353 msgstr ""
14354
14355 #. type: textblock
14356 #: ../src/guestfs-actions.pod:5647 ../fish/guestfish-actions.pod:3778
14357 msgid ""
14358 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
14359 "environment variable."
14360 msgstr ""
14361
14362 #. type: textblock
14363 #: ../src/guestfs-actions.pod:5650 ../fish/guestfish-actions.pod:3781
14364 msgid ""
14365 "Setting C<append> to C<NULL> means I<no> additional options are passed "
14366 "(libguestfs always adds a few of its own)."
14367 msgstr ""
14368
14369 #. type: =head2
14370 #: ../src/guestfs-actions.pod:5657
14371 msgid "guestfs_set_autosync"
14372 msgstr ""
14373
14374 #. type: verbatim
14375 #: ../src/guestfs-actions.pod:5659
14376 #, no-wrap
14377 msgid ""
14378 " int\n"
14379 " guestfs_set_autosync (guestfs_h *g,\n"
14380 "                       int autosync);\n"
14381 "\n"
14382 msgstr ""
14383
14384 #. type: textblock
14385 #: ../src/guestfs-actions.pod:5663 ../fish/guestfish-actions.pod:3790
14386 msgid ""
14387 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
14388 "effort attempt to make filesystems consistent and synchronized when the "
14389 "handle is closed (also if the program exits without closing handles)."
14390 msgstr ""
14391
14392 #. type: textblock
14393 #: ../src/guestfs-actions.pod:5668 ../fish/guestfish-actions.pod:3795
14394 msgid ""
14395 "This is enabled by default (since libguestfs 1.5.24, previously it was "
14396 "disabled by default)."
14397 msgstr ""
14398
14399 #. type: =head2
14400 #: ../src/guestfs-actions.pod:5675
14401 msgid "guestfs_set_direct"
14402 msgstr ""
14403
14404 #. type: verbatim
14405 #: ../src/guestfs-actions.pod:5677
14406 #, no-wrap
14407 msgid ""
14408 " int\n"
14409 " guestfs_set_direct (guestfs_h *g,\n"
14410 "                     int direct);\n"
14411 "\n"
14412 msgstr ""
14413
14414 #. type: textblock
14415 #: ../src/guestfs-actions.pod:5681 ../fish/guestfish-actions.pod:3804
14416 msgid ""
14417 "If the direct appliance mode flag is enabled, then stdin and stdout are "
14418 "passed directly through to the appliance once it is launched."
14419 msgstr ""
14420
14421 #. type: textblock
14422 #: ../src/guestfs-actions.pod:5685
14423 msgid ""
14424 "One consequence of this is that log messages aren't caught by the library "
14425 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
14426 "stdout."
14427 msgstr ""
14428
14429 #. type: textblock
14430 #: ../src/guestfs-actions.pod:5689 ../fish/guestfish-actions.pod:3812
14431 msgid "You probably don't want to use this unless you know what you are doing."
14432 msgstr ""
14433
14434 #. type: textblock
14435 #: ../src/guestfs-actions.pod:5692 ../fish/guestfish-actions.pod:3815
14436 msgid "The default is disabled."
14437 msgstr ""
14438
14439 #. type: =head2
14440 #: ../src/guestfs-actions.pod:5698
14441 msgid "guestfs_set_e2label"
14442 msgstr ""
14443
14444 #. type: verbatim
14445 #: ../src/guestfs-actions.pod:5700
14446 #, no-wrap
14447 msgid ""
14448 " int\n"
14449 " guestfs_set_e2label (guestfs_h *g,\n"
14450 "                      const char *device,\n"
14451 "                      const char *label);\n"
14452 "\n"
14453 msgstr ""
14454
14455 #. type: textblock
14456 #: ../src/guestfs-actions.pod:5705 ../fish/guestfish-actions.pod:3821
14457 msgid ""
14458 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
14459 "C<label>.  Filesystem labels are limited to 16 characters."
14460 msgstr ""
14461
14462 #. type: textblock
14463 #: ../src/guestfs-actions.pod:5709
14464 msgid ""
14465 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
14466 "the existing label on a filesystem."
14467 msgstr ""
14468
14469 #. type: =head2
14470 #: ../src/guestfs-actions.pod:5716
14471 msgid "guestfs_set_e2uuid"
14472 msgstr ""
14473
14474 #. type: verbatim
14475 #: ../src/guestfs-actions.pod:5718
14476 #, no-wrap
14477 msgid ""
14478 " int\n"
14479 " guestfs_set_e2uuid (guestfs_h *g,\n"
14480 "                     const char *device,\n"
14481 "                     const char *uuid);\n"
14482 "\n"
14483 msgstr ""
14484
14485 #. type: textblock
14486 #: ../src/guestfs-actions.pod:5723 ../fish/guestfish-actions.pod:3832
14487 msgid ""
14488 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
14489 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
14490 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
14491 msgstr ""
14492
14493 #. type: textblock
14494 #: ../src/guestfs-actions.pod:5728
14495 msgid ""
14496 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
14497 "the existing UUID of a filesystem."
14498 msgstr ""
14499
14500 #. type: =head2
14501 #: ../src/guestfs-actions.pod:5735
14502 msgid "guestfs_set_memsize"
14503 msgstr ""
14504
14505 #. type: verbatim
14506 #: ../src/guestfs-actions.pod:5737
14507 #, no-wrap
14508 msgid ""
14509 " int\n"
14510 " guestfs_set_memsize (guestfs_h *g,\n"
14511 "                      int memsize);\n"
14512 "\n"
14513 msgstr ""
14514
14515 #. type: textblock
14516 #: ../src/guestfs-actions.pod:5741
14517 msgid ""
14518 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
14519 "This only has any effect if called before C<guestfs_launch>."
14520 msgstr ""
14521
14522 #. type: textblock
14523 #: ../src/guestfs-actions.pod:5745 ../fish/guestfish-actions.pod:3850
14524 msgid ""
14525 "You can also change this by setting the environment variable "
14526 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
14527 msgstr ""
14528
14529 #. type: =head2
14530 #: ../src/guestfs-actions.pod:5756
14531 msgid "guestfs_set_network"
14532 msgstr ""
14533
14534 #. type: verbatim
14535 #: ../src/guestfs-actions.pod:5758
14536 #, no-wrap
14537 msgid ""
14538 " int\n"
14539 " guestfs_set_network (guestfs_h *g,\n"
14540 "                      int network);\n"
14541 "\n"
14542 msgstr ""
14543
14544 #. type: textblock
14545 #: ../src/guestfs-actions.pod:5762 ../fish/guestfish-actions.pod:3863
14546 msgid ""
14547 "If C<network> is true, then the network is enabled in the libguestfs "
14548 "appliance.  The default is false."
14549 msgstr ""
14550
14551 #. type: textblock
14552 #: ../src/guestfs-actions.pod:5765 ../fish/guestfish-actions.pod:3866
14553 msgid ""
14554 "This affects whether commands are able to access the network (see "
14555 "L<guestfs(3)/RUNNING COMMANDS>)."
14556 msgstr ""
14557
14558 #. type: textblock
14559 #: ../src/guestfs-actions.pod:5768
14560 msgid ""
14561 "You must call this before calling C<guestfs_launch>, otherwise it has no "
14562 "effect."
14563 msgstr ""
14564
14565 #. type: =head2
14566 #: ../src/guestfs-actions.pod:5775
14567 msgid "guestfs_set_path"
14568 msgstr ""
14569
14570 #. type: verbatim
14571 #: ../src/guestfs-actions.pod:5777
14572 #, no-wrap
14573 msgid ""
14574 " int\n"
14575 " guestfs_set_path (guestfs_h *g,\n"
14576 "                   const char *searchpath);\n"
14577 "\n"
14578 msgstr ""
14579
14580 #. type: textblock
14581 #: ../src/guestfs-actions.pod:5781 ../fish/guestfish-actions.pod:3878
14582 msgid "Set the path that libguestfs searches for kernel and initrd.img."
14583 msgstr ""
14584
14585 #. type: textblock
14586 #: ../src/guestfs-actions.pod:5783 ../fish/guestfish-actions.pod:3880
14587 msgid ""
14588 "The default is C<$libdir/guestfs> unless overridden by setting "
14589 "C<LIBGUESTFS_PATH> environment variable."
14590 msgstr ""
14591
14592 #. type: textblock
14593 #: ../src/guestfs-actions.pod:5786 ../fish/guestfish-actions.pod:3883
14594 msgid "Setting C<path> to C<NULL> restores the default path."
14595 msgstr ""
14596
14597 #. type: =head2
14598 #: ../src/guestfs-actions.pod:5792
14599 msgid "guestfs_set_qemu"
14600 msgstr ""
14601
14602 #. type: verbatim
14603 #: ../src/guestfs-actions.pod:5794
14604 #, no-wrap
14605 msgid ""
14606 " int\n"
14607 " guestfs_set_qemu (guestfs_h *g,\n"
14608 "                   const char *qemu);\n"
14609 "\n"
14610 msgstr ""
14611
14612 #. type: textblock
14613 #: ../src/guestfs-actions.pod:5798 ../fish/guestfish-actions.pod:3891
14614 msgid "Set the qemu binary that we will use."
14615 msgstr ""
14616
14617 #. type: textblock
14618 #: ../src/guestfs-actions.pod:5800 ../fish/guestfish-actions.pod:3893
14619 msgid "The default is chosen when the library was compiled by the configure script."
14620 msgstr ""
14621
14622 #. type: textblock
14623 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3896
14624 msgid ""
14625 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
14626 "variable."
14627 msgstr ""
14628
14629 #. type: textblock
14630 #: ../src/guestfs-actions.pod:5806 ../fish/guestfish-actions.pod:3899
14631 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
14632 msgstr ""
14633
14634 #. type: textblock
14635 #: ../src/guestfs-actions.pod:5808 ../fish/guestfish-actions.pod:3901
14636 msgid ""
14637 "Note that you should call this function as early as possible after creating "
14638 "the handle.  This is because some pre-launch operations depend on testing "
14639 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
14640 "don't retest features, and so you might see inconsistent results.  Using the "
14641 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
14642 "the qemu binary at the same time as the handle is created."
14643 msgstr ""
14644
14645 #. type: =head2
14646 #: ../src/guestfs-actions.pod:5820
14647 msgid "guestfs_set_recovery_proc"
14648 msgstr ""
14649
14650 #. type: verbatim
14651 #: ../src/guestfs-actions.pod:5822
14652 #, no-wrap
14653 msgid ""
14654 " int\n"
14655 " guestfs_set_recovery_proc (guestfs_h *g,\n"
14656 "                            int recoveryproc);\n"
14657 "\n"
14658 msgstr ""
14659
14660 #. type: textblock
14661 #: ../src/guestfs-actions.pod:5826
14662 msgid ""
14663 "If this is called with the parameter C<false> then C<guestfs_launch> does "
14664 "not create a recovery process.  The purpose of the recovery process is to "
14665 "stop runaway qemu processes in the case where the main program aborts "
14666 "abruptly."
14667 msgstr ""
14668
14669 #. type: textblock
14670 #: ../src/guestfs-actions.pod:5831
14671 msgid ""
14672 "This only has any effect if called before C<guestfs_launch>, and the default "
14673 "is true."
14674 msgstr ""
14675
14676 #. type: textblock
14677 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3923
14678 msgid ""
14679 "About the only time when you would want to disable this is if the main "
14680 "process will fork itself into the background (\"daemonize\" itself).  In "
14681 "this case the recovery process thinks that the main program has disappeared "
14682 "and so kills qemu, which is not very helpful."
14683 msgstr ""
14684
14685 #. type: =head2
14686 #: ../src/guestfs-actions.pod:5844
14687 msgid "guestfs_set_selinux"
14688 msgstr ""
14689
14690 #. type: verbatim
14691 #: ../src/guestfs-actions.pod:5846
14692 #, no-wrap
14693 msgid ""
14694 " int\n"
14695 " guestfs_set_selinux (guestfs_h *g,\n"
14696 "                      int selinux);\n"
14697 "\n"
14698 msgstr ""
14699
14700 #. type: textblock
14701 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3935
14702 msgid ""
14703 "This sets the selinux flag that is passed to the appliance at boot time.  "
14704 "The default is C<selinux=0> (disabled)."
14705 msgstr ""
14706
14707 #. type: textblock
14708 #: ../src/guestfs-actions.pod:5853 ../fish/guestfish-actions.pod:3938
14709 msgid ""
14710 "Note that if SELinux is enabled, it is always in Permissive mode "
14711 "(C<enforcing=0>)."
14712 msgstr ""
14713
14714 #. type: =head2
14715 #: ../src/guestfs-actions.pod:5863
14716 msgid "guestfs_set_trace"
14717 msgstr ""
14718
14719 #. type: verbatim
14720 #: ../src/guestfs-actions.pod:5865
14721 #, no-wrap
14722 msgid ""
14723 " int\n"
14724 " guestfs_set_trace (guestfs_h *g,\n"
14725 "                    int trace);\n"
14726 "\n"
14727 msgstr ""
14728
14729 #. type: textblock
14730 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3950
14731 msgid ""
14732 "If the command trace flag is set to 1, then commands are printed on stderr "
14733 "before they are executed in a format which is very similar to the one used "
14734 "by guestfish.  In other words, you can run a program with this enabled, and "
14735 "you will get out a script which you can feed to guestfish to perform the "
14736 "same set of actions."
14737 msgstr ""
14738
14739 #. type: textblock
14740 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3957
14741 msgid ""
14742 "If you want to trace C API calls into libguestfs (and other libraries) then "
14743 "possibly a better way is to use the external ltrace(1) command."
14744 msgstr ""
14745
14746 #. type: textblock
14747 #: ../src/guestfs-actions.pod:5880 ../fish/guestfish-actions.pod:3961
14748 msgid ""
14749 "Command traces are disabled unless the environment variable "
14750 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
14751 msgstr ""
14752
14753 #. type: =head2
14754 #: ../src/guestfs-actions.pod:5887
14755 msgid "guestfs_set_verbose"
14756 msgstr ""
14757
14758 #. type: verbatim
14759 #: ../src/guestfs-actions.pod:5889
14760 #, no-wrap
14761 msgid ""
14762 " int\n"
14763 " guestfs_set_verbose (guestfs_h *g,\n"
14764 "                      int verbose);\n"
14765 "\n"
14766 msgstr ""
14767
14768 #. type: textblock
14769 #: ../src/guestfs-actions.pod:5893 ../fish/guestfish-actions.pod:3970
14770 msgid "If C<verbose> is true, this turns on verbose messages (to C<stderr>)."
14771 msgstr ""
14772
14773 #. type: textblock
14774 #: ../src/guestfs-actions.pod:5895 ../fish/guestfish-actions.pod:3972
14775 msgid ""
14776 "Verbose messages are disabled unless the environment variable "
14777 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
14778 msgstr ""
14779
14780 #. type: =head2
14781 #: ../src/guestfs-actions.pod:5902
14782 msgid "guestfs_setcon"
14783 msgstr ""
14784
14785 #. type: verbatim
14786 #: ../src/guestfs-actions.pod:5904
14787 #, no-wrap
14788 msgid ""
14789 " int\n"
14790 " guestfs_setcon (guestfs_h *g,\n"
14791 "                 const char *context);\n"
14792 "\n"
14793 msgstr ""
14794
14795 #. type: textblock
14796 #: ../src/guestfs-actions.pod:5908 ../fish/guestfish-actions.pod:3979
14797 msgid ""
14798 "This sets the SELinux security context of the daemon to the string "
14799 "C<context>."
14800 msgstr ""
14801
14802 #. type: textblock
14803 #: ../src/guestfs-actions.pod:5911 ../fish/guestfish-actions.pod:3982
14804 msgid "See the documentation about SELINUX in L<guestfs(3)>."
14805 msgstr ""
14806
14807 #. type: =head2
14808 #: ../src/guestfs-actions.pod:5917
14809 msgid "guestfs_setxattr"
14810 msgstr ""
14811
14812 #. type: verbatim
14813 #: ../src/guestfs-actions.pod:5919
14814 #, no-wrap
14815 msgid ""
14816 " int\n"
14817 " guestfs_setxattr (guestfs_h *g,\n"
14818 "                   const char *xattr,\n"
14819 "                   const char *val,\n"
14820 "                   int vallen,\n"
14821 "                   const char *path);\n"
14822 "\n"
14823 msgstr ""
14824
14825 #. type: textblock
14826 #: ../src/guestfs-actions.pod:5926 ../fish/guestfish-actions.pod:3988
14827 msgid ""
14828 "This call sets the extended attribute named C<xattr> of the file C<path> to "
14829 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
14830 msgstr ""
14831
14832 #. type: textblock
14833 #: ../src/guestfs-actions.pod:5930
14834 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
14835 msgstr ""
14836
14837 #. type: =head2
14838 #: ../src/guestfs-actions.pod:5936
14839 msgid "guestfs_sfdisk"
14840 msgstr ""
14841
14842 #. type: verbatim
14843 #: ../src/guestfs-actions.pod:5938
14844 #, no-wrap
14845 msgid ""
14846 " int\n"
14847 " guestfs_sfdisk (guestfs_h *g,\n"
14848 "                 const char *device,\n"
14849 "                 int cyls,\n"
14850 "                 int heads,\n"
14851 "                 int sectors,\n"
14852 "                 char *const *lines);\n"
14853 "\n"
14854 msgstr ""
14855
14856 #. type: textblock
14857 #: ../src/guestfs-actions.pod:5946 ../fish/guestfish-actions.pod:3998
14858 msgid ""
14859 "This is a direct interface to the L<sfdisk(8)> program for creating "
14860 "partitions on block devices."
14861 msgstr ""
14862
14863 #. type: textblock
14864 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4001
14865 msgid "C<device> should be a block device, for example C</dev/sda>."
14866 msgstr ""
14867
14868 #. type: textblock
14869 #: ../src/guestfs-actions.pod:5951 ../fish/guestfish-actions.pod:4003
14870 msgid ""
14871 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
14872 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
14873 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
14874 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
14875 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
14876 "the kernel) cannot work out the right geometry and you will need to tell it."
14877 msgstr ""
14878
14879 #. type: textblock
14880 #: ../src/guestfs-actions.pod:5959 ../fish/guestfish-actions.pod:4011
14881 msgid ""
14882 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
14883 "refer to the L<sfdisk(8)> manpage."
14884 msgstr ""
14885
14886 #. type: textblock
14887 #: ../src/guestfs-actions.pod:5962 ../fish/guestfish-actions.pod:4014
14888 msgid ""
14889 "To create a single partition occupying the whole disk, you would pass "
14890 "C<lines> as a single element list, when the single element being the string "
14891 "C<,> (comma)."
14892 msgstr ""
14893
14894 #. type: textblock
14895 #: ../src/guestfs-actions.pod:5966
14896 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
14897 msgstr ""
14898
14899 #. type: =head2
14900 #: ../src/guestfs-actions.pod:5976
14901 msgid "guestfs_sfdiskM"
14902 msgstr ""
14903
14904 #. type: verbatim
14905 #: ../src/guestfs-actions.pod:5978
14906 #, no-wrap
14907 msgid ""
14908 " int\n"
14909 " guestfs_sfdiskM (guestfs_h *g,\n"
14910 "                  const char *device,\n"
14911 "                  char *const *lines);\n"
14912 "\n"
14913 msgstr ""
14914
14915 #. type: textblock
14916 #: ../src/guestfs-actions.pod:5983
14917 msgid ""
14918 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
14919 "partition sizes are specified in megabytes only (rounded to the nearest "
14920 "cylinder) and you don't need to specify the cyls, heads and sectors "
14921 "parameters which were rarely if ever used anyway."
14922 msgstr ""
14923
14924 #. type: textblock
14925 #: ../src/guestfs-actions.pod:5989
14926 msgid ""
14927 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
14928 "C<guestfs_part_disk>"
14929 msgstr ""
14930
14931 #. type: =head2
14932 #: ../src/guestfs-actions.pod:5999
14933 msgid "guestfs_sfdisk_N"
14934 msgstr ""
14935
14936 #. type: verbatim
14937 #: ../src/guestfs-actions.pod:6001
14938 #, no-wrap
14939 msgid ""
14940 " int\n"
14941 " guestfs_sfdisk_N (guestfs_h *g,\n"
14942 "                   const char *device,\n"
14943 "                   int partnum,\n"
14944 "                   int cyls,\n"
14945 "                   int heads,\n"
14946 "                   int sectors,\n"
14947 "                   const char *line);\n"
14948 "\n"
14949 msgstr ""
14950
14951 #. type: textblock
14952 #: ../src/guestfs-actions.pod:6010 ../fish/guestfish-actions.pod:4044
14953 msgid ""
14954 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
14955 "(note: C<n> counts from 1)."
14956 msgstr ""
14957
14958 #. type: textblock
14959 #: ../src/guestfs-actions.pod:6013
14960 msgid ""
14961 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
14962 "for the cyls/heads/sectors parameters."
14963 msgstr ""
14964
14965 #. type: textblock
14966 #: ../src/guestfs-actions.pod:6016
14967 msgid "See also: C<guestfs_part_add>"
14968 msgstr ""
14969
14970 #. type: =head2
14971 #: ../src/guestfs-actions.pod:6025
14972 msgid "guestfs_sfdisk_disk_geometry"
14973 msgstr ""
14974
14975 #. type: verbatim
14976 #: ../src/guestfs-actions.pod:6027
14977 #, no-wrap
14978 msgid ""
14979 " char *\n"
14980 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
14981 "                               const char *device);\n"
14982 "\n"
14983 msgstr ""
14984
14985 #. type: textblock
14986 #: ../src/guestfs-actions.pod:6031
14987 msgid ""
14988 "This displays the disk geometry of C<device> read from the partition table.  "
14989 "Especially in the case where the underlying block device has been resized, "
14990 "this can be different from the kernel's idea of the geometry (see "
14991 "C<guestfs_sfdisk_kernel_geometry>)."
14992 msgstr ""
14993
14994 #. type: textblock
14995 #: ../src/guestfs-actions.pod:6036 ../src/guestfs-actions.pod:6052 ../fish/guestfish-actions.pod:4064 ../fish/guestfish-actions.pod:4073
14996 msgid "The result is in human-readable format, and not designed to be parsed."
14997 msgstr ""
14998
14999 #. type: =head2
15000 #: ../src/guestfs-actions.pod:6044
15001 msgid "guestfs_sfdisk_kernel_geometry"
15002 msgstr ""
15003
15004 #. type: verbatim
15005 #: ../src/guestfs-actions.pod:6046
15006 #, no-wrap
15007 msgid ""
15008 " char *\n"
15009 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
15010 "                                 const char *device);\n"
15011 "\n"
15012 msgstr ""
15013
15014 #. type: textblock
15015 #: ../src/guestfs-actions.pod:6050 ../fish/guestfish-actions.pod:4071
15016 msgid "This displays the kernel's idea of the geometry of C<device>."
15017 msgstr ""
15018
15019 #. type: =head2
15020 #: ../src/guestfs-actions.pod:6060
15021 msgid "guestfs_sfdisk_l"
15022 msgstr ""
15023
15024 #. type: verbatim
15025 #: ../src/guestfs-actions.pod:6062
15026 #, no-wrap
15027 msgid ""
15028 " char *\n"
15029 " guestfs_sfdisk_l (guestfs_h *g,\n"
15030 "                   const char *device);\n"
15031 "\n"
15032 msgstr ""
15033
15034 #. type: textblock
15035 #: ../src/guestfs-actions.pod:6066 ../fish/guestfish-actions.pod:4080
15036 msgid ""
15037 "This displays the partition table on C<device>, in the human-readable output "
15038 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
15039 msgstr ""
15040
15041 #. type: textblock
15042 #: ../src/guestfs-actions.pod:6070
15043 msgid "See also: C<guestfs_part_list>"
15044 msgstr ""
15045
15046 #. type: =head2
15047 #: ../src/guestfs-actions.pod:6077
15048 msgid "guestfs_sh"
15049 msgstr ""
15050
15051 #. type: verbatim
15052 #: ../src/guestfs-actions.pod:6079
15053 #, no-wrap
15054 msgid ""
15055 " char *\n"
15056 " guestfs_sh (guestfs_h *g,\n"
15057 "             const char *command);\n"
15058 "\n"
15059 msgstr ""
15060
15061 #. type: textblock
15062 #: ../src/guestfs-actions.pod:6083 ../fish/guestfish-actions.pod:4090
15063 msgid ""
15064 "This call runs a command from the guest filesystem via the guest's "
15065 "C</bin/sh>."
15066 msgstr ""
15067
15068 #. type: textblock
15069 #: ../src/guestfs-actions.pod:6086
15070 msgid "This is like C<guestfs_command>, but passes the command to:"
15071 msgstr ""
15072
15073 #. type: verbatim
15074 #: ../src/guestfs-actions.pod:6088 ../fish/guestfish-actions.pod:4095
15075 #, no-wrap
15076 msgid ""
15077 " /bin/sh -c \"command\"\n"
15078 "\n"
15079 msgstr ""
15080
15081 #. type: textblock
15082 #: ../src/guestfs-actions.pod:6090 ../fish/guestfish-actions.pod:4097
15083 msgid ""
15084 "Depending on the guest's shell, this usually results in wildcards being "
15085 "expanded, shell expressions being interpolated and so on."
15086 msgstr ""
15087
15088 #. type: textblock
15089 #: ../src/guestfs-actions.pod:6094
15090 msgid "All the provisos about C<guestfs_command> apply to this call."
15091 msgstr ""
15092
15093 #. type: =head2
15094 #: ../src/guestfs-actions.pod:6101
15095 msgid "guestfs_sh_lines"
15096 msgstr ""
15097
15098 #. type: verbatim
15099 #: ../src/guestfs-actions.pod:6103
15100 #, no-wrap
15101 msgid ""
15102 " char **\n"
15103 " guestfs_sh_lines (guestfs_h *g,\n"
15104 "                   const char *command);\n"
15105 "\n"
15106 msgstr ""
15107
15108 #. type: textblock
15109 #: ../src/guestfs-actions.pod:6107
15110 msgid ""
15111 "This is the same as C<guestfs_sh>, but splits the result into a list of "
15112 "lines."
15113 msgstr ""
15114
15115 #. type: textblock
15116 #: ../src/guestfs-actions.pod:6110
15117 msgid "See also: C<guestfs_command_lines>"
15118 msgstr ""
15119
15120 #. type: =head2
15121 #: ../src/guestfs-actions.pod:6118
15122 msgid "guestfs_sleep"
15123 msgstr ""
15124
15125 #. type: verbatim
15126 #: ../src/guestfs-actions.pod:6120
15127 #, no-wrap
15128 msgid ""
15129 " int\n"
15130 " guestfs_sleep (guestfs_h *g,\n"
15131 "                int secs);\n"
15132 "\n"
15133 msgstr ""
15134
15135 #. type: textblock
15136 #: ../src/guestfs-actions.pod:6124 ../fish/guestfish-actions.pod:4116
15137 msgid "Sleep for C<secs> seconds."
15138 msgstr ""
15139
15140 #. type: textblock
15141 #: ../src/guestfs-actions.pod:6128
15142 msgid "(Added in 1.0.41)"
15143 msgstr ""
15144
15145 #. type: =head2
15146 #: ../src/guestfs-actions.pod:6130 ../src/guestfs-structs.pod:109
15147 msgid "guestfs_stat"
15148 msgstr ""
15149
15150 #. type: verbatim
15151 #: ../src/guestfs-actions.pod:6132
15152 #, no-wrap
15153 msgid ""
15154 " struct guestfs_stat *\n"
15155 " guestfs_stat (guestfs_h *g,\n"
15156 "               const char *path);\n"
15157 "\n"
15158 msgstr ""
15159
15160 #. type: textblock
15161 #: ../src/guestfs-actions.pod:6138 ../fish/guestfish-actions.pod:4124
15162 msgid "This is the same as the C<stat(2)> system call."
15163 msgstr ""
15164
15165 #. type: =head2
15166 #: ../src/guestfs-actions.pod:6146 ../src/guestfs-structs.pod:135
15167 msgid "guestfs_statvfs"
15168 msgstr ""
15169
15170 #. type: verbatim
15171 #: ../src/guestfs-actions.pod:6148
15172 #, no-wrap
15173 msgid ""
15174 " struct guestfs_statvfs *\n"
15175 " guestfs_statvfs (guestfs_h *g,\n"
15176 "                  const char *path);\n"
15177 "\n"
15178 msgstr ""
15179
15180 #. type: textblock
15181 #: ../src/guestfs-actions.pod:6152 ../fish/guestfish-actions.pod:4130
15182 msgid ""
15183 "Returns file system statistics for any mounted file system.  C<path> should "
15184 "be a file or directory in the mounted file system (typically it is the mount "
15185 "point itself, but it doesn't need to be)."
15186 msgstr ""
15187
15188 #. type: textblock
15189 #: ../src/guestfs-actions.pod:6156 ../fish/guestfish-actions.pod:4134
15190 msgid "This is the same as the C<statvfs(2)> system call."
15191 msgstr ""
15192
15193 #. type: textblock
15194 #: ../src/guestfs-actions.pod:6158
15195 msgid ""
15196 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
15197 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
15198 msgstr ""
15199
15200 #. type: =head2
15201 #: ../src/guestfs-actions.pod:6164
15202 msgid "guestfs_strings"
15203 msgstr ""
15204
15205 #. type: verbatim
15206 #: ../src/guestfs-actions.pod:6166
15207 #, no-wrap
15208 msgid ""
15209 " char **\n"
15210 " guestfs_strings (guestfs_h *g,\n"
15211 "                  const char *path);\n"
15212 "\n"
15213 msgstr ""
15214
15215 #. type: textblock
15216 #: ../src/guestfs-actions.pod:6170 ../fish/guestfish-actions.pod:4140
15217 msgid ""
15218 "This runs the L<strings(1)> command on a file and returns the list of "
15219 "printable strings found."
15220 msgstr ""
15221
15222 #. type: =head2
15223 #: ../src/guestfs-actions.pod:6182
15224 msgid "guestfs_strings_e"
15225 msgstr ""
15226
15227 #. type: verbatim
15228 #: ../src/guestfs-actions.pod:6184
15229 #, no-wrap
15230 msgid ""
15231 " char **\n"
15232 " guestfs_strings_e (guestfs_h *g,\n"
15233 "                    const char *encoding,\n"
15234 "                    const char *path);\n"
15235 "\n"
15236 msgstr ""
15237
15238 #. type: textblock
15239 #: ../src/guestfs-actions.pod:6189
15240 msgid ""
15241 "This is like the C<guestfs_strings> command, but allows you to specify the "
15242 "encoding of strings that are looked for in the source file C<path>."
15243 msgstr ""
15244
15245 #. type: textblock
15246 #: ../src/guestfs-actions.pod:6193 ../fish/guestfish-actions.pod:4154
15247 msgid "Allowed encodings are:"
15248 msgstr ""
15249
15250 #. type: =item
15251 #: ../src/guestfs-actions.pod:6197 ../fish/guestfish-actions.pod:4158
15252 msgid "s"
15253 msgstr ""
15254
15255 #. type: textblock
15256 #: ../src/guestfs-actions.pod:6199
15257 msgid ""
15258 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
15259 "ISO-8859-X (this is what C<guestfs_strings> uses)."
15260 msgstr ""
15261
15262 #. type: =item
15263 #: ../src/guestfs-actions.pod:6202 ../fish/guestfish-actions.pod:4163
15264 msgid "S"
15265 msgstr ""
15266
15267 #. type: textblock
15268 #: ../src/guestfs-actions.pod:6204 ../fish/guestfish-actions.pod:4165
15269 msgid "Single 8-bit-byte characters."
15270 msgstr ""
15271
15272 #. type: =item
15273 #: ../src/guestfs-actions.pod:6206 ../fish/guestfish-actions.pod:4167
15274 msgid "b"
15275 msgstr ""
15276
15277 #. type: textblock
15278 #: ../src/guestfs-actions.pod:6208 ../fish/guestfish-actions.pod:4169
15279 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
15280 msgstr ""
15281
15282 #. type: =item
15283 #: ../src/guestfs-actions.pod:6211 ../fish/guestfish-actions.pod:4172
15284 msgid "l (lower case letter L)"
15285 msgstr ""
15286
15287 #. type: textblock
15288 #: ../src/guestfs-actions.pod:6213 ../fish/guestfish-actions.pod:4174
15289 msgid ""
15290 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
15291 "examining binaries in Windows guests."
15292 msgstr ""
15293
15294 #. type: =item
15295 #: ../src/guestfs-actions.pod:6216 ../fish/guestfish-actions.pod:4177
15296 msgid "B"
15297 msgstr ""
15298
15299 #. type: textblock
15300 #: ../src/guestfs-actions.pod:6218 ../fish/guestfish-actions.pod:4179
15301 msgid "32-bit big endian such as UCS-4BE."
15302 msgstr ""
15303
15304 #. type: =item
15305 #: ../src/guestfs-actions.pod:6220 ../fish/guestfish-actions.pod:4181
15306 msgid "L"
15307 msgstr ""
15308
15309 #. type: textblock
15310 #: ../src/guestfs-actions.pod:6222 ../fish/guestfish-actions.pod:4183
15311 msgid "32-bit little endian such as UCS-4LE."
15312 msgstr ""
15313
15314 #. type: textblock
15315 #: ../src/guestfs-actions.pod:6226 ../fish/guestfish-actions.pod:4187
15316 msgid "The returned strings are transcoded to UTF-8."
15317 msgstr ""
15318
15319 #. type: =head2
15320 #: ../src/guestfs-actions.pod:6237
15321 msgid "guestfs_swapoff_device"
15322 msgstr ""
15323
15324 #. type: verbatim
15325 #: ../src/guestfs-actions.pod:6239
15326 #, no-wrap
15327 msgid ""
15328 " int\n"
15329 " guestfs_swapoff_device (guestfs_h *g,\n"
15330 "                         const char *device);\n"
15331 "\n"
15332 msgstr ""
15333
15334 #. type: textblock
15335 #: ../src/guestfs-actions.pod:6243
15336 msgid ""
15337 "This command disables the libguestfs appliance swap device or partition "
15338 "named C<device>.  See C<guestfs_swapon_device>."
15339 msgstr ""
15340
15341 #. type: =head2
15342 #: ../src/guestfs-actions.pod:6251
15343 msgid "guestfs_swapoff_file"
15344 msgstr ""
15345
15346 #. type: verbatim
15347 #: ../src/guestfs-actions.pod:6253
15348 #, no-wrap
15349 msgid ""
15350 " int\n"
15351 " guestfs_swapoff_file (guestfs_h *g,\n"
15352 "                       const char *file);\n"
15353 "\n"
15354 msgstr ""
15355
15356 #. type: textblock
15357 #: ../src/guestfs-actions.pod:6257 ../fish/guestfish-actions.pod:4204
15358 msgid "This command disables the libguestfs appliance swap on file."
15359 msgstr ""
15360
15361 #. type: =head2
15362 #: ../src/guestfs-actions.pod:6263
15363 msgid "guestfs_swapoff_label"
15364 msgstr ""
15365
15366 #. type: verbatim
15367 #: ../src/guestfs-actions.pod:6265
15368 #, no-wrap
15369 msgid ""
15370 " int\n"
15371 " guestfs_swapoff_label (guestfs_h *g,\n"
15372 "                        const char *label);\n"
15373 "\n"
15374 msgstr ""
15375
15376 #. type: textblock
15377 #: ../src/guestfs-actions.pod:6269 ../fish/guestfish-actions.pod:4210
15378 msgid ""
15379 "This command disables the libguestfs appliance swap on labeled swap "
15380 "partition."
15381 msgstr ""
15382
15383 #. type: =head2
15384 #: ../src/guestfs-actions.pod:6276
15385 msgid "guestfs_swapoff_uuid"
15386 msgstr ""
15387
15388 #. type: verbatim
15389 #: ../src/guestfs-actions.pod:6278
15390 #, no-wrap
15391 msgid ""
15392 " int\n"
15393 " guestfs_swapoff_uuid (guestfs_h *g,\n"
15394 "                       const char *uuid);\n"
15395 "\n"
15396 msgstr ""
15397
15398 #. type: textblock
15399 #: ../src/guestfs-actions.pod:6282 ../fish/guestfish-actions.pod:4217
15400 msgid ""
15401 "This command disables the libguestfs appliance swap partition with the given "
15402 "UUID."
15403 msgstr ""
15404
15405 #. type: =head2
15406 #: ../src/guestfs-actions.pod:6289
15407 msgid "guestfs_swapon_device"
15408 msgstr ""
15409
15410 #. type: verbatim
15411 #: ../src/guestfs-actions.pod:6291
15412 #, no-wrap
15413 msgid ""
15414 " int\n"
15415 " guestfs_swapon_device (guestfs_h *g,\n"
15416 "                        const char *device);\n"
15417 "\n"
15418 msgstr ""
15419
15420 #. type: textblock
15421 #: ../src/guestfs-actions.pod:6295
15422 msgid ""
15423 "This command enables the libguestfs appliance to use the swap device or "
15424 "partition named C<device>.  The increased memory is made available for all "
15425 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
15426 msgstr ""
15427
15428 #. type: textblock
15429 #: ../src/guestfs-actions.pod:6300 ../fish/guestfish-actions.pod:4229
15430 msgid ""
15431 "Note that you should not swap to existing guest swap partitions unless you "
15432 "know what you are doing.  They may contain hibernation information, or other "
15433 "information that the guest doesn't want you to trash.  You also risk leaking "
15434 "information about the host to the guest this way.  Instead, attach a new "
15435 "host device to the guest and swap on that."
15436 msgstr ""
15437
15438 #. type: =head2
15439 #: ../src/guestfs-actions.pod:6311
15440 msgid "guestfs_swapon_file"
15441 msgstr ""
15442
15443 #. type: verbatim
15444 #: ../src/guestfs-actions.pod:6313
15445 #, no-wrap
15446 msgid ""
15447 " int\n"
15448 " guestfs_swapon_file (guestfs_h *g,\n"
15449 "                      const char *file);\n"
15450 "\n"
15451 msgstr ""
15452
15453 #. type: textblock
15454 #: ../src/guestfs-actions.pod:6317
15455 msgid ""
15456 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
15457 "notes."
15458 msgstr ""
15459
15460 #. type: =head2
15461 #: ../src/guestfs-actions.pod:6324
15462 msgid "guestfs_swapon_label"
15463 msgstr ""
15464
15465 #. type: verbatim
15466 #: ../src/guestfs-actions.pod:6326
15467 #, no-wrap
15468 msgid ""
15469 " int\n"
15470 " guestfs_swapon_label (guestfs_h *g,\n"
15471 "                       const char *label);\n"
15472 "\n"
15473 msgstr ""
15474
15475 #. type: textblock
15476 #: ../src/guestfs-actions.pod:6330
15477 msgid ""
15478 "This command enables swap to a labeled swap partition.  See "
15479 "C<guestfs_swapon_device> for other notes."
15480 msgstr ""
15481
15482 #. type: =head2
15483 #: ../src/guestfs-actions.pod:6337
15484 msgid "guestfs_swapon_uuid"
15485 msgstr ""
15486
15487 #. type: verbatim
15488 #: ../src/guestfs-actions.pod:6339
15489 #, no-wrap
15490 msgid ""
15491 " int\n"
15492 " guestfs_swapon_uuid (guestfs_h *g,\n"
15493 "                      const char *uuid);\n"
15494 "\n"
15495 msgstr ""
15496
15497 #. type: textblock
15498 #: ../src/guestfs-actions.pod:6343
15499 msgid ""
15500 "This command enables swap to a swap partition with the given UUID.  See "
15501 "C<guestfs_swapon_device> for other notes."
15502 msgstr ""
15503
15504 #. type: =head2
15505 #: ../src/guestfs-actions.pod:6350
15506 msgid "guestfs_sync"
15507 msgstr ""
15508
15509 #. type: verbatim
15510 #: ../src/guestfs-actions.pod:6352
15511 #, no-wrap
15512 msgid ""
15513 " int\n"
15514 " guestfs_sync (guestfs_h *g);\n"
15515 "\n"
15516 msgstr ""
15517
15518 #. type: textblock
15519 #: ../src/guestfs-actions.pod:6355 ../fish/guestfish-actions.pod:4261
15520 msgid ""
15521 "This syncs the disk, so that any writes are flushed through to the "
15522 "underlying disk image."
15523 msgstr ""
15524
15525 #. type: textblock
15526 #: ../src/guestfs-actions.pod:6358 ../fish/guestfish-actions.pod:4264
15527 msgid ""
15528 "You should always call this if you have modified a disk image, before "
15529 "closing the handle."
15530 msgstr ""
15531
15532 #. type: =head2
15533 #: ../src/guestfs-actions.pod:6365
15534 msgid "guestfs_tail"
15535 msgstr ""
15536
15537 #. type: verbatim
15538 #: ../src/guestfs-actions.pod:6367
15539 #, no-wrap
15540 msgid ""
15541 " char **\n"
15542 " guestfs_tail (guestfs_h *g,\n"
15543 "               const char *path);\n"
15544 "\n"
15545 msgstr ""
15546
15547 #. type: textblock
15548 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4271
15549 msgid "This command returns up to the last 10 lines of a file as a list of strings."
15550 msgstr ""
15551
15552 #. type: =head2
15553 #: ../src/guestfs-actions.pod:6383
15554 msgid "guestfs_tail_n"
15555 msgstr ""
15556
15557 #. type: verbatim
15558 #: ../src/guestfs-actions.pod:6385
15559 #, no-wrap
15560 msgid ""
15561 " char **\n"
15562 " guestfs_tail_n (guestfs_h *g,\n"
15563 "                 int nrlines,\n"
15564 "                 const char *path);\n"
15565 "\n"
15566 msgstr ""
15567
15568 #. type: textblock
15569 #: ../src/guestfs-actions.pod:6390 ../fish/guestfish-actions.pod:4281
15570 msgid ""
15571 "If the parameter C<nrlines> is a positive number, this returns the last "
15572 "C<nrlines> lines of the file C<path>."
15573 msgstr ""
15574
15575 #. type: textblock
15576 #: ../src/guestfs-actions.pod:6393 ../fish/guestfish-actions.pod:4284
15577 msgid ""
15578 "If the parameter C<nrlines> is a negative number, this returns lines from "
15579 "the file C<path>, starting with the C<-nrlines>th line."
15580 msgstr ""
15581
15582 #. type: =head2
15583 #: ../src/guestfs-actions.pod:6407
15584 msgid "guestfs_tar_in"
15585 msgstr ""
15586
15587 #. type: verbatim
15588 #: ../src/guestfs-actions.pod:6409
15589 #, no-wrap
15590 msgid ""
15591 " int\n"
15592 " guestfs_tar_in (guestfs_h *g,\n"
15593 "                 const char *tarfile,\n"
15594 "                 const char *directory);\n"
15595 "\n"
15596 msgstr ""
15597
15598 #. type: textblock
15599 #: ../src/guestfs-actions.pod:6414 ../fish/guestfish-actions.pod:4296
15600 msgid ""
15601 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
15602 "tar file) into C<directory>."
15603 msgstr ""
15604
15605 #. type: textblock
15606 #: ../src/guestfs-actions.pod:6417
15607 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
15608 msgstr ""
15609
15610 #. type: textblock
15611 #: ../src/guestfs-actions.pod:6422 ../src/guestfs-actions.pod:6439 ../src/guestfs-actions.pod:6455 ../src/guestfs-actions.pod:6471
15612 msgid "(Added in 1.0.3)"
15613 msgstr ""
15614
15615 #. type: =head2
15616 #: ../src/guestfs-actions.pod:6424
15617 msgid "guestfs_tar_out"
15618 msgstr ""
15619
15620 #. type: verbatim
15621 #: ../src/guestfs-actions.pod:6426
15622 #, no-wrap
15623 msgid ""
15624 " int\n"
15625 " guestfs_tar_out (guestfs_h *g,\n"
15626 "                  const char *directory,\n"
15627 "                  const char *tarfile);\n"
15628 "\n"
15629 msgstr ""
15630
15631 #. type: textblock
15632 #: ../src/guestfs-actions.pod:6431 ../fish/guestfish-actions.pod:4308
15633 msgid ""
15634 "This command packs the contents of C<directory> and downloads it to local "
15635 "file C<tarfile>."
15636 msgstr ""
15637
15638 #. type: textblock
15639 #: ../src/guestfs-actions.pod:6434
15640 msgid ""
15641 "To download a compressed tarball, use C<guestfs_tgz_out> or "
15642 "C<guestfs_txz_out>."
15643 msgstr ""
15644
15645 #. type: =head2
15646 #: ../src/guestfs-actions.pod:6441
15647 msgid "guestfs_tgz_in"
15648 msgstr ""
15649
15650 #. type: verbatim
15651 #: ../src/guestfs-actions.pod:6443
15652 #, no-wrap
15653 msgid ""
15654 " int\n"
15655 " guestfs_tgz_in (guestfs_h *g,\n"
15656 "                 const char *tarball,\n"
15657 "                 const char *directory);\n"
15658 "\n"
15659 msgstr ""
15660
15661 #. type: textblock
15662 #: ../src/guestfs-actions.pod:6448 ../fish/guestfish-actions.pod:4320
15663 msgid ""
15664 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
15665 "tar file) into C<directory>."
15666 msgstr ""
15667
15668 #. type: textblock
15669 #: ../src/guestfs-actions.pod:6451
15670 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
15671 msgstr ""
15672
15673 #. type: =head2
15674 #: ../src/guestfs-actions.pod:6457
15675 msgid "guestfs_tgz_out"
15676 msgstr ""
15677
15678 #. type: verbatim
15679 #: ../src/guestfs-actions.pod:6459
15680 #, no-wrap
15681 msgid ""
15682 " int\n"
15683 " guestfs_tgz_out (guestfs_h *g,\n"
15684 "                  const char *directory,\n"
15685 "                  const char *tarball);\n"
15686 "\n"
15687 msgstr ""
15688
15689 #. type: textblock
15690 #: ../src/guestfs-actions.pod:6464 ../fish/guestfish-actions.pod:4331
15691 msgid ""
15692 "This command packs the contents of C<directory> and downloads it to local "
15693 "file C<tarball>."
15694 msgstr ""
15695
15696 #. type: textblock
15697 #: ../src/guestfs-actions.pod:6467
15698 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
15699 msgstr ""
15700
15701 #. type: =head2
15702 #: ../src/guestfs-actions.pod:6473
15703 msgid "guestfs_touch"
15704 msgstr ""
15705
15706 #. type: verbatim
15707 #: ../src/guestfs-actions.pod:6475
15708 #, no-wrap
15709 msgid ""
15710 " int\n"
15711 " guestfs_touch (guestfs_h *g,\n"
15712 "                const char *path);\n"
15713 "\n"
15714 msgstr ""
15715
15716 #. type: textblock
15717 #: ../src/guestfs-actions.pod:6479 ../fish/guestfish-actions.pod:4342
15718 msgid ""
15719 "Touch acts like the L<touch(1)> command.  It can be used to update the "
15720 "timestamps on a file, or, if the file does not exist, to create a new "
15721 "zero-length file."
15722 msgstr ""
15723
15724 #. type: textblock
15725 #: ../src/guestfs-actions.pod:6483 ../fish/guestfish-actions.pod:4346
15726 msgid ""
15727 "This command only works on regular files, and will fail on other file types "
15728 "such as directories, symbolic links, block special etc."
15729 msgstr ""
15730
15731 #. type: =head2
15732 #: ../src/guestfs-actions.pod:6490
15733 msgid "guestfs_truncate"
15734 msgstr ""
15735
15736 #. type: verbatim
15737 #: ../src/guestfs-actions.pod:6492
15738 #, no-wrap
15739 msgid ""
15740 " int\n"
15741 " guestfs_truncate (guestfs_h *g,\n"
15742 "                   const char *path);\n"
15743 "\n"
15744 msgstr ""
15745
15746 #. type: textblock
15747 #: ../src/guestfs-actions.pod:6496 ../fish/guestfish-actions.pod:4353
15748 msgid ""
15749 "This command truncates C<path> to a zero-length file.  The file must exist "
15750 "already."
15751 msgstr ""
15752
15753 #. type: =head2
15754 #: ../src/guestfs-actions.pod:6503
15755 msgid "guestfs_truncate_size"
15756 msgstr ""
15757
15758 #. type: verbatim
15759 #: ../src/guestfs-actions.pod:6505
15760 #, no-wrap
15761 msgid ""
15762 " int\n"
15763 " guestfs_truncate_size (guestfs_h *g,\n"
15764 "                        const char *path,\n"
15765 "                        int64_t size);\n"
15766 "\n"
15767 msgstr ""
15768
15769 #. type: textblock
15770 #: ../src/guestfs-actions.pod:6510 ../fish/guestfish-actions.pod:4360
15771 msgid ""
15772 "This command truncates C<path> to size C<size> bytes.  The file must exist "
15773 "already."
15774 msgstr ""
15775
15776 #. type: textblock
15777 #: ../src/guestfs-actions.pod:6513
15778 msgid ""
15779 "If the current file size is less than C<size> then the file is extended to "
15780 "the required size with zero bytes.  This creates a sparse file (ie. disk "
15781 "blocks are not allocated for the file until you write to it).  To create a "
15782 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
15783 msgstr ""
15784
15785 #. type: =head2
15786 #: ../src/guestfs-actions.pod:6523
15787 msgid "guestfs_tune2fs_l"
15788 msgstr ""
15789
15790 #. type: verbatim
15791 #: ../src/guestfs-actions.pod:6525
15792 #, no-wrap
15793 msgid ""
15794 " char **\n"
15795 " guestfs_tune2fs_l (guestfs_h *g,\n"
15796 "                    const char *device);\n"
15797 "\n"
15798 msgstr ""
15799
15800 #. type: textblock
15801 #: ../src/guestfs-actions.pod:6529 ../fish/guestfish-actions.pod:4373
15802 msgid ""
15803 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
15804 "C<device>."
15805 msgstr ""
15806
15807 #. type: textblock
15808 #: ../src/guestfs-actions.pod:6532 ../fish/guestfish-actions.pod:4376
15809 msgid ""
15810 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
15811 "for more details.  The list of fields returned isn't clearly defined, and "
15812 "depends on both the version of C<tune2fs> that libguestfs was built against, "
15813 "and the filesystem itself."
15814 msgstr ""
15815
15816 #. type: =head2
15817 #: ../src/guestfs-actions.pod:6545
15818 msgid "guestfs_txz_in"
15819 msgstr ""
15820
15821 #. type: verbatim
15822 #: ../src/guestfs-actions.pod:6547
15823 #, no-wrap
15824 msgid ""
15825 " int\n"
15826 " guestfs_txz_in (guestfs_h *g,\n"
15827 "                 const char *tarball,\n"
15828 "                 const char *directory);\n"
15829 "\n"
15830 msgstr ""
15831
15832 #. type: textblock
15833 #: ../src/guestfs-actions.pod:6552 ../fish/guestfish-actions.pod:4385
15834 msgid ""
15835 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
15836 "tar file) into C<directory>."
15837 msgstr ""
15838
15839 #. type: =head2
15840 #: ../src/guestfs-actions.pod:6559
15841 msgid "guestfs_txz_out"
15842 msgstr ""
15843
15844 #. type: verbatim
15845 #: ../src/guestfs-actions.pod:6561
15846 #, no-wrap
15847 msgid ""
15848 " int\n"
15849 " guestfs_txz_out (guestfs_h *g,\n"
15850 "                  const char *directory,\n"
15851 "                  const char *tarball);\n"
15852 "\n"
15853 msgstr ""
15854
15855 #. type: textblock
15856 #: ../src/guestfs-actions.pod:6566 ../fish/guestfish-actions.pod:4394
15857 msgid ""
15858 "This command packs the contents of C<directory> and downloads it to local "
15859 "file C<tarball> (as an xz compressed tar archive)."
15860 msgstr ""
15861
15862 #. type: =head2
15863 #: ../src/guestfs-actions.pod:6573
15864 msgid "guestfs_umask"
15865 msgstr ""
15866
15867 #. type: verbatim
15868 #: ../src/guestfs-actions.pod:6575
15869 #, no-wrap
15870 msgid ""
15871 " int\n"
15872 " guestfs_umask (guestfs_h *g,\n"
15873 "                int mask);\n"
15874 "\n"
15875 msgstr ""
15876
15877 #. type: textblock
15878 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4403
15879 msgid ""
15880 "This function sets the mask used for creating new files and device nodes to "
15881 "C<mask & 0777>."
15882 msgstr ""
15883
15884 #. type: textblock
15885 #: ../src/guestfs-actions.pod:6582 ../fish/guestfish-actions.pod:4406
15886 msgid ""
15887 "Typical umask values would be C<022> which creates new files with "
15888 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
15889 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
15890 msgstr ""
15891
15892 #. type: textblock
15893 #: ../src/guestfs-actions.pod:6587 ../fish/guestfish-actions.pod:4411
15894 msgid ""
15895 "The default umask is C<022>.  This is important because it means that "
15896 "directories and device nodes will be created with C<0644> or C<0755> mode "
15897 "even if you specify C<0777>."
15898 msgstr ""
15899
15900 #. type: textblock
15901 #: ../src/guestfs-actions.pod:6591
15902 msgid ""
15903 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
15904 "C<guestfs_mkdir>."
15905 msgstr ""
15906
15907 #. type: textblock
15908 #: ../src/guestfs-actions.pod:6594 ../fish/guestfish-actions.pod:4418
15909 msgid "This call returns the previous umask."
15910 msgstr ""
15911
15912 #. type: =head2
15913 #: ../src/guestfs-actions.pod:6600
15914 msgid "guestfs_umount"
15915 msgstr ""
15916
15917 #. type: verbatim
15918 #: ../src/guestfs-actions.pod:6602
15919 #, no-wrap
15920 msgid ""
15921 " int\n"
15922 " guestfs_umount (guestfs_h *g,\n"
15923 "                 const char *pathordevice);\n"
15924 "\n"
15925 msgstr ""
15926
15927 #. type: textblock
15928 #: ../src/guestfs-actions.pod:6606 ../fish/guestfish-actions.pod:4426
15929 msgid ""
15930 "This unmounts the given filesystem.  The filesystem may be specified either "
15931 "by its mountpoint (path) or the device which contains the filesystem."
15932 msgstr ""
15933
15934 #. type: =head2
15935 #: ../src/guestfs-actions.pod:6614
15936 msgid "guestfs_umount_all"
15937 msgstr ""
15938
15939 #. type: verbatim
15940 #: ../src/guestfs-actions.pod:6616
15941 #, no-wrap
15942 msgid ""
15943 " int\n"
15944 " guestfs_umount_all (guestfs_h *g);\n"
15945 "\n"
15946 msgstr ""
15947
15948 #. type: textblock
15949 #: ../src/guestfs-actions.pod:6619 ../fish/guestfish-actions.pod:4436
15950 msgid "This unmounts all mounted filesystems."
15951 msgstr ""
15952
15953 #. type: textblock
15954 #: ../src/guestfs-actions.pod:6621 ../fish/guestfish-actions.pod:4438
15955 msgid "Some internal mounts are not unmounted by this call."
15956 msgstr ""
15957
15958 #. type: =head2
15959 #: ../src/guestfs-actions.pod:6627
15960 msgid "guestfs_upload"
15961 msgstr ""
15962
15963 #. type: verbatim
15964 #: ../src/guestfs-actions.pod:6629
15965 #, no-wrap
15966 msgid ""
15967 " int\n"
15968 " guestfs_upload (guestfs_h *g,\n"
15969 "                 const char *filename,\n"
15970 "                 const char *remotefilename);\n"
15971 "\n"
15972 msgstr ""
15973
15974 #. type: textblock
15975 #: ../src/guestfs-actions.pod:6634 ../src/guestfs-actions.pod:6658 ../fish/guestfish-actions.pod:4444 ../fish/guestfish-actions.pod:4457
15976 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
15977 msgstr ""
15978
15979 #. type: textblock
15980 #: ../src/guestfs-actions.pod:6639
15981 msgid "See also C<guestfs_download>."
15982 msgstr ""
15983
15984 #. type: =head2
15985 #: ../src/guestfs-actions.pod:6650
15986 msgid "guestfs_upload_offset"
15987 msgstr ""
15988
15989 #. type: verbatim
15990 #: ../src/guestfs-actions.pod:6652
15991 #, no-wrap
15992 msgid ""
15993 " int\n"
15994 " guestfs_upload_offset (guestfs_h *g,\n"
15995 "                        const char *filename,\n"
15996 "                        const char *remotefilename,\n"
15997 "                        int64_t offset);\n"
15998 "\n"
15999 msgstr ""
16000
16001 #. type: textblock
16002 #: ../src/guestfs-actions.pod:6661 ../fish/guestfish-actions.pod:4460
16003 msgid ""
16004 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
16005 "The intention is to overwrite parts of existing files or devices, although "
16006 "if a non-existant file is specified then it is created with a \"hole\" "
16007 "before C<offset>.  The size of the data written is implicit in the size of "
16008 "the source C<filename>."
16009 msgstr ""
16010
16011 #. type: textblock
16012 #: ../src/guestfs-actions.pod:6668
16013 msgid ""
16014 "Note that there is no limit on the amount of data that can be uploaded with "
16015 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
16016 "full amount unless an error occurs."
16017 msgstr ""
16018
16019 #. type: textblock
16020 #: ../src/guestfs-actions.pod:6673
16021 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
16022 msgstr ""
16023
16024 #. type: =head2
16025 #: ../src/guestfs-actions.pod:6684
16026 msgid "guestfs_utimens"
16027 msgstr ""
16028
16029 #. type: verbatim
16030 #: ../src/guestfs-actions.pod:6686
16031 #, no-wrap
16032 msgid ""
16033 " int\n"
16034 " guestfs_utimens (guestfs_h *g,\n"
16035 "                  const char *path,\n"
16036 "                  int64_t atsecs,\n"
16037 "                  int64_t atnsecs,\n"
16038 "                  int64_t mtsecs,\n"
16039 "                  int64_t mtnsecs);\n"
16040 "\n"
16041 msgstr ""
16042
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:6694 ../fish/guestfish-actions.pod:4480
16045 msgid "This command sets the timestamps of a file with nanosecond precision."
16046 msgstr ""
16047
16048 #. type: textblock
16049 #: ../src/guestfs-actions.pod:6697 ../fish/guestfish-actions.pod:4483
16050 msgid ""
16051 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
16052 "from the epoch."
16053 msgstr ""
16054
16055 #. type: textblock
16056 #: ../src/guestfs-actions.pod:6700 ../fish/guestfish-actions.pod:4486
16057 msgid ""
16058 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
16059 "nanoseconds from the epoch."
16060 msgstr ""
16061
16062 #. type: textblock
16063 #: ../src/guestfs-actions.pod:6703 ../fish/guestfish-actions.pod:4489
16064 msgid ""
16065 "If the C<*nsecs> field contains the special value C<-1> then the "
16066 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
16067 "ignored in this case)."
16068 msgstr ""
16069
16070 #. type: textblock
16071 #: ../src/guestfs-actions.pod:6707 ../fish/guestfish-actions.pod:4493
16072 msgid ""
16073 "If the C<*nsecs> field contains the special value C<-2> then the "
16074 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
16075 "in this case)."
16076 msgstr ""
16077
16078 #. type: =head2
16079 #: ../src/guestfs-actions.pod:6715 ../src/guestfs-structs.pod:175
16080 msgid "guestfs_version"
16081 msgstr ""
16082
16083 #. type: verbatim
16084 #: ../src/guestfs-actions.pod:6717
16085 #, no-wrap
16086 msgid ""
16087 " struct guestfs_version *\n"
16088 " guestfs_version (guestfs_h *g);\n"
16089 "\n"
16090 msgstr ""
16091
16092 #. type: textblock
16093 #: ../src/guestfs-actions.pod:6720 ../fish/guestfish-actions.pod:4501
16094 msgid "Return the libguestfs version number that the program is linked against."
16095 msgstr ""
16096
16097 #. type: textblock
16098 #: ../src/guestfs-actions.pod:6723 ../fish/guestfish-actions.pod:4504
16099 msgid ""
16100 "Note that because of dynamic linking this is not necessarily the version of "
16101 "libguestfs that you compiled against.  You can compile the program, and then "
16102 "at runtime dynamically link against a completely different C<libguestfs.so> "
16103 "library."
16104 msgstr ""
16105
16106 #. type: textblock
16107 #: ../src/guestfs-actions.pod:6728 ../fish/guestfish-actions.pod:4509
16108 msgid ""
16109 "This call was added in version C<1.0.58>.  In previous versions of "
16110 "libguestfs there was no way to get the version number.  From C code you can "
16111 "use dynamic linker functions to find out if this symbol exists (if it "
16112 "doesn't, then it's an earlier version)."
16113 msgstr ""
16114
16115 #. type: textblock
16116 #: ../src/guestfs-actions.pod:6734 ../fish/guestfish-actions.pod:4515
16117 msgid ""
16118 "The call returns a structure with four elements.  The first three (C<major>, "
16119 "C<minor> and C<release>) are numbers and correspond to the usual version "
16120 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
16121 "but may be used for distro-specific information."
16122 msgstr ""
16123
16124 #. type: textblock
16125 #: ../src/guestfs-actions.pod:6740 ../fish/guestfish-actions.pod:4521
16126 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
16127 msgstr ""
16128
16129 #. type: textblock
16130 #: ../src/guestfs-actions.pod:6743 ../fish/guestfish-actions.pod:4524
16131 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
16132 msgstr ""
16133
16134 #. type: textblock
16135 #: ../src/guestfs-actions.pod:6745
16136 msgid ""
16137 "I<Note:> Don't use this call to test for availability of features.  In "
16138 "enterprise distributions we backport features from later versions into "
16139 "earlier versions, making this an unreliable way to test for features.  Use "
16140 "C<guestfs_available> instead."
16141 msgstr ""
16142
16143 #. type: textblock
16144 #: ../src/guestfs-actions.pod:6751
16145 msgid ""
16146 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
16147 "error.  I<The caller must call C<guestfs_free_version> after use>."
16148 msgstr ""
16149
16150 #. type: textblock
16151 #: ../src/guestfs-actions.pod:6755
16152 msgid "(Added in 1.0.58)"
16153 msgstr ""
16154
16155 #. type: =head2
16156 #: ../src/guestfs-actions.pod:6757
16157 msgid "guestfs_vfs_label"
16158 msgstr ""
16159
16160 #. type: verbatim
16161 #: ../src/guestfs-actions.pod:6759
16162 #, no-wrap
16163 msgid ""
16164 " char *\n"
16165 " guestfs_vfs_label (guestfs_h *g,\n"
16166 "                    const char *device);\n"
16167 "\n"
16168 msgstr ""
16169
16170 #. type: textblock
16171 #: ../src/guestfs-actions.pod:6763 ../fish/guestfish-actions.pod:4536
16172 msgid "This returns the filesystem label of the filesystem on C<device>."
16173 msgstr ""
16174
16175 #. type: textblock
16176 #: ../src/guestfs-actions.pod:6766 ../fish/guestfish-actions.pod:4539
16177 msgid "If the filesystem is unlabeled, this returns the empty string."
16178 msgstr ""
16179
16180 #. type: textblock
16181 #: ../src/guestfs-actions.pod:6768
16182 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
16183 msgstr ""
16184
16185 #. type: textblock
16186 #: ../src/guestfs-actions.pod:6773 ../src/guestfs-actions.pod:6810
16187 msgid "(Added in 1.3.18)"
16188 msgstr ""
16189
16190 #. type: =head2
16191 #: ../src/guestfs-actions.pod:6775
16192 msgid "guestfs_vfs_type"
16193 msgstr ""
16194
16195 #. type: verbatim
16196 #: ../src/guestfs-actions.pod:6777
16197 #, no-wrap
16198 msgid ""
16199 " char *\n"
16200 " guestfs_vfs_type (guestfs_h *g,\n"
16201 "                   const char *device);\n"
16202 "\n"
16203 msgstr ""
16204
16205 #. type: textblock
16206 #: ../src/guestfs-actions.pod:6781 ../fish/guestfish-actions.pod:4547
16207 msgid ""
16208 "This command gets the filesystem type corresponding to the filesystem on "
16209 "C<device>."
16210 msgstr ""
16211
16212 #. type: textblock
16213 #: ../src/guestfs-actions.pod:6784 ../fish/guestfish-actions.pod:4550
16214 msgid ""
16215 "For most filesystems, the result is the name of the Linux VFS module which "
16216 "would be used to mount this filesystem if you mounted it without specifying "
16217 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
16218 msgstr ""
16219
16220 #. type: =head2
16221 #: ../src/guestfs-actions.pod:6794
16222 msgid "guestfs_vfs_uuid"
16223 msgstr ""
16224
16225 #. type: verbatim
16226 #: ../src/guestfs-actions.pod:6796
16227 #, no-wrap
16228 msgid ""
16229 " char *\n"
16230 " guestfs_vfs_uuid (guestfs_h *g,\n"
16231 "                   const char *device);\n"
16232 "\n"
16233 msgstr ""
16234
16235 #. type: textblock
16236 #: ../src/guestfs-actions.pod:6800 ../fish/guestfish-actions.pod:4559
16237 msgid "This returns the filesystem UUID of the filesystem on C<device>."
16238 msgstr ""
16239
16240 #. type: textblock
16241 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4562
16242 msgid "If the filesystem does not have a UUID, this returns the empty string."
16243 msgstr ""
16244
16245 #. type: textblock
16246 #: ../src/guestfs-actions.pod:6805
16247 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
16248 msgstr ""
16249
16250 #. type: =head2
16251 #: ../src/guestfs-actions.pod:6812
16252 msgid "guestfs_vg_activate"
16253 msgstr ""
16254
16255 #. type: verbatim
16256 #: ../src/guestfs-actions.pod:6814
16257 #, no-wrap
16258 msgid ""
16259 " int\n"
16260 " guestfs_vg_activate (guestfs_h *g,\n"
16261 "                      int activate,\n"
16262 "                      char *const *volgroups);\n"
16263 "\n"
16264 msgstr ""
16265
16266 #. type: textblock
16267 #: ../src/guestfs-actions.pod:6819 ../fish/guestfish-actions.pod:4570
16268 msgid ""
16269 "This command activates or (if C<activate> is false) deactivates all logical "
16270 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
16271 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
16272 "deactivated, then those devices disappear."
16273 msgstr ""
16274
16275 #. type: textblock
16276 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4576
16277 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
16278 msgstr ""
16279
16280 #. type: textblock
16281 #: ../src/guestfs-actions.pod:6827 ../fish/guestfish-actions.pod:4578
16282 msgid ""
16283 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
16284 "activated or deactivated."
16285 msgstr ""
16286
16287 #. type: =head2
16288 #: ../src/guestfs-actions.pod:6834
16289 msgid "guestfs_vg_activate_all"
16290 msgstr ""
16291
16292 #. type: verbatim
16293 #: ../src/guestfs-actions.pod:6836
16294 #, no-wrap
16295 msgid ""
16296 " int\n"
16297 " guestfs_vg_activate_all (guestfs_h *g,\n"
16298 "                          int activate);\n"
16299 "\n"
16300 msgstr ""
16301
16302 #. type: textblock
16303 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4585
16304 msgid ""
16305 "This command activates or (if C<activate> is false) deactivates all logical "
16306 "volumes in all volume groups.  If activated, then they are made known to the "
16307 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
16308 "those devices disappear."
16309 msgstr ""
16310
16311 #. type: textblock
16312 #: ../src/guestfs-actions.pod:6846 ../fish/guestfish-actions.pod:4591
16313 msgid "This command is the same as running C<vgchange -a y|n>"
16314 msgstr ""
16315
16316 #. type: =head2
16317 #: ../src/guestfs-actions.pod:6852
16318 msgid "guestfs_vgcreate"
16319 msgstr ""
16320
16321 #. type: verbatim
16322 #: ../src/guestfs-actions.pod:6854
16323 #, no-wrap
16324 msgid ""
16325 " int\n"
16326 " guestfs_vgcreate (guestfs_h *g,\n"
16327 "                   const char *volgroup,\n"
16328 "                   char *const *physvols);\n"
16329 "\n"
16330 msgstr ""
16331
16332 #. type: textblock
16333 #: ../src/guestfs-actions.pod:6859 ../fish/guestfish-actions.pod:4597
16334 msgid ""
16335 "This creates an LVM volume group called C<volgroup> from the non-empty list "
16336 "of physical volumes C<physvols>."
16337 msgstr ""
16338
16339 #. type: =head2
16340 #: ../src/guestfs-actions.pod:6866
16341 msgid "guestfs_vglvuuids"
16342 msgstr ""
16343
16344 #. type: verbatim
16345 #: ../src/guestfs-actions.pod:6868
16346 #, no-wrap
16347 msgid ""
16348 " char **\n"
16349 " guestfs_vglvuuids (guestfs_h *g,\n"
16350 "                    const char *vgname);\n"
16351 "\n"
16352 msgstr ""
16353
16354 #. type: textblock
16355 #: ../src/guestfs-actions.pod:6872 ../fish/guestfish-actions.pod:4604
16356 msgid ""
16357 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
16358 "volumes created in this volume group."
16359 msgstr ""
16360
16361 #. type: textblock
16362 #: ../src/guestfs-actions.pod:6875
16363 msgid ""
16364 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
16365 "associate logical volumes and volume groups."
16366 msgstr ""
16367
16368 #. type: textblock
16369 #: ../src/guestfs-actions.pod:6878
16370 msgid "See also C<guestfs_vgpvuuids>."
16371 msgstr ""
16372
16373 #. type: =head2
16374 #: ../src/guestfs-actions.pod:6886
16375 msgid "guestfs_vgpvuuids"
16376 msgstr ""
16377
16378 #. type: verbatim
16379 #: ../src/guestfs-actions.pod:6888
16380 #, no-wrap
16381 msgid ""
16382 " char **\n"
16383 " guestfs_vgpvuuids (guestfs_h *g,\n"
16384 "                    const char *vgname);\n"
16385 "\n"
16386 msgstr ""
16387
16388 #. type: textblock
16389 #: ../src/guestfs-actions.pod:6892 ../fish/guestfish-actions.pod:4616
16390 msgid ""
16391 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
16392 "volumes that this volume group resides on."
16393 msgstr ""
16394
16395 #. type: textblock
16396 #: ../src/guestfs-actions.pod:6895
16397 msgid ""
16398 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
16399 "associate physical volumes and volume groups."
16400 msgstr ""
16401
16402 #. type: textblock
16403 #: ../src/guestfs-actions.pod:6898
16404 msgid "See also C<guestfs_vglvuuids>."
16405 msgstr ""
16406
16407 #. type: =head2
16408 #: ../src/guestfs-actions.pod:6906
16409 msgid "guestfs_vgremove"
16410 msgstr ""
16411
16412 #. type: verbatim
16413 #: ../src/guestfs-actions.pod:6908
16414 #, no-wrap
16415 msgid ""
16416 " int\n"
16417 " guestfs_vgremove (guestfs_h *g,\n"
16418 "                   const char *vgname);\n"
16419 "\n"
16420 msgstr ""
16421
16422 #. type: textblock
16423 #: ../src/guestfs-actions.pod:6912 ../fish/guestfish-actions.pod:4628
16424 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
16425 msgstr ""
16426
16427 #. type: textblock
16428 #: ../src/guestfs-actions.pod:6914 ../fish/guestfish-actions.pod:4630
16429 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
16430 msgstr ""
16431
16432 #. type: =head2
16433 #: ../src/guestfs-actions.pod:6921
16434 msgid "guestfs_vgrename"
16435 msgstr ""
16436
16437 #. type: verbatim
16438 #: ../src/guestfs-actions.pod:6923
16439 #, no-wrap
16440 msgid ""
16441 " int\n"
16442 " guestfs_vgrename (guestfs_h *g,\n"
16443 "                   const char *volgroup,\n"
16444 "                   const char *newvolgroup);\n"
16445 "\n"
16446 msgstr ""
16447
16448 #. type: textblock
16449 #: ../src/guestfs-actions.pod:6928 ../fish/guestfish-actions.pod:4637
16450 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
16451 msgstr ""
16452
16453 #. type: =head2
16454 #: ../src/guestfs-actions.pod:6934
16455 msgid "guestfs_vgs"
16456 msgstr ""
16457
16458 #. type: verbatim
16459 #: ../src/guestfs-actions.pod:6936
16460 #, no-wrap
16461 msgid ""
16462 " char **\n"
16463 " guestfs_vgs (guestfs_h *g);\n"
16464 "\n"
16465 msgstr ""
16466
16467 #. type: textblock
16468 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4643
16469 msgid ""
16470 "List all the volumes groups detected.  This is the equivalent of the "
16471 "L<vgs(8)> command."
16472 msgstr ""
16473
16474 #. type: textblock
16475 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4646
16476 msgid ""
16477 "This returns a list of just the volume group names that were detected "
16478 "(eg. C<VolGroup00>)."
16479 msgstr ""
16480
16481 #. type: textblock
16482 #: ../src/guestfs-actions.pod:6945
16483 msgid "See also C<guestfs_vgs_full>."
16484 msgstr ""
16485
16486 #. type: =head2
16487 #: ../src/guestfs-actions.pod:6953
16488 msgid "guestfs_vgs_full"
16489 msgstr ""
16490
16491 #. type: verbatim
16492 #: ../src/guestfs-actions.pod:6955
16493 #, no-wrap
16494 msgid ""
16495 " struct guestfs_lvm_vg_list *\n"
16496 " guestfs_vgs_full (guestfs_h *g);\n"
16497 "\n"
16498 msgstr ""
16499
16500 #. type: textblock
16501 #: ../src/guestfs-actions.pod:6958 ../fish/guestfish-actions.pod:4655
16502 msgid ""
16503 "List all the volumes groups detected.  This is the equivalent of the "
16504 "L<vgs(8)> command.  The \"full\" version includes all fields."
16505 msgstr ""
16506
16507 #. type: textblock
16508 #: ../src/guestfs-actions.pod:6961
16509 msgid ""
16510 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
16511 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
16512 "use>."
16513 msgstr ""
16514
16515 #. type: =head2
16516 #: ../src/guestfs-actions.pod:6967
16517 msgid "guestfs_vgscan"
16518 msgstr ""
16519
16520 #. type: verbatim
16521 #: ../src/guestfs-actions.pod:6969
16522 #, no-wrap
16523 msgid ""
16524 " int\n"
16525 " guestfs_vgscan (guestfs_h *g);\n"
16526 "\n"
16527 msgstr ""
16528
16529 #. type: textblock
16530 #: ../src/guestfs-actions.pod:6972 ../fish/guestfish-actions.pod:4662
16531 msgid ""
16532 "This rescans all block devices and rebuilds the list of LVM physical "
16533 "volumes, volume groups and logical volumes."
16534 msgstr ""
16535
16536 #. type: =head2
16537 #: ../src/guestfs-actions.pod:6979
16538 msgid "guestfs_vguuid"
16539 msgstr ""
16540
16541 #. type: verbatim
16542 #: ../src/guestfs-actions.pod:6981
16543 #, no-wrap
16544 msgid ""
16545 " char *\n"
16546 " guestfs_vguuid (guestfs_h *g,\n"
16547 "                 const char *vgname);\n"
16548 "\n"
16549 msgstr ""
16550
16551 #. type: textblock
16552 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4669
16553 msgid "This command returns the UUID of the LVM VG named C<vgname>."
16554 msgstr ""
16555
16556 #. type: =head2
16557 #: ../src/guestfs-actions.pod:6992
16558 msgid "guestfs_wait_ready"
16559 msgstr ""
16560
16561 #. type: verbatim
16562 #: ../src/guestfs-actions.pod:6994
16563 #, no-wrap
16564 msgid ""
16565 " int\n"
16566 " guestfs_wait_ready (guestfs_h *g);\n"
16567 "\n"
16568 msgstr ""
16569
16570 #. type: textblock
16571 #: ../src/guestfs-actions.pod:6997
16572 msgid "This function is a no op."
16573 msgstr ""
16574
16575 #. type: textblock
16576 #: ../src/guestfs-actions.pod:6999
16577 msgid ""
16578 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
16579 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
16580 "is no longer necessary because C<guestfs_launch> now does the waiting."
16581 msgstr ""
16582
16583 #. type: textblock
16584 #: ../src/guestfs-actions.pod:7004
16585 msgid ""
16586 "If you see any calls to this function in code then you can just remove them, "
16587 "unless you want to retain compatibility with older versions of the API."
16588 msgstr ""
16589
16590 #. type: =head2
16591 #: ../src/guestfs-actions.pod:7012
16592 msgid "guestfs_wc_c"
16593 msgstr ""
16594
16595 #. type: verbatim
16596 #: ../src/guestfs-actions.pod:7014
16597 #, no-wrap
16598 msgid ""
16599 " int\n"
16600 " guestfs_wc_c (guestfs_h *g,\n"
16601 "               const char *path);\n"
16602 "\n"
16603 msgstr ""
16604
16605 #. type: textblock
16606 #: ../src/guestfs-actions.pod:7018 ../fish/guestfish-actions.pod:4675
16607 msgid ""
16608 "This command counts the characters in a file, using the C<wc -c> external "
16609 "command."
16610 msgstr ""
16611
16612 #. type: =head2
16613 #: ../src/guestfs-actions.pod:7025
16614 msgid "guestfs_wc_l"
16615 msgstr ""
16616
16617 #. type: verbatim
16618 #: ../src/guestfs-actions.pod:7027
16619 #, no-wrap
16620 msgid ""
16621 " int\n"
16622 " guestfs_wc_l (guestfs_h *g,\n"
16623 "               const char *path);\n"
16624 "\n"
16625 msgstr ""
16626
16627 #. type: textblock
16628 #: ../src/guestfs-actions.pod:7031 ../fish/guestfish-actions.pod:4682
16629 msgid ""
16630 "This command counts the lines in a file, using the C<wc -l> external "
16631 "command."
16632 msgstr ""
16633
16634 #. type: =head2
16635 #: ../src/guestfs-actions.pod:7038
16636 msgid "guestfs_wc_w"
16637 msgstr ""
16638
16639 #. type: verbatim
16640 #: ../src/guestfs-actions.pod:7040
16641 #, no-wrap
16642 msgid ""
16643 " int\n"
16644 " guestfs_wc_w (guestfs_h *g,\n"
16645 "               const char *path);\n"
16646 "\n"
16647 msgstr ""
16648
16649 #. type: textblock
16650 #: ../src/guestfs-actions.pod:7044 ../fish/guestfish-actions.pod:4689
16651 msgid ""
16652 "This command counts the words in a file, using the C<wc -w> external "
16653 "command."
16654 msgstr ""
16655
16656 #. type: =head2
16657 #: ../src/guestfs-actions.pod:7051
16658 msgid "guestfs_write"
16659 msgstr ""
16660
16661 #. type: verbatim
16662 #: ../src/guestfs-actions.pod:7053
16663 #, no-wrap
16664 msgid ""
16665 " int\n"
16666 " guestfs_write (guestfs_h *g,\n"
16667 "                const char *path,\n"
16668 "                const char *content,\n"
16669 "                size_t content_size);\n"
16670 "\n"
16671 msgstr ""
16672
16673 #. type: textblock
16674 #: ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:4696
16675 msgid ""
16676 "This call creates a file called C<path>.  The content of the file is the "
16677 "string C<content> (which can contain any 8 bit data)."
16678 msgstr ""
16679
16680 #. type: =head2
16681 #: ../src/guestfs-actions.pod:7069
16682 msgid "guestfs_write_file"
16683 msgstr ""
16684
16685 #. type: verbatim
16686 #: ../src/guestfs-actions.pod:7071
16687 #, no-wrap
16688 msgid ""
16689 " int\n"
16690 " guestfs_write_file (guestfs_h *g,\n"
16691 "                     const char *path,\n"
16692 "                     const char *content,\n"
16693 "                     int size);\n"
16694 "\n"
16695 msgstr ""
16696
16697 #. type: textblock
16698 #: ../src/guestfs-actions.pod:7077 ../fish/guestfish-actions.pod:4706
16699 msgid ""
16700 "This call creates a file called C<path>.  The contents of the file is the "
16701 "string C<content> (which can contain any 8 bit data), with length C<size>."
16702 msgstr ""
16703
16704 #. type: textblock
16705 #: ../src/guestfs-actions.pod:7081 ../fish/guestfish-actions.pod:4710
16706 msgid ""
16707 "As a special case, if C<size> is C<0> then the length is calculated using "
16708 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
16709 msgstr ""
16710
16711 #. type: textblock
16712 #: ../src/guestfs-actions.pod:7085 ../fish/guestfish-actions.pod:4714
16713 msgid ""
16714 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
16715 "I<not> work, even if the length is specified."
16716 msgstr ""
16717
16718 #. type: textblock
16719 #: ../src/guestfs-actions.pod:7093 ../fish/guestfish-actions.pod:4720
16720 msgid "This function is deprecated.  In new code, use the C<write> call instead."
16721 msgstr ""
16722
16723 #. type: =head2
16724 #: ../src/guestfs-actions.pod:7102
16725 msgid "guestfs_zegrep"
16726 msgstr ""
16727
16728 #. type: verbatim
16729 #: ../src/guestfs-actions.pod:7104
16730 #, no-wrap
16731 msgid ""
16732 " char **\n"
16733 " guestfs_zegrep (guestfs_h *g,\n"
16734 "                 const char *regex,\n"
16735 "                 const char *path);\n"
16736 "\n"
16737 msgstr ""
16738
16739 #. type: textblock
16740 #: ../src/guestfs-actions.pod:7109 ../fish/guestfish-actions.pod:4731
16741 msgid "This calls the external C<zegrep> program and returns the matching lines."
16742 msgstr ""
16743
16744 #. type: =head2
16745 #: ../src/guestfs-actions.pod:7121
16746 msgid "guestfs_zegrepi"
16747 msgstr ""
16748
16749 #. type: verbatim
16750 #: ../src/guestfs-actions.pod:7123
16751 #, no-wrap
16752 msgid ""
16753 " char **\n"
16754 " guestfs_zegrepi (guestfs_h *g,\n"
16755 "                  const char *regex,\n"
16756 "                  const char *path);\n"
16757 "\n"
16758 msgstr ""
16759
16760 #. type: textblock
16761 #: ../src/guestfs-actions.pod:7128 ../fish/guestfish-actions.pod:4741
16762 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
16763 msgstr ""
16764
16765 #. type: =head2
16766 #: ../src/guestfs-actions.pod:7140
16767 msgid "guestfs_zero"
16768 msgstr ""
16769
16770 #. type: verbatim
16771 #: ../src/guestfs-actions.pod:7142
16772 #, no-wrap
16773 msgid ""
16774 " int\n"
16775 " guestfs_zero (guestfs_h *g,\n"
16776 "               const char *device);\n"
16777 "\n"
16778 msgstr ""
16779
16780 #. type: textblock
16781 #: ../src/guestfs-actions.pod:7146 ../fish/guestfish-actions.pod:4751
16782 msgid "This command writes zeroes over the first few blocks of C<device>."
16783 msgstr ""
16784
16785 #. type: textblock
16786 #: ../src/guestfs-actions.pod:7148 ../fish/guestfish-actions.pod:4753
16787 msgid ""
16788 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
16789 "securely wipe the device).  It should be sufficient to remove any partition "
16790 "tables, filesystem superblocks and so on."
16791 msgstr ""
16792
16793 #. type: textblock
16794 #: ../src/guestfs-actions.pod:7152
16795 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
16796 msgstr ""
16797
16798 #. type: =head2
16799 #: ../src/guestfs-actions.pod:7163
16800 msgid "guestfs_zero_device"
16801 msgstr ""
16802
16803 #. type: verbatim
16804 #: ../src/guestfs-actions.pod:7165
16805 #, no-wrap
16806 msgid ""
16807 " int\n"
16808 " guestfs_zero_device (guestfs_h *g,\n"
16809 "                      const char *device);\n"
16810 "\n"
16811 msgstr ""
16812
16813 #. type: textblock
16814 #: ../src/guestfs-actions.pod:7169
16815 msgid ""
16816 "This command writes zeroes over the entire C<device>.  Compare with "
16817 "C<guestfs_zero> which just zeroes the first few blocks of a device."
16818 msgstr ""
16819
16820 #. type: textblock
16821 #: ../src/guestfs-actions.pod:7183
16822 msgid "(Added in 1.3.1)"
16823 msgstr ""
16824
16825 #. type: =head2
16826 #: ../src/guestfs-actions.pod:7185
16827 msgid "guestfs_zerofree"
16828 msgstr ""
16829
16830 #. type: verbatim
16831 #: ../src/guestfs-actions.pod:7187
16832 #, no-wrap
16833 msgid ""
16834 " int\n"
16835 " guestfs_zerofree (guestfs_h *g,\n"
16836 "                   const char *device);\n"
16837 "\n"
16838 msgstr ""
16839
16840 #. type: textblock
16841 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4774
16842 msgid ""
16843 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
16844 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
16845 "possible to compress the filesystem more effectively."
16846 msgstr ""
16847
16848 #. type: textblock
16849 #: ../src/guestfs-actions.pod:7196 ../fish/guestfish-actions.pod:4779
16850 msgid "You should B<not> run this program if the filesystem is mounted."
16851 msgstr ""
16852
16853 #. type: textblock
16854 #: ../src/guestfs-actions.pod:7199 ../fish/guestfish-actions.pod:4782
16855 msgid ""
16856 "It is possible that using this program can damage the filesystem or data on "
16857 "the filesystem."
16858 msgstr ""
16859
16860 #. type: =head2
16861 #: ../src/guestfs-actions.pod:7206
16862 msgid "guestfs_zfgrep"
16863 msgstr ""
16864
16865 #. type: verbatim
16866 #: ../src/guestfs-actions.pod:7208
16867 #, no-wrap
16868 msgid ""
16869 " char **\n"
16870 " guestfs_zfgrep (guestfs_h *g,\n"
16871 "                 const char *pattern,\n"
16872 "                 const char *path);\n"
16873 "\n"
16874 msgstr ""
16875
16876 #. type: textblock
16877 #: ../src/guestfs-actions.pod:7213 ../fish/guestfish-actions.pod:4789
16878 msgid "This calls the external C<zfgrep> program and returns the matching lines."
16879 msgstr ""
16880
16881 #. type: =head2
16882 #: ../src/guestfs-actions.pod:7225
16883 msgid "guestfs_zfgrepi"
16884 msgstr ""
16885
16886 #. type: verbatim
16887 #: ../src/guestfs-actions.pod:7227
16888 #, no-wrap
16889 msgid ""
16890 " char **\n"
16891 " guestfs_zfgrepi (guestfs_h *g,\n"
16892 "                  const char *pattern,\n"
16893 "                  const char *path);\n"
16894 "\n"
16895 msgstr ""
16896
16897 #. type: textblock
16898 #: ../src/guestfs-actions.pod:7232 ../fish/guestfish-actions.pod:4799
16899 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
16900 msgstr ""
16901
16902 #. type: =head2
16903 #: ../src/guestfs-actions.pod:7244
16904 msgid "guestfs_zfile"
16905 msgstr ""
16906
16907 #. type: verbatim
16908 #: ../src/guestfs-actions.pod:7246
16909 #, no-wrap
16910 msgid ""
16911 " char *\n"
16912 " guestfs_zfile (guestfs_h *g,\n"
16913 "                const char *meth,\n"
16914 "                const char *path);\n"
16915 "\n"
16916 msgstr ""
16917
16918 #. type: textblock
16919 #: ../src/guestfs-actions.pod:7251 ../fish/guestfish-actions.pod:4809
16920 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
16921 msgstr ""
16922
16923 #. type: textblock
16924 #: ../src/guestfs-actions.pod:7254 ../fish/guestfish-actions.pod:4812
16925 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
16926 msgstr ""
16927
16928 #. type: textblock
16929 #: ../src/guestfs-actions.pod:7256
16930 msgid ""
16931 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
16932 "files."
16933 msgstr ""
16934
16935 #. type: textblock
16936 #: ../src/guestfs-actions.pod:7262 ../fish/guestfish-actions.pod:4817
16937 msgid "This function is deprecated.  In new code, use the C<file> call instead."
16938 msgstr ""
16939
16940 #. type: =head2
16941 #: ../src/guestfs-actions.pod:7271
16942 msgid "guestfs_zgrep"
16943 msgstr ""
16944
16945 #. type: verbatim
16946 #: ../src/guestfs-actions.pod:7273
16947 #, no-wrap
16948 msgid ""
16949 " char **\n"
16950 " guestfs_zgrep (guestfs_h *g,\n"
16951 "                const char *regex,\n"
16952 "                const char *path);\n"
16953 "\n"
16954 msgstr ""
16955
16956 #. type: textblock
16957 #: ../src/guestfs-actions.pod:7278 ../fish/guestfish-actions.pod:4828
16958 msgid "This calls the external C<zgrep> program and returns the matching lines."
16959 msgstr ""
16960
16961 #. type: =head2
16962 #: ../src/guestfs-actions.pod:7290
16963 msgid "guestfs_zgrepi"
16964 msgstr ""
16965
16966 #. type: verbatim
16967 #: ../src/guestfs-actions.pod:7292
16968 #, no-wrap
16969 msgid ""
16970 " char **\n"
16971 " guestfs_zgrepi (guestfs_h *g,\n"
16972 "                 const char *regex,\n"
16973 "                 const char *path);\n"
16974 "\n"
16975 msgstr ""
16976
16977 #. type: textblock
16978 #: ../src/guestfs-actions.pod:7297 ../fish/guestfish-actions.pod:4838
16979 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
16980 msgstr ""
16981
16982 #. type: =item
16983 #: ../src/guestfs-availability.pod:3
16984 msgid "B<augeas>"
16985 msgstr ""
16986
16987 #. type: textblock
16988 #: ../src/guestfs-availability.pod:5
16989 msgid ""
16990 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
16991 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
16992 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
16993 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
16994 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
16995 msgstr ""
16996
16997 #. type: =item
16998 #: ../src/guestfs-availability.pod:21
16999 msgid "B<inotify>"
17000 msgstr ""
17001
17002 #. type: textblock
17003 #: ../src/guestfs-availability.pod:23
17004 msgid ""
17005 "The following functions: L</guestfs_inotify_add_watch> "
17006 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
17007 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
17008 msgstr ""
17009
17010 #. type: =item
17011 #: ../src/guestfs-availability.pod:31
17012 msgid "B<linuxfsuuid>"
17013 msgstr ""
17014
17015 #. type: textblock
17016 #: ../src/guestfs-availability.pod:33
17017 msgid ""
17018 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
17019 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
17020 msgstr ""
17021
17022 #. type: =item
17023 #: ../src/guestfs-availability.pod:40
17024 msgid "B<linuxmodules>"
17025 msgstr ""
17026
17027 #. type: textblock
17028 #: ../src/guestfs-availability.pod:42
17029 msgid "The following functions: L</guestfs_modprobe>"
17030 msgstr ""
17031
17032 #. type: =item
17033 #: ../src/guestfs-availability.pod:45
17034 msgid "B<linuxxattrs>"
17035 msgstr ""
17036
17037 #. type: textblock
17038 #: ../src/guestfs-availability.pod:47
17039 msgid ""
17040 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
17041 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
17042 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
17043 "L</guestfs_setxattr>"
17044 msgstr ""
17045
17046 #. type: =item
17047 #: ../src/guestfs-availability.pod:58
17048 msgid "B<luks>"
17049 msgstr ""
17050
17051 #. type: textblock
17052 #: ../src/guestfs-availability.pod:60
17053 msgid ""
17054 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
17055 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
17056 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
17057 msgstr ""
17058
17059 #. type: =item
17060 #: ../src/guestfs-availability.pod:69
17061 msgid "B<lvm2>"
17062 msgstr ""
17063
17064 #. type: textblock
17065 #: ../src/guestfs-availability.pod:71
17066 msgid ""
17067 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
17068 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
17069 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
17070 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
17071 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
17072 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
17073 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
17074 "L</guestfs_vgs_full>"
17075 msgstr ""
17076
17077 #. type: =item
17078 #: ../src/guestfs-availability.pod:94
17079 msgid "B<mknod>"
17080 msgstr ""
17081
17082 #. type: textblock
17083 #: ../src/guestfs-availability.pod:96
17084 msgid ""
17085 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
17086 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
17087 msgstr ""
17088
17089 #. type: =item
17090 #: ../src/guestfs-availability.pod:102
17091 msgid "B<ntfs3g>"
17092 msgstr ""
17093
17094 #. type: textblock
17095 #: ../src/guestfs-availability.pod:104
17096 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
17097 msgstr ""
17098
17099 #. type: =item
17100 #: ../src/guestfs-availability.pod:107
17101 msgid "B<ntfsprogs>"
17102 msgstr ""
17103
17104 #. type: textblock
17105 #: ../src/guestfs-availability.pod:109
17106 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
17107 msgstr ""
17108
17109 #. type: =item
17110 #: ../src/guestfs-availability.pod:113
17111 msgid "B<realpath>"
17112 msgstr ""
17113
17114 #. type: textblock
17115 #: ../src/guestfs-availability.pod:115
17116 msgid "The following functions: L</guestfs_realpath>"
17117 msgstr ""
17118
17119 #. type: =item
17120 #: ../src/guestfs-availability.pod:118
17121 msgid "B<scrub>"
17122 msgstr ""
17123
17124 #. type: textblock
17125 #: ../src/guestfs-availability.pod:120
17126 msgid ""
17127 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
17128 "L</guestfs_scrub_freespace>"
17129 msgstr ""
17130
17131 #. type: =item
17132 #: ../src/guestfs-availability.pod:125
17133 msgid "B<selinux>"
17134 msgstr ""
17135
17136 #. type: textblock
17137 #: ../src/guestfs-availability.pod:127
17138 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
17139 msgstr ""
17140
17141 #. type: =item
17142 #: ../src/guestfs-availability.pod:131
17143 msgid "B<xz>"
17144 msgstr ""
17145
17146 #. type: textblock
17147 #: ../src/guestfs-availability.pod:133
17148 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
17149 msgstr ""
17150
17151 #. type: =item
17152 #: ../src/guestfs-availability.pod:137
17153 msgid "B<zerofree>"
17154 msgstr ""
17155
17156 #. type: textblock
17157 #: ../src/guestfs-availability.pod:139
17158 msgid "The following functions: L</guestfs_zerofree>"
17159 msgstr ""
17160
17161 #. type: =head2
17162 #: ../src/guestfs-structs.pod:1
17163 msgid "guestfs_int_bool"
17164 msgstr ""
17165
17166 #. type: verbatim
17167 #: ../src/guestfs-structs.pod:3
17168 #, no-wrap
17169 msgid ""
17170 " struct guestfs_int_bool {\n"
17171 "   int32_t i;\n"
17172 "   int32_t b;\n"
17173 " };\n"
17174 " \n"
17175 msgstr ""
17176
17177 #. type: verbatim
17178 #: ../src/guestfs-structs.pod:8
17179 #, no-wrap
17180 msgid ""
17181 " struct guestfs_int_bool_list {\n"
17182 "   uint32_t len; /* Number of elements in list. */\n"
17183 "   struct guestfs_int_bool *val; /* Elements. */\n"
17184 " };\n"
17185 " \n"
17186 msgstr ""
17187
17188 #. type: verbatim
17189 #: ../src/guestfs-structs.pod:13
17190 #, no-wrap
17191 msgid ""
17192 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
17193 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
17194 "\n"
17195 msgstr ""
17196
17197 #. type: =head2
17198 #: ../src/guestfs-structs.pod:16
17199 msgid "guestfs_lvm_pv"
17200 msgstr ""
17201
17202 #. type: verbatim
17203 #: ../src/guestfs-structs.pod:18
17204 #, no-wrap
17205 msgid ""
17206 " struct guestfs_lvm_pv {\n"
17207 "   char *pv_name;\n"
17208 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17209 "*/\n"
17210 "   char pv_uuid[32];\n"
17211 "   char *pv_fmt;\n"
17212 "   uint64_t pv_size;\n"
17213 "   uint64_t dev_size;\n"
17214 "   uint64_t pv_free;\n"
17215 "   uint64_t pv_used;\n"
17216 "   char *pv_attr;\n"
17217 "   int64_t pv_pe_count;\n"
17218 "   int64_t pv_pe_alloc_count;\n"
17219 "   char *pv_tags;\n"
17220 "   uint64_t pe_start;\n"
17221 "   int64_t pv_mda_count;\n"
17222 "   uint64_t pv_mda_free;\n"
17223 " };\n"
17224 " \n"
17225 msgstr ""
17226
17227 #. type: verbatim
17228 #: ../src/guestfs-structs.pod:36
17229 #, no-wrap
17230 msgid ""
17231 " struct guestfs_lvm_pv_list {\n"
17232 "   uint32_t len; /* Number of elements in list. */\n"
17233 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
17234 " };\n"
17235 " \n"
17236 msgstr ""
17237
17238 #. type: verbatim
17239 #: ../src/guestfs-structs.pod:41
17240 #, no-wrap
17241 msgid ""
17242 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
17243 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
17244 "\n"
17245 msgstr ""
17246
17247 #. type: =head2
17248 #: ../src/guestfs-structs.pod:44
17249 msgid "guestfs_lvm_vg"
17250 msgstr ""
17251
17252 #. type: verbatim
17253 #: ../src/guestfs-structs.pod:46
17254 #, no-wrap
17255 msgid ""
17256 " struct guestfs_lvm_vg {\n"
17257 "   char *vg_name;\n"
17258 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17259 "*/\n"
17260 "   char vg_uuid[32];\n"
17261 "   char *vg_fmt;\n"
17262 "   char *vg_attr;\n"
17263 "   uint64_t vg_size;\n"
17264 "   uint64_t vg_free;\n"
17265 "   char *vg_sysid;\n"
17266 "   uint64_t vg_extent_size;\n"
17267 "   int64_t vg_extent_count;\n"
17268 "   int64_t vg_free_count;\n"
17269 "   int64_t max_lv;\n"
17270 "   int64_t max_pv;\n"
17271 "   int64_t pv_count;\n"
17272 "   int64_t lv_count;\n"
17273 "   int64_t snap_count;\n"
17274 "   int64_t vg_seqno;\n"
17275 "   char *vg_tags;\n"
17276 "   int64_t vg_mda_count;\n"
17277 "   uint64_t vg_mda_free;\n"
17278 " };\n"
17279 " \n"
17280 msgstr ""
17281
17282 #. type: verbatim
17283 #: ../src/guestfs-structs.pod:69
17284 #, no-wrap
17285 msgid ""
17286 " struct guestfs_lvm_vg_list {\n"
17287 "   uint32_t len; /* Number of elements in list. */\n"
17288 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
17289 " };\n"
17290 " \n"
17291 msgstr ""
17292
17293 #. type: verbatim
17294 #: ../src/guestfs-structs.pod:74
17295 #, no-wrap
17296 msgid ""
17297 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
17298 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
17299 "\n"
17300 msgstr ""
17301
17302 #. type: =head2
17303 #: ../src/guestfs-structs.pod:77
17304 msgid "guestfs_lvm_lv"
17305 msgstr ""
17306
17307 #. type: verbatim
17308 #: ../src/guestfs-structs.pod:79
17309 #, no-wrap
17310 msgid ""
17311 " struct guestfs_lvm_lv {\n"
17312 "   char *lv_name;\n"
17313 "   /* The next field is NOT nul-terminated, be careful when printing it: "
17314 "*/\n"
17315 "   char lv_uuid[32];\n"
17316 "   char *lv_attr;\n"
17317 "   int64_t lv_major;\n"
17318 "   int64_t lv_minor;\n"
17319 "   int64_t lv_kernel_major;\n"
17320 "   int64_t lv_kernel_minor;\n"
17321 "   uint64_t lv_size;\n"
17322 "   int64_t seg_count;\n"
17323 "   char *origin;\n"
17324 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17325 "   float snap_percent;\n"
17326 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
17327 "   float copy_percent;\n"
17328 "   char *move_pv;\n"
17329 "   char *lv_tags;\n"
17330 "   char *mirror_log;\n"
17331 "   char *modules;\n"
17332 " };\n"
17333 " \n"
17334 msgstr ""
17335
17336 #. type: verbatim
17337 #: ../src/guestfs-structs.pod:101
17338 #, no-wrap
17339 msgid ""
17340 " struct guestfs_lvm_lv_list {\n"
17341 "   uint32_t len; /* Number of elements in list. */\n"
17342 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
17343 " };\n"
17344 " \n"
17345 msgstr ""
17346
17347 #. type: verbatim
17348 #: ../src/guestfs-structs.pod:106
17349 #, no-wrap
17350 msgid ""
17351 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
17352 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
17353 "\n"
17354 msgstr ""
17355
17356 #. type: verbatim
17357 #: ../src/guestfs-structs.pod:111
17358 #, no-wrap
17359 msgid ""
17360 " struct guestfs_stat {\n"
17361 "   int64_t dev;\n"
17362 "   int64_t ino;\n"
17363 "   int64_t mode;\n"
17364 "   int64_t nlink;\n"
17365 "   int64_t uid;\n"
17366 "   int64_t gid;\n"
17367 "   int64_t rdev;\n"
17368 "   int64_t size;\n"
17369 "   int64_t blksize;\n"
17370 "   int64_t blocks;\n"
17371 "   int64_t atime;\n"
17372 "   int64_t mtime;\n"
17373 "   int64_t ctime;\n"
17374 " };\n"
17375 " \n"
17376 msgstr ""
17377
17378 #. type: verbatim
17379 #: ../src/guestfs-structs.pod:127
17380 #, no-wrap
17381 msgid ""
17382 " struct guestfs_stat_list {\n"
17383 "   uint32_t len; /* Number of elements in list. */\n"
17384 "   struct guestfs_stat *val; /* Elements. */\n"
17385 " };\n"
17386 " \n"
17387 msgstr ""
17388
17389 #. type: verbatim
17390 #: ../src/guestfs-structs.pod:132
17391 #, no-wrap
17392 msgid ""
17393 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
17394 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
17395 "\n"
17396 msgstr ""
17397
17398 #. type: verbatim
17399 #: ../src/guestfs-structs.pod:137
17400 #, no-wrap
17401 msgid ""
17402 " struct guestfs_statvfs {\n"
17403 "   int64_t bsize;\n"
17404 "   int64_t frsize;\n"
17405 "   int64_t blocks;\n"
17406 "   int64_t bfree;\n"
17407 "   int64_t bavail;\n"
17408 "   int64_t files;\n"
17409 "   int64_t ffree;\n"
17410 "   int64_t favail;\n"
17411 "   int64_t fsid;\n"
17412 "   int64_t flag;\n"
17413 "   int64_t namemax;\n"
17414 " };\n"
17415 " \n"
17416 msgstr ""
17417
17418 #. type: verbatim
17419 #: ../src/guestfs-structs.pod:151
17420 #, no-wrap
17421 msgid ""
17422 " struct guestfs_statvfs_list {\n"
17423 "   uint32_t len; /* Number of elements in list. */\n"
17424 "   struct guestfs_statvfs *val; /* Elements. */\n"
17425 " };\n"
17426 " \n"
17427 msgstr ""
17428
17429 #. type: verbatim
17430 #: ../src/guestfs-structs.pod:156
17431 #, no-wrap
17432 msgid ""
17433 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
17434 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
17435 "\n"
17436 msgstr ""
17437
17438 #. type: =head2
17439 #: ../src/guestfs-structs.pod:159
17440 msgid "guestfs_dirent"
17441 msgstr ""
17442
17443 #. type: verbatim
17444 #: ../src/guestfs-structs.pod:161
17445 #, no-wrap
17446 msgid ""
17447 " struct guestfs_dirent {\n"
17448 "   int64_t ino;\n"
17449 "   char ftyp;\n"
17450 "   char *name;\n"
17451 " };\n"
17452 " \n"
17453 msgstr ""
17454
17455 #. type: verbatim
17456 #: ../src/guestfs-structs.pod:167
17457 #, no-wrap
17458 msgid ""
17459 " struct guestfs_dirent_list {\n"
17460 "   uint32_t len; /* Number of elements in list. */\n"
17461 "   struct guestfs_dirent *val; /* Elements. */\n"
17462 " };\n"
17463 " \n"
17464 msgstr ""
17465
17466 #. type: verbatim
17467 #: ../src/guestfs-structs.pod:172
17468 #, no-wrap
17469 msgid ""
17470 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
17471 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
17472 "\n"
17473 msgstr ""
17474
17475 #. type: verbatim
17476 #: ../src/guestfs-structs.pod:177
17477 #, no-wrap
17478 msgid ""
17479 " struct guestfs_version {\n"
17480 "   int64_t major;\n"
17481 "   int64_t minor;\n"
17482 "   int64_t release;\n"
17483 "   char *extra;\n"
17484 " };\n"
17485 " \n"
17486 msgstr ""
17487
17488 #. type: verbatim
17489 #: ../src/guestfs-structs.pod:184
17490 #, no-wrap
17491 msgid ""
17492 " struct guestfs_version_list {\n"
17493 "   uint32_t len; /* Number of elements in list. */\n"
17494 "   struct guestfs_version *val; /* Elements. */\n"
17495 " };\n"
17496 " \n"
17497 msgstr ""
17498
17499 #. type: verbatim
17500 #: ../src/guestfs-structs.pod:189
17501 #, no-wrap
17502 msgid ""
17503 " void guestfs_free_version (struct guestfs_free_version *);\n"
17504 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
17505 "\n"
17506 msgstr ""
17507
17508 #. type: =head2
17509 #: ../src/guestfs-structs.pod:192
17510 msgid "guestfs_xattr"
17511 msgstr ""
17512
17513 #. type: verbatim
17514 #: ../src/guestfs-structs.pod:194
17515 #, no-wrap
17516 msgid ""
17517 " struct guestfs_xattr {\n"
17518 "   char *attrname;\n"
17519 "   /* The next two fields describe a byte array. */\n"
17520 "   uint32_t attrval_len;\n"
17521 "   char *attrval;\n"
17522 " };\n"
17523 " \n"
17524 msgstr ""
17525
17526 #. type: verbatim
17527 #: ../src/guestfs-structs.pod:201
17528 #, no-wrap
17529 msgid ""
17530 " struct guestfs_xattr_list {\n"
17531 "   uint32_t len; /* Number of elements in list. */\n"
17532 "   struct guestfs_xattr *val; /* Elements. */\n"
17533 " };\n"
17534 " \n"
17535 msgstr ""
17536
17537 #. type: verbatim
17538 #: ../src/guestfs-structs.pod:206
17539 #, no-wrap
17540 msgid ""
17541 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
17542 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
17543 "\n"
17544 msgstr ""
17545
17546 #. type: =head2
17547 #: ../src/guestfs-structs.pod:209
17548 msgid "guestfs_inotify_event"
17549 msgstr ""
17550
17551 #. type: verbatim
17552 #: ../src/guestfs-structs.pod:211
17553 #, no-wrap
17554 msgid ""
17555 " struct guestfs_inotify_event {\n"
17556 "   int64_t in_wd;\n"
17557 "   uint32_t in_mask;\n"
17558 "   uint32_t in_cookie;\n"
17559 "   char *in_name;\n"
17560 " };\n"
17561 " \n"
17562 msgstr ""
17563
17564 #. type: verbatim
17565 #: ../src/guestfs-structs.pod:218
17566 #, no-wrap
17567 msgid ""
17568 " struct guestfs_inotify_event_list {\n"
17569 "   uint32_t len; /* Number of elements in list. */\n"
17570 "   struct guestfs_inotify_event *val; /* Elements. */\n"
17571 " };\n"
17572 " \n"
17573 msgstr ""
17574
17575 #. type: verbatim
17576 #: ../src/guestfs-structs.pod:223
17577 #, no-wrap
17578 msgid ""
17579 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
17580 " void guestfs_free_inotify_event_list (struct "
17581 "guestfs_free_inotify_event_list *);\n"
17582 "\n"
17583 msgstr ""
17584
17585 #. type: =head2
17586 #: ../src/guestfs-structs.pod:226
17587 msgid "guestfs_partition"
17588 msgstr ""
17589
17590 #. type: verbatim
17591 #: ../src/guestfs-structs.pod:228
17592 #, no-wrap
17593 msgid ""
17594 " struct guestfs_partition {\n"
17595 "   int32_t part_num;\n"
17596 "   uint64_t part_start;\n"
17597 "   uint64_t part_end;\n"
17598 "   uint64_t part_size;\n"
17599 " };\n"
17600 " \n"
17601 msgstr ""
17602
17603 #. type: verbatim
17604 #: ../src/guestfs-structs.pod:235
17605 #, no-wrap
17606 msgid ""
17607 " struct guestfs_partition_list {\n"
17608 "   uint32_t len; /* Number of elements in list. */\n"
17609 "   struct guestfs_partition *val; /* Elements. */\n"
17610 " };\n"
17611 " \n"
17612 msgstr ""
17613
17614 #. type: verbatim
17615 #: ../src/guestfs-structs.pod:240
17616 #, no-wrap
17617 msgid ""
17618 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
17619 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
17620 "\n"
17621 msgstr ""
17622
17623 #. type: =head2
17624 #: ../src/guestfs-structs.pod:243
17625 msgid "guestfs_application"
17626 msgstr ""
17627
17628 #. type: verbatim
17629 #: ../src/guestfs-structs.pod:245
17630 #, no-wrap
17631 msgid ""
17632 " struct guestfs_application {\n"
17633 "   char *app_name;\n"
17634 "   char *app_display_name;\n"
17635 "   int32_t app_epoch;\n"
17636 "   char *app_version;\n"
17637 "   char *app_release;\n"
17638 "   char *app_install_path;\n"
17639 "   char *app_trans_path;\n"
17640 "   char *app_publisher;\n"
17641 "   char *app_url;\n"
17642 "   char *app_source_package;\n"
17643 "   char *app_summary;\n"
17644 "   char *app_description;\n"
17645 " };\n"
17646 " \n"
17647 msgstr ""
17648
17649 #. type: verbatim
17650 #: ../src/guestfs-structs.pod:260
17651 #, no-wrap
17652 msgid ""
17653 " struct guestfs_application_list {\n"
17654 "   uint32_t len; /* Number of elements in list. */\n"
17655 "   struct guestfs_application *val; /* Elements. */\n"
17656 " };\n"
17657 " \n"
17658 msgstr ""
17659
17660 #. type: verbatim
17661 #: ../src/guestfs-structs.pod:265
17662 #, no-wrap
17663 msgid ""
17664 " void guestfs_free_application (struct guestfs_free_application *);\n"
17665 " void guestfs_free_application_list (struct guestfs_free_application_list "
17666 "*);\n"
17667 "\n"
17668 msgstr ""
17669
17670 #. type: textblock
17671 #: ../fish/guestfish.pod:5
17672 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
17673 msgstr ""
17674
17675 #. type: verbatim
17676 #: ../fish/guestfish.pod:9
17677 #, no-wrap
17678 msgid ""
17679 " guestfish [--options] [commands]\n"
17680 "\n"
17681 msgstr ""
17682
17683 #. type: verbatim
17684 #: ../fish/guestfish.pod:11
17685 #, no-wrap
17686 msgid ""
17687 " guestfish\n"
17688 "\n"
17689 msgstr ""
17690
17691 #. type: verbatim
17692 #: ../fish/guestfish.pod:13
17693 #, no-wrap
17694 msgid ""
17695 " guestfish [--ro|--rw] -a disk.img\n"
17696 "\n"
17697 msgstr ""
17698
17699 #. type: verbatim
17700 #: ../fish/guestfish.pod:15
17701 #, no-wrap
17702 msgid ""
17703 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
17704 "\n"
17705 msgstr ""
17706
17707 #. type: verbatim
17708 #: ../fish/guestfish.pod:17
17709 #, no-wrap
17710 msgid ""
17711 " guestfish -d libvirt-domain\n"
17712 "\n"
17713 msgstr ""
17714
17715 #. type: verbatim
17716 #: ../fish/guestfish.pod:19
17717 #, no-wrap
17718 msgid ""
17719 " guestfish [--ro|--rw] -a disk.img -i\n"
17720 "\n"
17721 msgstr ""
17722
17723 #. type: verbatim
17724 #: ../fish/guestfish.pod:21
17725 #, no-wrap
17726 msgid ""
17727 " guestfish -d libvirt-domain -i\n"
17728 "\n"
17729 msgstr ""
17730
17731 #. type: =head1
17732 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
17733 msgid "WARNING"
17734 msgstr ""
17735
17736 #. type: textblock
17737 #: ../fish/guestfish.pod:25
17738 msgid ""
17739 "Using guestfish in read/write mode on live virtual machines can be "
17740 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
17741 "option to use guestfish safely if the disk image or virtual machine might be "
17742 "live."
17743 msgstr ""
17744
17745 #. type: textblock
17746 #: ../fish/guestfish.pod:32
17747 msgid ""
17748 "Guestfish is a shell and command-line tool for examining and modifying "
17749 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
17750 "functionality of the guestfs API, see L<guestfs(3)>."
17751 msgstr ""
17752
17753 #. type: textblock
17754 #: ../fish/guestfish.pod:36
17755 msgid ""
17756 "Guestfish gives you structured access to the libguestfs API, from shell "
17757 "scripts or the command line or interactively.  If you want to rescue a "
17758 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
17759 "command."
17760 msgstr ""
17761
17762 #. type: =head1
17763 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:923 ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:58 ../tools/virt-resize.pl:64 ../tools/virt-tar.pl:50
17764 msgid "EXAMPLES"
17765 msgstr ""
17766
17767 #. type: =head2
17768 #: ../fish/guestfish.pod:43
17769 msgid "As an interactive shell"
17770 msgstr ""
17771
17772 #. type: verbatim
17773 #: ../fish/guestfish.pod:45
17774 #, no-wrap
17775 msgid ""
17776 " $ guestfish\n"
17777 " \n"
17778 msgstr ""
17779
17780 #. type: verbatim
17781 #: ../fish/guestfish.pod:47
17782 #, no-wrap
17783 msgid ""
17784 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
17785 " editing virtual machine filesystems.\n"
17786 " \n"
17787 msgstr ""
17788
17789 #. type: verbatim
17790 #: ../fish/guestfish.pod:50
17791 #, no-wrap
17792 msgid ""
17793 " Type: 'help' for a list of commands\n"
17794 "       'man' to read the manual\n"
17795 "       'quit' to quit the shell\n"
17796 " \n"
17797 msgstr ""
17798
17799 #. type: verbatim
17800 #: ../fish/guestfish.pod:54
17801 #, no-wrap
17802 msgid ""
17803 " ><fs> add-ro disk.img\n"
17804 " ><fs> run\n"
17805 " ><fs> list-filesystems\n"
17806 " /dev/sda1: ext4\n"
17807 " /dev/vg_guest/lv_root: ext4\n"
17808 " /dev/vg_guest/lv_swap: swap\n"
17809 " ><fs> mount /dev/vg_guest/lv_root /\n"
17810 " ><fs> cat /etc/fstab\n"
17811 " # /etc/fstab\n"
17812 " # Created by anaconda\n"
17813 " [...]\n"
17814 " ><fs> exit\n"
17815 "\n"
17816 msgstr ""
17817
17818 #. type: =head2
17819 #: ../fish/guestfish.pod:67
17820 msgid "From shell scripts"
17821 msgstr ""
17822
17823 #. type: textblock
17824 #: ../fish/guestfish.pod:69
17825 msgid "Create a new C</etc/motd> file in a guest or disk image:"
17826 msgstr ""
17827
17828 #. type: verbatim
17829 #: ../fish/guestfish.pod:71
17830 #, no-wrap
17831 msgid ""
17832 " guestfish <<_EOF_\n"
17833 " add disk.img\n"
17834 " run\n"
17835 " mount /dev/vg_guest/lv_root /\n"
17836 " write /etc/motd \"Welcome, new users\"\n"
17837 " _EOF_\n"
17838 "\n"
17839 msgstr ""
17840
17841 #. type: textblock
17842 #: ../fish/guestfish.pod:78
17843 msgid "List the LVM logical volumes in a disk image:"
17844 msgstr ""
17845
17846 #. type: verbatim
17847 #: ../fish/guestfish.pod:80
17848 #, no-wrap
17849 msgid ""
17850 " guestfish -a disk.img --ro <<_EOF_\n"
17851 " run\n"
17852 " lvs\n"
17853 " _EOF_\n"
17854 "\n"
17855 msgstr ""
17856
17857 #. type: textblock
17858 #: ../fish/guestfish.pod:85
17859 msgid "List all the filesystems in a disk image:"
17860 msgstr ""
17861
17862 #. type: verbatim
17863 #: ../fish/guestfish.pod:87
17864 #, no-wrap
17865 msgid ""
17866 " guestfish -a disk.img --ro <<_EOF_\n"
17867 " run\n"
17868 " list-filesystems\n"
17869 " _EOF_\n"
17870 "\n"
17871 msgstr ""
17872
17873 #. type: =head2
17874 #: ../fish/guestfish.pod:92
17875 msgid "On one command line"
17876 msgstr ""
17877
17878 #. type: textblock
17879 #: ../fish/guestfish.pod:94
17880 msgid "Update C</etc/resolv.conf> in a guest:"
17881 msgstr ""
17882
17883 #. type: verbatim
17884 #: ../fish/guestfish.pod:96
17885 #, no-wrap
17886 msgid ""
17887 " guestfish \\\n"
17888 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
17889 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
17890 "\n"
17891 msgstr ""
17892
17893 #. type: textblock
17894 #: ../fish/guestfish.pod:100
17895 msgid "Edit C</boot/grub/grub.conf> interactively:"
17896 msgstr ""
17897
17898 #. type: verbatim
17899 #: ../fish/guestfish.pod:102
17900 #, no-wrap
17901 msgid ""
17902 " guestfish --rw --add disk.img \\\n"
17903 "   --mount /dev/vg_guest/lv_root \\\n"
17904 "   --mount /dev/sda1:/boot \\\n"
17905 "   edit /boot/grub/grub.conf\n"
17906 "\n"
17907 msgstr ""
17908
17909 #. type: =head2
17910 #: ../fish/guestfish.pod:107
17911 msgid "Mount disks automatically"
17912 msgstr ""
17913
17914 #. type: textblock
17915 #: ../fish/guestfish.pod:109
17916 msgid ""
17917 "Use the I<-i> option to automatically mount the disks from a virtual "
17918 "machine:"
17919 msgstr ""
17920
17921 #. type: verbatim
17922 #: ../fish/guestfish.pod:112
17923 #, no-wrap
17924 msgid ""
17925 " guestfish --ro -a disk.img -i cat /etc/group\n"
17926 "\n"
17927 msgstr ""
17928
17929 #. type: verbatim
17930 #: ../fish/guestfish.pod:114
17931 #, no-wrap
17932 msgid ""
17933 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
17934 "\n"
17935 msgstr ""
17936
17937 #. type: textblock
17938 #: ../fish/guestfish.pod:116
17939 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
17940 msgstr ""
17941
17942 #. type: verbatim
17943 #: ../fish/guestfish.pod:118
17944 #, no-wrap
17945 msgid ""
17946 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
17947 "\n"
17948 msgstr ""
17949
17950 #. type: =head2
17951 #: ../fish/guestfish.pod:120
17952 msgid "As a script interpreter"
17953 msgstr ""
17954
17955 #. type: textblock
17956 #: ../fish/guestfish.pod:122
17957 msgid "Create a 100MB disk containing an ext2-formatted partition:"
17958 msgstr ""
17959
17960 #. type: verbatim
17961 #: ../fish/guestfish.pod:124
17962 #, no-wrap
17963 msgid ""
17964 " #!/usr/bin/guestfish -f\n"
17965 " sparse test1.img 100M\n"
17966 " run\n"
17967 " part-disk /dev/sda mbr\n"
17968 " mkfs ext2 /dev/sda1\n"
17969 "\n"
17970 msgstr ""
17971
17972 #. type: =head2
17973 #: ../fish/guestfish.pod:130
17974 msgid "Start with a prepared disk"
17975 msgstr ""
17976
17977 #. type: textblock
17978 #: ../fish/guestfish.pod:132
17979 msgid ""
17980 "An alternate way to create a 100MB disk called C<test1.img> containing a "
17981 "single ext2-formatted partition:"
17982 msgstr ""
17983
17984 #. type: verbatim
17985 #: ../fish/guestfish.pod:135
17986 #, no-wrap
17987 msgid ""
17988 " guestfish -N fs\n"
17989 "\n"
17990 msgstr ""
17991
17992 #. type: textblock
17993 #: ../fish/guestfish.pod:137
17994 msgid "To list what is available do:"
17995 msgstr ""
17996
17997 #. type: verbatim
17998 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:914
17999 #, no-wrap
18000 msgid ""
18001 " guestfish -N help | less\n"
18002 "\n"
18003 msgstr ""
18004
18005 #. type: =head2
18006 #: ../fish/guestfish.pod:141
18007 msgid "Remote control"
18008 msgstr ""
18009
18010 #. type: verbatim
18011 #: ../fish/guestfish.pod:143
18012 #, no-wrap
18013 msgid ""
18014 " eval \"`guestfish --listen`\"\n"
18015 " guestfish --remote add-ro disk.img\n"
18016 " guestfish --remote run\n"
18017 " guestfish --remote lvs\n"
18018 "\n"
18019 msgstr ""
18020
18021 #. type: =head1
18022 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37 ../fuse/guestmount.pod:73 ../tools/virt-edit.pl:72 ../tools/virt-win-reg.pl:96 ../tools/virt-resize.pl:254 ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
18023 msgid "OPTIONS"
18024 msgstr ""
18025
18026 #. type: =item
18027 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:131 ../tools/virt-edit.pl:80 ../tools/virt-win-reg.pl:104 ../tools/virt-resize.pl:262 ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
18028 msgid "B<--help>"
18029 msgstr ""
18030
18031 #. type: textblock
18032 #: ../fish/guestfish.pod:154
18033 msgid "Displays general help on options."
18034 msgstr ""
18035
18036 #. type: =item
18037 #: ../fish/guestfish.pod:156
18038 msgid "B<-h>"
18039 msgstr ""
18040
18041 #. type: =item
18042 #: ../fish/guestfish.pod:158
18043 msgid "B<--cmd-help>"
18044 msgstr ""
18045
18046 #. type: textblock
18047 #: ../fish/guestfish.pod:160
18048 msgid "Lists all available guestfish commands."
18049 msgstr ""
18050
18051 #. type: =item
18052 #: ../fish/guestfish.pod:162
18053 msgid "B<-h cmd>"
18054 msgstr ""
18055
18056 #. type: =item
18057 #: ../fish/guestfish.pod:164
18058 msgid "B<--cmd-help cmd>"
18059 msgstr ""
18060
18061 #. type: textblock
18062 #: ../fish/guestfish.pod:166
18063 msgid "Displays detailed help on a single command C<cmd>."
18064 msgstr ""
18065
18066 #. type: =item
18067 #: ../fish/guestfish.pod:168
18068 msgid "B<-a image>"
18069 msgstr ""
18070
18071 #. type: =item
18072 #: ../fish/guestfish.pod:170
18073 msgid "B<--add image>"
18074 msgstr ""
18075
18076 #. type: textblock
18077 #: ../fish/guestfish.pod:172
18078 msgid "Add a block device or virtual machine image to the shell."
18079 msgstr ""
18080
18081 #. type: textblock
18082 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
18083 msgid ""
18084 "The format of the disk image is auto-detected.  To override this and force a "
18085 "particular format use the I<--format=..> option."
18086 msgstr ""
18087
18088 #. type: textblock
18089 #: ../fish/guestfish.pod:177
18090 msgid ""
18091 "Using this flag is mostly equivalent to using the C<add> command, with "
18092 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
18093 "the I<--format:...> flag was given."
18094 msgstr ""
18095
18096 #. type: =item
18097 #: ../fish/guestfish.pod:181
18098 msgid "B<-c URI>"
18099 msgstr ""
18100
18101 #. type: =item
18102 #: ../fish/guestfish.pod:183
18103 msgid "B<--connect URI>"
18104 msgstr ""
18105
18106 #. type: textblock
18107 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
18108 msgid ""
18109 "When used in conjunction with the I<-d> option, this specifies the libvirt "
18110 "URI to use.  The default is to use the default libvirt connection."
18111 msgstr ""
18112
18113 #. type: =item
18114 #: ../fish/guestfish.pod:189
18115 msgid "B<--csh>"
18116 msgstr ""
18117
18118 #. type: textblock
18119 #: ../fish/guestfish.pod:191
18120 msgid ""
18121 "If using the I<--listen> option and a csh-like shell, use this option.  See "
18122 "section L</REMOTE CONTROL AND CSH> below."
18123 msgstr ""
18124
18125 #. type: =item
18126 #: ../fish/guestfish.pod:194
18127 msgid "B<-d libvirt-domain>"
18128 msgstr ""
18129
18130 #. type: =item
18131 #: ../fish/guestfish.pod:196
18132 msgid "B<--domain libvirt-domain>"
18133 msgstr ""
18134
18135 #. type: textblock
18136 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
18137 msgid ""
18138 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
18139 "used, then any libvirt domain can be used.  However in write mode, only "
18140 "libvirt domains which are shut down can be named here."
18141 msgstr ""
18142
18143 #. type: textblock
18144 #: ../fish/guestfish.pod:202
18145 msgid ""
18146 "Using this flag is mostly equivalent to using the C<add-domain> command, "
18147 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
18148 "if the I<--format:...> flag was given."
18149 msgstr ""
18150
18151 #. type: =item
18152 #: ../fish/guestfish.pod:206
18153 msgid "B<-D>"
18154 msgstr ""
18155
18156 #. type: =item
18157 #: ../fish/guestfish.pod:208
18158 msgid "B<--no-dest-paths>"
18159 msgstr ""
18160
18161 #. type: textblock
18162 #: ../fish/guestfish.pod:210
18163 msgid ""
18164 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
18165 "to hit the tab key to complete paths on the guest filesystem, but this "
18166 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
18167 "allow this feature to be disabled."
18168 msgstr ""
18169
18170 #. type: =item
18171 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
18172 msgid "B<--echo-keys>"
18173 msgstr ""
18174
18175 #. type: textblock
18176 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
18177 msgid ""
18178 "When prompting for keys and passphrases, guestfish normally turns echoing "
18179 "off so you cannot see what you are typing.  If you are not worried about "
18180 "Tempest attacks and there is no one else in the room you can specify this "
18181 "flag to see what you are typing."
18182 msgstr ""
18183
18184 #. type: =item
18185 #: ../fish/guestfish.pod:222
18186 msgid "B<-f file>"
18187 msgstr ""
18188
18189 #. type: =item
18190 #: ../fish/guestfish.pod:224
18191 msgid "B<--file file>"
18192 msgstr ""
18193
18194 #. type: textblock
18195 #: ../fish/guestfish.pod:226
18196 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
18197 msgstr ""
18198
18199 #. type: verbatim
18200 #: ../fish/guestfish.pod:229
18201 #, no-wrap
18202 msgid ""
18203 " #!/usr/bin/guestfish -f\n"
18204 "\n"
18205 msgstr ""
18206
18207 #. type: =item
18208 #: ../fish/guestfish.pod:231
18209 msgid "B<--format=raw|qcow2|..>"
18210 msgstr ""
18211
18212 #. type: =item
18213 #: ../fish/guestfish.pod:233
18214 msgid "B<--format>"
18215 msgstr ""
18216
18217 #. type: textblock
18218 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
18219 msgid ""
18220 "The default for the I<-a> option is to auto-detect the format of the disk "
18221 "image.  Using this forces the disk format for I<-a> options which follow on "
18222 "the command line.  Using I<--format> with no argument switches back to "
18223 "auto-detection for subsequent I<-a> options."
18224 msgstr ""
18225
18226 #. type: verbatim
18227 #: ../fish/guestfish.pod:242
18228 #, no-wrap
18229 msgid ""
18230 " guestfish --format=raw -a disk.img\n"
18231 "\n"
18232 msgstr ""
18233
18234 #. type: textblock
18235 #: ../fish/guestfish.pod:244
18236 msgid "forces raw format (no auto-detection) for C<disk.img>."
18237 msgstr ""
18238
18239 #. type: verbatim
18240 #: ../fish/guestfish.pod:246
18241 #, no-wrap
18242 msgid ""
18243 " guestfish --format=raw -a disk.img --format -a another.img\n"
18244 "\n"
18245 msgstr ""
18246
18247 #. type: textblock
18248 #: ../fish/guestfish.pod:248
18249 msgid ""
18250 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
18251 "auto-detection for C<another.img>."
18252 msgstr ""
18253
18254 #. type: textblock
18255 #: ../fish/guestfish.pod:251
18256 msgid ""
18257 "If you have untrusted raw-format guest disk images, you should use this "
18258 "option to specify the disk format.  This avoids a possible security problem "
18259 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
18260 msgstr ""
18261
18262 #. type: =item
18263 #: ../fish/guestfish.pod:256
18264 msgid "B<-i>"
18265 msgstr ""
18266
18267 #. type: =item
18268 #: ../fish/guestfish.pod:258
18269 msgid "B<--inspector>"
18270 msgstr ""
18271
18272 #. type: textblock
18273 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
18274 msgid ""
18275 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
18276 "system and mount filesystems as they would be mounted on the real virtual "
18277 "machine."
18278 msgstr ""
18279
18280 #. type: textblock
18281 #: ../fish/guestfish.pod:264
18282 msgid "Typical usage is either:"
18283 msgstr ""
18284
18285 #. type: verbatim
18286 #: ../fish/guestfish.pod:266
18287 #, no-wrap
18288 msgid ""
18289 " guestfish -d myguest -i\n"
18290 "\n"
18291 msgstr ""
18292
18293 #. type: textblock
18294 #: ../fish/guestfish.pod:268
18295 msgid "(for an inactive libvirt domain called I<myguest>), or:"
18296 msgstr ""
18297
18298 #. type: verbatim
18299 #: ../fish/guestfish.pod:270
18300 #, no-wrap
18301 msgid ""
18302 " guestfish --ro -d myguest -i\n"
18303 "\n"
18304 msgstr ""
18305
18306 #. type: textblock
18307 #: ../fish/guestfish.pod:272
18308 msgid "(for active domains, readonly), or specify the block device directly:"
18309 msgstr ""
18310
18311 #. type: verbatim
18312 #: ../fish/guestfish.pod:274
18313 #, no-wrap
18314 msgid ""
18315 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
18316 "\n"
18317 msgstr ""
18318
18319 #. type: textblock
18320 #: ../fish/guestfish.pod:276
18321 msgid ""
18322 "Note that the command line syntax changed slightly over older versions of "
18323 "guestfish.  You can still use the old syntax:"
18324 msgstr ""
18325
18326 #. type: verbatim
18327 #: ../fish/guestfish.pod:279
18328 #, no-wrap
18329 msgid ""
18330 " guestfish [--ro] -i disk.img\n"
18331 "\n"
18332 msgstr ""
18333
18334 #. type: verbatim
18335 #: ../fish/guestfish.pod:281
18336 #, no-wrap
18337 msgid ""
18338 " guestfish [--ro] -i libvirt-domain\n"
18339 "\n"
18340 msgstr ""
18341
18342 #. type: textblock
18343 #: ../fish/guestfish.pod:283
18344 msgid ""
18345 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
18346 "then using other commands to mount the filesystems that were found."
18347 msgstr ""
18348
18349 #. type: =item
18350 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
18351 msgid "B<--keys-from-stdin>"
18352 msgstr ""
18353
18354 #. type: textblock
18355 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
18356 msgid ""
18357 "Read key or passphrase parameters from stdin.  The default is to try to read "
18358 "passphrases from the user by opening C</dev/tty>."
18359 msgstr ""
18360
18361 #. type: =item
18362 #: ../fish/guestfish.pod:292
18363 msgid "B<--listen>"
18364 msgstr ""
18365
18366 #. type: textblock
18367 #: ../fish/guestfish.pod:294
18368 msgid ""
18369 "Fork into the background and listen for remote commands.  See section "
18370 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
18371 msgstr ""
18372
18373 #. type: =item
18374 #: ../fish/guestfish.pod:297
18375 msgid "B<-m dev[:mountpoint]>"
18376 msgstr ""
18377
18378 #. type: =item
18379 #: ../fish/guestfish.pod:299
18380 msgid "B<--mount dev[:mountpoint]>"
18381 msgstr ""
18382
18383 #. type: textblock
18384 #: ../fish/guestfish.pod:301
18385 msgid "Mount the named partition or logical volume on the given mountpoint."
18386 msgstr ""
18387
18388 #. type: textblock
18389 #: ../fish/guestfish.pod:303
18390 msgid "If the mountpoint is omitted, it defaults to C</>."
18391 msgstr ""
18392
18393 #. type: textblock
18394 #: ../fish/guestfish.pod:305
18395 msgid "You have to mount something on C</> before most commands will work."
18396 msgstr ""
18397
18398 #. type: textblock
18399 #: ../fish/guestfish.pod:307
18400 msgid ""
18401 "If any I<-m> or I<--mount> options are given, the guest is automatically "
18402 "launched."
18403 msgstr ""
18404
18405 #. type: textblock
18406 #: ../fish/guestfish.pod:310
18407 msgid ""
18408 "If you don't know what filesystems a disk image contains, you can either run "
18409 "guestfish without this option, then list the partitions, filesystems and LVs "
18410 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
18411 "commands), or you can use the L<virt-filesystems(1)> program."
18412 msgstr ""
18413
18414 #. type: textblock
18415 #: ../fish/guestfish.pod:316
18416 msgid ""
18417 "Using this flag is mostly equivalent to using the C<mount-options> command "
18418 "or the C<mount-ro> command if the I<--ro> flag was given."
18419 msgstr ""
18420
18421 #. type: =item
18422 #: ../fish/guestfish.pod:319
18423 msgid "B<-n>"
18424 msgstr ""
18425
18426 #. type: =item
18427 #: ../fish/guestfish.pod:321
18428 msgid "B<--no-sync>"
18429 msgstr ""
18430
18431 #. type: textblock
18432 #: ../fish/guestfish.pod:323
18433 msgid ""
18434 "Disable autosync.  This is enabled by default.  See the discussion of "
18435 "autosync in the L<guestfs(3)> manpage."
18436 msgstr ""
18437
18438 #. type: =item
18439 #: ../fish/guestfish.pod:326
18440 msgid "B<-N type>"
18441 msgstr ""
18442
18443 #. type: =item
18444 #: ../fish/guestfish.pod:328
18445 msgid "B<--new type>"
18446 msgstr ""
18447
18448 #. type: =item
18449 #: ../fish/guestfish.pod:330
18450 msgid "B<-N help>"
18451 msgstr ""
18452
18453 #. type: textblock
18454 #: ../fish/guestfish.pod:332
18455 msgid ""
18456 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
18457 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
18458 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
18459 "IMAGES> below."
18460 msgstr ""
18461
18462 #. type: =item
18463 #: ../fish/guestfish.pod:337
18464 msgid "B<--progress-bars>"
18465 msgstr ""
18466
18467 #. type: textblock
18468 #: ../fish/guestfish.pod:339
18469 msgid "Enable progress bars, even when guestfish is used non-interactively."
18470 msgstr ""
18471
18472 #. type: textblock
18473 #: ../fish/guestfish.pod:341
18474 msgid ""
18475 "Progress bars are enabled by default when guestfish is used as an "
18476 "interactive shell."
18477 msgstr ""
18478
18479 #. type: =item
18480 #: ../fish/guestfish.pod:344
18481 msgid "B<--no-progress-bars>"
18482 msgstr ""
18483
18484 #. type: textblock
18485 #: ../fish/guestfish.pod:346
18486 msgid "Disable progress bars."
18487 msgstr ""
18488
18489 #. type: =item
18490 #: ../fish/guestfish.pod:348
18491 msgid "B<--remote[=pid]>"
18492 msgstr ""
18493
18494 #. type: textblock
18495 #: ../fish/guestfish.pod:350
18496 msgid ""
18497 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
18498 "CONTROL GUESTFISH OVER A SOCKET> below."
18499 msgstr ""
18500
18501 #. type: =item
18502 #: ../fish/guestfish.pod:353
18503 msgid "B<-r>"
18504 msgstr ""
18505
18506 #. type: =item
18507 #: ../fish/guestfish.pod:355
18508 msgid "B<--ro>"
18509 msgstr ""
18510
18511 #. type: textblock
18512 #: ../fish/guestfish.pod:357
18513 msgid ""
18514 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
18515 "mounts are done read-only."
18516 msgstr ""
18517
18518 #. type: textblock
18519 #: ../fish/guestfish.pod:360
18520 msgid ""
18521 "The option must always be used if the disk image or virtual machine might be "
18522 "running, and is generally recommended in cases where you don't need write "
18523 "access to the disk."
18524 msgstr ""
18525
18526 #. type: textblock
18527 #: ../fish/guestfish.pod:364
18528 msgid ""
18529 "Note that prepared disk images created with I<-N> are not affected by this "
18530 "option.  Also commands like C<add> are not affected - you have to specify "
18531 "the C<readonly:true> option explicitly if you need it."
18532 msgstr ""
18533
18534 #. type: textblock
18535 #: ../fish/guestfish.pod:368
18536 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
18537 msgstr ""
18538
18539 #. type: =item
18540 #: ../fish/guestfish.pod:370 ../fuse/guestmount.pod:208
18541 msgid "B<--selinux>"
18542 msgstr ""
18543
18544 #. type: textblock
18545 #: ../fish/guestfish.pod:372
18546 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
18547 msgstr ""
18548
18549 #. type: =item
18550 #: ../fish/guestfish.pod:374
18551 msgid "B<-v>"
18552 msgstr ""
18553
18554 #. type: =item
18555 #: ../fish/guestfish.pod:376
18556 msgid "B<--verbose>"
18557 msgstr ""
18558
18559 #. type: textblock
18560 #: ../fish/guestfish.pod:378
18561 msgid ""
18562 "Enable very verbose messages.  This is particularly useful if you find a "
18563 "bug."
18564 msgstr ""
18565
18566 #. type: =item
18567 #: ../fish/guestfish.pod:381
18568 msgid "B<-V>"
18569 msgstr ""
18570
18571 #. type: =item
18572 #: ../fish/guestfish.pod:383 ../tools/virt-edit.pl:88 ../tools/virt-win-reg.pl:112 ../tools/virt-resize.pl:270 ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
18573 msgid "B<--version>"
18574 msgstr ""
18575
18576 #. type: textblock
18577 #: ../fish/guestfish.pod:385
18578 msgid "Display the guestfish / libguestfs version number and exit."
18579 msgstr ""
18580
18581 #. type: =item
18582 #: ../fish/guestfish.pod:387
18583 msgid "B<-w>"
18584 msgstr ""
18585
18586 #. type: =item
18587 #: ../fish/guestfish.pod:389
18588 msgid "B<--rw>"
18589 msgstr ""
18590
18591 #. type: textblock
18592 #: ../fish/guestfish.pod:391
18593 msgid ""
18594 "This option does nothing at the moment.  See L</OPENING DISKS FOR READ AND "
18595 "WRITE> below."
18596 msgstr ""
18597
18598 #. type: =item
18599 #: ../fish/guestfish.pod:394
18600 msgid "B<-x>"
18601 msgstr ""
18602
18603 #. type: textblock
18604 #: ../fish/guestfish.pod:396
18605 msgid "Echo each command before executing it."
18606 msgstr ""
18607
18608 #. type: =head1
18609 #: ../fish/guestfish.pod:400
18610 msgid "COMMANDS ON COMMAND LINE"
18611 msgstr ""
18612
18613 #. type: textblock
18614 #: ../fish/guestfish.pod:402
18615 msgid "Any additional (non-option) arguments are treated as commands to execute."
18616 msgstr ""
18617
18618 #. type: textblock
18619 #: ../fish/guestfish.pod:405
18620 msgid ""
18621 "Commands to execute should be separated by a colon (C<:>), where the colon "
18622 "is a separate parameter.  Thus:"
18623 msgstr ""
18624
18625 #. type: verbatim
18626 #: ../fish/guestfish.pod:408
18627 #, no-wrap
18628 msgid ""
18629 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
18630 "\n"
18631 msgstr ""
18632
18633 #. type: textblock
18634 #: ../fish/guestfish.pod:410
18635 msgid ""
18636 "If there are no additional arguments, then we enter a shell, either an "
18637 "interactive shell with a prompt (if the input is a terminal) or a "
18638 "non-interactive shell."
18639 msgstr ""
18640
18641 #. type: textblock
18642 #: ../fish/guestfish.pod:414
18643 msgid ""
18644 "In either command line mode or non-interactive shell, the first command that "
18645 "gives an error causes the whole shell to exit.  In interactive mode (with a "
18646 "prompt) if a command fails, you can continue to enter commands."
18647 msgstr ""
18648
18649 #. type: =head1
18650 #: ../fish/guestfish.pod:419
18651 msgid "USING launch (OR run)"
18652 msgstr ""
18653
18654 #. type: textblock
18655 #: ../fish/guestfish.pod:421
18656 msgid ""
18657 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
18658 "then launch it, then mount any disks you need, and finally issue "
18659 "actions/commands.  So the general order of the day is:"
18660 msgstr ""
18661
18662 #. type: textblock
18663 #: ../fish/guestfish.pod:429
18664 msgid "add or -a/--add"
18665 msgstr ""
18666
18667 #. type: textblock
18668 #: ../fish/guestfish.pod:433
18669 msgid "launch (aka run)"
18670 msgstr ""
18671
18672 #. type: textblock
18673 #: ../fish/guestfish.pod:437
18674 msgid "mount or -m/--mount"
18675 msgstr ""
18676
18677 #. type: textblock
18678 #: ../fish/guestfish.pod:441
18679 msgid "any other commands"
18680 msgstr ""
18681
18682 #. type: textblock
18683 #: ../fish/guestfish.pod:445
18684 msgid ""
18685 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
18686 "guest before mounting or performing any other commands."
18687 msgstr ""
18688
18689 #. type: textblock
18690 #: ../fish/guestfish.pod:448
18691 msgid ""
18692 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
18693 "I<--new> options were given then C<run> is done automatically, simply "
18694 "because guestfish can't perform the action you asked for without doing this."
18695 msgstr ""
18696
18697 #. type: =head1
18698 #: ../fish/guestfish.pod:453
18699 msgid "OPENING DISKS FOR READ AND WRITE"
18700 msgstr ""
18701
18702 #. type: textblock
18703 #: ../fish/guestfish.pod:455
18704 msgid ""
18705 "The guestfish (and L<guestmount(1)>) options I<--ro> and I<--rw> affect "
18706 "whether the other command line options I<-a>, I<-c>, I<-d>, I<-i> and I<-m> "
18707 "open disk images read-only or for writing."
18708 msgstr ""
18709
18710 #. type: textblock
18711 #: ../fish/guestfish.pod:459
18712 msgid ""
18713 "In libguestfs E<lt> 1.6.2, guestfish and guestmount defaulted to opening "
18714 "disk images supplied on the command line for write.  To open a disk image "
18715 "read-only you have to do I<-a image --ro>."
18716 msgstr ""
18717
18718 #. type: textblock
18719 #: ../fish/guestfish.pod:463
18720 msgid ""
18721 "This matters: If you accidentally open a live VM disk image writable then "
18722 "you will cause irreversible disk corruption."
18723 msgstr ""
18724
18725 #. type: textblock
18726 #: ../fish/guestfish.pod:466
18727 msgid ""
18728 "By libguestfs 1.10 we intend to change the default the other way.  Disk "
18729 "images will be opened read-only.  You will have to either specify "
18730 "I<guestfish --rw> or change a configuration file in order to get write "
18731 "access for disk images specified by those other command line options."
18732 msgstr ""
18733
18734 #. type: textblock
18735 #: ../fish/guestfish.pod:471
18736 msgid ""
18737 "This version of guestfish has a I<--rw> option which does nothing (it is "
18738 "already the default).  However it is highly recommended that you use this "
18739 "option to indicate that guestfish needs write access, and to prepare your "
18740 "scripts for the day when this option will be required for write access."
18741 msgstr ""
18742
18743 #. type: textblock
18744 #: ../fish/guestfish.pod:477
18745 msgid ""
18746 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
18747 "other libguestfs program apart from guestfish and guestmount."
18748 msgstr ""
18749
18750 #. type: =head1
18751 #: ../fish/guestfish.pod:480
18752 msgid "QUOTING"
18753 msgstr ""
18754
18755 #. type: textblock
18756 #: ../fish/guestfish.pod:482
18757 msgid ""
18758 "You can quote ordinary parameters using either single or double quotes.  For "
18759 "example:"
18760 msgstr ""
18761
18762 #. type: verbatim
18763 #: ../fish/guestfish.pod:485
18764 #, no-wrap
18765 msgid ""
18766 " add \"file with a space.img\"\n"
18767 "\n"
18768 msgstr ""
18769
18770 #. type: verbatim
18771 #: ../fish/guestfish.pod:487
18772 #, no-wrap
18773 msgid ""
18774 " rm '/file name'\n"
18775 "\n"
18776 msgstr ""
18777
18778 #. type: verbatim
18779 #: ../fish/guestfish.pod:489
18780 #, no-wrap
18781 msgid ""
18782 " rm '/\"'\n"
18783 "\n"
18784 msgstr ""
18785
18786 #. type: textblock
18787 #: ../fish/guestfish.pod:491
18788 msgid ""
18789 "A few commands require a list of strings to be passed.  For these, use a "
18790 "whitespace-separated list, enclosed in quotes.  Strings containing "
18791 "whitespace to be passed through must be enclosed in single quotes.  A "
18792 "literal single quote must be escaped with a backslash."
18793 msgstr ""
18794
18795 #. type: verbatim
18796 #: ../fish/guestfish.pod:496
18797 #, no-wrap
18798 msgid ""
18799 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
18800 " command \"/bin/echo 'foo      bar'\"\n"
18801 " command \"/bin/echo \\'foo\\'\"\n"
18802 "\n"
18803 msgstr ""
18804
18805 #. type: =head1
18806 #: ../fish/guestfish.pod:500
18807 msgid "OPTIONAL ARGUMENTS"
18808 msgstr ""
18809
18810 #. type: textblock
18811 #: ../fish/guestfish.pod:502
18812 msgid ""
18813 "Some commands take optional arguments.  These arguments appear in this "
18814 "documentation as C<[argname:..]>.  You can use them as in these examples:"
18815 msgstr ""
18816
18817 #. type: verbatim
18818 #: ../fish/guestfish.pod:506
18819 #, no-wrap
18820 msgid ""
18821 " add-drive-opts filename\n"
18822 "\n"
18823 msgstr ""
18824
18825 #. type: verbatim
18826 #: ../fish/guestfish.pod:508
18827 #, no-wrap
18828 msgid ""
18829 " add-drive-opts filename readonly:true\n"
18830 "\n"
18831 msgstr ""
18832
18833 #. type: verbatim
18834 #: ../fish/guestfish.pod:510
18835 #, no-wrap
18836 msgid ""
18837 " add-drive-opts filename format:qcow2 readonly:false\n"
18838 "\n"
18839 msgstr ""
18840
18841 #. type: textblock
18842 #: ../fish/guestfish.pod:512
18843 msgid ""
18844 "Each optional argument can appear at most once.  All optional arguments must "
18845 "appear after the required ones."
18846 msgstr ""
18847
18848 #. type: =head1
18849 #: ../fish/guestfish.pod:515
18850 msgid "NUMBERS"
18851 msgstr ""
18852
18853 #. type: textblock
18854 #: ../fish/guestfish.pod:517
18855 msgid "This section applies to all commands which can take integers as parameters."
18856 msgstr ""
18857
18858 #. type: =head2
18859 #: ../fish/guestfish.pod:520
18860 msgid "SIZE SUFFIX"
18861 msgstr ""
18862
18863 #. type: textblock
18864 #: ../fish/guestfish.pod:522
18865 msgid ""
18866 "When the command takes a parameter measured in bytes, you can use one of the "
18867 "following suffixes to specify kilobytes, megabytes and larger sizes:"
18868 msgstr ""
18869
18870 #. type: =item
18871 #: ../fish/guestfish.pod:528
18872 msgid "B<k> or B<K> or B<KiB>"
18873 msgstr ""
18874
18875 #. type: textblock
18876 #: ../fish/guestfish.pod:530
18877 msgid "The size in kilobytes (multiplied by 1024)."
18878 msgstr ""
18879
18880 #. type: =item
18881 #: ../fish/guestfish.pod:532
18882 msgid "B<KB>"
18883 msgstr ""
18884
18885 #. type: textblock
18886 #: ../fish/guestfish.pod:534
18887 msgid "The size in SI 1000 byte units."
18888 msgstr ""
18889
18890 #. type: =item
18891 #: ../fish/guestfish.pod:536
18892 msgid "B<M> or B<MiB>"
18893 msgstr ""
18894
18895 #. type: textblock
18896 #: ../fish/guestfish.pod:538
18897 msgid "The size in megabytes (multiplied by 1048576)."
18898 msgstr ""
18899
18900 #. type: =item
18901 #: ../fish/guestfish.pod:540
18902 msgid "B<MB>"
18903 msgstr ""
18904
18905 #. type: textblock
18906 #: ../fish/guestfish.pod:542
18907 msgid "The size in SI 1000000 byte units."
18908 msgstr ""
18909
18910 #. type: =item
18911 #: ../fish/guestfish.pod:544
18912 msgid "B<G> or B<GiB>"
18913 msgstr ""
18914
18915 #. type: textblock
18916 #: ../fish/guestfish.pod:546
18917 msgid "The size in gigabytes (multiplied by 2**30)."
18918 msgstr ""
18919
18920 #. type: =item
18921 #: ../fish/guestfish.pod:548
18922 msgid "B<GB>"
18923 msgstr ""
18924
18925 #. type: textblock
18926 #: ../fish/guestfish.pod:550
18927 msgid "The size in SI 10**9 byte units."
18928 msgstr ""
18929
18930 #. type: =item
18931 #: ../fish/guestfish.pod:552
18932 msgid "B<T> or B<TiB>"
18933 msgstr ""
18934
18935 #. type: textblock
18936 #: ../fish/guestfish.pod:554
18937 msgid "The size in terabytes (multiplied by 2**40)."
18938 msgstr ""
18939
18940 #. type: =item
18941 #: ../fish/guestfish.pod:556
18942 msgid "B<TB>"
18943 msgstr ""
18944
18945 #. type: textblock
18946 #: ../fish/guestfish.pod:558
18947 msgid "The size in SI 10**12 byte units."
18948 msgstr ""
18949
18950 #. type: =item
18951 #: ../fish/guestfish.pod:560
18952 msgid "B<P> or B<PiB>"
18953 msgstr ""
18954
18955 #. type: textblock
18956 #: ../fish/guestfish.pod:562
18957 msgid "The size in petabytes (multiplied by 2**50)."
18958 msgstr ""
18959
18960 #. type: =item
18961 #: ../fish/guestfish.pod:564
18962 msgid "B<PB>"
18963 msgstr ""
18964
18965 #. type: textblock
18966 #: ../fish/guestfish.pod:566
18967 msgid "The size in SI 10**15 byte units."
18968 msgstr ""
18969
18970 #. type: =item
18971 #: ../fish/guestfish.pod:568
18972 msgid "B<E> or B<EiB>"
18973 msgstr ""
18974
18975 #. type: textblock
18976 #: ../fish/guestfish.pod:570
18977 msgid "The size in exabytes (multiplied by 2**60)."
18978 msgstr ""
18979
18980 #. type: =item
18981 #: ../fish/guestfish.pod:572
18982 msgid "B<EB>"
18983 msgstr ""
18984
18985 #. type: textblock
18986 #: ../fish/guestfish.pod:574
18987 msgid "The size in SI 10**18 byte units."
18988 msgstr ""
18989
18990 #. type: =item
18991 #: ../fish/guestfish.pod:576
18992 msgid "B<Z> or B<ZiB>"
18993 msgstr ""
18994
18995 #. type: textblock
18996 #: ../fish/guestfish.pod:578
18997 msgid "The size in zettabytes (multiplied by 2**70)."
18998 msgstr ""
18999
19000 #. type: =item
19001 #: ../fish/guestfish.pod:580
19002 msgid "B<ZB>"
19003 msgstr ""
19004
19005 #. type: textblock
19006 #: ../fish/guestfish.pod:582
19007 msgid "The size in SI 10**21 byte units."
19008 msgstr ""
19009
19010 #. type: =item
19011 #: ../fish/guestfish.pod:584
19012 msgid "B<Y> or B<YiB>"
19013 msgstr ""
19014
19015 #. type: textblock
19016 #: ../fish/guestfish.pod:586
19017 msgid "The size in yottabytes (multiplied by 2**80)."
19018 msgstr ""
19019
19020 #. type: =item
19021 #: ../fish/guestfish.pod:588
19022 msgid "B<YB>"
19023 msgstr ""
19024
19025 #. type: textblock
19026 #: ../fish/guestfish.pod:590
19027 msgid "The size in SI 10**24 byte units."
19028 msgstr ""
19029
19030 #. type: verbatim
19031 #: ../fish/guestfish.pod:596
19032 #, no-wrap
19033 msgid ""
19034 " truncate-size /file 1G\n"
19035 "\n"
19036 msgstr ""
19037
19038 #. type: textblock
19039 #: ../fish/guestfish.pod:598
19040 msgid "would truncate the file to 1 gigabyte."
19041 msgstr ""
19042
19043 #. type: textblock
19044 #: ../fish/guestfish.pod:600
19045 msgid ""
19046 "Be careful because a few commands take sizes in kilobytes or megabytes "
19047 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
19048 "Adding a suffix will probably not do what you expect."
19049 msgstr ""
19050
19051 #. type: =head2
19052 #: ../fish/guestfish.pod:604
19053 msgid "OCTAL AND HEXADECIMAL NUMBERS"
19054 msgstr ""
19055
19056 #. type: textblock
19057 #: ../fish/guestfish.pod:606
19058 msgid ""
19059 "For specifying the radix (base) use the C convention: C<0> to prefix an "
19060 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
19061 msgstr ""
19062
19063 #. type: verbatim
19064 #: ../fish/guestfish.pod:609
19065 #, no-wrap
19066 msgid ""
19067 " 1234      decimal number 1234\n"
19068 " 02322     octal number, equivalent to decimal 1234\n"
19069 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
19070 "\n"
19071 msgstr ""
19072
19073 #. type: textblock
19074 #: ../fish/guestfish.pod:613
19075 msgid ""
19076 "When using the C<chmod> command, you almost always want to specify an octal "
19077 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
19078 "L<chmod(1)> program):"
19079 msgstr ""
19080
19081 #. type: verbatim
19082 #: ../fish/guestfish.pod:617
19083 #, no-wrap
19084 msgid ""
19085 " chmod 0777 /public  # OK\n"
19086 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
19087 "\n"
19088 msgstr ""
19089
19090 #. type: textblock
19091 #: ../fish/guestfish.pod:620
19092 msgid ""
19093 "Commands that return numbers usually print them in decimal, but some "
19094 "commands print numbers in other radices (eg. C<umask> prints the mode in "
19095 "octal, preceeded by C<0>)."
19096 msgstr ""
19097
19098 #. type: =head1
19099 #: ../fish/guestfish.pod:624
19100 msgid "WILDCARDS AND GLOBBING"
19101 msgstr ""
19102
19103 #. type: textblock
19104 #: ../fish/guestfish.pod:626
19105 msgid ""
19106 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
19107 "(globbing) by default.  So for example the following will not do what you "
19108 "expect:"
19109 msgstr ""
19110
19111 #. type: verbatim
19112 #: ../fish/guestfish.pod:630
19113 #, no-wrap
19114 msgid ""
19115 " rm-rf /home/*\n"
19116 "\n"
19117 msgstr ""
19118
19119 #. type: textblock
19120 #: ../fish/guestfish.pod:632
19121 msgid ""
19122 "Assuming you don't have a directory called literally C</home/*> then the "
19123 "above command will return an error."
19124 msgstr ""
19125
19126 #. type: textblock
19127 #: ../fish/guestfish.pod:635
19128 msgid "To perform wildcard expansion, use the C<glob> command."
19129 msgstr ""
19130
19131 #. type: verbatim
19132 #: ../fish/guestfish.pod:637
19133 #, no-wrap
19134 msgid ""
19135 " glob rm-rf /home/*\n"
19136 "\n"
19137 msgstr ""
19138
19139 #. type: textblock
19140 #: ../fish/guestfish.pod:639
19141 msgid ""
19142 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
19143 "many times), equivalent to:"
19144 msgstr ""
19145
19146 #. type: verbatim
19147 #: ../fish/guestfish.pod:642
19148 #, no-wrap
19149 msgid ""
19150 " rm-rf /home/jim\n"
19151 " rm-rf /home/joe\n"
19152 " rm-rf /home/mary\n"
19153 "\n"
19154 msgstr ""
19155
19156 #. type: textblock
19157 #: ../fish/guestfish.pod:646
19158 msgid "C<glob> only works on simple guest paths and not on device names."
19159 msgstr ""
19160
19161 #. type: textblock
19162 #: ../fish/guestfish.pod:648
19163 msgid ""
19164 "If you have several parameters, each containing a wildcard, then glob will "
19165 "perform a Cartesian product."
19166 msgstr ""
19167
19168 #. type: =head1
19169 #: ../fish/guestfish.pod:651
19170 msgid "COMMENTS"
19171 msgstr ""
19172
19173 #. type: textblock
19174 #: ../fish/guestfish.pod:653
19175 msgid ""
19176 "Any line which starts with a I<#> character is treated as a comment and "
19177 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
19178 "a command.  For example:"
19179 msgstr ""
19180
19181 #. type: verbatim
19182 #: ../fish/guestfish.pod:657
19183 #, no-wrap
19184 msgid ""
19185 " # this is a comment\n"
19186 "         # this is a comment\n"
19187 " foo # NOT a comment\n"
19188 "\n"
19189 msgstr ""
19190
19191 #. type: textblock
19192 #: ../fish/guestfish.pod:661
19193 msgid "Blank lines are also ignored."
19194 msgstr ""
19195
19196 #. type: =head1
19197 #: ../fish/guestfish.pod:663
19198 msgid "RUNNING COMMANDS LOCALLY"
19199 msgstr ""
19200
19201 #. type: textblock
19202 #: ../fish/guestfish.pod:665
19203 msgid ""
19204 "Any line which starts with a I<!> character is treated as a command sent to "
19205 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
19206 msgstr ""
19207
19208 #. type: verbatim
19209 #: ../fish/guestfish.pod:669
19210 #, no-wrap
19211 msgid ""
19212 " !mkdir local\n"
19213 " tgz-out /remote local/remote-data.tar.gz\n"
19214 "\n"
19215 msgstr ""
19216
19217 #. type: textblock
19218 #: ../fish/guestfish.pod:672
19219 msgid ""
19220 "will create a directory C<local> on the host, and then export the contents "
19221 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
19222 "(See C<tgz-out>)."
19223 msgstr ""
19224
19225 #. type: textblock
19226 #: ../fish/guestfish.pod:676
19227 msgid ""
19228 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
19229 "effect, due to the way that subprocesses work in Unix."
19230 msgstr ""
19231
19232 #. type: =head2
19233 #: ../fish/guestfish.pod:679
19234 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
19235 msgstr ""
19236
19237 #. type: textblock
19238 #: ../fish/guestfish.pod:681
19239 msgid ""
19240 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
19241 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
19242 "and executed as guestfish commands."
19243 msgstr ""
19244
19245 #. type: textblock
19246 #: ../fish/guestfish.pod:685
19247 msgid ""
19248 "Thus you can use shell script to construct arbitrary guestfish commands "
19249 "which are then parsed by guestfish."
19250 msgstr ""
19251
19252 #. type: textblock
19253 #: ../fish/guestfish.pod:688
19254 msgid ""
19255 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
19256 "through C</foo.100>) using guestfish commands alone.  However this is simple "
19257 "if we use a shell script to create the guestfish commands for us:"
19258 msgstr ""
19259
19260 #. type: verbatim
19261 #: ../fish/guestfish.pod:693
19262 #, no-wrap
19263 msgid ""
19264 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
19265 "\n"
19266 msgstr ""
19267
19268 #. type: textblock
19269 #: ../fish/guestfish.pod:695
19270 msgid "or with names like C</foo.001>:"
19271 msgstr ""
19272
19273 #. type: verbatim
19274 #: ../fish/guestfish.pod:697
19275 #, no-wrap
19276 msgid ""
19277 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
19278 "\n"
19279 msgstr ""
19280
19281 #. type: textblock
19282 #: ../fish/guestfish.pod:699
19283 msgid ""
19284 "When using guestfish interactively it can be helpful to just run the shell "
19285 "script first (ie. remove the initial C<E<lt>> character so it is just an "
19286 "ordinary I<!> local command), see what guestfish commands it would run, and "
19287 "when you are happy with those prepend the C<E<lt>> character to run the "
19288 "guestfish commands for real."
19289 msgstr ""
19290
19291 #. type: =head1
19292 #: ../fish/guestfish.pod:705
19293 msgid "PIPES"
19294 msgstr ""
19295
19296 #. type: textblock
19297 #: ../fish/guestfish.pod:707
19298 msgid ""
19299 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
19300 "command (a guestfish command) to the second command (any host command).  For "
19301 "example:"
19302 msgstr ""
19303
19304 #. type: verbatim
19305 #: ../fish/guestfish.pod:711
19306 #, no-wrap
19307 msgid ""
19308 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
19309 "\n"
19310 msgstr ""
19311
19312 #. type: textblock
19313 #: ../fish/guestfish.pod:713
19314 msgid ""
19315 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
19316 "program).  The above command would list all accounts in the guest filesystem "
19317 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
19318 msgstr ""
19319
19320 #. type: verbatim
19321 #: ../fish/guestfish.pod:718
19322 #, no-wrap
19323 msgid ""
19324 " hexdump /bin/ls | head\n"
19325 " list-devices | tail -1\n"
19326 " tgz-out / - | tar ztf -\n"
19327 "\n"
19328 msgstr ""
19329
19330 #. type: textblock
19331 #: ../fish/guestfish.pod:722
19332 msgid ""
19333 "The space before the pipe symbol is required, any space after the pipe "
19334 "symbol is optional.  Everything after the pipe symbol is just passed "
19335 "straight to the host shell, so it can contain redirections, globs and "
19336 "anything else that makes sense on the host side."
19337 msgstr ""
19338
19339 #. type: textblock
19340 #: ../fish/guestfish.pod:727
19341 msgid ""
19342 "To use a literal argument which begins with a pipe symbol, you have to quote "
19343 "it, eg:"
19344 msgstr ""
19345
19346 #. type: verbatim
19347 #: ../fish/guestfish.pod:730
19348 #, no-wrap
19349 msgid ""
19350 " echo \"|\"\n"
19351 "\n"
19352 msgstr ""
19353
19354 #. type: =head1
19355 #: ../fish/guestfish.pod:732
19356 msgid "HOME DIRECTORIES"
19357 msgstr ""
19358
19359 #. type: textblock
19360 #: ../fish/guestfish.pod:734
19361 msgid ""
19362 "If a parameter starts with the character C<~> then the tilde may be expanded "
19363 "as a home directory path (either C<~> for the current user's home directory, "
19364 "or C<~user> for another user)."
19365 msgstr ""
19366
19367 #. type: textblock
19368 #: ../fish/guestfish.pod:738
19369 msgid ""
19370 "Note that home directory expansion happens for users known I<on the host>, "
19371 "not in the guest filesystem."
19372 msgstr ""
19373
19374 #. type: textblock
19375 #: ../fish/guestfish.pod:741
19376 msgid ""
19377 "To use a literal argument which begins with a tilde, you have to quote it, "
19378 "eg:"
19379 msgstr ""
19380
19381 #. type: verbatim
19382 #: ../fish/guestfish.pod:744
19383 #, no-wrap
19384 msgid ""
19385 " echo \"~\"\n"
19386 "\n"
19387 msgstr ""
19388
19389 #. type: textblock
19390 #: ../fish/guestfish.pod:748
19391 msgid ""
19392 "Libguestfs has some support for Linux guests encrypted according to the "
19393 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
19394 "disk encryption systems used by modern Linux guests.  Currently only "
19395 "LVM-on-LUKS is supported."
19396 msgstr ""
19397
19398 #. type: textblock
19399 #: ../fish/guestfish.pod:753
19400 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
19401 msgstr ""
19402
19403 #. type: verbatim
19404 #: ../fish/guestfish.pod:755
19405 #, no-wrap
19406 msgid ""
19407 " ><fs> vfs-type /dev/sda2\n"
19408 " crypto_LUKS\n"
19409 "\n"
19410 msgstr ""
19411
19412 #. type: textblock
19413 #: ../fish/guestfish.pod:758
19414 msgid ""
19415 "Then open those devices using L</luks-open>.  This creates a device-mapper "
19416 "device called C</dev/mapper/luksdev>."
19417 msgstr ""
19418
19419 #. type: verbatim
19420 #: ../fish/guestfish.pod:761
19421 #, no-wrap
19422 msgid ""
19423 " ><fs> luks-open /dev/sda2 luksdev\n"
19424 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
19425 "\n"
19426 msgstr ""
19427
19428 #. type: textblock
19429 #: ../fish/guestfish.pod:764
19430 msgid ""
19431 "Finally you have to tell LVM to scan for volume groups on the newly created "
19432 "mapper device:"
19433 msgstr ""
19434
19435 #. type: verbatim
19436 #: ../fish/guestfish.pod:767
19437 #, no-wrap
19438 msgid ""
19439 " vgscan\n"
19440 " vg-activate-all true\n"
19441 "\n"
19442 msgstr ""
19443
19444 #. type: textblock
19445 #: ../fish/guestfish.pod:770
19446 msgid "The logical volume(s) can now be mounted in the usual way."
19447 msgstr ""
19448
19449 #. type: textblock
19450 #: ../fish/guestfish.pod:772
19451 msgid ""
19452 "Before closing a LUKS device you must unmount any logical volumes on it and "
19453 "deactivate the volume groups by calling C<vg-activate false VG> on each "
19454 "one.  Then you can close the mapper device:"
19455 msgstr ""
19456
19457 #. type: verbatim
19458 #: ../fish/guestfish.pod:776
19459 #, no-wrap
19460 msgid ""
19461 " vg-activate false /dev/VG\n"
19462 " luks-close /dev/mapper/luksdev\n"
19463 "\n"
19464 msgstr ""
19465
19466 #. type: =head1
19467 #: ../fish/guestfish.pod:779
19468 msgid "WINDOWS PATHS"
19469 msgstr ""
19470
19471 #. type: textblock
19472 #: ../fish/guestfish.pod:781
19473 msgid ""
19474 "If a path is prefixed with C<win:> then you can use Windows-style paths "
19475 "(with some limitations).  The following commands are equivalent:"
19476 msgstr ""
19477
19478 #. type: verbatim
19479 #: ../fish/guestfish.pod:784
19480 #, no-wrap
19481 msgid ""
19482 " file /WINDOWS/system32/config/system.LOG\n"
19483 "\n"
19484 msgstr ""
19485
19486 #. type: verbatim
19487 #: ../fish/guestfish.pod:786
19488 #, no-wrap
19489 msgid ""
19490 " file win:/windows/system32/config/system.log\n"
19491 "\n"
19492 msgstr ""
19493
19494 #. type: verbatim
19495 #: ../fish/guestfish.pod:788
19496 #, no-wrap
19497 msgid ""
19498 " file win:\\windows\\system32\\config\\system.log\n"
19499 "\n"
19500 msgstr ""
19501
19502 #. type: verbatim
19503 #: ../fish/guestfish.pod:790
19504 #, no-wrap
19505 msgid ""
19506 " file WIN:C:\\Windows\\SYSTEM32\\conFIG\\SYSTEM.LOG\n"
19507 "\n"
19508 msgstr ""
19509
19510 #. type: textblock
19511 #: ../fish/guestfish.pod:792
19512 msgid ""
19513 "This syntax implicitly calls C<case-sensitive-path> (q.v.) so it also "
19514 "handles case insensitivity like Windows would.  This only works in argument "
19515 "positions that expect a path."
19516 msgstr ""
19517
19518 #. type: =head1
19519 #: ../fish/guestfish.pod:796
19520 msgid "UPLOADING AND DOWNLOADING FILES"
19521 msgstr ""
19522
19523 #. type: textblock
19524 #: ../fish/guestfish.pod:798
19525 msgid ""
19526 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
19527 "others which upload from or download to a local file, you can use the "
19528 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
19529 msgstr ""
19530
19531 #. type: verbatim
19532 #: ../fish/guestfish.pod:802
19533 #, no-wrap
19534 msgid ""
19535 " upload - /foo\n"
19536 "\n"
19537 msgstr ""
19538
19539 #. type: textblock
19540 #: ../fish/guestfish.pod:804
19541 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
19542 msgstr ""
19543
19544 #. type: verbatim
19545 #: ../fish/guestfish.pod:807
19546 #, no-wrap
19547 msgid ""
19548 " tar-out /etc - | tar tf -\n"
19549 "\n"
19550 msgstr ""
19551
19552 #. type: textblock
19553 #: ../fish/guestfish.pod:809
19554 msgid ""
19555 "writes the tarball to stdout and then pipes that into the external \"tar\" "
19556 "command (see L</PIPES>)."
19557 msgstr ""
19558
19559 #. type: textblock
19560 #: ../fish/guestfish.pod:812
19561 msgid ""
19562 "When using C<-> to read from stdin, the input is read up to the end of "
19563 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
19564 "some arbitrary end marker:"
19565 msgstr ""
19566
19567 #. type: verbatim
19568 #: ../fish/guestfish.pod:816
19569 #, no-wrap
19570 msgid ""
19571 " upload -<<END /foo\n"
19572 " input line 1\n"
19573 " input line 2\n"
19574 " input line 3\n"
19575 " END\n"
19576 "\n"
19577 msgstr ""
19578
19579 #. type: textblock
19580 #: ../fish/guestfish.pod:822
19581 msgid ""
19582 "Any string of characters can be used instead of C<END>.  The end marker must "
19583 "appear on a line of its own, without any preceeding or following characters "
19584 "(not even spaces)."
19585 msgstr ""
19586
19587 #. type: textblock
19588 #: ../fish/guestfish.pod:826
19589 msgid ""
19590 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
19591 "upload local files (so-called \"FileIn\" parameters in the generator)."
19592 msgstr ""
19593
19594 #. type: =head1
19595 #: ../fish/guestfish.pod:829
19596 msgid "EXIT ON ERROR BEHAVIOUR"
19597 msgstr ""
19598
19599 #. type: textblock
19600 #: ../fish/guestfish.pod:831
19601 msgid ""
19602 "By default, guestfish will ignore any errors when in interactive mode "
19603 "(ie. taking commands from a human over a tty), and will exit on the first "
19604 "error in non-interactive mode (scripts, commands given on the command line)."
19605 msgstr ""
19606
19607 #. type: textblock
19608 #: ../fish/guestfish.pod:836
19609 msgid ""
19610 "If you prefix a command with a I<-> character, then that command will not "
19611 "cause guestfish to exit, even if that (one) command returns an error."
19612 msgstr ""
19613
19614 #. type: =head1
19615 #: ../fish/guestfish.pod:840
19616 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
19617 msgstr ""
19618
19619 #. type: textblock
19620 #: ../fish/guestfish.pod:842
19621 msgid ""
19622 "Guestfish can be remote-controlled over a socket.  This is useful "
19623 "particularly in shell scripts where you want to make several different "
19624 "changes to a filesystem, but you don't want the overhead of starting up a "
19625 "guestfish process each time."
19626 msgstr ""
19627
19628 #. type: textblock
19629 #: ../fish/guestfish.pod:847
19630 msgid "Start a guestfish server process using:"
19631 msgstr ""
19632
19633 #. type: verbatim
19634 #: ../fish/guestfish.pod:849
19635 #, no-wrap
19636 msgid ""
19637 " eval \"`guestfish --listen`\"\n"
19638 "\n"
19639 msgstr ""
19640
19641 #. type: textblock
19642 #: ../fish/guestfish.pod:851
19643 msgid "and then send it commands by doing:"
19644 msgstr ""
19645
19646 #. type: verbatim
19647 #: ../fish/guestfish.pod:853
19648 #, no-wrap
19649 msgid ""
19650 " guestfish --remote cmd [...]\n"
19651 "\n"
19652 msgstr ""
19653
19654 #. type: textblock
19655 #: ../fish/guestfish.pod:855
19656 msgid "To cause the server to exit, send it the exit command:"
19657 msgstr ""
19658
19659 #. type: verbatim
19660 #: ../fish/guestfish.pod:857
19661 #, no-wrap
19662 msgid ""
19663 " guestfish --remote exit\n"
19664 "\n"
19665 msgstr ""
19666
19667 #. type: textblock
19668 #: ../fish/guestfish.pod:859
19669 msgid ""
19670 "Note that the server will normally exit if there is an error in a command.  "
19671 "You can change this in the usual way.  See section L</EXIT ON ERROR "
19672 "BEHAVIOUR>."
19673 msgstr ""
19674
19675 #. type: =head2
19676 #: ../fish/guestfish.pod:863
19677 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
19678 msgstr ""
19679
19680 #. type: textblock
19681 #: ../fish/guestfish.pod:865
19682 msgid ""
19683 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
19684 "is how the I<--remote> option knows where to send the commands.  You can "
19685 "have several guestfish listener processes running using:"
19686 msgstr ""
19687
19688 #. type: verbatim
19689 #: ../fish/guestfish.pod:869
19690 #, no-wrap
19691 msgid ""
19692 " eval \"`guestfish --listen`\"\n"
19693 " pid1=$GUESTFISH_PID\n"
19694 " eval \"`guestfish --listen`\"\n"
19695 " pid2=$GUESTFISH_PID\n"
19696 " ...\n"
19697 " guestfish --remote=$pid1 cmd\n"
19698 " guestfish --remote=$pid2 cmd\n"
19699 "\n"
19700 msgstr ""
19701
19702 #. type: =head2
19703 #: ../fish/guestfish.pod:877
19704 msgid "REMOTE CONTROL AND CSH"
19705 msgstr ""
19706
19707 #. type: textblock
19708 #: ../fish/guestfish.pod:879
19709 msgid ""
19710 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
19711 "option:"
19712 msgstr ""
19713
19714 #. type: verbatim
19715 #: ../fish/guestfish.pod:882
19716 #, no-wrap
19717 msgid ""
19718 " eval \"`guestfish --listen --csh`\"\n"
19719 "\n"
19720 msgstr ""
19721
19722 #. type: =head2
19723 #: ../fish/guestfish.pod:884
19724 msgid "REMOTE CONTROL DETAILS"
19725 msgstr ""
19726
19727 #. type: textblock
19728 #: ../fish/guestfish.pod:886
19729 msgid ""
19730 "Remote control happens over a Unix domain socket called "
19731 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
19732 "of the process, and C<$PID> is the process ID of the server."
19733 msgstr ""
19734
19735 #. type: textblock
19736 #: ../fish/guestfish.pod:890
19737 msgid "Guestfish client and server versions must match exactly."
19738 msgstr ""
19739
19740 #. type: =head1
19741 #: ../fish/guestfish.pod:892
19742 msgid "PREPARED DISK IMAGES"
19743 msgstr ""
19744
19745 #. type: textblock
19746 #: ../fish/guestfish.pod:894
19747 msgid ""
19748 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
19749 "preformatted disk images that guestfish can make for you to save typing.  "
19750 "This is particularly useful for testing purposes.  This option is used "
19751 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
19752 "can be mixed with I<-a>)."
19753 msgstr ""
19754
19755 #. type: textblock
19756 #: ../fish/guestfish.pod:900
19757 msgid ""
19758 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
19759 "the second and so on.  Existing files in the current directory are "
19760 "I<overwritten>."
19761 msgstr ""
19762
19763 #. type: textblock
19764 #: ../fish/guestfish.pod:904
19765 msgid ""
19766 "The type briefly describes how the disk should be sized, partitioned, how "
19767 "filesystem(s) should be created, and how content should be added.  "
19768 "Optionally the type can be followed by extra parameters, separated by C<:> "
19769 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
19770 "sparsely-allocated disk, containing a single partition, with the partition "
19771 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
19772 "on a 1GB disk instead."
19773 msgstr ""
19774
19775 #. type: textblock
19776 #: ../fish/guestfish.pod:912
19777 msgid "To list the available types and any extra parameters they take, run:"
19778 msgstr ""
19779
19780 #. type: textblock
19781 #: ../fish/guestfish.pod:916
19782 msgid ""
19783 "Note that the prepared filesystem is not mounted.  You would usually have to "
19784 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
19785 msgstr ""
19786
19787 #. type: textblock
19788 #: ../fish/guestfish.pod:920
19789 msgid ""
19790 "If any I<-N> or I<--new> options are given, the guest is automatically "
19791 "launched."
19792 msgstr ""
19793
19794 #. type: textblock
19795 #: ../fish/guestfish.pod:925
19796 msgid "Create a 100MB disk with an ext4-formatted partition:"
19797 msgstr ""
19798
19799 #. type: verbatim
19800 #: ../fish/guestfish.pod:927
19801 #, no-wrap
19802 msgid ""
19803 " guestfish -N fs:ext4\n"
19804 "\n"
19805 msgstr ""
19806
19807 #. type: textblock
19808 #: ../fish/guestfish.pod:929
19809 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
19810 msgstr ""
19811
19812 #. type: verbatim
19813 #: ../fish/guestfish.pod:931
19814 #, no-wrap
19815 msgid ""
19816 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
19817 "\n"
19818 msgstr ""
19819
19820 #. type: textblock
19821 #: ../fish/guestfish.pod:933
19822 msgid "Create a blank 200MB disk:"
19823 msgstr ""
19824
19825 #. type: verbatim
19826 #: ../fish/guestfish.pod:935
19827 #, no-wrap
19828 msgid ""
19829 " guestfish -N disk:200M\n"
19830 "\n"
19831 msgstr ""
19832
19833 #. type: =head1
19834 #: ../fish/guestfish.pod:937
19835 msgid "PROGRESS BARS"
19836 msgstr ""
19837
19838 #. type: textblock
19839 #: ../fish/guestfish.pod:939
19840 msgid ""
19841 "Some (not all) long-running commands send progress notification messages as "
19842 "they are running.  Guestfish turns these messages into progress bars."
19843 msgstr ""
19844
19845 #. type: textblock
19846 #: ../fish/guestfish.pod:943
19847 msgid ""
19848 "When a command that supports progress bars takes longer than two seconds to "
19849 "run, and if progress bars are enabled, then you will see one appearing below "
19850 "the command:"
19851 msgstr ""
19852
19853 #. type: verbatim
19854 #: ../fish/guestfish.pod:947
19855 #, no-wrap
19856 msgid ""
19857 " ><fs> copy-size /large-file /another-file 2048M\n"
19858 " / 10% [#####-----------------------------------------] 00:30\n"
19859 "\n"
19860 msgstr ""
19861
19862 #. type: textblock
19863 #: ../fish/guestfish.pod:950
19864 msgid ""
19865 "The spinner on the left hand side moves round once for every progress "
19866 "notification received from the backend.  This is a (reasonably) golden "
19867 "assurance that the command is \"doing something\" even if the progress bar "
19868 "is not moving, because the command is able to send the progress "
19869 "notifications.  When the bar reaches 100% and the command finishes, the "
19870 "spinner disappears."
19871 msgstr ""
19872
19873 #. type: textblock
19874 #: ../fish/guestfish.pod:957
19875 msgid ""
19876 "Progress bars are enabled by default when guestfish is used interactively.  "
19877 "You can enable them even for non-interactive modes using I<--progress-bars>, "
19878 "and you can disable them completely using I<--no-progress-bars>."
19879 msgstr ""
19880
19881 #. type: =head1
19882 #: ../fish/guestfish.pod:962
19883 msgid "GUESTFISH COMMANDS"
19884 msgstr ""
19885
19886 #. type: textblock
19887 #: ../fish/guestfish.pod:964
19888 msgid ""
19889 "The commands in this section are guestfish convenience commands, in other "
19890 "words, they are not part of the L<guestfs(3)> API."
19891 msgstr ""
19892
19893 #. type: =head2
19894 #: ../fish/guestfish.pod:967
19895 msgid "help"
19896 msgstr ""
19897
19898 #. type: verbatim
19899 #: ../fish/guestfish.pod:969
19900 #, no-wrap
19901 msgid ""
19902 " help\n"
19903 " help cmd\n"
19904 "\n"
19905 msgstr ""
19906
19907 #. type: textblock
19908 #: ../fish/guestfish.pod:972
19909 msgid "Without any parameter, this provides general help."
19910 msgstr ""
19911
19912 #. type: textblock
19913 #: ../fish/guestfish.pod:974
19914 msgid "With a C<cmd> parameter, this displays detailed help for that command."
19915 msgstr ""
19916
19917 #. type: =head2
19918 #: ../fish/guestfish.pod:976
19919 msgid "quit | exit"
19920 msgstr ""
19921
19922 #. type: textblock
19923 #: ../fish/guestfish.pod:978
19924 msgid "This exits guestfish.  You can also use C<^D> key."
19925 msgstr ""
19926
19927 #. type: textblock
19928 #: ../fish/guestfish.pod:980
19929 msgid "@FISH_COMMANDS@"
19930 msgstr ""
19931
19932 #. type: =head1
19933 #: ../fish/guestfish.pod:982
19934 msgid "COMMANDS"
19935 msgstr ""
19936
19937 #. type: =head1
19938 #: ../fish/guestfish.pod:986 ../test-tool/libguestfs-test-tool.pod:83
19939 msgid "EXIT CODE"
19940 msgstr ""
19941
19942 #. type: textblock
19943 #: ../fish/guestfish.pod:988
19944 msgid ""
19945 "guestfish returns 0 if the commands completed without error, or 1 if there "
19946 "was an error."
19947 msgstr ""
19948
19949 #. type: =item
19950 #: ../fish/guestfish.pod:995
19951 msgid "EDITOR"
19952 msgstr ""
19953
19954 #. type: textblock
19955 #: ../fish/guestfish.pod:997
19956 msgid ""
19957 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
19958 "C<vi>."
19959 msgstr ""
19960
19961 #. type: =item
19962 #: ../fish/guestfish.pod:1000
19963 msgid "GUESTFISH_PID"
19964 msgstr ""
19965
19966 #. type: textblock
19967 #: ../fish/guestfish.pod:1002
19968 msgid ""
19969 "Used with the I<--remote> option to specify the remote guestfish process to "
19970 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
19971 msgstr ""
19972
19973 #. type: =item
19974 #: ../fish/guestfish.pod:1006
19975 msgid "HEXEDITOR"
19976 msgstr ""
19977
19978 #. type: textblock
19979 #: ../fish/guestfish.pod:1008
19980 msgid ""
19981 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
19982 "not specified, the external L<hexedit(1)> program is used."
19983 msgstr ""
19984
19985 #. type: =item
19986 #: ../fish/guestfish.pod:1012
19987 msgid "HOME"
19988 msgstr ""
19989
19990 #. type: textblock
19991 #: ../fish/guestfish.pod:1014
19992 msgid ""
19993 "If compiled with GNU readline support, various files in the home directory "
19994 "can be used.  See L</FILES>."
19995 msgstr ""
19996
19997 #. type: textblock
19998 #: ../fish/guestfish.pod:1023
19999 msgid ""
20000 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
20001 "effect as using the B<-v> option."
20002 msgstr ""
20003
20004 #. type: textblock
20005 #: ../fish/guestfish.pod:1035
20006 msgid ""
20007 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
20008 "the discussion of paths in L<guestfs(3)>."
20009 msgstr ""
20010
20011 #. type: textblock
20012 #: ../fish/guestfish.pod:1046
20013 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
20014 msgstr ""
20015
20016 #. type: =item
20017 #: ../fish/guestfish.pod:1048
20018 msgid "PAGER"
20019 msgstr ""
20020
20021 #. type: textblock
20022 #: ../fish/guestfish.pod:1050
20023 msgid ""
20024 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
20025 "C<more>."
20026 msgstr ""
20027
20028 #. type: =head1
20029 #: ../fish/guestfish.pod:1066 ../test-tool/libguestfs-test-tool.pod:88
20030 msgid "FILES"
20031 msgstr ""
20032
20033 #. type: =item
20034 #: ../fish/guestfish.pod:1070
20035 msgid "$HOME/.guestfish"
20036 msgstr ""
20037
20038 #. type: textblock
20039 #: ../fish/guestfish.pod:1072
20040 msgid ""
20041 "If compiled with GNU readline support, then the command history is saved in "
20042 "this file."
20043 msgstr ""
20044
20045 #. type: =item
20046 #: ../fish/guestfish.pod:1075
20047 msgid "$HOME/.inputrc"
20048 msgstr ""
20049
20050 #. type: =item
20051 #: ../fish/guestfish.pod:1077
20052 msgid "/etc/inputrc"
20053 msgstr ""
20054
20055 #. type: textblock
20056 #: ../fish/guestfish.pod:1079
20057 msgid ""
20058 "If compiled with GNU readline support, then these files can be used to "
20059 "configure readline.  For further information, please see "
20060 "L<readline(3)/INITIALIZATION FILE>."
20061 msgstr ""
20062
20063 #. type: textblock
20064 #: ../fish/guestfish.pod:1083
20065 msgid "To write rules which only apply to guestfish, use:"
20066 msgstr ""
20067
20068 #. type: verbatim
20069 #: ../fish/guestfish.pod:1085
20070 #, no-wrap
20071 msgid ""
20072 " $if guestfish\n"
20073 " ...\n"
20074 " $endif\n"
20075 "\n"
20076 msgstr ""
20077
20078 #. type: textblock
20079 #: ../fish/guestfish.pod:1089
20080 msgid ""
20081 "Variables that you can set in inputrc that change the behaviour of guestfish "
20082 "in useful ways include:"
20083 msgstr ""
20084
20085 #. type: =item
20086 #: ../fish/guestfish.pod:1094
20087 msgid "completion-ignore-case (default: on)"
20088 msgstr ""
20089
20090 #. type: textblock
20091 #: ../fish/guestfish.pod:1096
20092 msgid ""
20093 "By default, guestfish will ignore case when tab-completing paths on the "
20094 "disk.  Use:"
20095 msgstr ""
20096
20097 #. type: verbatim
20098 #: ../fish/guestfish.pod:1099
20099 #, no-wrap
20100 msgid ""
20101 " set completion-ignore-case off\n"
20102 "\n"
20103 msgstr ""
20104
20105 #. type: textblock
20106 #: ../fish/guestfish.pod:1101
20107 msgid "to make guestfish case sensitive."
20108 msgstr ""
20109
20110 #. type: =item
20111 #: ../fish/guestfish.pod:1105
20112 msgid "test1.img"
20113 msgstr ""
20114
20115 #. type: =item
20116 #: ../fish/guestfish.pod:1107
20117 msgid "test2.img (etc)"
20118 msgstr ""
20119
20120 #. type: textblock
20121 #: ../fish/guestfish.pod:1109
20122 msgid ""
20123 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
20124 "will be created in the file C<test1.img> in the current directory.  The "
20125 "second use of C<-N> will use C<test2.img> and so on.  Any existing file with "
20126 "the same name will be overwritten."
20127 msgstr ""
20128
20129 #. type: textblock
20130 #: ../fish/guestfish.pod:1118
20131 msgid ""
20132 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
20133 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
20134 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
20135 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
20136 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
20137 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<hexedit(1)>."
20138 msgstr ""
20139
20140 #. type: textblock
20141 #: ../fish/guestfish.pod:1148 ../test-tool/libguestfs-test-tool.pod:124 ../fuse/guestmount.pod:253 ../tools/virt-edit.pl:372 ../tools/virt-win-reg.pl:606 ../tools/virt-resize.pl:1512 ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:567 ../tools/virt-list-partitions.pl:277
20142 msgid ""
20143 "This program is free software; you can redistribute it and/or modify it "
20144 "under the terms of the GNU General Public License as published by the Free "
20145 "Software Foundation; either version 2 of the License, or (at your option) "
20146 "any later version."
20147 msgstr ""
20148
20149 #. type: textblock
20150 #: ../fish/guestfish.pod:1153 ../test-tool/libguestfs-test-tool.pod:129 ../fuse/guestmount.pod:258 ../tools/virt-edit.pl:377 ../tools/virt-win-reg.pl:611 ../tools/virt-resize.pl:1517 ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:282
20151 msgid ""
20152 "This program is distributed in the hope that it will be useful, but WITHOUT "
20153 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
20154 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
20155 "more details."
20156 msgstr ""
20157
20158 #. type: textblock
20159 #: ../fish/guestfish.pod:1158 ../test-tool/libguestfs-test-tool.pod:134 ../fuse/guestmount.pod:263 ../tools/virt-edit.pl:382 ../tools/virt-win-reg.pl:616 ../tools/virt-resize.pl:1522 ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:287
20160 msgid ""
20161 "You should have received a copy of the GNU General Public License along with "
20162 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
20163 "Ave, Cambridge, MA 02139, USA."
20164 msgstr ""
20165
20166 #. type: =head2
20167 #: ../fish/guestfish-actions.pod:1
20168 msgid "add-cdrom"
20169 msgstr ""
20170
20171 #. type: verbatim
20172 #: ../fish/guestfish-actions.pod:3
20173 #, no-wrap
20174 msgid ""
20175 " add-cdrom filename\n"
20176 "\n"
20177 msgstr ""
20178
20179 #. type: textblock
20180 #: ../fish/guestfish-actions.pod:15
20181 msgid ""
20182 "This call checks for the existence of C<filename>.  This stops you from "
20183 "specifying other types of drive which are supported by qemu such as C<nbd:> "
20184 "and C<http:> URLs.  To specify those, use the general L</config> call "
20185 "instead."
20186 msgstr ""
20187
20188 #. type: textblock
20189 #: ../fish/guestfish-actions.pod:22
20190 msgid ""
20191 "If you just want to add an ISO file (often you use this as an efficient way "
20192 "to transfer large files into the guest), then you should probably use "
20193 "L</add-drive-ro> instead."
20194 msgstr ""
20195
20196 #. type: =head2
20197 #: ../fish/guestfish-actions.pod:35
20198 msgid "add-domain"
20199 msgstr ""
20200
20201 #. type: =head2
20202 #: ../fish/guestfish-actions.pod:37
20203 msgid "domain"
20204 msgstr ""
20205
20206 #. type: verbatim
20207 #: ../fish/guestfish-actions.pod:39
20208 #, no-wrap
20209 msgid ""
20210 " add-domain dom [libvirturi:..] [readonly:..] [iface:..]\n"
20211 "\n"
20212 msgstr ""
20213
20214 #. type: textblock
20215 #: ../fish/guestfish-actions.pod:41
20216 msgid ""
20217 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
20218 "It works by connecting to libvirt, requesting the domain and domain XML from "
20219 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
20220 msgstr ""
20221
20222 #. type: textblock
20223 #: ../fish/guestfish-actions.pod:64
20224 msgid ""
20225 "The other optional parameters are passed directly through to "
20226 "L</add-drive-opts>."
20227 msgstr ""
20228
20229 #. type: textblock
20230 #: ../fish/guestfish-actions.pod:67 ../fish/guestfish-actions.pod:131 ../fish/guestfish-actions.pod:2934
20231 msgid ""
20232 "This command has one or more optional arguments.  See L</OPTIONAL "
20233 "ARGUMENTS>."
20234 msgstr ""
20235
20236 #. type: =head2
20237 #: ../fish/guestfish-actions.pod:69
20238 msgid "add-drive"
20239 msgstr ""
20240
20241 #. type: verbatim
20242 #: ../fish/guestfish-actions.pod:71
20243 #, no-wrap
20244 msgid ""
20245 " add-drive filename\n"
20246 "\n"
20247 msgstr ""
20248
20249 #. type: textblock
20250 #: ../fish/guestfish-actions.pod:73
20251 msgid ""
20252 "This function is the equivalent of calling L</add-drive-opts> with no "
20253 "optional parameters, so the disk is added writable, with the format being "
20254 "detected automatically."
20255 msgstr ""
20256
20257 #. type: textblock
20258 #: ../fish/guestfish-actions.pod:77
20259 msgid ""
20260 "Automatic detection of the format opens you up to a potential security hole "
20261 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
20262 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
20263 "you should think about replacing calls to this function with calls to "
20264 "L</add-drive-opts>, and specifying the format."
20265 msgstr ""
20266
20267 #. type: =head2
20268 #: ../fish/guestfish-actions.pod:84
20269 msgid "add-drive-opts"
20270 msgstr ""
20271
20272 #. type: =head2
20273 #: ../fish/guestfish-actions.pod:86
20274 msgid "add"
20275 msgstr ""
20276
20277 #. type: verbatim
20278 #: ../fish/guestfish-actions.pod:88
20279 #, no-wrap
20280 msgid ""
20281 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
20282 "\n"
20283 msgstr ""
20284
20285 #. type: textblock
20286 #: ../fish/guestfish-actions.pod:115
20287 msgid ""
20288 "This forces the image format.  If you omit this (or use L</add-drive> or "
20289 "L</add-drive-ro>) then the format is automatically detected.  Possible "
20290 "formats include C<raw> and C<qcow2>."
20291 msgstr ""
20292
20293 #. type: textblock
20294 #: ../fish/guestfish-actions.pod:126
20295 msgid ""
20296 "This rarely-used option lets you emulate the behaviour of the deprecated "
20297 "L</add-drive-with-if> call (q.v.)"
20298 msgstr ""
20299
20300 #. type: =head2
20301 #: ../fish/guestfish-actions.pod:133
20302 msgid "add-drive-ro"
20303 msgstr ""
20304
20305 #. type: =head2
20306 #: ../fish/guestfish-actions.pod:135
20307 msgid "add-ro"
20308 msgstr ""
20309
20310 #. type: verbatim
20311 #: ../fish/guestfish-actions.pod:137
20312 #, no-wrap
20313 msgid ""
20314 " add-drive-ro filename\n"
20315 "\n"
20316 msgstr ""
20317
20318 #. type: textblock
20319 #: ../fish/guestfish-actions.pod:139
20320 msgid ""
20321 "This function is the equivalent of calling L</add-drive-opts> with the "
20322 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
20323 "is added read-only, with the format being detected automatically."
20324 msgstr ""
20325
20326 #. type: =head2
20327 #: ../fish/guestfish-actions.pod:144
20328 msgid "add-drive-ro-with-if"
20329 msgstr ""
20330
20331 #. type: verbatim
20332 #: ../fish/guestfish-actions.pod:146
20333 #, no-wrap
20334 msgid ""
20335 " add-drive-ro-with-if filename iface\n"
20336 "\n"
20337 msgstr ""
20338
20339 #. type: textblock
20340 #: ../fish/guestfish-actions.pod:148
20341 msgid ""
20342 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
20343 "interface emulation to use at run time."
20344 msgstr ""
20345
20346 #. type: =head2
20347 #: ../fish/guestfish-actions.pod:158
20348 msgid "add-drive-with-if"
20349 msgstr ""
20350
20351 #. type: verbatim
20352 #: ../fish/guestfish-actions.pod:160
20353 #, no-wrap
20354 msgid ""
20355 " add-drive-with-if filename iface\n"
20356 "\n"
20357 msgstr ""
20358
20359 #. type: textblock
20360 #: ../fish/guestfish-actions.pod:162
20361 msgid ""
20362 "This is the same as L</add-drive> but it allows you to specify the QEMU "
20363 "interface emulation to use at run time."
20364 msgstr ""
20365
20366 #. type: =head2
20367 #: ../fish/guestfish-actions.pod:172
20368 msgid "aug-clear"
20369 msgstr ""
20370
20371 #. type: verbatim
20372 #: ../fish/guestfish-actions.pod:174
20373 #, no-wrap
20374 msgid ""
20375 " aug-clear augpath\n"
20376 "\n"
20377 msgstr ""
20378
20379 #. type: =head2
20380 #: ../fish/guestfish-actions.pod:179
20381 msgid "aug-close"
20382 msgstr ""
20383
20384 #. type: verbatim
20385 #: ../fish/guestfish-actions.pod:181
20386 #, no-wrap
20387 msgid ""
20388 " aug-close\n"
20389 "\n"
20390 msgstr ""
20391
20392 #. type: textblock
20393 #: ../fish/guestfish-actions.pod:183
20394 msgid ""
20395 "Close the current Augeas handle and free up any resources used by it.  After "
20396 "calling this, you have to call L</aug-init> again before you can use any "
20397 "other Augeas functions."
20398 msgstr ""
20399
20400 #. type: =head2
20401 #: ../fish/guestfish-actions.pod:188
20402 msgid "aug-defnode"
20403 msgstr ""
20404
20405 #. type: verbatim
20406 #: ../fish/guestfish-actions.pod:190
20407 #, no-wrap
20408 msgid ""
20409 " aug-defnode name expr val\n"
20410 "\n"
20411 msgstr ""
20412
20413 #. type: textblock
20414 #: ../fish/guestfish-actions.pod:195
20415 msgid ""
20416 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
20417 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
20418 "containing that single node."
20419 msgstr ""
20420
20421 #. type: =head2
20422 #: ../fish/guestfish-actions.pod:203
20423 msgid "aug-defvar"
20424 msgstr ""
20425
20426 #. type: verbatim
20427 #: ../fish/guestfish-actions.pod:205
20428 #, no-wrap
20429 msgid ""
20430 " aug-defvar name expr\n"
20431 "\n"
20432 msgstr ""
20433
20434 #. type: =head2
20435 #: ../fish/guestfish-actions.pod:214
20436 msgid "aug-get"
20437 msgstr ""
20438
20439 #. type: verbatim
20440 #: ../fish/guestfish-actions.pod:216
20441 #, no-wrap
20442 msgid ""
20443 " aug-get augpath\n"
20444 "\n"
20445 msgstr ""
20446
20447 #. type: =head2
20448 #: ../fish/guestfish-actions.pod:221
20449 msgid "aug-init"
20450 msgstr ""
20451
20452 #. type: verbatim
20453 #: ../fish/guestfish-actions.pod:223
20454 #, no-wrap
20455 msgid ""
20456 " aug-init root flags\n"
20457 "\n"
20458 msgstr ""
20459
20460 #. type: textblock
20461 #: ../fish/guestfish-actions.pod:229
20462 msgid "You must call this before using any other L</aug-*> commands."
20463 msgstr ""
20464
20465 #. type: textblock
20466 #: ../fish/guestfish-actions.pod:264
20467 msgid "Do not load the tree in L</aug-init>."
20468 msgstr ""
20469
20470 #. type: textblock
20471 #: ../fish/guestfish-actions.pod:268
20472 msgid "To close the handle, you can call L</aug-close>."
20473 msgstr ""
20474
20475 #. type: =head2
20476 #: ../fish/guestfish-actions.pod:272
20477 msgid "aug-insert"
20478 msgstr ""
20479
20480 #. type: verbatim
20481 #: ../fish/guestfish-actions.pod:274
20482 #, no-wrap
20483 msgid ""
20484 " aug-insert augpath label true|false\n"
20485 "\n"
20486 msgstr ""
20487
20488 #. type: =head2
20489 #: ../fish/guestfish-actions.pod:284
20490 msgid "aug-load"
20491 msgstr ""
20492
20493 #. type: verbatim
20494 #: ../fish/guestfish-actions.pod:286
20495 #, no-wrap
20496 msgid ""
20497 " aug-load\n"
20498 "\n"
20499 msgstr ""
20500
20501 #. type: =head2
20502 #: ../fish/guestfish-actions.pod:293
20503 msgid "aug-ls"
20504 msgstr ""
20505
20506 #. type: verbatim
20507 #: ../fish/guestfish-actions.pod:295
20508 #, no-wrap
20509 msgid ""
20510 " aug-ls augpath\n"
20511 "\n"
20512 msgstr ""
20513
20514 #. type: textblock
20515 #: ../fish/guestfish-actions.pod:297
20516 msgid ""
20517 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
20518 "resulting nodes into alphabetical order."
20519 msgstr ""
20520
20521 #. type: =head2
20522 #: ../fish/guestfish-actions.pod:300
20523 msgid "aug-match"
20524 msgstr ""
20525
20526 #. type: verbatim
20527 #: ../fish/guestfish-actions.pod:302
20528 #, no-wrap
20529 msgid ""
20530 " aug-match augpath\n"
20531 "\n"
20532 msgstr ""
20533
20534 #. type: =head2
20535 #: ../fish/guestfish-actions.pod:308
20536 msgid "aug-mv"
20537 msgstr ""
20538
20539 #. type: verbatim
20540 #: ../fish/guestfish-actions.pod:310
20541 #, no-wrap
20542 msgid ""
20543 " aug-mv src dest\n"
20544 "\n"
20545 msgstr ""
20546
20547 #. type: =head2
20548 #: ../fish/guestfish-actions.pod:315
20549 msgid "aug-rm"
20550 msgstr ""
20551
20552 #. type: verbatim
20553 #: ../fish/guestfish-actions.pod:317
20554 #, no-wrap
20555 msgid ""
20556 " aug-rm augpath\n"
20557 "\n"
20558 msgstr ""
20559
20560 #. type: =head2
20561 #: ../fish/guestfish-actions.pod:323
20562 msgid "aug-save"
20563 msgstr ""
20564
20565 #. type: verbatim
20566 #: ../fish/guestfish-actions.pod:325
20567 #, no-wrap
20568 msgid ""
20569 " aug-save\n"
20570 "\n"
20571 msgstr ""
20572
20573 #. type: textblock
20574 #: ../fish/guestfish-actions.pod:329
20575 msgid ""
20576 "The flags which were passed to L</aug-init> affect exactly how files are "
20577 "saved."
20578 msgstr ""
20579
20580 #. type: =head2
20581 #: ../fish/guestfish-actions.pod:332
20582 msgid "aug-set"
20583 msgstr ""
20584
20585 #. type: verbatim
20586 #: ../fish/guestfish-actions.pod:334
20587 #, no-wrap
20588 msgid ""
20589 " aug-set augpath val\n"
20590 "\n"
20591 msgstr ""
20592
20593 #. type: textblock
20594 #: ../fish/guestfish-actions.pod:338
20595 msgid ""
20596 "In the Augeas API, it is possible to clear a node by setting the value to "
20597 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
20598 "this call.  Instead you must use the L</aug-clear> call."
20599 msgstr ""
20600
20601 #. type: =head2
20602 #: ../fish/guestfish-actions.pod:343
20603 msgid "available"
20604 msgstr ""
20605
20606 #. type: verbatim
20607 #: ../fish/guestfish-actions.pod:345
20608 #, no-wrap
20609 msgid ""
20610 " available 'groups ...'\n"
20611 "\n"
20612 msgstr ""
20613
20614 #. type: textblock
20615 #: ../fish/guestfish-actions.pod:351
20616 msgid ""
20617 "The libguestfs groups, and the functions that those groups correspond to, "
20618 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
20619 "runtime by calling L</available-all-groups>."
20620 msgstr ""
20621
20622 #. type: textblock
20623 #: ../fish/guestfish-actions.pod:375
20624 msgid "You must call L</launch> before calling this function."
20625 msgstr ""
20626
20627 #. type: textblock
20628 #: ../fish/guestfish-actions.pod:397
20629 msgid ""
20630 "This call was added in version C<1.0.80>.  In previous versions of "
20631 "libguestfs all you could do would be to speculatively execute a command to "
20632 "find out if the daemon implemented it.  See also L</version>."
20633 msgstr ""
20634
20635 #. type: =head2
20636 #: ../fish/guestfish-actions.pod:404
20637 msgid "available-all-groups"
20638 msgstr ""
20639
20640 #. type: verbatim
20641 #: ../fish/guestfish-actions.pod:406
20642 #, no-wrap
20643 msgid ""
20644 " available-all-groups\n"
20645 "\n"
20646 msgstr ""
20647
20648 #. type: textblock
20649 #: ../fish/guestfish-actions.pod:408
20650 msgid ""
20651 "This command returns a list of all optional groups that this daemon knows "
20652 "about.  Note this returns both supported and unsupported groups.  To find "
20653 "out which ones the daemon can actually support you have to call "
20654 "L</available> on each member of the returned list."
20655 msgstr ""
20656
20657 #. type: textblock
20658 #: ../fish/guestfish-actions.pod:414
20659 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
20660 msgstr ""
20661
20662 #. type: =head2
20663 #: ../fish/guestfish-actions.pod:416
20664 msgid "base64-in"
20665 msgstr ""
20666
20667 #. type: verbatim
20668 #: ../fish/guestfish-actions.pod:418
20669 #, no-wrap
20670 msgid ""
20671 " base64-in (base64file|-) filename\n"
20672 "\n"
20673 msgstr ""
20674
20675 #. type: textblock
20676 #: ../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:4302 ../fish/guestfish-actions.pod:4314 ../fish/guestfish-actions.pod:4325 ../fish/guestfish-actions.pod:4336 ../fish/guestfish-actions.pod:4388 ../fish/guestfish-actions.pod:4397 ../fish/guestfish-actions.pod:4451 ../fish/guestfish-actions.pod:4474
20677 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
20678 msgstr ""
20679
20680 #. type: =head2
20681 #: ../fish/guestfish-actions.pod:425
20682 msgid "base64-out"
20683 msgstr ""
20684
20685 #. type: verbatim
20686 #: ../fish/guestfish-actions.pod:427
20687 #, no-wrap
20688 msgid ""
20689 " base64-out filename (base64file|-)\n"
20690 "\n"
20691 msgstr ""
20692
20693 #. type: =head2
20694 #: ../fish/guestfish-actions.pod:434
20695 msgid "blockdev-flushbufs"
20696 msgstr ""
20697
20698 #. type: verbatim
20699 #: ../fish/guestfish-actions.pod:436
20700 #, no-wrap
20701 msgid ""
20702 " blockdev-flushbufs device\n"
20703 "\n"
20704 msgstr ""
20705
20706 #. type: =head2
20707 #: ../fish/guestfish-actions.pod:443
20708 msgid "blockdev-getbsz"
20709 msgstr ""
20710
20711 #. type: verbatim
20712 #: ../fish/guestfish-actions.pod:445
20713 #, no-wrap
20714 msgid ""
20715 " blockdev-getbsz device\n"
20716 "\n"
20717 msgstr ""
20718
20719 #. type: =head2
20720 #: ../fish/guestfish-actions.pod:454
20721 msgid "blockdev-getro"
20722 msgstr ""
20723
20724 #. type: verbatim
20725 #: ../fish/guestfish-actions.pod:456
20726 #, no-wrap
20727 msgid ""
20728 " blockdev-getro device\n"
20729 "\n"
20730 msgstr ""
20731
20732 #. type: =head2
20733 #: ../fish/guestfish-actions.pod:463
20734 msgid "blockdev-getsize64"
20735 msgstr ""
20736
20737 #. type: verbatim
20738 #: ../fish/guestfish-actions.pod:465
20739 #, no-wrap
20740 msgid ""
20741 " blockdev-getsize64 device\n"
20742 "\n"
20743 msgstr ""
20744
20745 #. type: textblock
20746 #: ../fish/guestfish-actions.pod:469
20747 msgid "See also L</blockdev-getsz>."
20748 msgstr ""
20749
20750 #. type: =head2
20751 #: ../fish/guestfish-actions.pod:473
20752 msgid "blockdev-getss"
20753 msgstr ""
20754
20755 #. type: verbatim
20756 #: ../fish/guestfish-actions.pod:475
20757 #, no-wrap
20758 msgid ""
20759 " blockdev-getss device\n"
20760 "\n"
20761 msgstr ""
20762
20763 #. type: textblock
20764 #: ../fish/guestfish-actions.pod:480
20765 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
20766 msgstr ""
20767
20768 #. type: =head2
20769 #: ../fish/guestfish-actions.pod:485
20770 msgid "blockdev-getsz"
20771 msgstr ""
20772
20773 #. type: verbatim
20774 #: ../fish/guestfish-actions.pod:487
20775 #, no-wrap
20776 msgid ""
20777 " blockdev-getsz device\n"
20778 "\n"
20779 msgstr ""
20780
20781 #. type: textblock
20782 #: ../fish/guestfish-actions.pod:492
20783 msgid ""
20784 "See also L</blockdev-getss> for the real sector size of the device, and "
20785 "L</blockdev-getsize64> for the more useful I<size in bytes>."
20786 msgstr ""
20787
20788 #. type: =head2
20789 #: ../fish/guestfish-actions.pod:498
20790 msgid "blockdev-rereadpt"
20791 msgstr ""
20792
20793 #. type: verbatim
20794 #: ../fish/guestfish-actions.pod:500
20795 #, no-wrap
20796 msgid ""
20797 " blockdev-rereadpt device\n"
20798 "\n"
20799 msgstr ""
20800
20801 #. type: =head2
20802 #: ../fish/guestfish-actions.pod:506
20803 msgid "blockdev-setbsz"
20804 msgstr ""
20805
20806 #. type: verbatim
20807 #: ../fish/guestfish-actions.pod:508
20808 #, no-wrap
20809 msgid ""
20810 " blockdev-setbsz device blocksize\n"
20811 "\n"
20812 msgstr ""
20813
20814 #. type: =head2
20815 #: ../fish/guestfish-actions.pod:517
20816 msgid "blockdev-setro"
20817 msgstr ""
20818
20819 #. type: verbatim
20820 #: ../fish/guestfish-actions.pod:519
20821 #, no-wrap
20822 msgid ""
20823 " blockdev-setro device\n"
20824 "\n"
20825 msgstr ""
20826
20827 #. type: =head2
20828 #: ../fish/guestfish-actions.pod:525
20829 msgid "blockdev-setrw"
20830 msgstr ""
20831
20832 #. type: verbatim
20833 #: ../fish/guestfish-actions.pod:527
20834 #, no-wrap
20835 msgid ""
20836 " blockdev-setrw device\n"
20837 "\n"
20838 msgstr ""
20839
20840 #. type: =head2
20841 #: ../fish/guestfish-actions.pod:533
20842 msgid "case-sensitive-path"
20843 msgstr ""
20844
20845 #. type: verbatim
20846 #: ../fish/guestfish-actions.pod:535
20847 #, no-wrap
20848 msgid ""
20849 " case-sensitive-path path\n"
20850 "\n"
20851 msgstr ""
20852
20853 #. type: textblock
20854 #: ../fish/guestfish-actions.pod:559
20855 msgid ""
20856 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
20857 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
20858 "how the directories were originally created under Windows)."
20859 msgstr ""
20860
20861 #. type: textblock
20862 #: ../fish/guestfish-actions.pod:567
20863 msgid "See also L</realpath>."
20864 msgstr ""
20865
20866 #. type: =head2
20867 #: ../fish/guestfish-actions.pod:569
20868 msgid "cat"
20869 msgstr ""
20870
20871 #. type: verbatim
20872 #: ../fish/guestfish-actions.pod:571
20873 #, no-wrap
20874 msgid ""
20875 " cat path\n"
20876 "\n"
20877 msgstr ""
20878
20879 #. type: textblock
20880 #: ../fish/guestfish-actions.pod:575
20881 msgid ""
20882 "Note that this function cannot correctly handle binary files (specifically, "
20883 "files containing C<\\0> character which is treated as end of string).  For "
20884 "those you need to use the L</read-file> or L</download> functions which have "
20885 "a more complex interface."
20886 msgstr ""
20887
20888 #. type: =head2
20889 #: ../fish/guestfish-actions.pod:583
20890 msgid "checksum"
20891 msgstr ""
20892
20893 #. type: verbatim
20894 #: ../fish/guestfish-actions.pod:585
20895 #, no-wrap
20896 msgid ""
20897 " checksum csumtype path\n"
20898 "\n"
20899 msgstr ""
20900
20901 #. type: textblock
20902 #: ../fish/guestfish-actions.pod:628
20903 msgid "To get the checksum for a device, use L</checksum-device>."
20904 msgstr ""
20905
20906 #. type: textblock
20907 #: ../fish/guestfish-actions.pod:630
20908 msgid "To get the checksums for many files, use L</checksums-out>."
20909 msgstr ""
20910
20911 #. type: =head2
20912 #: ../fish/guestfish-actions.pod:632
20913 msgid "checksum-device"
20914 msgstr ""
20915
20916 #. type: verbatim
20917 #: ../fish/guestfish-actions.pod:634
20918 #, no-wrap
20919 msgid ""
20920 " checksum-device csumtype device\n"
20921 "\n"
20922 msgstr ""
20923
20924 #. type: textblock
20925 #: ../fish/guestfish-actions.pod:636
20926 msgid ""
20927 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
20928 "device named C<device>.  For the types of checksums supported see the "
20929 "L</checksum> command."
20930 msgstr ""
20931
20932 #. type: =head2
20933 #: ../fish/guestfish-actions.pod:640
20934 msgid "checksums-out"
20935 msgstr ""
20936
20937 #. type: verbatim
20938 #: ../fish/guestfish-actions.pod:642
20939 #, no-wrap
20940 msgid ""
20941 " checksums-out csumtype directory (sumsfile|-)\n"
20942 "\n"
20943 msgstr ""
20944
20945 #. type: =head2
20946 #: ../fish/guestfish-actions.pod:658
20947 msgid "chmod"
20948 msgstr ""
20949
20950 #. type: verbatim
20951 #: ../fish/guestfish-actions.pod:660
20952 #, no-wrap
20953 msgid ""
20954 " chmod mode path\n"
20955 "\n"
20956 msgstr ""
20957
20958 #. type: =head2
20959 #: ../fish/guestfish-actions.pod:671
20960 msgid "chown"
20961 msgstr ""
20962
20963 #. type: verbatim
20964 #: ../fish/guestfish-actions.pod:673
20965 #, no-wrap
20966 msgid ""
20967 " chown owner group path\n"
20968 "\n"
20969 msgstr ""
20970
20971 #. type: =head2
20972 #: ../fish/guestfish-actions.pod:681
20973 msgid "command"
20974 msgstr ""
20975
20976 #. type: verbatim
20977 #: ../fish/guestfish-actions.pod:683
20978 #, no-wrap
20979 msgid ""
20980 " command 'arguments ...'\n"
20981 "\n"
20982 msgstr ""
20983
20984 #. type: textblock
20985 #: ../fish/guestfish-actions.pod:690
20986 msgid ""
20987 "The single parameter is an argv-style list of arguments.  The first element "
20988 "is the name of the program to run.  Subsequent elements are parameters.  The "
20989 "list must be non-empty (ie. must contain a program name).  Note that the "
20990 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
20991 msgstr ""
20992
20993 #. type: =head2
20994 #: ../fish/guestfish-actions.pod:718
20995 msgid "command-lines"
20996 msgstr ""
20997
20998 #. type: verbatim
20999 #: ../fish/guestfish-actions.pod:720
21000 #, no-wrap
21001 msgid ""
21002 " command-lines 'arguments ...'\n"
21003 "\n"
21004 msgstr ""
21005
21006 #. type: textblock
21007 #: ../fish/guestfish-actions.pod:722
21008 msgid "This is the same as L</command>, but splits the result into a list of lines."
21009 msgstr ""
21010
21011 #. type: textblock
21012 #: ../fish/guestfish-actions.pod:725
21013 msgid "See also: L</sh-lines>"
21014 msgstr ""
21015
21016 #. type: =head2
21017 #: ../fish/guestfish-actions.pod:730
21018 msgid "config"
21019 msgstr ""
21020
21021 #. type: verbatim
21022 #: ../fish/guestfish-actions.pod:732
21023 #, no-wrap
21024 msgid ""
21025 " config qemuparam qemuvalue\n"
21026 "\n"
21027 msgstr ""
21028
21029 #. type: =head2
21030 #: ../fish/guestfish-actions.pod:743
21031 msgid "copy-size"
21032 msgstr ""
21033
21034 #. type: verbatim
21035 #: ../fish/guestfish-actions.pod:745
21036 #, no-wrap
21037 msgid ""
21038 " copy-size src dest size\n"
21039 "\n"
21040 msgstr ""
21041
21042 #. type: =head2
21043 #: ../fish/guestfish-actions.pod:753
21044 msgid "cp"
21045 msgstr ""
21046
21047 #. type: verbatim
21048 #: ../fish/guestfish-actions.pod:755
21049 #, no-wrap
21050 msgid ""
21051 " cp src dest\n"
21052 "\n"
21053 msgstr ""
21054
21055 #. type: =head2
21056 #: ../fish/guestfish-actions.pod:760
21057 msgid "cp-a"
21058 msgstr ""
21059
21060 #. type: verbatim
21061 #: ../fish/guestfish-actions.pod:762
21062 #, no-wrap
21063 msgid ""
21064 " cp-a src dest\n"
21065 "\n"
21066 msgstr ""
21067
21068 #. type: =head2
21069 #: ../fish/guestfish-actions.pod:767
21070 msgid "dd"
21071 msgstr ""
21072
21073 #. type: verbatim
21074 #: ../fish/guestfish-actions.pod:769
21075 #, no-wrap
21076 msgid ""
21077 " dd src dest\n"
21078 "\n"
21079 msgstr ""
21080
21081 #. type: textblock
21082 #: ../fish/guestfish-actions.pod:776
21083 msgid ""
21084 "If the destination is a device, it must be as large or larger than the "
21085 "source file or device, otherwise the copy will fail.  This command cannot do "
21086 "partial copies (see L</copy-size>)."
21087 msgstr ""
21088
21089 #. type: =head2
21090 #: ../fish/guestfish-actions.pod:780
21091 msgid "df"
21092 msgstr ""
21093
21094 #. type: verbatim
21095 #: ../fish/guestfish-actions.pod:782
21096 #, no-wrap
21097 msgid ""
21098 " df\n"
21099 "\n"
21100 msgstr ""
21101
21102 #. type: textblock
21103 #: ../fish/guestfish-actions.pod:786 ../fish/guestfish-actions.pod:797
21104 msgid ""
21105 "This command is mostly useful for interactive sessions.  It is I<not> "
21106 "intended that you try to parse the output string.  Use L</statvfs> from "
21107 "programs."
21108 msgstr ""
21109
21110 #. type: =head2
21111 #: ../fish/guestfish-actions.pod:790
21112 msgid "df-h"
21113 msgstr ""
21114
21115 #. type: verbatim
21116 #: ../fish/guestfish-actions.pod:792
21117 #, no-wrap
21118 msgid ""
21119 " df-h\n"
21120 "\n"
21121 msgstr ""
21122
21123 #. type: =head2
21124 #: ../fish/guestfish-actions.pod:801
21125 msgid "dmesg"
21126 msgstr ""
21127
21128 #. type: verbatim
21129 #: ../fish/guestfish-actions.pod:803
21130 #, no-wrap
21131 msgid ""
21132 " dmesg\n"
21133 "\n"
21134 msgstr ""
21135
21136 #. type: textblock
21137 #: ../fish/guestfish-actions.pod:809
21138 msgid ""
21139 "Another way to get the same information is to enable verbose messages with "
21140 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
21141 "before running the program."
21142 msgstr ""
21143
21144 #. type: =head2
21145 #: ../fish/guestfish-actions.pod:814
21146 msgid "download"
21147 msgstr ""
21148
21149 #. type: verbatim
21150 #: ../fish/guestfish-actions.pod:816
21151 #, no-wrap
21152 msgid ""
21153 " download remotefilename (filename|-)\n"
21154 "\n"
21155 msgstr ""
21156
21157 #. type: textblock
21158 #: ../fish/guestfish-actions.pod:823
21159 msgid "See also L</upload>, L</cat>."
21160 msgstr ""
21161
21162 #. type: =head2
21163 #: ../fish/guestfish-actions.pod:827
21164 msgid "download-offset"
21165 msgstr ""
21166
21167 #. type: verbatim
21168 #: ../fish/guestfish-actions.pod:829
21169 #, no-wrap
21170 msgid ""
21171 " download-offset remotefilename (filename|-) offset size\n"
21172 "\n"
21173 msgstr ""
21174
21175 #. type: textblock
21176 #: ../fish/guestfish-actions.pod:837
21177 msgid ""
21178 "Note that there is no limit on the amount of data that can be downloaded "
21179 "with this call, unlike with L</pread>, and this call always reads the full "
21180 "amount unless an error occurs."
21181 msgstr ""
21182
21183 #. type: textblock
21184 #: ../fish/guestfish-actions.pod:842
21185 msgid "See also L</download>, L</pread>."
21186 msgstr ""
21187
21188 #. type: =head2
21189 #: ../fish/guestfish-actions.pod:846
21190 msgid "drop-caches"
21191 msgstr ""
21192
21193 #. type: verbatim
21194 #: ../fish/guestfish-actions.pod:848
21195 #, no-wrap
21196 msgid ""
21197 " drop-caches whattodrop\n"
21198 "\n"
21199 msgstr ""
21200
21201 #. type: =head2
21202 #: ../fish/guestfish-actions.pod:860
21203 msgid "du"
21204 msgstr ""
21205
21206 #. type: verbatim
21207 #: ../fish/guestfish-actions.pod:862
21208 #, no-wrap
21209 msgid ""
21210 " du path\n"
21211 "\n"
21212 msgstr ""
21213
21214 #. type: =head2
21215 #: ../fish/guestfish-actions.pod:874
21216 msgid "e2fsck-f"
21217 msgstr ""
21218
21219 #. type: verbatim
21220 #: ../fish/guestfish-actions.pod:876
21221 #, no-wrap
21222 msgid ""
21223 " e2fsck-f device\n"
21224 "\n"
21225 msgstr ""
21226
21227 #. type: textblock
21228 #: ../fish/guestfish-actions.pod:882
21229 msgid ""
21230 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
21231 "should use L</fsck>."
21232 msgstr ""
21233
21234 #. type: =head2
21235 #: ../fish/guestfish-actions.pod:885
21236 msgid "echo-daemon"
21237 msgstr ""
21238
21239 #. type: verbatim
21240 #: ../fish/guestfish-actions.pod:887
21241 #, no-wrap
21242 msgid ""
21243 " echo-daemon 'words ...'\n"
21244 "\n"
21245 msgstr ""
21246
21247 #. type: textblock
21248 #: ../fish/guestfish-actions.pod:894
21249 msgid "See also L</ping-daemon>."
21250 msgstr ""
21251
21252 #. type: =head2
21253 #: ../fish/guestfish-actions.pod:896
21254 msgid "egrep"
21255 msgstr ""
21256
21257 #. type: verbatim
21258 #: ../fish/guestfish-actions.pod:898
21259 #, no-wrap
21260 msgid ""
21261 " egrep regex path\n"
21262 "\n"
21263 msgstr ""
21264
21265 #. type: =head2
21266 #: ../fish/guestfish-actions.pod:906
21267 msgid "egrepi"
21268 msgstr ""
21269
21270 #. type: verbatim
21271 #: ../fish/guestfish-actions.pod:908
21272 #, no-wrap
21273 msgid ""
21274 " egrepi regex path\n"
21275 "\n"
21276 msgstr ""
21277
21278 #. type: =head2
21279 #: ../fish/guestfish-actions.pod:916
21280 msgid "equal"
21281 msgstr ""
21282
21283 #. type: verbatim
21284 #: ../fish/guestfish-actions.pod:918
21285 #, no-wrap
21286 msgid ""
21287 " equal file1 file2\n"
21288 "\n"
21289 msgstr ""
21290
21291 #. type: =head2
21292 #: ../fish/guestfish-actions.pod:925
21293 msgid "exists"
21294 msgstr ""
21295
21296 #. type: verbatim
21297 #: ../fish/guestfish-actions.pod:927
21298 #, no-wrap
21299 msgid ""
21300 " exists path\n"
21301 "\n"
21302 msgstr ""
21303
21304 #. type: textblock
21305 #: ../fish/guestfish-actions.pod:932
21306 msgid "See also L</is-file>, L</is-dir>, L</stat>."
21307 msgstr ""
21308
21309 #. type: =head2
21310 #: ../fish/guestfish-actions.pod:934
21311 msgid "fallocate"
21312 msgstr ""
21313
21314 #. type: verbatim
21315 #: ../fish/guestfish-actions.pod:936
21316 #, no-wrap
21317 msgid ""
21318 " fallocate path len\n"
21319 "\n"
21320 msgstr ""
21321
21322 #. type: =head2
21323 #: ../fish/guestfish-actions.pod:953
21324 msgid "fallocate64"
21325 msgstr ""
21326
21327 #. type: verbatim
21328 #: ../fish/guestfish-actions.pod:955
21329 #, no-wrap
21330 msgid ""
21331 " fallocate64 path len\n"
21332 "\n"
21333 msgstr ""
21334
21335 #. type: textblock
21336 #: ../fish/guestfish-actions.pod:961
21337 msgid ""
21338 "Note that this call allocates disk blocks for the file.  To create a sparse "
21339 "file use L</truncate-size> instead."
21340 msgstr ""
21341
21342 #. type: textblock
21343 #: ../fish/guestfish-actions.pod:964
21344 msgid ""
21345 "The deprecated call L</fallocate> does the same, but owing to an oversight "
21346 "it only allowed 30 bit lengths to be specified, effectively limiting the "
21347 "maximum size of files created through that call to 1GB."
21348 msgstr ""
21349
21350 #. type: =head2
21351 #: ../fish/guestfish-actions.pod:973
21352 msgid "fgrep"
21353 msgstr ""
21354
21355 #. type: verbatim
21356 #: ../fish/guestfish-actions.pod:975
21357 #, no-wrap
21358 msgid ""
21359 " fgrep pattern path\n"
21360 "\n"
21361 msgstr ""
21362
21363 #. type: =head2
21364 #: ../fish/guestfish-actions.pod:983
21365 msgid "fgrepi"
21366 msgstr ""
21367
21368 #. type: verbatim
21369 #: ../fish/guestfish-actions.pod:985
21370 #, no-wrap
21371 msgid ""
21372 " fgrepi pattern path\n"
21373 "\n"
21374 msgstr ""
21375
21376 #. type: =head2
21377 #: ../fish/guestfish-actions.pod:993
21378 msgid "file"
21379 msgstr ""
21380
21381 #. type: verbatim
21382 #: ../fish/guestfish-actions.pod:995
21383 #, no-wrap
21384 msgid ""
21385 " file path\n"
21386 "\n"
21387 msgstr ""
21388
21389 #. type: textblock
21390 #: ../fish/guestfish-actions.pod:1007
21391 msgid ""
21392 "This command can also be used on C</dev/> devices (and partitions, LV "
21393 "names).  You can for example use this to determine if a device contains a "
21394 "filesystem, although it's usually better to use L</vfs-type>."
21395 msgstr ""
21396
21397 #. type: =head2
21398 #: ../fish/guestfish-actions.pod:1017
21399 msgid "file-architecture"
21400 msgstr ""
21401
21402 #. type: verbatim
21403 #: ../fish/guestfish-actions.pod:1019
21404 #, no-wrap
21405 msgid ""
21406 " file-architecture filename\n"
21407 "\n"
21408 msgstr ""
21409
21410 #. type: =head2
21411 #: ../fish/guestfish-actions.pod:1122
21412 msgid "filesize"
21413 msgstr ""
21414
21415 #. type: verbatim
21416 #: ../fish/guestfish-actions.pod:1124
21417 #, no-wrap
21418 msgid ""
21419 " filesize file\n"
21420 "\n"
21421 msgstr ""
21422
21423 #. type: textblock
21424 #: ../fish/guestfish-actions.pod:1128
21425 msgid ""
21426 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
21427 "L</is-file> etc.  To get the size of block devices, use "
21428 "L</blockdev-getsize64>."
21429 msgstr ""
21430
21431 #. type: =head2
21432 #: ../fish/guestfish-actions.pod:1132
21433 msgid "fill"
21434 msgstr ""
21435
21436 #. type: verbatim
21437 #: ../fish/guestfish-actions.pod:1134
21438 #, no-wrap
21439 msgid ""
21440 " fill c len path\n"
21441 "\n"
21442 msgstr ""
21443
21444 #. type: textblock
21445 #: ../fish/guestfish-actions.pod:1140
21446 msgid ""
21447 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
21448 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
21449 "L</fill-pattern>."
21450 msgstr ""
21451
21452 #. type: =head2
21453 #: ../fish/guestfish-actions.pod:1145
21454 msgid "fill-pattern"
21455 msgstr ""
21456
21457 #. type: verbatim
21458 #: ../fish/guestfish-actions.pod:1147
21459 #, no-wrap
21460 msgid ""
21461 " fill-pattern pattern len path\n"
21462 "\n"
21463 msgstr ""
21464
21465 #. type: textblock
21466 #: ../fish/guestfish-actions.pod:1149
21467 msgid ""
21468 "This function is like L</fill> except that it creates a new file of length "
21469 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
21470 "is truncated if necessary to ensure the length of the file is exactly C<len> "
21471 "bytes."
21472 msgstr ""
21473
21474 #. type: =head2
21475 #: ../fish/guestfish-actions.pod:1154
21476 msgid "find"
21477 msgstr ""
21478
21479 #. type: verbatim
21480 #: ../fish/guestfish-actions.pod:1156
21481 #, no-wrap
21482 msgid ""
21483 " find directory\n"
21484 "\n"
21485 msgstr ""
21486
21487 #. type: textblock
21488 #: ../fish/guestfish-actions.pod:1170
21489 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
21490 msgstr ""
21491
21492 #. type: textblock
21493 #: ../fish/guestfish-actions.pod:1183
21494 msgid "See also L</find0>."
21495 msgstr ""
21496
21497 #. type: =head2
21498 #: ../fish/guestfish-actions.pod:1188
21499 msgid "find0"
21500 msgstr ""
21501
21502 #. type: verbatim
21503 #: ../fish/guestfish-actions.pod:1190
21504 #, no-wrap
21505 msgid ""
21506 " find0 directory (files|-)\n"
21507 "\n"
21508 msgstr ""
21509
21510 #. type: textblock
21511 #: ../fish/guestfish-actions.pod:1196
21512 msgid "This command works the same way as L</find> with the following exceptions:"
21513 msgstr ""
21514
21515 #. type: =head2
21516 #: ../fish/guestfish-actions.pod:1223
21517 msgid "findfs-label"
21518 msgstr ""
21519
21520 #. type: verbatim
21521 #: ../fish/guestfish-actions.pod:1225
21522 #, no-wrap
21523 msgid ""
21524 " findfs-label label\n"
21525 "\n"
21526 msgstr ""
21527
21528 #. type: textblock
21529 #: ../fish/guestfish-actions.pod:1231
21530 msgid "To find the label of a filesystem, use L</vfs-label>."
21531 msgstr ""
21532
21533 #. type: =head2
21534 #: ../fish/guestfish-actions.pod:1233
21535 msgid "findfs-uuid"
21536 msgstr ""
21537
21538 #. type: verbatim
21539 #: ../fish/guestfish-actions.pod:1235
21540 #, no-wrap
21541 msgid ""
21542 " findfs-uuid uuid\n"
21543 "\n"
21544 msgstr ""
21545
21546 #. type: textblock
21547 #: ../fish/guestfish-actions.pod:1241
21548 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
21549 msgstr ""
21550
21551 #. type: =head2
21552 #: ../fish/guestfish-actions.pod:1243
21553 msgid "fsck"
21554 msgstr ""
21555
21556 #. type: verbatim
21557 #: ../fish/guestfish-actions.pod:1245
21558 #, no-wrap
21559 msgid ""
21560 " fsck fstype device\n"
21561 "\n"
21562 msgstr ""
21563
21564 #. type: =head2
21565 #: ../fish/guestfish-actions.pod:1275
21566 msgid "get-append"
21567 msgstr ""
21568
21569 #. type: verbatim
21570 #: ../fish/guestfish-actions.pod:1277
21571 #, no-wrap
21572 msgid ""
21573 " get-append\n"
21574 "\n"
21575 msgstr ""
21576
21577 #. type: =head2
21578 #: ../fish/guestfish-actions.pod:1284
21579 msgid "get-autosync"
21580 msgstr ""
21581
21582 #. type: verbatim
21583 #: ../fish/guestfish-actions.pod:1286
21584 #, no-wrap
21585 msgid ""
21586 " get-autosync\n"
21587 "\n"
21588 msgstr ""
21589
21590 #. type: =head2
21591 #: ../fish/guestfish-actions.pod:1290
21592 msgid "get-direct"
21593 msgstr ""
21594
21595 #. type: verbatim
21596 #: ../fish/guestfish-actions.pod:1292
21597 #, no-wrap
21598 msgid ""
21599 " get-direct\n"
21600 "\n"
21601 msgstr ""
21602
21603 #. type: =head2
21604 #: ../fish/guestfish-actions.pod:1296
21605 msgid "get-e2label"
21606 msgstr ""
21607
21608 #. type: verbatim
21609 #: ../fish/guestfish-actions.pod:1298
21610 #, no-wrap
21611 msgid ""
21612 " get-e2label device\n"
21613 "\n"
21614 msgstr ""
21615
21616 #. type: =head2
21617 #: ../fish/guestfish-actions.pod:1310
21618 msgid "get-e2uuid"
21619 msgstr ""
21620
21621 #. type: verbatim
21622 #: ../fish/guestfish-actions.pod:1312
21623 #, no-wrap
21624 msgid ""
21625 " get-e2uuid device\n"
21626 "\n"
21627 msgstr ""
21628
21629 #. type: =head2
21630 #: ../fish/guestfish-actions.pod:1324
21631 msgid "get-memsize"
21632 msgstr ""
21633
21634 #. type: verbatim
21635 #: ../fish/guestfish-actions.pod:1326
21636 #, no-wrap
21637 msgid ""
21638 " get-memsize\n"
21639 "\n"
21640 msgstr ""
21641
21642 #. type: textblock
21643 #: ../fish/guestfish-actions.pod:1331
21644 msgid ""
21645 "If L</set-memsize> was not called on this handle, and if "
21646 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
21647 "value for memsize."
21648 msgstr ""
21649
21650 #. type: =head2
21651 #: ../fish/guestfish-actions.pod:1338
21652 msgid "get-network"
21653 msgstr ""
21654
21655 #. type: verbatim
21656 #: ../fish/guestfish-actions.pod:1340
21657 #, no-wrap
21658 msgid ""
21659 " get-network\n"
21660 "\n"
21661 msgstr ""
21662
21663 #. type: =head2
21664 #: ../fish/guestfish-actions.pod:1344
21665 msgid "get-path"
21666 msgstr ""
21667
21668 #. type: verbatim
21669 #: ../fish/guestfish-actions.pod:1346
21670 #, no-wrap
21671 msgid ""
21672 " get-path\n"
21673 "\n"
21674 msgstr ""
21675
21676 #. type: =head2
21677 #: ../fish/guestfish-actions.pod:1353
21678 msgid "get-pid"
21679 msgstr ""
21680
21681 #. type: =head2
21682 #: ../fish/guestfish-actions.pod:1355
21683 msgid "pid"
21684 msgstr ""
21685
21686 #. type: verbatim
21687 #: ../fish/guestfish-actions.pod:1357
21688 #, no-wrap
21689 msgid ""
21690 " get-pid\n"
21691 "\n"
21692 msgstr ""
21693
21694 #. type: =head2
21695 #: ../fish/guestfish-actions.pod:1364
21696 msgid "get-qemu"
21697 msgstr ""
21698
21699 #. type: verbatim
21700 #: ../fish/guestfish-actions.pod:1366
21701 #, no-wrap
21702 msgid ""
21703 " get-qemu\n"
21704 "\n"
21705 msgstr ""
21706
21707 #. type: =head2
21708 #: ../fish/guestfish-actions.pod:1373
21709 msgid "get-recovery-proc"
21710 msgstr ""
21711
21712 #. type: verbatim
21713 #: ../fish/guestfish-actions.pod:1375
21714 #, no-wrap
21715 msgid ""
21716 " get-recovery-proc\n"
21717 "\n"
21718 msgstr ""
21719
21720 #. type: =head2
21721 #: ../fish/guestfish-actions.pod:1379
21722 msgid "get-selinux"
21723 msgstr ""
21724
21725 #. type: verbatim
21726 #: ../fish/guestfish-actions.pod:1381
21727 #, no-wrap
21728 msgid ""
21729 " get-selinux\n"
21730 "\n"
21731 msgstr ""
21732
21733 #. type: textblock
21734 #: ../fish/guestfish-actions.pod:1383
21735 msgid ""
21736 "This returns the current setting of the selinux flag which is passed to the "
21737 "appliance at boot time.  See L</set-selinux>."
21738 msgstr ""
21739
21740 #. type: =head2
21741 #: ../fish/guestfish-actions.pod:1389
21742 msgid "get-state"
21743 msgstr ""
21744
21745 #. type: verbatim
21746 #: ../fish/guestfish-actions.pod:1391
21747 #, no-wrap
21748 msgid ""
21749 " get-state\n"
21750 "\n"
21751 msgstr ""
21752
21753 #. type: =head2
21754 #: ../fish/guestfish-actions.pod:1398
21755 msgid "get-trace"
21756 msgstr ""
21757
21758 #. type: verbatim
21759 #: ../fish/guestfish-actions.pod:1400
21760 #, no-wrap
21761 msgid ""
21762 " get-trace\n"
21763 "\n"
21764 msgstr ""
21765
21766 #. type: =head2
21767 #: ../fish/guestfish-actions.pod:1404
21768 msgid "get-umask"
21769 msgstr ""
21770
21771 #. type: verbatim
21772 #: ../fish/guestfish-actions.pod:1406
21773 #, no-wrap
21774 msgid ""
21775 " get-umask\n"
21776 "\n"
21777 msgstr ""
21778
21779 #. type: textblock
21780 #: ../fish/guestfish-actions.pod:1408
21781 msgid ""
21782 "Return the current umask.  By default the umask is C<022> unless it has been "
21783 "set by calling L</umask>."
21784 msgstr ""
21785
21786 #. type: =head2
21787 #: ../fish/guestfish-actions.pod:1411
21788 msgid "get-verbose"
21789 msgstr ""
21790
21791 #. type: verbatim
21792 #: ../fish/guestfish-actions.pod:1413
21793 #, no-wrap
21794 msgid ""
21795 " get-verbose\n"
21796 "\n"
21797 msgstr ""
21798
21799 #. type: =head2
21800 #: ../fish/guestfish-actions.pod:1417
21801 msgid "getcon"
21802 msgstr ""
21803
21804 #. type: verbatim
21805 #: ../fish/guestfish-actions.pod:1419
21806 #, no-wrap
21807 msgid ""
21808 " getcon\n"
21809 "\n"
21810 msgstr ""
21811
21812 #. type: textblock
21813 #: ../fish/guestfish-actions.pod:1423
21814 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
21815 msgstr ""
21816
21817 #. type: =head2
21818 #: ../fish/guestfish-actions.pod:1426
21819 msgid "getxattr"
21820 msgstr ""
21821
21822 #. type: verbatim
21823 #: ../fish/guestfish-actions.pod:1428
21824 #, no-wrap
21825 msgid ""
21826 " getxattr path name\n"
21827 "\n"
21828 msgstr ""
21829
21830 #. type: textblock
21831 #: ../fish/guestfish-actions.pod:1430
21832 msgid ""
21833 "Get a single extended attribute from file C<path> named C<name>.  This call "
21834 "follows symlinks.  If you want to lookup an extended attribute for the "
21835 "symlink itself, use L</lgetxattr>."
21836 msgstr ""
21837
21838 #. type: textblock
21839 #: ../fish/guestfish-actions.pod:1434 ../fish/guestfish-actions.pod:2340
21840 msgid ""
21841 "Normally it is better to get all extended attributes from a file in one go "
21842 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
21843 "buggy and do not provide a way to list out attributes.  For these "
21844 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
21845 "attributes you want in advance and call this function."
21846 msgstr ""
21847
21848 #. type: textblock
21849 #: ../fish/guestfish-actions.pod:1444
21850 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
21851 msgstr ""
21852
21853 #. type: =head2
21854 #: ../fish/guestfish-actions.pod:1446
21855 msgid "getxattrs"
21856 msgstr ""
21857
21858 #. type: verbatim
21859 #: ../fish/guestfish-actions.pod:1448
21860 #, no-wrap
21861 msgid ""
21862 " getxattrs path\n"
21863 "\n"
21864 msgstr ""
21865
21866 #. type: textblock
21867 #: ../fish/guestfish-actions.pod:1456
21868 msgid "See also: L</lgetxattrs>, L<attr(5)>."
21869 msgstr ""
21870
21871 #. type: =head2
21872 #: ../fish/guestfish-actions.pod:1458
21873 msgid "glob-expand"
21874 msgstr ""
21875
21876 #. type: verbatim
21877 #: ../fish/guestfish-actions.pod:1460
21878 #, no-wrap
21879 msgid ""
21880 " glob-expand pattern\n"
21881 "\n"
21882 msgstr ""
21883
21884 #. type: =head2
21885 #: ../fish/guestfish-actions.pod:1473
21886 msgid "grep"
21887 msgstr ""
21888
21889 #. type: verbatim
21890 #: ../fish/guestfish-actions.pod:1475
21891 #, no-wrap
21892 msgid ""
21893 " grep regex path\n"
21894 "\n"
21895 msgstr ""
21896
21897 #. type: =head2
21898 #: ../fish/guestfish-actions.pod:1483
21899 msgid "grepi"
21900 msgstr ""
21901
21902 #. type: verbatim
21903 #: ../fish/guestfish-actions.pod:1485
21904 #, no-wrap
21905 msgid ""
21906 " grepi regex path\n"
21907 "\n"
21908 msgstr ""
21909
21910 #. type: =head2
21911 #: ../fish/guestfish-actions.pod:1493
21912 msgid "grub-install"
21913 msgstr ""
21914
21915 #. type: verbatim
21916 #: ../fish/guestfish-actions.pod:1495
21917 #, no-wrap
21918 msgid ""
21919 " grub-install root device\n"
21920 "\n"
21921 msgstr ""
21922
21923 #. type: =head2
21924 #: ../fish/guestfish-actions.pod:1511
21925 msgid "head"
21926 msgstr ""
21927
21928 #. type: verbatim
21929 #: ../fish/guestfish-actions.pod:1513
21930 #, no-wrap
21931 msgid ""
21932 " head path\n"
21933 "\n"
21934 msgstr ""
21935
21936 #. type: =head2
21937 #: ../fish/guestfish-actions.pod:1521
21938 msgid "head-n"
21939 msgstr ""
21940
21941 #. type: verbatim
21942 #: ../fish/guestfish-actions.pod:1523
21943 #, no-wrap
21944 msgid ""
21945 " head-n nrlines path\n"
21946 "\n"
21947 msgstr ""
21948
21949 #. type: =head2
21950 #: ../fish/guestfish-actions.pod:1536
21951 msgid "hexdump"
21952 msgstr ""
21953
21954 #. type: verbatim
21955 #: ../fish/guestfish-actions.pod:1538
21956 #, no-wrap
21957 msgid ""
21958 " hexdump path\n"
21959 "\n"
21960 msgstr ""
21961
21962 #. type: =head2
21963 #: ../fish/guestfish-actions.pod:1546
21964 msgid "initrd-cat"
21965 msgstr ""
21966
21967 #. type: verbatim
21968 #: ../fish/guestfish-actions.pod:1548
21969 #, no-wrap
21970 msgid ""
21971 " initrd-cat initrdpath filename\n"
21972 "\n"
21973 msgstr ""
21974
21975 #. type: textblock
21976 #: ../fish/guestfish-actions.pod:1560
21977 msgid "See also L</initrd-list>."
21978 msgstr ""
21979
21980 #. type: =head2
21981 #: ../fish/guestfish-actions.pod:1565
21982 msgid "initrd-list"
21983 msgstr ""
21984
21985 #. type: verbatim
21986 #: ../fish/guestfish-actions.pod:1567
21987 #, no-wrap
21988 msgid ""
21989 " initrd-list path\n"
21990 "\n"
21991 msgstr ""
21992
21993 #. type: =head2
21994 #: ../fish/guestfish-actions.pod:1579
21995 msgid "inotify-add-watch"
21996 msgstr ""
21997
21998 #. type: verbatim
21999 #: ../fish/guestfish-actions.pod:1581
22000 #, no-wrap
22001 msgid ""
22002 " inotify-add-watch path mask\n"
22003 "\n"
22004 msgstr ""
22005
22006 #. type: =head2
22007 #: ../fish/guestfish-actions.pod:1593
22008 msgid "inotify-close"
22009 msgstr ""
22010
22011 #. type: verbatim
22012 #: ../fish/guestfish-actions.pod:1595
22013 #, no-wrap
22014 msgid ""
22015 " inotify-close\n"
22016 "\n"
22017 msgstr ""
22018
22019 #. type: =head2
22020 #: ../fish/guestfish-actions.pod:1601
22021 msgid "inotify-files"
22022 msgstr ""
22023
22024 #. type: verbatim
22025 #: ../fish/guestfish-actions.pod:1603
22026 #, no-wrap
22027 msgid ""
22028 " inotify-files\n"
22029 "\n"
22030 msgstr ""
22031
22032 #. type: textblock
22033 #: ../fish/guestfish-actions.pod:1605
22034 msgid ""
22035 "This function is a helpful wrapper around L</inotify-read> which just "
22036 "returns a list of pathnames of objects that were touched.  The returned "
22037 "pathnames are sorted and deduplicated."
22038 msgstr ""
22039
22040 #. type: =head2
22041 #: ../fish/guestfish-actions.pod:1609
22042 msgid "inotify-init"
22043 msgstr ""
22044
22045 #. type: verbatim
22046 #: ../fish/guestfish-actions.pod:1611
22047 #, no-wrap
22048 msgid ""
22049 " inotify-init maxevents\n"
22050 "\n"
22051 msgstr ""
22052
22053 #. type: textblock
22054 #: ../fish/guestfish-actions.pod:1617
22055 msgid ""
22056 "C<maxevents> is the maximum number of events which will be queued up between "
22057 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
22058 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
22059 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
22060 "but records the fact that it threw them away by setting a flag "
22061 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
22062 msgstr ""
22063
22064 #. type: textblock
22065 #: ../fish/guestfish-actions.pod:1627
22066 msgid ""
22067 "Before any events are generated, you have to add some watches to the "
22068 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
22069 "L</inotify-watch-all>."
22070 msgstr ""
22071
22072 #. type: textblock
22073 #: ../fish/guestfish-actions.pod:1633
22074 msgid ""
22075 "Queued up events should be read periodically by calling L</inotify-read> (or "
22076 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
22077 "If you don't read the events out often enough then you risk the internal "
22078 "queue overflowing."
22079 msgstr ""
22080
22081 #. type: textblock
22082 #: ../fish/guestfish-actions.pod:1640
22083 msgid ""
22084 "The handle should be closed after use by calling L</inotify-close>.  This "
22085 "also removes any watches automatically."
22086 msgstr ""
22087
22088 #. type: =head2
22089 #: ../fish/guestfish-actions.pod:1649
22090 msgid "inotify-read"
22091 msgstr ""
22092
22093 #. type: verbatim
22094 #: ../fish/guestfish-actions.pod:1651
22095 #, no-wrap
22096 msgid ""
22097 " inotify-read\n"
22098 "\n"
22099 msgstr ""
22100
22101 #. type: =head2
22102 #: ../fish/guestfish-actions.pod:1664
22103 msgid "inotify-rm-watch"
22104 msgstr ""
22105
22106 #. type: verbatim
22107 #: ../fish/guestfish-actions.pod:1666
22108 #, no-wrap
22109 msgid ""
22110 " inotify-rm-watch wd\n"
22111 "\n"
22112 msgstr ""
22113
22114 #. type: textblock
22115 #: ../fish/guestfish-actions.pod:1668
22116 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
22117 msgstr ""
22118
22119 #. type: =head2
22120 #: ../fish/guestfish-actions.pod:1671
22121 msgid "inspect-get-arch"
22122 msgstr ""
22123
22124 #. type: verbatim
22125 #: ../fish/guestfish-actions.pod:1673
22126 #, no-wrap
22127 msgid ""
22128 " inspect-get-arch root\n"
22129 "\n"
22130 msgstr ""
22131
22132 #. type: textblock
22133 #: ../fish/guestfish-actions.pod:1675 ../fish/guestfish-actions.pod:1691 ../fish/guestfish-actions.pod:1765 ../fish/guestfish-actions.pod:1783 ../fish/guestfish-actions.pod:1817 ../fish/guestfish-actions.pod:1832 ../fish/guestfish-actions.pod:1853 ../fish/guestfish-actions.pod:1868 ../fish/guestfish-actions.pod:1895 ../fish/guestfish-actions.pod:1917 ../fish/guestfish-actions.pod:1941 ../fish/guestfish-actions.pod:1971 ../fish/guestfish-actions.pod:2006 ../fish/guestfish-actions.pod:2022 ../fish/guestfish-actions.pod:2035 ../fish/guestfish-actions.pod:2048 ../fish/guestfish-actions.pod:2063
22134 msgid ""
22135 "This function should only be called with a root device string as returned by "
22136 "L</inspect-os>."
22137 msgstr ""
22138
22139 #. type: textblock
22140 #: ../fish/guestfish-actions.pod:1678
22141 msgid ""
22142 "This returns the architecture of the inspected operating system.  The "
22143 "possible return values are listed under L</file-architecture>."
22144 msgstr ""
22145
22146 #. type: =head2
22147 #: ../fish/guestfish-actions.pod:1687
22148 msgid "inspect-get-distro"
22149 msgstr ""
22150
22151 #. type: verbatim
22152 #: ../fish/guestfish-actions.pod:1689
22153 #, no-wrap
22154 msgid ""
22155 " inspect-get-distro root\n"
22156 "\n"
22157 msgstr ""
22158
22159 #. type: =head2
22160 #: ../fish/guestfish-actions.pod:1761
22161 msgid "inspect-get-filesystems"
22162 msgstr ""
22163
22164 #. type: verbatim
22165 #: ../fish/guestfish-actions.pod:1763
22166 #, no-wrap
22167 msgid ""
22168 " inspect-get-filesystems root\n"
22169 "\n"
22170 msgstr ""
22171
22172 #. type: textblock
22173 #: ../fish/guestfish-actions.pod:1776
22174 msgid ""
22175 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
22176 "L</inspect-get-mountpoints>."
22177 msgstr ""
22178
22179 #. type: =head2
22180 #: ../fish/guestfish-actions.pod:1779
22181 msgid "inspect-get-format"
22182 msgstr ""
22183
22184 #. type: verbatim
22185 #: ../fish/guestfish-actions.pod:1781
22186 #, no-wrap
22187 msgid ""
22188 " inspect-get-format root\n"
22189 "\n"
22190 msgstr ""
22191
22192 #. type: =head2
22193 #: ../fish/guestfish-actions.pod:1813
22194 msgid "inspect-get-hostname"
22195 msgstr ""
22196
22197 #. type: verbatim
22198 #: ../fish/guestfish-actions.pod:1815
22199 #, no-wrap
22200 msgid ""
22201 " inspect-get-hostname root\n"
22202 "\n"
22203 msgstr ""
22204
22205 #. type: =head2
22206 #: ../fish/guestfish-actions.pod:1828
22207 msgid "inspect-get-major-version"
22208 msgstr ""
22209
22210 #. type: verbatim
22211 #: ../fish/guestfish-actions.pod:1830
22212 #, no-wrap
22213 msgid ""
22214 " inspect-get-major-version root\n"
22215 "\n"
22216 msgstr ""
22217
22218 #. type: =head2
22219 #: ../fish/guestfish-actions.pod:1849
22220 msgid "inspect-get-minor-version"
22221 msgstr ""
22222
22223 #. type: verbatim
22224 #: ../fish/guestfish-actions.pod:1851
22225 #, no-wrap
22226 msgid ""
22227 " inspect-get-minor-version root\n"
22228 "\n"
22229 msgstr ""
22230
22231 #. type: textblock
22232 #: ../fish/guestfish-actions.pod:1861
22233 msgid ""
22234 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
22235 "L</inspect-get-major-version>."
22236 msgstr ""
22237
22238 #. type: =head2
22239 #: ../fish/guestfish-actions.pod:1864
22240 msgid "inspect-get-mountpoints"
22241 msgstr ""
22242
22243 #. type: verbatim
22244 #: ../fish/guestfish-actions.pod:1866
22245 #, no-wrap
22246 msgid ""
22247 " inspect-get-mountpoints root\n"
22248 "\n"
22249 msgstr ""
22250
22251 #. type: textblock
22252 #: ../fish/guestfish-actions.pod:1888
22253 msgid ""
22254 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
22255 "L</inspect-get-filesystems>."
22256 msgstr ""
22257
22258 #. type: =head2
22259 #: ../fish/guestfish-actions.pod:1891
22260 msgid "inspect-get-package-format"
22261 msgstr ""
22262
22263 #. type: verbatim
22264 #: ../fish/guestfish-actions.pod:1893
22265 #, no-wrap
22266 msgid ""
22267 " inspect-get-package-format root\n"
22268 "\n"
22269 msgstr ""
22270
22271 #. type: textblock
22272 #: ../fish/guestfish-actions.pod:1898
22273 msgid ""
22274 "This function and L</inspect-get-package-management> return the package "
22275 "format and package management tool used by the inspected operating system.  "
22276 "For example for Fedora these functions would return C<rpm> (package format) "
22277 "and C<yum> (package management)."
22278 msgstr ""
22279
22280 #. type: =head2
22281 #: ../fish/guestfish-actions.pod:1913
22282 msgid "inspect-get-package-management"
22283 msgstr ""
22284
22285 #. type: verbatim
22286 #: ../fish/guestfish-actions.pod:1915
22287 #, no-wrap
22288 msgid ""
22289 " inspect-get-package-management root\n"
22290 "\n"
22291 msgstr ""
22292
22293 #. type: textblock
22294 #: ../fish/guestfish-actions.pod:1920
22295 msgid ""
22296 "L</inspect-get-package-format> and this function return the package format "
22297 "and package management tool used by the inspected operating system.  For "
22298 "example for Fedora these functions would return C<rpm> (package format) and "
22299 "C<yum> (package management)."
22300 msgstr ""
22301
22302 #. type: =head2
22303 #: ../fish/guestfish-actions.pod:1937
22304 msgid "inspect-get-product-name"
22305 msgstr ""
22306
22307 #. type: verbatim
22308 #: ../fish/guestfish-actions.pod:1939
22309 #, no-wrap
22310 msgid ""
22311 " inspect-get-product-name root\n"
22312 "\n"
22313 msgstr ""
22314
22315 #. type: =head2
22316 #: ../fish/guestfish-actions.pod:1954
22317 msgid "inspect-get-roots"
22318 msgstr ""
22319
22320 #. type: verbatim
22321 #: ../fish/guestfish-actions.pod:1956
22322 #, no-wrap
22323 msgid ""
22324 " inspect-get-roots\n"
22325 "\n"
22326 msgstr ""
22327
22328 #. type: textblock
22329 #: ../fish/guestfish-actions.pod:1958
22330 msgid ""
22331 "This function is a convenient way to get the list of root devices, as "
22332 "returned from a previous call to L</inspect-os>, but without redoing the "
22333 "whole inspection process."
22334 msgstr ""
22335
22336 #. type: textblock
22337 #: ../fish/guestfish-actions.pod:1962
22338 msgid ""
22339 "This returns an empty list if either no root devices were found or the "
22340 "caller has not called L</inspect-os>."
22341 msgstr ""
22342
22343 #. type: =head2
22344 #: ../fish/guestfish-actions.pod:1967
22345 msgid "inspect-get-type"
22346 msgstr ""
22347
22348 #. type: verbatim
22349 #: ../fish/guestfish-actions.pod:1969
22350 #, no-wrap
22351 msgid ""
22352 " inspect-get-type root\n"
22353 "\n"
22354 msgstr ""
22355
22356 #. type: =head2
22357 #: ../fish/guestfish-actions.pod:2002
22358 msgid "inspect-get-windows-systemroot"
22359 msgstr ""
22360
22361 #. type: verbatim
22362 #: ../fish/guestfish-actions.pod:2004
22363 #, no-wrap
22364 msgid ""
22365 " inspect-get-windows-systemroot root\n"
22366 "\n"
22367 msgstr ""
22368
22369 #. type: =head2
22370 #: ../fish/guestfish-actions.pod:2018
22371 msgid "inspect-is-live"
22372 msgstr ""
22373
22374 #. type: verbatim
22375 #: ../fish/guestfish-actions.pod:2020
22376 #, no-wrap
22377 msgid ""
22378 " inspect-is-live root\n"
22379 "\n"
22380 msgstr ""
22381
22382 #. type: textblock
22383 #: ../fish/guestfish-actions.pod:2025
22384 msgid ""
22385 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
22386 "then this returns true if a live image was detected on the disk."
22387 msgstr ""
22388
22389 #. type: =head2
22390 #: ../fish/guestfish-actions.pod:2031
22391 msgid "inspect-is-multipart"
22392 msgstr ""
22393
22394 #. type: verbatim
22395 #: ../fish/guestfish-actions.pod:2033
22396 #, no-wrap
22397 msgid ""
22398 " inspect-is-multipart root\n"
22399 "\n"
22400 msgstr ""
22401
22402 #. type: textblock
22403 #: ../fish/guestfish-actions.pod:2038
22404 msgid ""
22405 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
22406 "then this returns true if the disk is part of a set."
22407 msgstr ""
22408
22409 #. type: =head2
22410 #: ../fish/guestfish-actions.pod:2044
22411 msgid "inspect-is-netinst"
22412 msgstr ""
22413
22414 #. type: verbatim
22415 #: ../fish/guestfish-actions.pod:2046
22416 #, no-wrap
22417 msgid ""
22418 " inspect-is-netinst root\n"
22419 "\n"
22420 msgstr ""
22421
22422 #. type: textblock
22423 #: ../fish/guestfish-actions.pod:2051
22424 msgid ""
22425 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
22426 "then this returns true if the disk is a network installer, ie. not a "
22427 "self-contained install CD but one which is likely to require network access "
22428 "to complete the install."
22429 msgstr ""
22430
22431 #. type: =head2
22432 #: ../fish/guestfish-actions.pod:2059
22433 msgid "inspect-list-applications"
22434 msgstr ""
22435
22436 #. type: verbatim
22437 #: ../fish/guestfish-actions.pod:2061
22438 #, no-wrap
22439 msgid ""
22440 " inspect-list-applications root\n"
22441 "\n"
22442 msgstr ""
22443
22444 #. type: textblock
22445 #: ../fish/guestfish-actions.pod:2068
22446 msgid ""
22447 "I<Note:> This call works differently from other parts of the inspection "
22448 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
22449 "then mount up the disks, before calling this.  Listing applications is a "
22450 "significantly more difficult operation which requires access to the full "
22451 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
22452 "are just returning data cached in the libguestfs handle, this call actually "
22453 "reads parts of the mounted filesystems during the call."
22454 msgstr ""
22455
22456 #. type: =head2
22457 #: ../fish/guestfish-actions.pod:2158
22458 msgid "inspect-os"
22459 msgstr ""
22460
22461 #. type: verbatim
22462 #: ../fish/guestfish-actions.pod:2160
22463 #, no-wrap
22464 msgid ""
22465 " inspect-os\n"
22466 "\n"
22467 msgstr ""
22468
22469 #. type: textblock
22470 #: ../fish/guestfish-actions.pod:2175
22471 msgid ""
22472 "You can pass the root string(s) returned to other L</inspect-get-*> "
22473 "functions in order to query further information about each operating system, "
22474 "such as the name and version."
22475 msgstr ""
22476
22477 #. type: textblock
22478 #: ../fish/guestfish-actions.pod:2180
22479 msgid ""
22480 "This function uses other libguestfs features such as L</mount-ro> and "
22481 "L</umount-all> in order to mount and unmount filesystems and look at the "
22482 "contents.  This should be called with no disks currently mounted.  The "
22483 "function may also use Augeas, so any existing Augeas handle will be closed."
22484 msgstr ""
22485
22486 #. type: textblock
22487 #: ../fish/guestfish-actions.pod:2192 ../fish/guestfish-actions.pod:2368 ../fish/guestfish-actions.pod:2414
22488 msgid "See also L</list-filesystems>."
22489 msgstr ""
22490
22491 #. type: =head2
22492 #: ../fish/guestfish-actions.pod:2194
22493 msgid "is-blockdev"
22494 msgstr ""
22495
22496 #. type: verbatim
22497 #: ../fish/guestfish-actions.pod:2196
22498 #, no-wrap
22499 msgid ""
22500 " is-blockdev path\n"
22501 "\n"
22502 msgstr ""
22503
22504 #. type: textblock
22505 #: ../fish/guestfish-actions.pod:2201 ../fish/guestfish-actions.pod:2219 ../fish/guestfish-actions.pod:2238 ../fish/guestfish-actions.pod:2247 ../fish/guestfish-actions.pod:2257 ../fish/guestfish-actions.pod:2291 ../fish/guestfish-actions.pod:2300
22506 msgid "See also L</stat>."
22507 msgstr ""
22508
22509 #. type: =head2
22510 #: ../fish/guestfish-actions.pod:2203
22511 msgid "is-busy"
22512 msgstr ""
22513
22514 #. type: verbatim
22515 #: ../fish/guestfish-actions.pod:2205
22516 #, no-wrap
22517 msgid ""
22518 " is-busy\n"
22519 "\n"
22520 msgstr ""
22521
22522 #. type: =head2
22523 #: ../fish/guestfish-actions.pod:2212
22524 msgid "is-chardev"
22525 msgstr ""
22526
22527 #. type: verbatim
22528 #: ../fish/guestfish-actions.pod:2214
22529 #, no-wrap
22530 msgid ""
22531 " is-chardev path\n"
22532 "\n"
22533 msgstr ""
22534
22535 #. type: =head2
22536 #: ../fish/guestfish-actions.pod:2221
22537 msgid "is-config"
22538 msgstr ""
22539
22540 #. type: verbatim
22541 #: ../fish/guestfish-actions.pod:2223
22542 #, no-wrap
22543 msgid ""
22544 " is-config\n"
22545 "\n"
22546 msgstr ""
22547
22548 #. type: =head2
22549 #: ../fish/guestfish-actions.pod:2230
22550 msgid "is-dir"
22551 msgstr ""
22552
22553 #. type: verbatim
22554 #: ../fish/guestfish-actions.pod:2232
22555 #, no-wrap
22556 msgid ""
22557 " is-dir path\n"
22558 "\n"
22559 msgstr ""
22560
22561 #. type: =head2
22562 #: ../fish/guestfish-actions.pod:2240
22563 msgid "is-fifo"
22564 msgstr ""
22565
22566 #. type: verbatim
22567 #: ../fish/guestfish-actions.pod:2242
22568 #, no-wrap
22569 msgid ""
22570 " is-fifo path\n"
22571 "\n"
22572 msgstr ""
22573
22574 #. type: =head2
22575 #: ../fish/guestfish-actions.pod:2249
22576 msgid "is-file"
22577 msgstr ""
22578
22579 #. type: verbatim
22580 #: ../fish/guestfish-actions.pod:2251
22581 #, no-wrap
22582 msgid ""
22583 " is-file path\n"
22584 "\n"
22585 msgstr ""
22586
22587 #. type: =head2
22588 #: ../fish/guestfish-actions.pod:2259
22589 msgid "is-launching"
22590 msgstr ""
22591
22592 #. type: verbatim
22593 #: ../fish/guestfish-actions.pod:2261
22594 #, no-wrap
22595 msgid ""
22596 " is-launching\n"
22597 "\n"
22598 msgstr ""
22599
22600 #. type: =head2
22601 #: ../fish/guestfish-actions.pod:2268
22602 msgid "is-lv"
22603 msgstr ""
22604
22605 #. type: verbatim
22606 #: ../fish/guestfish-actions.pod:2270
22607 #, no-wrap
22608 msgid ""
22609 " is-lv device\n"
22610 "\n"
22611 msgstr ""
22612
22613 #. type: =head2
22614 #: ../fish/guestfish-actions.pod:2275
22615 msgid "is-ready"
22616 msgstr ""
22617
22618 #. type: verbatim
22619 #: ../fish/guestfish-actions.pod:2277
22620 #, no-wrap
22621 msgid ""
22622 " is-ready\n"
22623 "\n"
22624 msgstr ""
22625
22626 #. type: =head2
22627 #: ../fish/guestfish-actions.pod:2284
22628 msgid "is-socket"
22629 msgstr ""
22630
22631 #. type: verbatim
22632 #: ../fish/guestfish-actions.pod:2286
22633 #, no-wrap
22634 msgid ""
22635 " is-socket path\n"
22636 "\n"
22637 msgstr ""
22638
22639 #. type: =head2
22640 #: ../fish/guestfish-actions.pod:2293
22641 msgid "is-symlink"
22642 msgstr ""
22643
22644 #. type: verbatim
22645 #: ../fish/guestfish-actions.pod:2295
22646 #, no-wrap
22647 msgid ""
22648 " is-symlink path\n"
22649 "\n"
22650 msgstr ""
22651
22652 #. type: =head2
22653 #: ../fish/guestfish-actions.pod:2302
22654 msgid "kill-subprocess"
22655 msgstr ""
22656
22657 #. type: verbatim
22658 #: ../fish/guestfish-actions.pod:2304
22659 #, no-wrap
22660 msgid ""
22661 " kill-subprocess\n"
22662 "\n"
22663 msgstr ""
22664
22665 #. type: =head2
22666 #: ../fish/guestfish-actions.pod:2308
22667 msgid "launch"
22668 msgstr ""
22669
22670 #. type: =head2
22671 #: ../fish/guestfish-actions.pod:2310
22672 msgid "run"
22673 msgstr ""
22674
22675 #. type: verbatim
22676 #: ../fish/guestfish-actions.pod:2312
22677 #, no-wrap
22678 msgid ""
22679 " launch\n"
22680 "\n"
22681 msgstr ""
22682
22683 #. type: =head2
22684 #: ../fish/guestfish-actions.pod:2320
22685 msgid "lchown"
22686 msgstr ""
22687
22688 #. type: verbatim
22689 #: ../fish/guestfish-actions.pod:2322
22690 #, no-wrap
22691 msgid ""
22692 " lchown owner group path\n"
22693 "\n"
22694 msgstr ""
22695
22696 #. type: textblock
22697 #: ../fish/guestfish-actions.pod:2324
22698 msgid ""
22699 "Change the file owner to C<owner> and group to C<group>.  This is like "
22700 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
22701 "the target."
22702 msgstr ""
22703
22704 #. type: =head2
22705 #: ../fish/guestfish-actions.pod:2332
22706 msgid "lgetxattr"
22707 msgstr ""
22708
22709 #. type: verbatim
22710 #: ../fish/guestfish-actions.pod:2334
22711 #, no-wrap
22712 msgid ""
22713 " lgetxattr path name\n"
22714 "\n"
22715 msgstr ""
22716
22717 #. type: textblock
22718 #: ../fish/guestfish-actions.pod:2350
22719 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
22720 msgstr ""
22721
22722 #. type: =head2
22723 #: ../fish/guestfish-actions.pod:2352
22724 msgid "lgetxattrs"
22725 msgstr ""
22726
22727 #. type: verbatim
22728 #: ../fish/guestfish-actions.pod:2354
22729 #, no-wrap
22730 msgid ""
22731 " lgetxattrs path\n"
22732 "\n"
22733 msgstr ""
22734
22735 #. type: textblock
22736 #: ../fish/guestfish-actions.pod:2356
22737 msgid ""
22738 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
22739 "it returns the extended attributes of the link itself."
22740 msgstr ""
22741
22742 #. type: =head2
22743 #: ../fish/guestfish-actions.pod:2360
22744 msgid "list-devices"
22745 msgstr ""
22746
22747 #. type: verbatim
22748 #: ../fish/guestfish-actions.pod:2362
22749 #, no-wrap
22750 msgid ""
22751 " list-devices\n"
22752 "\n"
22753 msgstr ""
22754
22755 #. type: =head2
22756 #: ../fish/guestfish-actions.pod:2370
22757 msgid "list-filesystems"
22758 msgstr ""
22759
22760 #. type: verbatim
22761 #: ../fish/guestfish-actions.pod:2372
22762 #, no-wrap
22763 msgid ""
22764 " list-filesystems\n"
22765 "\n"
22766 msgstr ""
22767
22768 #. type: textblock
22769 #: ../fish/guestfish-actions.pod:2391
22770 msgid ""
22771 "This command runs other libguestfs commands, which might include L</mount> "
22772 "and L</umount>, and therefore you should use this soon after launch and only "
22773 "when nothing is mounted."
22774 msgstr ""
22775
22776 #. type: textblock
22777 #: ../fish/guestfish-actions.pod:2395
22778 msgid ""
22779 "Not all of the filesystems returned will be mountable.  In particular, swap "
22780 "partitions are returned in the list.  Also this command does not check that "
22781 "each filesystem found is valid and mountable, and some filesystems might be "
22782 "mountable but require special options.  Filesystems may not all belong to a "
22783 "single logical operating system (use L</inspect-os> to look for OSes)."
22784 msgstr ""
22785
22786 #. type: =head2
22787 #: ../fish/guestfish-actions.pod:2403
22788 msgid "list-partitions"
22789 msgstr ""
22790
22791 #. type: verbatim
22792 #: ../fish/guestfish-actions.pod:2405
22793 #, no-wrap
22794 msgid ""
22795 " list-partitions\n"
22796 "\n"
22797 msgstr ""
22798
22799 #. type: textblock
22800 #: ../fish/guestfish-actions.pod:2411
22801 msgid ""
22802 "This does not return logical volumes.  For that you will need to call "
22803 "L</lvs>."
22804 msgstr ""
22805
22806 #. type: =head2
22807 #: ../fish/guestfish-actions.pod:2416
22808 msgid "ll"
22809 msgstr ""
22810
22811 #. type: verbatim
22812 #: ../fish/guestfish-actions.pod:2418
22813 #, no-wrap
22814 msgid ""
22815 " ll directory\n"
22816 "\n"
22817 msgstr ""
22818
22819 #. type: =head2
22820 #: ../fish/guestfish-actions.pod:2426
22821 msgid "ln"
22822 msgstr ""
22823
22824 #. type: verbatim
22825 #: ../fish/guestfish-actions.pod:2428
22826 #, no-wrap
22827 msgid ""
22828 " ln target linkname\n"
22829 "\n"
22830 msgstr ""
22831
22832 #. type: =head2
22833 #: ../fish/guestfish-actions.pod:2432
22834 msgid "ln-f"
22835 msgstr ""
22836
22837 #. type: verbatim
22838 #: ../fish/guestfish-actions.pod:2434
22839 #, no-wrap
22840 msgid ""
22841 " ln-f target linkname\n"
22842 "\n"
22843 msgstr ""
22844
22845 #. type: =head2
22846 #: ../fish/guestfish-actions.pod:2439
22847 msgid "ln-s"
22848 msgstr ""
22849
22850 #. type: verbatim
22851 #: ../fish/guestfish-actions.pod:2441
22852 #, no-wrap
22853 msgid ""
22854 " ln-s target linkname\n"
22855 "\n"
22856 msgstr ""
22857
22858 #. type: =head2
22859 #: ../fish/guestfish-actions.pod:2445
22860 msgid "ln-sf"
22861 msgstr ""
22862
22863 #. type: verbatim
22864 #: ../fish/guestfish-actions.pod:2447
22865 #, no-wrap
22866 msgid ""
22867 " ln-sf target linkname\n"
22868 "\n"
22869 msgstr ""
22870
22871 #. type: =head2
22872 #: ../fish/guestfish-actions.pod:2452
22873 msgid "lremovexattr"
22874 msgstr ""
22875
22876 #. type: verbatim
22877 #: ../fish/guestfish-actions.pod:2454
22878 #, no-wrap
22879 msgid ""
22880 " lremovexattr xattr path\n"
22881 "\n"
22882 msgstr ""
22883
22884 #. type: textblock
22885 #: ../fish/guestfish-actions.pod:2456
22886 msgid ""
22887 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
22888 "it removes an extended attribute of the link itself."
22889 msgstr ""
22890
22891 #. type: =head2
22892 #: ../fish/guestfish-actions.pod:2460
22893 msgid "ls"
22894 msgstr ""
22895
22896 #. type: verbatim
22897 #: ../fish/guestfish-actions.pod:2462
22898 #, no-wrap
22899 msgid ""
22900 " ls directory\n"
22901 "\n"
22902 msgstr ""
22903
22904 #. type: textblock
22905 #: ../fish/guestfish-actions.pod:2468
22906 msgid ""
22907 "This command is mostly useful for interactive sessions.  Programs should "
22908 "probably use L</readdir> instead."
22909 msgstr ""
22910
22911 #. type: =head2
22912 #: ../fish/guestfish-actions.pod:2471
22913 msgid "lsetxattr"
22914 msgstr ""
22915
22916 #. type: verbatim
22917 #: ../fish/guestfish-actions.pod:2473
22918 #, no-wrap
22919 msgid ""
22920 " lsetxattr xattr val vallen path\n"
22921 "\n"
22922 msgstr ""
22923
22924 #. type: textblock
22925 #: ../fish/guestfish-actions.pod:2475
22926 msgid ""
22927 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
22928 "sets an extended attribute of the link itself."
22929 msgstr ""
22930
22931 #. type: =head2
22932 #: ../fish/guestfish-actions.pod:2479
22933 msgid "lstat"
22934 msgstr ""
22935
22936 #. type: verbatim
22937 #: ../fish/guestfish-actions.pod:2481
22938 #, no-wrap
22939 msgid ""
22940 " lstat path\n"
22941 "\n"
22942 msgstr ""
22943
22944 #. type: textblock
22945 #: ../fish/guestfish-actions.pod:2485
22946 msgid ""
22947 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
22948 "the link is stat-ed, not the file it refers to."
22949 msgstr ""
22950
22951 #. type: =head2
22952 #: ../fish/guestfish-actions.pod:2491
22953 msgid "lstatlist"
22954 msgstr ""
22955
22956 #. type: verbatim
22957 #: ../fish/guestfish-actions.pod:2493
22958 #, no-wrap
22959 msgid ""
22960 " lstatlist path 'names ...'\n"
22961 "\n"
22962 msgstr ""
22963
22964 #. type: textblock
22965 #: ../fish/guestfish-actions.pod:2495
22966 msgid ""
22967 "This call allows you to perform the L</lstat> operation on multiple files, "
22968 "where all files are in the directory C<path>.  C<names> is the list of files "
22969 "from this directory."
22970 msgstr ""
22971
22972 #. type: textblock
22973 #: ../fish/guestfish-actions.pod:2504
22974 msgid ""
22975 "This call is intended for programs that want to efficiently list a directory "
22976 "contents without making many round-trips.  See also L</lxattrlist> for a "
22977 "similarly efficient call for getting extended attributes.  Very long "
22978 "directory listings might cause the protocol message size to be exceeded, "
22979 "causing this call to fail.  The caller must split up such requests into "
22980 "smaller groups of names."
22981 msgstr ""
22982
22983 #. type: =head2
22984 #: ../fish/guestfish-actions.pod:2512
22985 msgid "luks-add-key"
22986 msgstr ""
22987
22988 #. type: verbatim
22989 #: ../fish/guestfish-actions.pod:2514
22990 #, no-wrap
22991 msgid ""
22992 " luks-add-key device keyslot\n"
22993 "\n"
22994 msgstr ""
22995
22996 #. type: textblock
22997 #: ../fish/guestfish-actions.pod:2521
22998 msgid ""
22999 "Note that if C<keyslot> already contains a key, then this command will "
23000 "fail.  You have to use L</luks-kill-slot> first to remove that key."
23001 msgstr ""
23002
23003 #. type: textblock
23004 #: ../fish/guestfish-actions.pod:2525 ../fish/guestfish-actions.pod:2547 ../fish/guestfish-actions.pod:2560 ../fish/guestfish-actions.pod:2574 ../fish/guestfish-actions.pod:2597 ../fish/guestfish-actions.pod:2607
23005 msgid ""
23006 "This command has one or more key or passphrase parameters.  Guestfish will "
23007 "prompt for these separately."
23008 msgstr ""
23009
23010 #. type: =head2
23011 #: ../fish/guestfish-actions.pod:2528
23012 msgid "luks-close"
23013 msgstr ""
23014
23015 #. type: verbatim
23016 #: ../fish/guestfish-actions.pod:2530
23017 #, no-wrap
23018 msgid ""
23019 " luks-close device\n"
23020 "\n"
23021 msgstr ""
23022
23023 #. type: textblock
23024 #: ../fish/guestfish-actions.pod:2532
23025 msgid ""
23026 "This closes a LUKS device that was created earlier by L</luks-open> or "
23027 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
23028 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
23029 "underlying block device."
23030 msgstr ""
23031
23032 #. type: =head2
23033 #: ../fish/guestfish-actions.pod:2538
23034 msgid "luks-format"
23035 msgstr ""
23036
23037 #. type: verbatim
23038 #: ../fish/guestfish-actions.pod:2540
23039 #, no-wrap
23040 msgid ""
23041 " luks-format device keyslot\n"
23042 "\n"
23043 msgstr ""
23044
23045 #. type: =head2
23046 #: ../fish/guestfish-actions.pod:2553
23047 msgid "luks-format-cipher"
23048 msgstr ""
23049
23050 #. type: verbatim
23051 #: ../fish/guestfish-actions.pod:2555
23052 #, no-wrap
23053 msgid ""
23054 " luks-format-cipher device keyslot cipher\n"
23055 "\n"
23056 msgstr ""
23057
23058 #. type: textblock
23059 #: ../fish/guestfish-actions.pod:2557
23060 msgid ""
23061 "This command is the same as L</luks-format> but it also allows you to set "
23062 "the C<cipher> used."
23063 msgstr ""
23064
23065 #. type: =head2
23066 #: ../fish/guestfish-actions.pod:2566
23067 msgid "luks-kill-slot"
23068 msgstr ""
23069
23070 #. type: verbatim
23071 #: ../fish/guestfish-actions.pod:2568
23072 #, no-wrap
23073 msgid ""
23074 " luks-kill-slot device keyslot\n"
23075 "\n"
23076 msgstr ""
23077
23078 #. type: =head2
23079 #: ../fish/guestfish-actions.pod:2577
23080 msgid "luks-open"
23081 msgstr ""
23082
23083 #. type: verbatim
23084 #: ../fish/guestfish-actions.pod:2579
23085 #, no-wrap
23086 msgid ""
23087 " luks-open device mapname\n"
23088 "\n"
23089 msgstr ""
23090
23091 #. type: textblock
23092 #: ../fish/guestfish-actions.pod:2593
23093 msgid ""
23094 "If this block device contains LVM volume groups, then calling L</vgscan> "
23095 "followed by L</vg-activate-all> will make them visible."
23096 msgstr ""
23097
23098 #. type: =head2
23099 #: ../fish/guestfish-actions.pod:2600
23100 msgid "luks-open-ro"
23101 msgstr ""
23102
23103 #. type: verbatim
23104 #: ../fish/guestfish-actions.pod:2602
23105 #, no-wrap
23106 msgid ""
23107 " luks-open-ro device mapname\n"
23108 "\n"
23109 msgstr ""
23110
23111 #. type: textblock
23112 #: ../fish/guestfish-actions.pod:2604
23113 msgid ""
23114 "This is the same as L</luks-open> except that a read-only mapping is "
23115 "created."
23116 msgstr ""
23117
23118 #. type: =head2
23119 #: ../fish/guestfish-actions.pod:2610
23120 msgid "lvcreate"
23121 msgstr ""
23122
23123 #. type: verbatim
23124 #: ../fish/guestfish-actions.pod:2612
23125 #, no-wrap
23126 msgid ""
23127 " lvcreate logvol volgroup mbytes\n"
23128 "\n"
23129 msgstr ""
23130
23131 #. type: =head2
23132 #: ../fish/guestfish-actions.pod:2617
23133 msgid "lvm-canonical-lv-name"
23134 msgstr ""
23135
23136 #. type: verbatim
23137 #: ../fish/guestfish-actions.pod:2619
23138 #, no-wrap
23139 msgid ""
23140 " lvm-canonical-lv-name lvname\n"
23141 "\n"
23142 msgstr ""
23143
23144 #. type: textblock
23145 #: ../fish/guestfish-actions.pod:2628
23146 msgid "See also L</is-lv>."
23147 msgstr ""
23148
23149 #. type: =head2
23150 #: ../fish/guestfish-actions.pod:2630
23151 msgid "lvm-clear-filter"
23152 msgstr ""
23153
23154 #. type: verbatim
23155 #: ../fish/guestfish-actions.pod:2632
23156 #, no-wrap
23157 msgid ""
23158 " lvm-clear-filter\n"
23159 "\n"
23160 msgstr ""
23161
23162 #. type: textblock
23163 #: ../fish/guestfish-actions.pod:2634
23164 msgid ""
23165 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
23166 "block device."
23167 msgstr ""
23168
23169 #. type: =head2
23170 #: ../fish/guestfish-actions.pod:2640
23171 msgid "lvm-remove-all"
23172 msgstr ""
23173
23174 #. type: verbatim
23175 #: ../fish/guestfish-actions.pod:2642
23176 #, no-wrap
23177 msgid ""
23178 " lvm-remove-all\n"
23179 "\n"
23180 msgstr ""
23181
23182 #. type: =head2
23183 #: ../fish/guestfish-actions.pod:2650
23184 msgid "lvm-set-filter"
23185 msgstr ""
23186
23187 #. type: verbatim
23188 #: ../fish/guestfish-actions.pod:2652
23189 #, no-wrap
23190 msgid ""
23191 " lvm-set-filter 'devices ...'\n"
23192 "\n"
23193 msgstr ""
23194
23195 #. type: =head2
23196 #: ../fish/guestfish-actions.pod:2677
23197 msgid "lvremove"
23198 msgstr ""
23199
23200 #. type: verbatim
23201 #: ../fish/guestfish-actions.pod:2679
23202 #, no-wrap
23203 msgid ""
23204 " lvremove device\n"
23205 "\n"
23206 msgstr ""
23207
23208 #. type: =head2
23209 #: ../fish/guestfish-actions.pod:2687
23210 msgid "lvrename"
23211 msgstr ""
23212
23213 #. type: verbatim
23214 #: ../fish/guestfish-actions.pod:2689
23215 #, no-wrap
23216 msgid ""
23217 " lvrename logvol newlogvol\n"
23218 "\n"
23219 msgstr ""
23220
23221 #. type: =head2
23222 #: ../fish/guestfish-actions.pod:2693
23223 msgid "lvresize"
23224 msgstr ""
23225
23226 #. type: verbatim
23227 #: ../fish/guestfish-actions.pod:2695
23228 #, no-wrap
23229 msgid ""
23230 " lvresize device mbytes\n"
23231 "\n"
23232 msgstr ""
23233
23234 #. type: =head2
23235 #: ../fish/guestfish-actions.pod:2701
23236 msgid "lvresize-free"
23237 msgstr ""
23238
23239 #. type: verbatim
23240 #: ../fish/guestfish-actions.pod:2703
23241 #, no-wrap
23242 msgid ""
23243 " lvresize-free lv percent\n"
23244 "\n"
23245 msgstr ""
23246
23247 #. type: =head2
23248 #: ../fish/guestfish-actions.pod:2711
23249 msgid "lvs"
23250 msgstr ""
23251
23252 #. type: verbatim
23253 #: ../fish/guestfish-actions.pod:2713
23254 #, no-wrap
23255 msgid ""
23256 " lvs\n"
23257 "\n"
23258 msgstr ""
23259
23260 #. type: textblock
23261 #: ../fish/guestfish-actions.pod:2721
23262 msgid "See also L</lvs-full>, L</list-filesystems>."
23263 msgstr ""
23264
23265 #. type: =head2
23266 #: ../fish/guestfish-actions.pod:2723
23267 msgid "lvs-full"
23268 msgstr ""
23269
23270 #. type: verbatim
23271 #: ../fish/guestfish-actions.pod:2725
23272 #, no-wrap
23273 msgid ""
23274 " lvs-full\n"
23275 "\n"
23276 msgstr ""
23277
23278 #. type: =head2
23279 #: ../fish/guestfish-actions.pod:2730
23280 msgid "lvuuid"
23281 msgstr ""
23282
23283 #. type: verbatim
23284 #: ../fish/guestfish-actions.pod:2732
23285 #, no-wrap
23286 msgid ""
23287 " lvuuid device\n"
23288 "\n"
23289 msgstr ""
23290
23291 #. type: =head2
23292 #: ../fish/guestfish-actions.pod:2736
23293 msgid "lxattrlist"
23294 msgstr ""
23295
23296 #. type: verbatim
23297 #: ../fish/guestfish-actions.pod:2738
23298 #, no-wrap
23299 msgid ""
23300 " lxattrlist path 'names ...'\n"
23301 "\n"
23302 msgstr ""
23303
23304 #. type: textblock
23305 #: ../fish/guestfish-actions.pod:2754
23306 msgid ""
23307 "This call is intended for programs that want to efficiently list a directory "
23308 "contents without making many round-trips.  See also L</lstatlist> for a "
23309 "similarly efficient call for getting standard stats.  Very long directory "
23310 "listings might cause the protocol message size to be exceeded, causing this "
23311 "call to fail.  The caller must split up such requests into smaller groups of "
23312 "names."
23313 msgstr ""
23314
23315 #. type: =head2
23316 #: ../fish/guestfish-actions.pod:2762
23317 msgid "mkdir"
23318 msgstr ""
23319
23320 #. type: verbatim
23321 #: ../fish/guestfish-actions.pod:2764
23322 #, no-wrap
23323 msgid ""
23324 " mkdir path\n"
23325 "\n"
23326 msgstr ""
23327
23328 #. type: =head2
23329 #: ../fish/guestfish-actions.pod:2768
23330 msgid "mkdir-mode"
23331 msgstr ""
23332
23333 #. type: verbatim
23334 #: ../fish/guestfish-actions.pod:2770
23335 #, no-wrap
23336 msgid ""
23337 " mkdir-mode path mode\n"
23338 "\n"
23339 msgstr ""
23340
23341 #. type: textblock
23342 #: ../fish/guestfish-actions.pod:2779
23343 msgid "See also L</mkdir>, L</umask>"
23344 msgstr ""
23345
23346 #. type: =head2
23347 #: ../fish/guestfish-actions.pod:2781
23348 msgid "mkdir-p"
23349 msgstr ""
23350
23351 #. type: verbatim
23352 #: ../fish/guestfish-actions.pod:2783
23353 #, no-wrap
23354 msgid ""
23355 " mkdir-p path\n"
23356 "\n"
23357 msgstr ""
23358
23359 #. type: =head2
23360 #: ../fish/guestfish-actions.pod:2788
23361 msgid "mkdtemp"
23362 msgstr ""
23363
23364 #. type: verbatim
23365 #: ../fish/guestfish-actions.pod:2790
23366 #, no-wrap
23367 msgid ""
23368 " mkdtemp template\n"
23369 "\n"
23370 msgstr ""
23371
23372 #. type: =head2
23373 #: ../fish/guestfish-actions.pod:2811
23374 msgid "mke2fs-J"
23375 msgstr ""
23376
23377 #. type: verbatim
23378 #: ../fish/guestfish-actions.pod:2813
23379 #, no-wrap
23380 msgid ""
23381 " mke2fs-J fstype blocksize device journal\n"
23382 "\n"
23383 msgstr ""
23384
23385 #. type: textblock
23386 #: ../fish/guestfish-actions.pod:2821
23387 msgid "See also L</mke2journal>."
23388 msgstr ""
23389
23390 #. type: =head2
23391 #: ../fish/guestfish-actions.pod:2823
23392 msgid "mke2fs-JL"
23393 msgstr ""
23394
23395 #. type: verbatim
23396 #: ../fish/guestfish-actions.pod:2825
23397 #, no-wrap
23398 msgid ""
23399 " mke2fs-JL fstype blocksize device label\n"
23400 "\n"
23401 msgstr ""
23402
23403 #. type: textblock
23404 #: ../fish/guestfish-actions.pod:2830
23405 msgid "See also L</mke2journal-L>."
23406 msgstr ""
23407
23408 #. type: =head2
23409 #: ../fish/guestfish-actions.pod:2832
23410 msgid "mke2fs-JU"
23411 msgstr ""
23412
23413 #. type: verbatim
23414 #: ../fish/guestfish-actions.pod:2834
23415 #, no-wrap
23416 msgid ""
23417 " mke2fs-JU fstype blocksize device uuid\n"
23418 "\n"
23419 msgstr ""
23420
23421 #. type: textblock
23422 #: ../fish/guestfish-actions.pod:2839
23423 msgid "See also L</mke2journal-U>."
23424 msgstr ""
23425
23426 #. type: =head2
23427 #: ../fish/guestfish-actions.pod:2841
23428 msgid "mke2journal"
23429 msgstr ""
23430
23431 #. type: verbatim
23432 #: ../fish/guestfish-actions.pod:2843
23433 #, no-wrap
23434 msgid ""
23435 " mke2journal blocksize device\n"
23436 "\n"
23437 msgstr ""
23438
23439 #. type: =head2
23440 #: ../fish/guestfish-actions.pod:2850
23441 msgid "mke2journal-L"
23442 msgstr ""
23443
23444 #. type: verbatim
23445 #: ../fish/guestfish-actions.pod:2852
23446 #, no-wrap
23447 msgid ""
23448 " mke2journal-L blocksize label device\n"
23449 "\n"
23450 msgstr ""
23451
23452 #. type: =head2
23453 #: ../fish/guestfish-actions.pod:2856
23454 msgid "mke2journal-U"
23455 msgstr ""
23456
23457 #. type: verbatim
23458 #: ../fish/guestfish-actions.pod:2858
23459 #, no-wrap
23460 msgid ""
23461 " mke2journal-U blocksize uuid device\n"
23462 "\n"
23463 msgstr ""
23464
23465 #. type: =head2
23466 #: ../fish/guestfish-actions.pod:2862
23467 msgid "mkfifo"
23468 msgstr ""
23469
23470 #. type: verbatim
23471 #: ../fish/guestfish-actions.pod:2864
23472 #, no-wrap
23473 msgid ""
23474 " mkfifo mode path\n"
23475 "\n"
23476 msgstr ""
23477
23478 #. type: textblock
23479 #: ../fish/guestfish-actions.pod:2866
23480 msgid ""
23481 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
23482 "is just a convenient wrapper around L</mknod>."
23483 msgstr ""
23484
23485 #. type: =head2
23486 #: ../fish/guestfish-actions.pod:2872
23487 msgid "mkfs"
23488 msgstr ""
23489
23490 #. type: verbatim
23491 #: ../fish/guestfish-actions.pod:2874
23492 #, no-wrap
23493 msgid ""
23494 " mkfs fstype device\n"
23495 "\n"
23496 msgstr ""
23497
23498 #. type: =head2
23499 #: ../fish/guestfish-actions.pod:2880
23500 msgid "mkfs-b"
23501 msgstr ""
23502
23503 #. type: verbatim
23504 #: ../fish/guestfish-actions.pod:2882
23505 #, no-wrap
23506 msgid ""
23507 " mkfs-b fstype blocksize device\n"
23508 "\n"
23509 msgstr ""
23510
23511 #. type: textblock
23512 #: ../fish/guestfish-actions.pod:2884
23513 msgid ""
23514 "This call is similar to L</mkfs>, but it allows you to control the block "
23515 "size of the resulting filesystem.  Supported block sizes depend on the "
23516 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
23517 msgstr ""
23518
23519 #. type: =head2
23520 #: ../fish/guestfish-actions.pod:2899
23521 msgid "mkfs-opts"
23522 msgstr ""
23523
23524 #. type: verbatim
23525 #: ../fish/guestfish-actions.pod:2901
23526 #, no-wrap
23527 msgid ""
23528 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
23529 "\n"
23530 msgstr ""
23531
23532 #. type: =head2
23533 #: ../fish/guestfish-actions.pod:2936
23534 msgid "mkmountpoint"
23535 msgstr ""
23536
23537 #. type: verbatim
23538 #: ../fish/guestfish-actions.pod:2938
23539 #, no-wrap
23540 msgid ""
23541 " mkmountpoint exemptpath\n"
23542 "\n"
23543 msgstr ""
23544
23545 #. type: textblock
23546 #: ../fish/guestfish-actions.pod:2940
23547 msgid ""
23548 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
23549 "to create extra mountpoints before mounting the first filesystem."
23550 msgstr ""
23551
23552 #. type: textblock
23553 #: ../fish/guestfish-actions.pod:2964
23554 msgid ""
23555 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
23556 "unexpected errors if you try to mix these calls.  It is safest to manually "
23557 "unmount filesystems and remove mountpoints after use."
23558 msgstr ""
23559
23560 #. type: textblock
23561 #: ../fish/guestfish-actions.pod:2968
23562 msgid ""
23563 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
23564 "for this to work for manual mountpoints, you must ensure that the innermost "
23565 "mountpoints have the longest pathnames, as in the example code above."
23566 msgstr ""
23567
23568 #. type: textblock
23569 #: ../fish/guestfish-actions.pod:2975
23570 msgid ""
23571 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
23572 "L</umount-all> to be called when the handle is closed which can also trigger "
23573 "these issues."
23574 msgstr ""
23575
23576 #. type: =head2
23577 #: ../fish/guestfish-actions.pod:2979
23578 msgid "mknod"
23579 msgstr ""
23580
23581 #. type: verbatim
23582 #: ../fish/guestfish-actions.pod:2981
23583 #, no-wrap
23584 msgid ""
23585 " mknod mode devmajor devminor path\n"
23586 "\n"
23587 msgstr ""
23588
23589 #. type: textblock
23590 #: ../fish/guestfish-actions.pod:2991
23591 msgid ""
23592 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
23593 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
23594 "regular file).  These constants are available in the standard Linux header "
23595 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
23596 "wrappers around this command which bitwise OR in the appropriate constant "
23597 "for you."
23598 msgstr ""
23599
23600 #. type: =head2
23601 #: ../fish/guestfish-actions.pod:3001
23602 msgid "mknod-b"
23603 msgstr ""
23604
23605 #. type: verbatim
23606 #: ../fish/guestfish-actions.pod:3003
23607 #, no-wrap
23608 msgid ""
23609 " mknod-b mode devmajor devminor path\n"
23610 "\n"
23611 msgstr ""
23612
23613 #. type: textblock
23614 #: ../fish/guestfish-actions.pod:3005
23615 msgid ""
23616 "This call creates a block device node called C<path> with mode C<mode> and "
23617 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23618 "wrapper around L</mknod>."
23619 msgstr ""
23620
23621 #. type: =head2
23622 #: ../fish/guestfish-actions.pod:3011
23623 msgid "mknod-c"
23624 msgstr ""
23625
23626 #. type: verbatim
23627 #: ../fish/guestfish-actions.pod:3013
23628 #, no-wrap
23629 msgid ""
23630 " mknod-c mode devmajor devminor path\n"
23631 "\n"
23632 msgstr ""
23633
23634 #. type: textblock
23635 #: ../fish/guestfish-actions.pod:3015
23636 msgid ""
23637 "This call creates a char device node called C<path> with mode C<mode> and "
23638 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
23639 "wrapper around L</mknod>."
23640 msgstr ""
23641
23642 #. type: =head2
23643 #: ../fish/guestfish-actions.pod:3021
23644 msgid "mkswap"
23645 msgstr ""
23646
23647 #. type: verbatim
23648 #: ../fish/guestfish-actions.pod:3023
23649 #, no-wrap
23650 msgid ""
23651 " mkswap device\n"
23652 "\n"
23653 msgstr ""
23654
23655 #. type: =head2
23656 #: ../fish/guestfish-actions.pod:3027
23657 msgid "mkswap-L"
23658 msgstr ""
23659
23660 #. type: verbatim
23661 #: ../fish/guestfish-actions.pod:3029
23662 #, no-wrap
23663 msgid ""
23664 " mkswap-L label device\n"
23665 "\n"
23666 msgstr ""
23667
23668 #. type: =head2
23669 #: ../fish/guestfish-actions.pod:3037
23670 msgid "mkswap-U"
23671 msgstr ""
23672
23673 #. type: verbatim
23674 #: ../fish/guestfish-actions.pod:3039
23675 #, no-wrap
23676 msgid ""
23677 " mkswap-U uuid device\n"
23678 "\n"
23679 msgstr ""
23680
23681 #. type: =head2
23682 #: ../fish/guestfish-actions.pod:3043
23683 msgid "mkswap-file"
23684 msgstr ""
23685
23686 #. type: verbatim
23687 #: ../fish/guestfish-actions.pod:3045
23688 #, no-wrap
23689 msgid ""
23690 " mkswap-file path\n"
23691 "\n"
23692 msgstr ""
23693
23694 #. type: textblock
23695 #: ../fish/guestfish-actions.pod:3049
23696 msgid ""
23697 "This command just writes a swap file signature to an existing file.  To "
23698 "create the file itself, use something like L</fallocate>."
23699 msgstr ""
23700
23701 #. type: =head2
23702 #: ../fish/guestfish-actions.pod:3052
23703 msgid "modprobe"
23704 msgstr ""
23705
23706 #. type: verbatim
23707 #: ../fish/guestfish-actions.pod:3054
23708 #, no-wrap
23709 msgid ""
23710 " modprobe modulename\n"
23711 "\n"
23712 msgstr ""
23713
23714 #. type: =head2
23715 #: ../fish/guestfish-actions.pod:3061
23716 msgid "mount"
23717 msgstr ""
23718
23719 #. type: verbatim
23720 #: ../fish/guestfish-actions.pod:3063
23721 #, no-wrap
23722 msgid ""
23723 " mount device mountpoint\n"
23724 "\n"
23725 msgstr ""
23726
23727 #. type: textblock
23728 #: ../fish/guestfish-actions.pod:3079
23729 msgid ""
23730 "B<Important note:> When you use this call, the filesystem options C<sync> "
23731 "and C<noatime> are set implicitly.  This was originally done because we "
23732 "thought it would improve reliability, but it turns out that I<-o sync> has a "
23733 "very large negative performance impact and negligible effect on "
23734 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
23735 "code that needs performance, and instead use L</mount-options> (use an empty "
23736 "string for the first parameter if you don't want any options)."
23737 msgstr ""
23738
23739 #. type: =head2
23740 #: ../fish/guestfish-actions.pod:3089
23741 msgid "mount-loop"
23742 msgstr ""
23743
23744 #. type: verbatim
23745 #: ../fish/guestfish-actions.pod:3091
23746 #, no-wrap
23747 msgid ""
23748 " mount-loop file mountpoint\n"
23749 "\n"
23750 msgstr ""
23751
23752 #. type: =head2
23753 #: ../fish/guestfish-actions.pod:3097
23754 msgid "mount-options"
23755 msgstr ""
23756
23757 #. type: verbatim
23758 #: ../fish/guestfish-actions.pod:3099
23759 #, no-wrap
23760 msgid ""
23761 " mount-options options device mountpoint\n"
23762 "\n"
23763 msgstr ""
23764
23765 #. type: textblock
23766 #: ../fish/guestfish-actions.pod:3101
23767 msgid ""
23768 "This is the same as the L</mount> command, but it allows you to set the "
23769 "mount options as for the L<mount(8)> I<-o> flag."
23770 msgstr ""
23771
23772 #. type: =head2
23773 #: ../fish/guestfish-actions.pod:3109
23774 msgid "mount-ro"
23775 msgstr ""
23776
23777 #. type: verbatim
23778 #: ../fish/guestfish-actions.pod:3111
23779 #, no-wrap
23780 msgid ""
23781 " mount-ro device mountpoint\n"
23782 "\n"
23783 msgstr ""
23784
23785 #. type: textblock
23786 #: ../fish/guestfish-actions.pod:3113
23787 msgid ""
23788 "This is the same as the L</mount> command, but it mounts the filesystem with "
23789 "the read-only (I<-o ro>) flag."
23790 msgstr ""
23791
23792 #. type: =head2
23793 #: ../fish/guestfish-actions.pod:3116
23794 msgid "mount-vfs"
23795 msgstr ""
23796
23797 #. type: verbatim
23798 #: ../fish/guestfish-actions.pod:3118
23799 #, no-wrap
23800 msgid ""
23801 " mount-vfs options vfstype device mountpoint\n"
23802 "\n"
23803 msgstr ""
23804
23805 #. type: textblock
23806 #: ../fish/guestfish-actions.pod:3120
23807 msgid ""
23808 "This is the same as the L</mount> command, but it allows you to set both the "
23809 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
23810 msgstr ""
23811
23812 #. type: =head2
23813 #: ../fish/guestfish-actions.pod:3124
23814 msgid "mountpoints"
23815 msgstr ""
23816
23817 #. type: verbatim
23818 #: ../fish/guestfish-actions.pod:3126
23819 #, no-wrap
23820 msgid ""
23821 " mountpoints\n"
23822 "\n"
23823 msgstr ""
23824
23825 #. type: textblock
23826 #: ../fish/guestfish-actions.pod:3128
23827 msgid ""
23828 "This call is similar to L</mounts>.  That call returns a list of devices.  "
23829 "This one returns a hash table (map) of device name to directory where the "
23830 "device is mounted."
23831 msgstr ""
23832
23833 #. type: =head2
23834 #: ../fish/guestfish-actions.pod:3132
23835 msgid "mounts"
23836 msgstr ""
23837
23838 #. type: verbatim
23839 #: ../fish/guestfish-actions.pod:3134
23840 #, no-wrap
23841 msgid ""
23842 " mounts\n"
23843 "\n"
23844 msgstr ""
23845
23846 #. type: textblock
23847 #: ../fish/guestfish-actions.pod:3141
23848 msgid "See also: L</mountpoints>"
23849 msgstr ""
23850
23851 #. type: =head2
23852 #: ../fish/guestfish-actions.pod:3143
23853 msgid "mv"
23854 msgstr ""
23855
23856 #. type: verbatim
23857 #: ../fish/guestfish-actions.pod:3145
23858 #, no-wrap
23859 msgid ""
23860 " mv src dest\n"
23861 "\n"
23862 msgstr ""
23863
23864 #. type: =head2
23865 #: ../fish/guestfish-actions.pod:3150
23866 msgid "ntfs-3g-probe"
23867 msgstr ""
23868
23869 #. type: verbatim
23870 #: ../fish/guestfish-actions.pod:3152
23871 #, no-wrap
23872 msgid ""
23873 " ntfs-3g-probe true|false device\n"
23874 "\n"
23875 msgstr ""
23876
23877 #. type: =head2
23878 #: ../fish/guestfish-actions.pod:3166
23879 msgid "ntfsresize"
23880 msgstr ""
23881
23882 #. type: verbatim
23883 #: ../fish/guestfish-actions.pod:3168
23884 #, no-wrap
23885 msgid ""
23886 " ntfsresize device\n"
23887 "\n"
23888 msgstr ""
23889
23890 #. type: =head2
23891 #: ../fish/guestfish-actions.pod:3174
23892 msgid "ntfsresize-size"
23893 msgstr ""
23894
23895 #. type: verbatim
23896 #: ../fish/guestfish-actions.pod:3176
23897 #, no-wrap
23898 msgid ""
23899 " ntfsresize-size device size\n"
23900 "\n"
23901 msgstr ""
23902
23903 #. type: textblock
23904 #: ../fish/guestfish-actions.pod:3178
23905 msgid ""
23906 "This command is the same as L</ntfsresize> except that it allows you to "
23907 "specify the new size (in bytes) explicitly."
23908 msgstr ""
23909
23910 #. type: =head2
23911 #: ../fish/guestfish-actions.pod:3181
23912 msgid "part-add"
23913 msgstr ""
23914
23915 #. type: verbatim
23916 #: ../fish/guestfish-actions.pod:3183
23917 #, no-wrap
23918 msgid ""
23919 " part-add device prlogex startsect endsect\n"
23920 "\n"
23921 msgstr ""
23922
23923 #. type: textblock
23924 #: ../fish/guestfish-actions.pod:3185
23925 msgid ""
23926 "This command adds a partition to C<device>.  If there is no partition table "
23927 "on the device, call L</part-init> first."
23928 msgstr ""
23929
23930 #. type: textblock
23931 #: ../fish/guestfish-actions.pod:3197
23932 msgid ""
23933 "Creating a partition which covers the whole disk is not so easy.  Use "
23934 "L</part-disk> to do that."
23935 msgstr ""
23936
23937 #. type: =head2
23938 #: ../fish/guestfish-actions.pod:3200
23939 msgid "part-del"
23940 msgstr ""
23941
23942 #. type: verbatim
23943 #: ../fish/guestfish-actions.pod:3202
23944 #, no-wrap
23945 msgid ""
23946 " part-del device partnum\n"
23947 "\n"
23948 msgstr ""
23949
23950 #. type: =head2
23951 #: ../fish/guestfish-actions.pod:3210
23952 msgid "part-disk"
23953 msgstr ""
23954
23955 #. type: verbatim
23956 #: ../fish/guestfish-actions.pod:3212
23957 #, no-wrap
23958 msgid ""
23959 " part-disk device parttype\n"
23960 "\n"
23961 msgstr ""
23962
23963 #. type: textblock
23964 #: ../fish/guestfish-actions.pod:3214
23965 msgid ""
23966 "This command is simply a combination of L</part-init> followed by "
23967 "L</part-add> to create a single primary partition covering the whole disk."
23968 msgstr ""
23969
23970 #. type: textblock
23971 #: ../fish/guestfish-actions.pod:3218
23972 msgid ""
23973 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
23974 "possible values are described in L</part-init>."
23975 msgstr ""
23976
23977 #. type: =head2
23978 #: ../fish/guestfish-actions.pod:3224
23979 msgid "part-get-bootable"
23980 msgstr ""
23981
23982 #. type: verbatim
23983 #: ../fish/guestfish-actions.pod:3226
23984 #, no-wrap
23985 msgid ""
23986 " part-get-bootable device partnum\n"
23987 "\n"
23988 msgstr ""
23989
23990 #. type: textblock
23991 #: ../fish/guestfish-actions.pod:3231
23992 msgid "See also L</part-set-bootable>."
23993 msgstr ""
23994
23995 #. type: =head2
23996 #: ../fish/guestfish-actions.pod:3233
23997 msgid "part-get-mbr-id"
23998 msgstr ""
23999
24000 #. type: verbatim
24001 #: ../fish/guestfish-actions.pod:3235
24002 #, no-wrap
24003 msgid ""
24004 " part-get-mbr-id device partnum\n"
24005 "\n"
24006 msgstr ""
24007
24008 #. type: textblock
24009 #: ../fish/guestfish-actions.pod:3240 ../fish/guestfish-actions.pod:3378
24010 msgid ""
24011 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
24012 "undefined results for other partition table types (see "
24013 "L</part-get-parttype>)."
24014 msgstr ""
24015
24016 #. type: =head2
24017 #: ../fish/guestfish-actions.pod:3244
24018 msgid "part-get-parttype"
24019 msgstr ""
24020
24021 #. type: verbatim
24022 #: ../fish/guestfish-actions.pod:3246
24023 #, no-wrap
24024 msgid ""
24025 " part-get-parttype device\n"
24026 "\n"
24027 msgstr ""
24028
24029 #. type: textblock
24030 #: ../fish/guestfish-actions.pod:3251
24031 msgid ""
24032 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
24033 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
24034 "possible, although unusual.  See L</part-init> for a full list."
24035 msgstr ""
24036
24037 #. type: =head2
24038 #: ../fish/guestfish-actions.pod:3256
24039 msgid "part-init"
24040 msgstr ""
24041
24042 #. type: verbatim
24043 #: ../fish/guestfish-actions.pod:3258
24044 #, no-wrap
24045 msgid ""
24046 " part-init device parttype\n"
24047 "\n"
24048 msgstr ""
24049
24050 #. type: textblock
24051 #: ../fish/guestfish-actions.pod:3264
24052 msgid ""
24053 "Initially there are no partitions.  Following this, you should call "
24054 "L</part-add> for each partition required."
24055 msgstr ""
24056
24057 #. type: =head2
24058 #: ../fish/guestfish-actions.pod:3327
24059 msgid "part-list"
24060 msgstr ""
24061
24062 #. type: verbatim
24063 #: ../fish/guestfish-actions.pod:3329
24064 #, no-wrap
24065 msgid ""
24066 " part-list device\n"
24067 "\n"
24068 msgstr ""
24069
24070 #. type: textblock
24071 #: ../fish/guestfish-actions.pod:3344
24072 msgid ""
24073 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
24074 "the device's sector size, see L</blockdev-getss>."
24075 msgstr ""
24076
24077 #. type: =head2
24078 #: ../fish/guestfish-actions.pod:3357
24079 msgid "part-set-bootable"
24080 msgstr ""
24081
24082 #. type: verbatim
24083 #: ../fish/guestfish-actions.pod:3359
24084 #, no-wrap
24085 msgid ""
24086 " part-set-bootable device partnum true|false\n"
24087 "\n"
24088 msgstr ""
24089
24090 #. type: =head2
24091 #: ../fish/guestfish-actions.pod:3368
24092 msgid "part-set-mbr-id"
24093 msgstr ""
24094
24095 #. type: verbatim
24096 #: ../fish/guestfish-actions.pod:3370
24097 #, no-wrap
24098 msgid ""
24099 " part-set-mbr-id device partnum idbyte\n"
24100 "\n"
24101 msgstr ""
24102
24103 #. type: =head2
24104 #: ../fish/guestfish-actions.pod:3382
24105 msgid "part-set-name"
24106 msgstr ""
24107
24108 #. type: verbatim
24109 #: ../fish/guestfish-actions.pod:3384
24110 #, no-wrap
24111 msgid ""
24112 " part-set-name device partnum name\n"
24113 "\n"
24114 msgstr ""
24115
24116 #. type: =head2
24117 #: ../fish/guestfish-actions.pod:3392
24118 msgid "part-to-dev"
24119 msgstr ""
24120
24121 #. type: verbatim
24122 #: ../fish/guestfish-actions.pod:3394
24123 #, no-wrap
24124 msgid ""
24125 " part-to-dev partition\n"
24126 "\n"
24127 msgstr ""
24128
24129 #. type: textblock
24130 #: ../fish/guestfish-actions.pod:3400
24131 msgid ""
24132 "The named partition must exist, for example as a string returned from "
24133 "L</list-partitions>."
24134 msgstr ""
24135
24136 #. type: =head2
24137 #: ../fish/guestfish-actions.pod:3403
24138 msgid "ping-daemon"
24139 msgstr ""
24140
24141 #. type: verbatim
24142 #: ../fish/guestfish-actions.pod:3405
24143 #, no-wrap
24144 msgid ""
24145 " ping-daemon\n"
24146 "\n"
24147 msgstr ""
24148
24149 #. type: =head2
24150 #: ../fish/guestfish-actions.pod:3412
24151 msgid "pread"
24152 msgstr ""
24153
24154 #. type: verbatim
24155 #: ../fish/guestfish-actions.pod:3414
24156 #, no-wrap
24157 msgid ""
24158 " pread path count offset\n"
24159 "\n"
24160 msgstr ""
24161
24162 #. type: textblock
24163 #: ../fish/guestfish-actions.pod:3422
24164 msgid "See also L</pwrite>, L</pread-device>."
24165 msgstr ""
24166
24167 #. type: =head2
24168 #: ../fish/guestfish-actions.pod:3427
24169 msgid "pread-device"
24170 msgstr ""
24171
24172 #. type: verbatim
24173 #: ../fish/guestfish-actions.pod:3429
24174 #, no-wrap
24175 msgid ""
24176 " pread-device device count offset\n"
24177 "\n"
24178 msgstr ""
24179
24180 #. type: textblock
24181 #: ../fish/guestfish-actions.pod:3437
24182 msgid "See also L</pread>."
24183 msgstr ""
24184
24185 #. type: =head2
24186 #: ../fish/guestfish-actions.pod:3442
24187 msgid "pvcreate"
24188 msgstr ""
24189
24190 #. type: verbatim
24191 #: ../fish/guestfish-actions.pod:3444
24192 #, no-wrap
24193 msgid ""
24194 " pvcreate device\n"
24195 "\n"
24196 msgstr ""
24197
24198 #. type: =head2
24199 #: ../fish/guestfish-actions.pod:3450
24200 msgid "pvremove"
24201 msgstr ""
24202
24203 #. type: verbatim
24204 #: ../fish/guestfish-actions.pod:3452
24205 #, no-wrap
24206 msgid ""
24207 " pvremove device\n"
24208 "\n"
24209 msgstr ""
24210
24211 #. type: =head2
24212 #: ../fish/guestfish-actions.pod:3461
24213 msgid "pvresize"
24214 msgstr ""
24215
24216 #. type: verbatim
24217 #: ../fish/guestfish-actions.pod:3463
24218 #, no-wrap
24219 msgid ""
24220 " pvresize device\n"
24221 "\n"
24222 msgstr ""
24223
24224 #. type: =head2
24225 #: ../fish/guestfish-actions.pod:3468
24226 msgid "pvresize-size"
24227 msgstr ""
24228
24229 #. type: verbatim
24230 #: ../fish/guestfish-actions.pod:3470
24231 #, no-wrap
24232 msgid ""
24233 " pvresize-size device size\n"
24234 "\n"
24235 msgstr ""
24236
24237 #. type: textblock
24238 #: ../fish/guestfish-actions.pod:3472
24239 msgid ""
24240 "This command is the same as L</pvresize> except that it allows you to "
24241 "specify the new size (in bytes) explicitly."
24242 msgstr ""
24243
24244 #. type: =head2
24245 #: ../fish/guestfish-actions.pod:3475
24246 msgid "pvs"
24247 msgstr ""
24248
24249 #. type: verbatim
24250 #: ../fish/guestfish-actions.pod:3477
24251 #, no-wrap
24252 msgid ""
24253 " pvs\n"
24254 "\n"
24255 msgstr ""
24256
24257 #. type: textblock
24258 #: ../fish/guestfish-actions.pod:3485
24259 msgid "See also L</pvs-full>."
24260 msgstr ""
24261
24262 #. type: =head2
24263 #: ../fish/guestfish-actions.pod:3487
24264 msgid "pvs-full"
24265 msgstr ""
24266
24267 #. type: verbatim
24268 #: ../fish/guestfish-actions.pod:3489
24269 #, no-wrap
24270 msgid ""
24271 " pvs-full\n"
24272 "\n"
24273 msgstr ""
24274
24275 #. type: =head2
24276 #: ../fish/guestfish-actions.pod:3494
24277 msgid "pvuuid"
24278 msgstr ""
24279
24280 #. type: verbatim
24281 #: ../fish/guestfish-actions.pod:3496
24282 #, no-wrap
24283 msgid ""
24284 " pvuuid device\n"
24285 "\n"
24286 msgstr ""
24287
24288 #. type: =head2
24289 #: ../fish/guestfish-actions.pod:3500
24290 msgid "pwrite"
24291 msgstr ""
24292
24293 #. type: verbatim
24294 #: ../fish/guestfish-actions.pod:3502
24295 #, no-wrap
24296 msgid ""
24297 " pwrite path content offset\n"
24298 "\n"
24299 msgstr ""
24300
24301 #. type: textblock
24302 #: ../fish/guestfish-actions.pod:3513
24303 msgid "See also L</pread>, L</pwrite-device>."
24304 msgstr ""
24305
24306 #. type: =head2
24307 #: ../fish/guestfish-actions.pod:3518
24308 msgid "pwrite-device"
24309 msgstr ""
24310
24311 #. type: verbatim
24312 #: ../fish/guestfish-actions.pod:3520
24313 #, no-wrap
24314 msgid ""
24315 " pwrite-device device content offset\n"
24316 "\n"
24317 msgstr ""
24318
24319 #. type: textblock
24320 #: ../fish/guestfish-actions.pod:3530
24321 msgid "See also L</pwrite>."
24322 msgstr ""
24323
24324 #. type: =head2
24325 #: ../fish/guestfish-actions.pod:3535
24326 msgid "read-file"
24327 msgstr ""
24328
24329 #. type: verbatim
24330 #: ../fish/guestfish-actions.pod:3537
24331 #, no-wrap
24332 msgid ""
24333 " read-file path\n"
24334 "\n"
24335 msgstr ""
24336
24337 #. type: textblock
24338 #: ../fish/guestfish-actions.pod:3542
24339 msgid ""
24340 "Unlike L</cat>, this function can correctly handle files that contain "
24341 "embedded ASCII NUL characters.  However unlike L</download>, this function "
24342 "is limited in the total size of file that can be handled."
24343 msgstr ""
24344
24345 #. type: =head2
24346 #: ../fish/guestfish-actions.pod:3550
24347 msgid "read-lines"
24348 msgstr ""
24349
24350 #. type: verbatim
24351 #: ../fish/guestfish-actions.pod:3552
24352 #, no-wrap
24353 msgid ""
24354 " read-lines path\n"
24355 "\n"
24356 msgstr ""
24357
24358 #. type: textblock
24359 #: ../fish/guestfish-actions.pod:3559
24360 msgid ""
24361 "Note that this function cannot correctly handle binary files (specifically, "
24362 "files containing C<\\0> character which is treated as end of line).  For "
24363 "those you need to use the L</read-file> function which has a more complex "
24364 "interface."
24365 msgstr ""
24366
24367 #. type: =head2
24368 #: ../fish/guestfish-actions.pod:3564
24369 msgid "readdir"
24370 msgstr ""
24371
24372 #. type: verbatim
24373 #: ../fish/guestfish-actions.pod:3566
24374 #, no-wrap
24375 msgid ""
24376 " readdir dir\n"
24377 "\n"
24378 msgstr ""
24379
24380 #. type: textblock
24381 #: ../fish/guestfish-actions.pod:3618
24382 msgid ""
24383 "This function is primarily intended for use by programs.  To get a simple "
24384 "list of names, use L</ls>.  To get a printable directory for human "
24385 "consumption, use L</ll>."
24386 msgstr ""
24387
24388 #. type: =head2
24389 #: ../fish/guestfish-actions.pod:3622
24390 msgid "readlink"
24391 msgstr ""
24392
24393 #. type: verbatim
24394 #: ../fish/guestfish-actions.pod:3624
24395 #, no-wrap
24396 msgid ""
24397 " readlink path\n"
24398 "\n"
24399 msgstr ""
24400
24401 #. type: =head2
24402 #: ../fish/guestfish-actions.pod:3628
24403 msgid "readlinklist"
24404 msgstr ""
24405
24406 #. type: verbatim
24407 #: ../fish/guestfish-actions.pod:3630
24408 #, no-wrap
24409 msgid ""
24410 " readlinklist path 'names ...'\n"
24411 "\n"
24412 msgstr ""
24413
24414 #. type: =head2
24415 #: ../fish/guestfish-actions.pod:3654
24416 msgid "realpath"
24417 msgstr ""
24418
24419 #. type: verbatim
24420 #: ../fish/guestfish-actions.pod:3656
24421 #, no-wrap
24422 msgid ""
24423 " realpath path\n"
24424 "\n"
24425 msgstr ""
24426
24427 #. type: =head2
24428 #: ../fish/guestfish-actions.pod:3661
24429 msgid "removexattr"
24430 msgstr ""
24431
24432 #. type: verbatim
24433 #: ../fish/guestfish-actions.pod:3663
24434 #, no-wrap
24435 msgid ""
24436 " removexattr xattr path\n"
24437 "\n"
24438 msgstr ""
24439
24440 #. type: textblock
24441 #: ../fish/guestfish-actions.pod:3668
24442 msgid "See also: L</lremovexattr>, L<attr(5)>."
24443 msgstr ""
24444
24445 #. type: =head2
24446 #: ../fish/guestfish-actions.pod:3670
24447 msgid "resize2fs"
24448 msgstr ""
24449
24450 #. type: verbatim
24451 #: ../fish/guestfish-actions.pod:3672
24452 #, no-wrap
24453 msgid ""
24454 " resize2fs device\n"
24455 "\n"
24456 msgstr ""
24457
24458 #. type: textblock
24459 #: ../fish/guestfish-actions.pod:3677
24460 msgid ""
24461 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
24462 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
24463 "gives an error about this and sometimes not.  In any case, it is always safe "
24464 "to call L</e2fsck-f> before calling this function."
24465 msgstr ""
24466
24467 #. type: =head2
24468 #: ../fish/guestfish-actions.pod:3683
24469 msgid "resize2fs-M"
24470 msgstr ""
24471
24472 #. type: verbatim
24473 #: ../fish/guestfish-actions.pod:3685
24474 #, no-wrap
24475 msgid ""
24476 " resize2fs-M device\n"
24477 "\n"
24478 msgstr ""
24479
24480 #. type: textblock
24481 #: ../fish/guestfish-actions.pod:3687
24482 msgid ""
24483 "This command is the same as L</resize2fs>, but the filesystem is resized to "
24484 "its minimum size.  This works like the C<-M> option to the C<resize2fs> "
24485 "command."
24486 msgstr ""
24487
24488 #. type: textblock
24489 #: ../fish/guestfish-actions.pod:3691
24490 msgid ""
24491 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
24492 "and read the C<Block size> and C<Block count> values.  These two numbers, "
24493 "multiplied together, give the resulting size of the minimal filesystem in "
24494 "bytes."
24495 msgstr ""
24496
24497 #. type: =head2
24498 #: ../fish/guestfish-actions.pod:3696
24499 msgid "resize2fs-size"
24500 msgstr ""
24501
24502 #. type: verbatim
24503 #: ../fish/guestfish-actions.pod:3698
24504 #, no-wrap
24505 msgid ""
24506 " resize2fs-size device size\n"
24507 "\n"
24508 msgstr ""
24509
24510 #. type: textblock
24511 #: ../fish/guestfish-actions.pod:3700
24512 msgid ""
24513 "This command is the same as L</resize2fs> except that it allows you to "
24514 "specify the new size (in bytes) explicitly."
24515 msgstr ""
24516
24517 #. type: =head2
24518 #: ../fish/guestfish-actions.pod:3703
24519 msgid "rm"
24520 msgstr ""
24521
24522 #. type: verbatim
24523 #: ../fish/guestfish-actions.pod:3705
24524 #, no-wrap
24525 msgid ""
24526 " rm path\n"
24527 "\n"
24528 msgstr ""
24529
24530 #. type: =head2
24531 #: ../fish/guestfish-actions.pod:3709
24532 msgid "rm-rf"
24533 msgstr ""
24534
24535 #. type: verbatim
24536 #: ../fish/guestfish-actions.pod:3711
24537 #, no-wrap
24538 msgid ""
24539 " rm-rf path\n"
24540 "\n"
24541 msgstr ""
24542
24543 #. type: =head2
24544 #: ../fish/guestfish-actions.pod:3717
24545 msgid "rmdir"
24546 msgstr ""
24547
24548 #. type: verbatim
24549 #: ../fish/guestfish-actions.pod:3719
24550 #, no-wrap
24551 msgid ""
24552 " rmdir path\n"
24553 "\n"
24554 msgstr ""
24555
24556 #. type: =head2
24557 #: ../fish/guestfish-actions.pod:3723
24558 msgid "rmmountpoint"
24559 msgstr ""
24560
24561 #. type: verbatim
24562 #: ../fish/guestfish-actions.pod:3725
24563 #, no-wrap
24564 msgid ""
24565 " rmmountpoint exemptpath\n"
24566 "\n"
24567 msgstr ""
24568
24569 #. type: textblock
24570 #: ../fish/guestfish-actions.pod:3727
24571 msgid ""
24572 "This calls removes a mountpoint that was previously created with "
24573 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
24574 msgstr ""
24575
24576 #. type: =head2
24577 #: ../fish/guestfish-actions.pod:3731
24578 msgid "scrub-device"
24579 msgstr ""
24580
24581 #. type: verbatim
24582 #: ../fish/guestfish-actions.pod:3733
24583 #, no-wrap
24584 msgid ""
24585 " scrub-device device\n"
24586 "\n"
24587 msgstr ""
24588
24589 #. type: =head2
24590 #: ../fish/guestfish-actions.pod:3744
24591 msgid "scrub-file"
24592 msgstr ""
24593
24594 #. type: verbatim
24595 #: ../fish/guestfish-actions.pod:3746
24596 #, no-wrap
24597 msgid ""
24598 " scrub-file file\n"
24599 "\n"
24600 msgstr ""
24601
24602 #. type: =head2
24603 #: ../fish/guestfish-actions.pod:3756
24604 msgid "scrub-freespace"
24605 msgstr ""
24606
24607 #. type: verbatim
24608 #: ../fish/guestfish-actions.pod:3758
24609 #, no-wrap
24610 msgid ""
24611 " scrub-freespace dir\n"
24612 "\n"
24613 msgstr ""
24614
24615 #. type: textblock
24616 #: ../fish/guestfish-actions.pod:3760
24617 msgid ""
24618 "This command creates the directory C<dir> and then fills it with files until "
24619 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
24620 "deletes them.  The intention is to scrub any free space on the partition "
24621 "containing C<dir>."
24622 msgstr ""
24623
24624 #. type: =head2
24625 #: ../fish/guestfish-actions.pod:3769
24626 msgid "set-append"
24627 msgstr ""
24628
24629 #. type: =head2
24630 #: ../fish/guestfish-actions.pod:3771
24631 msgid "append"
24632 msgstr ""
24633
24634 #. type: verbatim
24635 #: ../fish/guestfish-actions.pod:3773
24636 #, no-wrap
24637 msgid ""
24638 " set-append append\n"
24639 "\n"
24640 msgstr ""
24641
24642 #. type: =head2
24643 #: ../fish/guestfish-actions.pod:3784
24644 msgid "set-autosync"
24645 msgstr ""
24646
24647 #. type: =head2
24648 #: ../fish/guestfish-actions.pod:3786
24649 msgid "autosync"
24650 msgstr ""
24651
24652 #. type: verbatim
24653 #: ../fish/guestfish-actions.pod:3788
24654 #, no-wrap
24655 msgid ""
24656 " set-autosync true|false\n"
24657 "\n"
24658 msgstr ""
24659
24660 #. type: =head2
24661 #: ../fish/guestfish-actions.pod:3798
24662 msgid "set-direct"
24663 msgstr ""
24664
24665 #. type: =head2
24666 #: ../fish/guestfish-actions.pod:3800
24667 msgid "direct"
24668 msgstr ""
24669
24670 #. type: verbatim
24671 #: ../fish/guestfish-actions.pod:3802
24672 #, no-wrap
24673 msgid ""
24674 " set-direct true|false\n"
24675 "\n"
24676 msgstr ""
24677
24678 #. type: textblock
24679 #: ../fish/guestfish-actions.pod:3808
24680 msgid ""
24681 "One consequence of this is that log messages aren't caught by the library "
24682 "and handled by L</set-log-message-callback>, but go straight to stdout."
24683 msgstr ""
24684
24685 #. type: =head2
24686 #: ../fish/guestfish-actions.pod:3817
24687 msgid "set-e2label"
24688 msgstr ""
24689
24690 #. type: verbatim
24691 #: ../fish/guestfish-actions.pod:3819
24692 #, no-wrap
24693 msgid ""
24694 " set-e2label device label\n"
24695 "\n"
24696 msgstr ""
24697
24698 #. type: textblock
24699 #: ../fish/guestfish-actions.pod:3825
24700 msgid ""
24701 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
24702 "label on a filesystem."
24703 msgstr ""
24704
24705 #. type: =head2
24706 #: ../fish/guestfish-actions.pod:3828
24707 msgid "set-e2uuid"
24708 msgstr ""
24709
24710 #. type: verbatim
24711 #: ../fish/guestfish-actions.pod:3830
24712 #, no-wrap
24713 msgid ""
24714 " set-e2uuid device uuid\n"
24715 "\n"
24716 msgstr ""
24717
24718 #. type: textblock
24719 #: ../fish/guestfish-actions.pod:3837
24720 msgid ""
24721 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
24722 "UUID of a filesystem."
24723 msgstr ""
24724
24725 #. type: =head2
24726 #: ../fish/guestfish-actions.pod:3840
24727 msgid "set-memsize"
24728 msgstr ""
24729
24730 #. type: =head2
24731 #: ../fish/guestfish-actions.pod:3842
24732 msgid "memsize"
24733 msgstr ""
24734
24735 #. type: verbatim
24736 #: ../fish/guestfish-actions.pod:3844
24737 #, no-wrap
24738 msgid ""
24739 " set-memsize memsize\n"
24740 "\n"
24741 msgstr ""
24742
24743 #. type: textblock
24744 #: ../fish/guestfish-actions.pod:3846
24745 msgid ""
24746 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
24747 "This only has any effect if called before L</launch>."
24748 msgstr ""
24749
24750 #. type: =head2
24751 #: ../fish/guestfish-actions.pod:3857
24752 msgid "set-network"
24753 msgstr ""
24754
24755 #. type: =head2
24756 #: ../fish/guestfish-actions.pod:3859
24757 msgid "network"
24758 msgstr ""
24759
24760 #. type: verbatim
24761 #: ../fish/guestfish-actions.pod:3861
24762 #, no-wrap
24763 msgid ""
24764 " set-network true|false\n"
24765 "\n"
24766 msgstr ""
24767
24768 #. type: textblock
24769 #: ../fish/guestfish-actions.pod:3869
24770 msgid "You must call this before calling L</launch>, otherwise it has no effect."
24771 msgstr ""
24772
24773 #. type: =head2
24774 #: ../fish/guestfish-actions.pod:3872
24775 msgid "set-path"
24776 msgstr ""
24777
24778 #. type: =head2
24779 #: ../fish/guestfish-actions.pod:3874
24780 msgid "path"
24781 msgstr ""
24782
24783 #. type: verbatim
24784 #: ../fish/guestfish-actions.pod:3876
24785 #, no-wrap
24786 msgid ""
24787 " set-path searchpath\n"
24788 "\n"
24789 msgstr ""
24790
24791 #. type: =head2
24792 #: ../fish/guestfish-actions.pod:3885
24793 msgid "set-qemu"
24794 msgstr ""
24795
24796 #. type: =head2
24797 #: ../fish/guestfish-actions.pod:3887
24798 msgid "qemu"
24799 msgstr ""
24800
24801 #. type: verbatim
24802 #: ../fish/guestfish-actions.pod:3889
24803 #, no-wrap
24804 msgid ""
24805 " set-qemu qemu\n"
24806 "\n"
24807 msgstr ""
24808
24809 #. type: =head2
24810 #: ../fish/guestfish-actions.pod:3909
24811 msgid "set-recovery-proc"
24812 msgstr ""
24813
24814 #. type: =head2
24815 #: ../fish/guestfish-actions.pod:3911
24816 msgid "recovery-proc"
24817 msgstr ""
24818
24819 #. type: verbatim
24820 #: ../fish/guestfish-actions.pod:3913
24821 #, no-wrap
24822 msgid ""
24823 " set-recovery-proc true|false\n"
24824 "\n"
24825 msgstr ""
24826
24827 #. type: textblock
24828 #: ../fish/guestfish-actions.pod:3915
24829 msgid ""
24830 "If this is called with the parameter C<false> then L</launch> does not "
24831 "create a recovery process.  The purpose of the recovery process is to stop "
24832 "runaway qemu processes in the case where the main program aborts abruptly."
24833 msgstr ""
24834
24835 #. type: textblock
24836 #: ../fish/guestfish-actions.pod:3920
24837 msgid ""
24838 "This only has any effect if called before L</launch>, and the default is "
24839 "true."
24840 msgstr ""
24841
24842 #. type: =head2
24843 #: ../fish/guestfish-actions.pod:3929
24844 msgid "set-selinux"
24845 msgstr ""
24846
24847 #. type: =head2
24848 #: ../fish/guestfish-actions.pod:3931
24849 msgid "selinux"
24850 msgstr ""
24851
24852 #. type: verbatim
24853 #: ../fish/guestfish-actions.pod:3933
24854 #, no-wrap
24855 msgid ""
24856 " set-selinux true|false\n"
24857 "\n"
24858 msgstr ""
24859
24860 #. type: =head2
24861 #: ../fish/guestfish-actions.pod:3944
24862 msgid "set-trace"
24863 msgstr ""
24864
24865 #. type: =head2
24866 #: ../fish/guestfish-actions.pod:3946
24867 msgid "trace"
24868 msgstr ""
24869
24870 #. type: verbatim
24871 #: ../fish/guestfish-actions.pod:3948
24872 #, no-wrap
24873 msgid ""
24874 " set-trace true|false\n"
24875 "\n"
24876 msgstr ""
24877
24878 #. type: =head2
24879 #: ../fish/guestfish-actions.pod:3964
24880 msgid "set-verbose"
24881 msgstr ""
24882
24883 #. type: =head2
24884 #: ../fish/guestfish-actions.pod:3966
24885 msgid "verbose"
24886 msgstr ""
24887
24888 #. type: verbatim
24889 #: ../fish/guestfish-actions.pod:3968
24890 #, no-wrap
24891 msgid ""
24892 " set-verbose true|false\n"
24893 "\n"
24894 msgstr ""
24895
24896 #. type: =head2
24897 #: ../fish/guestfish-actions.pod:3975
24898 msgid "setcon"
24899 msgstr ""
24900
24901 #. type: verbatim
24902 #: ../fish/guestfish-actions.pod:3977
24903 #, no-wrap
24904 msgid ""
24905 " setcon context\n"
24906 "\n"
24907 msgstr ""
24908
24909 #. type: =head2
24910 #: ../fish/guestfish-actions.pod:3984
24911 msgid "setxattr"
24912 msgstr ""
24913
24914 #. type: verbatim
24915 #: ../fish/guestfish-actions.pod:3986
24916 #, no-wrap
24917 msgid ""
24918 " setxattr xattr val vallen path\n"
24919 "\n"
24920 msgstr ""
24921
24922 #. type: textblock
24923 #: ../fish/guestfish-actions.pod:3992
24924 msgid "See also: L</lsetxattr>, L<attr(5)>."
24925 msgstr ""
24926
24927 #. type: =head2
24928 #: ../fish/guestfish-actions.pod:3994
24929 msgid "sfdisk"
24930 msgstr ""
24931
24932 #. type: verbatim
24933 #: ../fish/guestfish-actions.pod:3996
24934 #, no-wrap
24935 msgid ""
24936 " sfdisk device cyls heads sectors 'lines ...'\n"
24937 "\n"
24938 msgstr ""
24939
24940 #. type: textblock
24941 #: ../fish/guestfish-actions.pod:4018
24942 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
24943 msgstr ""
24944
24945 #. type: =head2
24946 #: ../fish/guestfish-actions.pod:4024
24947 msgid "sfdiskM"
24948 msgstr ""
24949
24950 #. type: verbatim
24951 #: ../fish/guestfish-actions.pod:4026
24952 #, no-wrap
24953 msgid ""
24954 " sfdiskM device 'lines ...'\n"
24955 "\n"
24956 msgstr ""
24957
24958 #. type: textblock
24959 #: ../fish/guestfish-actions.pod:4028
24960 msgid ""
24961 "This is a simplified interface to the L</sfdisk> command, where partition "
24962 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
24963 "you don't need to specify the cyls, heads and sectors parameters which were "
24964 "rarely if ever used anyway."
24965 msgstr ""
24966
24967 #. type: textblock
24968 #: ../fish/guestfish-actions.pod:4034
24969 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
24970 msgstr ""
24971
24972 #. type: =head2
24973 #: ../fish/guestfish-actions.pod:4040
24974 msgid "sfdisk-N"
24975 msgstr ""
24976
24977 #. type: verbatim
24978 #: ../fish/guestfish-actions.pod:4042
24979 #, no-wrap
24980 msgid ""
24981 " sfdisk-N device partnum cyls heads sectors line\n"
24982 "\n"
24983 msgstr ""
24984
24985 #. type: textblock
24986 #: ../fish/guestfish-actions.pod:4047
24987 msgid ""
24988 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
24989 "cyls/heads/sectors parameters."
24990 msgstr ""
24991
24992 #. type: textblock
24993 #: ../fish/guestfish-actions.pod:4050
24994 msgid "See also: L</part-add>"
24995 msgstr ""
24996
24997 #. type: =head2
24998 #: ../fish/guestfish-actions.pod:4055
24999 msgid "sfdisk-disk-geometry"
25000 msgstr ""
25001
25002 #. type: verbatim
25003 #: ../fish/guestfish-actions.pod:4057
25004 #, no-wrap
25005 msgid ""
25006 " sfdisk-disk-geometry device\n"
25007 "\n"
25008 msgstr ""
25009
25010 #. type: textblock
25011 #: ../fish/guestfish-actions.pod:4059
25012 msgid ""
25013 "This displays the disk geometry of C<device> read from the partition table.  "
25014 "Especially in the case where the underlying block device has been resized, "
25015 "this can be different from the kernel's idea of the geometry (see "
25016 "L</sfdisk-kernel-geometry>)."
25017 msgstr ""
25018
25019 #. type: =head2
25020 #: ../fish/guestfish-actions.pod:4067
25021 msgid "sfdisk-kernel-geometry"
25022 msgstr ""
25023
25024 #. type: verbatim
25025 #: ../fish/guestfish-actions.pod:4069
25026 #, no-wrap
25027 msgid ""
25028 " sfdisk-kernel-geometry device\n"
25029 "\n"
25030 msgstr ""
25031
25032 #. type: =head2
25033 #: ../fish/guestfish-actions.pod:4076
25034 msgid "sfdisk-l"
25035 msgstr ""
25036
25037 #. type: verbatim
25038 #: ../fish/guestfish-actions.pod:4078
25039 #, no-wrap
25040 msgid ""
25041 " sfdisk-l device\n"
25042 "\n"
25043 msgstr ""
25044
25045 #. type: textblock
25046 #: ../fish/guestfish-actions.pod:4084
25047 msgid "See also: L</part-list>"
25048 msgstr ""
25049
25050 #. type: =head2
25051 #: ../fish/guestfish-actions.pod:4086
25052 msgid "sh"
25053 msgstr ""
25054
25055 #. type: verbatim
25056 #: ../fish/guestfish-actions.pod:4088
25057 #, no-wrap
25058 msgid ""
25059 " sh command\n"
25060 "\n"
25061 msgstr ""
25062
25063 #. type: textblock
25064 #: ../fish/guestfish-actions.pod:4093
25065 msgid "This is like L</command>, but passes the command to:"
25066 msgstr ""
25067
25068 #. type: textblock
25069 #: ../fish/guestfish-actions.pod:4101
25070 msgid "All the provisos about L</command> apply to this call."
25071 msgstr ""
25072
25073 #. type: =head2
25074 #: ../fish/guestfish-actions.pod:4103
25075 msgid "sh-lines"
25076 msgstr ""
25077
25078 #. type: verbatim
25079 #: ../fish/guestfish-actions.pod:4105
25080 #, no-wrap
25081 msgid ""
25082 " sh-lines command\n"
25083 "\n"
25084 msgstr ""
25085
25086 #. type: textblock
25087 #: ../fish/guestfish-actions.pod:4107
25088 msgid "This is the same as L</sh>, but splits the result into a list of lines."
25089 msgstr ""
25090
25091 #. type: textblock
25092 #: ../fish/guestfish-actions.pod:4110
25093 msgid "See also: L</command-lines>"
25094 msgstr ""
25095
25096 #. type: =head2
25097 #: ../fish/guestfish-actions.pod:4112
25098 msgid "sleep"
25099 msgstr ""
25100
25101 #. type: verbatim
25102 #: ../fish/guestfish-actions.pod:4114
25103 #, no-wrap
25104 msgid ""
25105 " sleep secs\n"
25106 "\n"
25107 msgstr ""
25108
25109 #. type: =head2
25110 #: ../fish/guestfish-actions.pod:4118
25111 msgid "stat"
25112 msgstr ""
25113
25114 #. type: verbatim
25115 #: ../fish/guestfish-actions.pod:4120
25116 #, no-wrap
25117 msgid ""
25118 " stat path\n"
25119 "\n"
25120 msgstr ""
25121
25122 #. type: =head2
25123 #: ../fish/guestfish-actions.pod:4126
25124 msgid "statvfs"
25125 msgstr ""
25126
25127 #. type: verbatim
25128 #: ../fish/guestfish-actions.pod:4128
25129 #, no-wrap
25130 msgid ""
25131 " statvfs path\n"
25132 "\n"
25133 msgstr ""
25134
25135 #. type: =head2
25136 #: ../fish/guestfish-actions.pod:4136
25137 msgid "strings"
25138 msgstr ""
25139
25140 #. type: verbatim
25141 #: ../fish/guestfish-actions.pod:4138
25142 #, no-wrap
25143 msgid ""
25144 " strings path\n"
25145 "\n"
25146 msgstr ""
25147
25148 #. type: =head2
25149 #: ../fish/guestfish-actions.pod:4146
25150 msgid "strings-e"
25151 msgstr ""
25152
25153 #. type: verbatim
25154 #: ../fish/guestfish-actions.pod:4148
25155 #, no-wrap
25156 msgid ""
25157 " strings-e encoding path\n"
25158 "\n"
25159 msgstr ""
25160
25161 #. type: textblock
25162 #: ../fish/guestfish-actions.pod:4150
25163 msgid ""
25164 "This is like the L</strings> command, but allows you to specify the encoding "
25165 "of strings that are looked for in the source file C<path>."
25166 msgstr ""
25167
25168 #. type: textblock
25169 #: ../fish/guestfish-actions.pod:4160
25170 msgid ""
25171 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
25172 "ISO-8859-X (this is what L</strings> uses)."
25173 msgstr ""
25174
25175 #. type: =head2
25176 #: ../fish/guestfish-actions.pod:4192
25177 msgid "swapoff-device"
25178 msgstr ""
25179
25180 #. type: verbatim
25181 #: ../fish/guestfish-actions.pod:4194
25182 #, no-wrap
25183 msgid ""
25184 " swapoff-device device\n"
25185 "\n"
25186 msgstr ""
25187
25188 #. type: textblock
25189 #: ../fish/guestfish-actions.pod:4196
25190 msgid ""
25191 "This command disables the libguestfs appliance swap device or partition "
25192 "named C<device>.  See L</swapon-device>."
25193 msgstr ""
25194
25195 #. type: =head2
25196 #: ../fish/guestfish-actions.pod:4200
25197 msgid "swapoff-file"
25198 msgstr ""
25199
25200 #. type: verbatim
25201 #: ../fish/guestfish-actions.pod:4202
25202 #, no-wrap
25203 msgid ""
25204 " swapoff-file file\n"
25205 "\n"
25206 msgstr ""
25207
25208 #. type: =head2
25209 #: ../fish/guestfish-actions.pod:4206
25210 msgid "swapoff-label"
25211 msgstr ""
25212
25213 #. type: verbatim
25214 #: ../fish/guestfish-actions.pod:4208
25215 #, no-wrap
25216 msgid ""
25217 " swapoff-label label\n"
25218 "\n"
25219 msgstr ""
25220
25221 #. type: =head2
25222 #: ../fish/guestfish-actions.pod:4213
25223 msgid "swapoff-uuid"
25224 msgstr ""
25225
25226 #. type: verbatim
25227 #: ../fish/guestfish-actions.pod:4215
25228 #, no-wrap
25229 msgid ""
25230 " swapoff-uuid uuid\n"
25231 "\n"
25232 msgstr ""
25233
25234 #. type: =head2
25235 #: ../fish/guestfish-actions.pod:4220
25236 msgid "swapon-device"
25237 msgstr ""
25238
25239 #. type: verbatim
25240 #: ../fish/guestfish-actions.pod:4222
25241 #, no-wrap
25242 msgid ""
25243 " swapon-device device\n"
25244 "\n"
25245 msgstr ""
25246
25247 #. type: textblock
25248 #: ../fish/guestfish-actions.pod:4224
25249 msgid ""
25250 "This command enables the libguestfs appliance to use the swap device or "
25251 "partition named C<device>.  The increased memory is made available for all "
25252 "commands, for example those run using L</command> or L</sh>."
25253 msgstr ""
25254
25255 #. type: =head2
25256 #: ../fish/guestfish-actions.pod:4236
25257 msgid "swapon-file"
25258 msgstr ""
25259
25260 #. type: verbatim
25261 #: ../fish/guestfish-actions.pod:4238
25262 #, no-wrap
25263 msgid ""
25264 " swapon-file file\n"
25265 "\n"
25266 msgstr ""
25267
25268 #. type: textblock
25269 #: ../fish/guestfish-actions.pod:4240
25270 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
25271 msgstr ""
25272
25273 #. type: =head2
25274 #: ../fish/guestfish-actions.pod:4243
25275 msgid "swapon-label"
25276 msgstr ""
25277
25278 #. type: verbatim
25279 #: ../fish/guestfish-actions.pod:4245
25280 #, no-wrap
25281 msgid ""
25282 " swapon-label label\n"
25283 "\n"
25284 msgstr ""
25285
25286 #. type: textblock
25287 #: ../fish/guestfish-actions.pod:4247
25288 msgid ""
25289 "This command enables swap to a labeled swap partition.  See "
25290 "L</swapon-device> for other notes."
25291 msgstr ""
25292
25293 #. type: =head2
25294 #: ../fish/guestfish-actions.pod:4250
25295 msgid "swapon-uuid"
25296 msgstr ""
25297
25298 #. type: verbatim
25299 #: ../fish/guestfish-actions.pod:4252
25300 #, no-wrap
25301 msgid ""
25302 " swapon-uuid uuid\n"
25303 "\n"
25304 msgstr ""
25305
25306 #. type: textblock
25307 #: ../fish/guestfish-actions.pod:4254
25308 msgid ""
25309 "This command enables swap to a swap partition with the given UUID.  See "
25310 "L</swapon-device> for other notes."
25311 msgstr ""
25312
25313 #. type: =head2
25314 #: ../fish/guestfish-actions.pod:4257
25315 msgid "sync"
25316 msgstr ""
25317
25318 #. type: verbatim
25319 #: ../fish/guestfish-actions.pod:4259
25320 #, no-wrap
25321 msgid ""
25322 " sync\n"
25323 "\n"
25324 msgstr ""
25325
25326 #. type: =head2
25327 #: ../fish/guestfish-actions.pod:4267
25328 msgid "tail"
25329 msgstr ""
25330
25331 #. type: verbatim
25332 #: ../fish/guestfish-actions.pod:4269
25333 #, no-wrap
25334 msgid ""
25335 " tail path\n"
25336 "\n"
25337 msgstr ""
25338
25339 #. type: =head2
25340 #: ../fish/guestfish-actions.pod:4277
25341 msgid "tail-n"
25342 msgstr ""
25343
25344 #. type: verbatim
25345 #: ../fish/guestfish-actions.pod:4279
25346 #, no-wrap
25347 msgid ""
25348 " tail-n nrlines path\n"
25349 "\n"
25350 msgstr ""
25351
25352 #. type: =head2
25353 #: ../fish/guestfish-actions.pod:4292
25354 msgid "tar-in"
25355 msgstr ""
25356
25357 #. type: verbatim
25358 #: ../fish/guestfish-actions.pod:4294
25359 #, no-wrap
25360 msgid ""
25361 " tar-in (tarfile|-) directory\n"
25362 "\n"
25363 msgstr ""
25364
25365 #. type: textblock
25366 #: ../fish/guestfish-actions.pod:4299
25367 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
25368 msgstr ""
25369
25370 #. type: =head2
25371 #: ../fish/guestfish-actions.pod:4304
25372 msgid "tar-out"
25373 msgstr ""
25374
25375 #. type: verbatim
25376 #: ../fish/guestfish-actions.pod:4306
25377 #, no-wrap
25378 msgid ""
25379 " tar-out directory (tarfile|-)\n"
25380 "\n"
25381 msgstr ""
25382
25383 #. type: textblock
25384 #: ../fish/guestfish-actions.pod:4311
25385 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
25386 msgstr ""
25387
25388 #. type: =head2
25389 #: ../fish/guestfish-actions.pod:4316
25390 msgid "tgz-in"
25391 msgstr ""
25392
25393 #. type: verbatim
25394 #: ../fish/guestfish-actions.pod:4318
25395 #, no-wrap
25396 msgid ""
25397 " tgz-in (tarball|-) directory\n"
25398 "\n"
25399 msgstr ""
25400
25401 #. type: textblock
25402 #: ../fish/guestfish-actions.pod:4323
25403 msgid "To upload an uncompressed tarball, use L</tar-in>."
25404 msgstr ""
25405
25406 #. type: =head2
25407 #: ../fish/guestfish-actions.pod:4327
25408 msgid "tgz-out"
25409 msgstr ""
25410
25411 #. type: verbatim
25412 #: ../fish/guestfish-actions.pod:4329
25413 #, no-wrap
25414 msgid ""
25415 " tgz-out directory (tarball|-)\n"
25416 "\n"
25417 msgstr ""
25418
25419 #. type: textblock
25420 #: ../fish/guestfish-actions.pod:4334
25421 msgid "To download an uncompressed tarball, use L</tar-out>."
25422 msgstr ""
25423
25424 #. type: =head2
25425 #: ../fish/guestfish-actions.pod:4338
25426 msgid "touch"
25427 msgstr ""
25428
25429 #. type: verbatim
25430 #: ../fish/guestfish-actions.pod:4340
25431 #, no-wrap
25432 msgid ""
25433 " touch path\n"
25434 "\n"
25435 msgstr ""
25436
25437 #. type: =head2
25438 #: ../fish/guestfish-actions.pod:4349
25439 msgid "truncate"
25440 msgstr ""
25441
25442 #. type: verbatim
25443 #: ../fish/guestfish-actions.pod:4351
25444 #, no-wrap
25445 msgid ""
25446 " truncate path\n"
25447 "\n"
25448 msgstr ""
25449
25450 #. type: =head2
25451 #: ../fish/guestfish-actions.pod:4356
25452 msgid "truncate-size"
25453 msgstr ""
25454
25455 #. type: verbatim
25456 #: ../fish/guestfish-actions.pod:4358
25457 #, no-wrap
25458 msgid ""
25459 " truncate-size path size\n"
25460 "\n"
25461 msgstr ""
25462
25463 #. type: textblock
25464 #: ../fish/guestfish-actions.pod:4363
25465 msgid ""
25466 "If the current file size is less than C<size> then the file is extended to "
25467 "the required size with zero bytes.  This creates a sparse file (ie. disk "
25468 "blocks are not allocated for the file until you write to it).  To create a "
25469 "non-sparse file of zeroes, use L</fallocate64> instead."
25470 msgstr ""
25471
25472 #. type: =head2
25473 #: ../fish/guestfish-actions.pod:4369
25474 msgid "tune2fs-l"
25475 msgstr ""
25476
25477 #. type: verbatim
25478 #: ../fish/guestfish-actions.pod:4371
25479 #, no-wrap
25480 msgid ""
25481 " tune2fs-l device\n"
25482 "\n"
25483 msgstr ""
25484
25485 #. type: =head2
25486 #: ../fish/guestfish-actions.pod:4381
25487 msgid "txz-in"
25488 msgstr ""
25489
25490 #. type: verbatim
25491 #: ../fish/guestfish-actions.pod:4383
25492 #, no-wrap
25493 msgid ""
25494 " txz-in (tarball|-) directory\n"
25495 "\n"
25496 msgstr ""
25497
25498 #. type: =head2
25499 #: ../fish/guestfish-actions.pod:4390
25500 msgid "txz-out"
25501 msgstr ""
25502
25503 #. type: verbatim
25504 #: ../fish/guestfish-actions.pod:4392
25505 #, no-wrap
25506 msgid ""
25507 " txz-out directory (tarball|-)\n"
25508 "\n"
25509 msgstr ""
25510
25511 #. type: =head2
25512 #: ../fish/guestfish-actions.pod:4399
25513 msgid "umask"
25514 msgstr ""
25515
25516 #. type: verbatim
25517 #: ../fish/guestfish-actions.pod:4401
25518 #, no-wrap
25519 msgid ""
25520 " umask mask\n"
25521 "\n"
25522 msgstr ""
25523
25524 #. type: textblock
25525 #: ../fish/guestfish-actions.pod:4415
25526 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
25527 msgstr ""
25528
25529 #. type: =head2
25530 #: ../fish/guestfish-actions.pod:4420
25531 msgid "umount"
25532 msgstr ""
25533
25534 #. type: =head2
25535 #: ../fish/guestfish-actions.pod:4422
25536 msgid "unmount"
25537 msgstr ""
25538
25539 #. type: verbatim
25540 #: ../fish/guestfish-actions.pod:4424
25541 #, no-wrap
25542 msgid ""
25543 " umount pathordevice\n"
25544 "\n"
25545 msgstr ""
25546
25547 #. type: =head2
25548 #: ../fish/guestfish-actions.pod:4430
25549 msgid "umount-all"
25550 msgstr ""
25551
25552 #. type: =head2
25553 #: ../fish/guestfish-actions.pod:4432
25554 msgid "unmount-all"
25555 msgstr ""
25556
25557 #. type: verbatim
25558 #: ../fish/guestfish-actions.pod:4434
25559 #, no-wrap
25560 msgid ""
25561 " umount-all\n"
25562 "\n"
25563 msgstr ""
25564
25565 #. type: =head2
25566 #: ../fish/guestfish-actions.pod:4440
25567 msgid "upload"
25568 msgstr ""
25569
25570 #. type: verbatim
25571 #: ../fish/guestfish-actions.pod:4442
25572 #, no-wrap
25573 msgid ""
25574 " upload (filename|-) remotefilename\n"
25575 "\n"
25576 msgstr ""
25577
25578 #. type: textblock
25579 #: ../fish/guestfish-actions.pod:4449
25580 msgid "See also L</download>."
25581 msgstr ""
25582
25583 #. type: =head2
25584 #: ../fish/guestfish-actions.pod:4453
25585 msgid "upload-offset"
25586 msgstr ""
25587
25588 #. type: verbatim
25589 #: ../fish/guestfish-actions.pod:4455
25590 #, no-wrap
25591 msgid ""
25592 " upload-offset (filename|-) remotefilename offset\n"
25593 "\n"
25594 msgstr ""
25595
25596 #. type: textblock
25597 #: ../fish/guestfish-actions.pod:4467
25598 msgid ""
25599 "Note that there is no limit on the amount of data that can be uploaded with "
25600 "this call, unlike with L</pwrite>, and this call always writes the full "
25601 "amount unless an error occurs."
25602 msgstr ""
25603
25604 #. type: textblock
25605 #: ../fish/guestfish-actions.pod:4472
25606 msgid "See also L</upload>, L</pwrite>."
25607 msgstr ""
25608
25609 #. type: =head2
25610 #: ../fish/guestfish-actions.pod:4476
25611 msgid "utimens"
25612 msgstr ""
25613
25614 #. type: verbatim
25615 #: ../fish/guestfish-actions.pod:4478
25616 #, no-wrap
25617 msgid ""
25618 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
25619 "\n"
25620 msgstr ""
25621
25622 #. type: =head2
25623 #: ../fish/guestfish-actions.pod:4497
25624 msgid "version"
25625 msgstr ""
25626
25627 #. type: verbatim
25628 #: ../fish/guestfish-actions.pod:4499
25629 #, no-wrap
25630 msgid ""
25631 " version\n"
25632 "\n"
25633 msgstr ""
25634
25635 #. type: textblock
25636 #: ../fish/guestfish-actions.pod:4526
25637 msgid ""
25638 "I<Note:> Don't use this call to test for availability of features.  In "
25639 "enterprise distributions we backport features from later versions into "
25640 "earlier versions, making this an unreliable way to test for features.  Use "
25641 "L</available> instead."
25642 msgstr ""
25643
25644 #. type: =head2
25645 #: ../fish/guestfish-actions.pod:4532
25646 msgid "vfs-label"
25647 msgstr ""
25648
25649 #. type: verbatim
25650 #: ../fish/guestfish-actions.pod:4534
25651 #, no-wrap
25652 msgid ""
25653 " vfs-label device\n"
25654 "\n"
25655 msgstr ""
25656
25657 #. type: textblock
25658 #: ../fish/guestfish-actions.pod:4541
25659 msgid "To find a filesystem from the label, use L</findfs-label>."
25660 msgstr ""
25661
25662 #. type: =head2
25663 #: ../fish/guestfish-actions.pod:4543
25664 msgid "vfs-type"
25665 msgstr ""
25666
25667 #. type: verbatim
25668 #: ../fish/guestfish-actions.pod:4545
25669 #, no-wrap
25670 msgid ""
25671 " vfs-type device\n"
25672 "\n"
25673 msgstr ""
25674
25675 #. type: =head2
25676 #: ../fish/guestfish-actions.pod:4555
25677 msgid "vfs-uuid"
25678 msgstr ""
25679
25680 #. type: verbatim
25681 #: ../fish/guestfish-actions.pod:4557
25682 #, no-wrap
25683 msgid ""
25684 " vfs-uuid device\n"
25685 "\n"
25686 msgstr ""
25687
25688 #. type: textblock
25689 #: ../fish/guestfish-actions.pod:4564
25690 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
25691 msgstr ""
25692
25693 #. type: =head2
25694 #: ../fish/guestfish-actions.pod:4566
25695 msgid "vg-activate"
25696 msgstr ""
25697
25698 #. type: verbatim
25699 #: ../fish/guestfish-actions.pod:4568
25700 #, no-wrap
25701 msgid ""
25702 " vg-activate true|false 'volgroups ...'\n"
25703 "\n"
25704 msgstr ""
25705
25706 #. type: =head2
25707 #: ../fish/guestfish-actions.pod:4581
25708 msgid "vg-activate-all"
25709 msgstr ""
25710
25711 #. type: verbatim
25712 #: ../fish/guestfish-actions.pod:4583
25713 #, no-wrap
25714 msgid ""
25715 " vg-activate-all true|false\n"
25716 "\n"
25717 msgstr ""
25718
25719 #. type: =head2
25720 #: ../fish/guestfish-actions.pod:4593
25721 msgid "vgcreate"
25722 msgstr ""
25723
25724 #. type: verbatim
25725 #: ../fish/guestfish-actions.pod:4595
25726 #, no-wrap
25727 msgid ""
25728 " vgcreate volgroup 'physvols ...'\n"
25729 "\n"
25730 msgstr ""
25731
25732 #. type: =head2
25733 #: ../fish/guestfish-actions.pod:4600
25734 msgid "vglvuuids"
25735 msgstr ""
25736
25737 #. type: verbatim
25738 #: ../fish/guestfish-actions.pod:4602
25739 #, no-wrap
25740 msgid ""
25741 " vglvuuids vgname\n"
25742 "\n"
25743 msgstr ""
25744
25745 #. type: textblock
25746 #: ../fish/guestfish-actions.pod:4607
25747 msgid ""
25748 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
25749 "logical volumes and volume groups."
25750 msgstr ""
25751
25752 #. type: textblock
25753 #: ../fish/guestfish-actions.pod:4610
25754 msgid "See also L</vgpvuuids>."
25755 msgstr ""
25756
25757 #. type: =head2
25758 #: ../fish/guestfish-actions.pod:4612
25759 msgid "vgpvuuids"
25760 msgstr ""
25761
25762 #. type: verbatim
25763 #: ../fish/guestfish-actions.pod:4614
25764 #, no-wrap
25765 msgid ""
25766 " vgpvuuids vgname\n"
25767 "\n"
25768 msgstr ""
25769
25770 #. type: textblock
25771 #: ../fish/guestfish-actions.pod:4619
25772 msgid ""
25773 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
25774 "physical volumes and volume groups."
25775 msgstr ""
25776
25777 #. type: textblock
25778 #: ../fish/guestfish-actions.pod:4622
25779 msgid "See also L</vglvuuids>."
25780 msgstr ""
25781
25782 #. type: =head2
25783 #: ../fish/guestfish-actions.pod:4624
25784 msgid "vgremove"
25785 msgstr ""
25786
25787 #. type: verbatim
25788 #: ../fish/guestfish-actions.pod:4626
25789 #, no-wrap
25790 msgid ""
25791 " vgremove vgname\n"
25792 "\n"
25793 msgstr ""
25794
25795 #. type: =head2
25796 #: ../fish/guestfish-actions.pod:4633
25797 msgid "vgrename"
25798 msgstr ""
25799
25800 #. type: verbatim
25801 #: ../fish/guestfish-actions.pod:4635
25802 #, no-wrap
25803 msgid ""
25804 " vgrename volgroup newvolgroup\n"
25805 "\n"
25806 msgstr ""
25807
25808 #. type: =head2
25809 #: ../fish/guestfish-actions.pod:4639
25810 msgid "vgs"
25811 msgstr ""
25812
25813 #. type: verbatim
25814 #: ../fish/guestfish-actions.pod:4641
25815 #, no-wrap
25816 msgid ""
25817 " vgs\n"
25818 "\n"
25819 msgstr ""
25820
25821 #. type: textblock
25822 #: ../fish/guestfish-actions.pod:4649
25823 msgid "See also L</vgs-full>."
25824 msgstr ""
25825
25826 #. type: =head2
25827 #: ../fish/guestfish-actions.pod:4651
25828 msgid "vgs-full"
25829 msgstr ""
25830
25831 #. type: verbatim
25832 #: ../fish/guestfish-actions.pod:4653
25833 #, no-wrap
25834 msgid ""
25835 " vgs-full\n"
25836 "\n"
25837 msgstr ""
25838
25839 #. type: =head2
25840 #: ../fish/guestfish-actions.pod:4658
25841 msgid "vgscan"
25842 msgstr ""
25843
25844 #. type: verbatim
25845 #: ../fish/guestfish-actions.pod:4660
25846 #, no-wrap
25847 msgid ""
25848 " vgscan\n"
25849 "\n"
25850 msgstr ""
25851
25852 #. type: =head2
25853 #: ../fish/guestfish-actions.pod:4665
25854 msgid "vguuid"
25855 msgstr ""
25856
25857 #. type: verbatim
25858 #: ../fish/guestfish-actions.pod:4667
25859 #, no-wrap
25860 msgid ""
25861 " vguuid vgname\n"
25862 "\n"
25863 msgstr ""
25864
25865 #. type: =head2
25866 #: ../fish/guestfish-actions.pod:4671
25867 msgid "wc-c"
25868 msgstr ""
25869
25870 #. type: verbatim
25871 #: ../fish/guestfish-actions.pod:4673
25872 #, no-wrap
25873 msgid ""
25874 " wc-c path\n"
25875 "\n"
25876 msgstr ""
25877
25878 #. type: =head2
25879 #: ../fish/guestfish-actions.pod:4678
25880 msgid "wc-l"
25881 msgstr ""
25882
25883 #. type: verbatim
25884 #: ../fish/guestfish-actions.pod:4680
25885 #, no-wrap
25886 msgid ""
25887 " wc-l path\n"
25888 "\n"
25889 msgstr ""
25890
25891 #. type: =head2
25892 #: ../fish/guestfish-actions.pod:4685
25893 msgid "wc-w"
25894 msgstr ""
25895
25896 #. type: verbatim
25897 #: ../fish/guestfish-actions.pod:4687
25898 #, no-wrap
25899 msgid ""
25900 " wc-w path\n"
25901 "\n"
25902 msgstr ""
25903
25904 #. type: =head2
25905 #: ../fish/guestfish-actions.pod:4692
25906 msgid "write"
25907 msgstr ""
25908
25909 #. type: verbatim
25910 #: ../fish/guestfish-actions.pod:4694
25911 #, no-wrap
25912 msgid ""
25913 " write path content\n"
25914 "\n"
25915 msgstr ""
25916
25917 #. type: =head2
25918 #: ../fish/guestfish-actions.pod:4702
25919 msgid "write-file"
25920 msgstr ""
25921
25922 #. type: verbatim
25923 #: ../fish/guestfish-actions.pod:4704
25924 #, no-wrap
25925 msgid ""
25926 " write-file path content size\n"
25927 "\n"
25928 msgstr ""
25929
25930 #. type: =head2
25931 #: ../fish/guestfish-actions.pod:4727
25932 msgid "zegrep"
25933 msgstr ""
25934
25935 #. type: verbatim
25936 #: ../fish/guestfish-actions.pod:4729
25937 #, no-wrap
25938 msgid ""
25939 " zegrep regex path\n"
25940 "\n"
25941 msgstr ""
25942
25943 #. type: =head2
25944 #: ../fish/guestfish-actions.pod:4737
25945 msgid "zegrepi"
25946 msgstr ""
25947
25948 #. type: verbatim
25949 #: ../fish/guestfish-actions.pod:4739
25950 #, no-wrap
25951 msgid ""
25952 " zegrepi regex path\n"
25953 "\n"
25954 msgstr ""
25955
25956 #. type: =head2
25957 #: ../fish/guestfish-actions.pod:4747
25958 msgid "zero"
25959 msgstr ""
25960
25961 #. type: verbatim
25962 #: ../fish/guestfish-actions.pod:4749
25963 #, no-wrap
25964 msgid ""
25965 " zero device\n"
25966 "\n"
25967 msgstr ""
25968
25969 #. type: textblock
25970 #: ../fish/guestfish-actions.pod:4757
25971 msgid "See also: L</zero-device>, L</scrub-device>."
25972 msgstr ""
25973
25974 #. type: =head2
25975 #: ../fish/guestfish-actions.pod:4759
25976 msgid "zero-device"
25977 msgstr ""
25978
25979 #. type: verbatim
25980 #: ../fish/guestfish-actions.pod:4761
25981 #, no-wrap
25982 msgid ""
25983 " zero-device device\n"
25984 "\n"
25985 msgstr ""
25986
25987 #. type: textblock
25988 #: ../fish/guestfish-actions.pod:4763
25989 msgid ""
25990 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
25991 "which just zeroes the first few blocks of a device."
25992 msgstr ""
25993
25994 #. type: =head2
25995 #: ../fish/guestfish-actions.pod:4770
25996 msgid "zerofree"
25997 msgstr ""
25998
25999 #. type: verbatim
26000 #: ../fish/guestfish-actions.pod:4772
26001 #, no-wrap
26002 msgid ""
26003 " zerofree device\n"
26004 "\n"
26005 msgstr ""
26006
26007 #. type: =head2
26008 #: ../fish/guestfish-actions.pod:4785
26009 msgid "zfgrep"
26010 msgstr ""
26011
26012 #. type: verbatim
26013 #: ../fish/guestfish-actions.pod:4787
26014 #, no-wrap
26015 msgid ""
26016 " zfgrep pattern path\n"
26017 "\n"
26018 msgstr ""
26019
26020 #. type: =head2
26021 #: ../fish/guestfish-actions.pod:4795
26022 msgid "zfgrepi"
26023 msgstr ""
26024
26025 #. type: verbatim
26026 #: ../fish/guestfish-actions.pod:4797
26027 #, no-wrap
26028 msgid ""
26029 " zfgrepi pattern path\n"
26030 "\n"
26031 msgstr ""
26032
26033 #. type: =head2
26034 #: ../fish/guestfish-actions.pod:4805
26035 msgid "zfile"
26036 msgstr ""
26037
26038 #. type: verbatim
26039 #: ../fish/guestfish-actions.pod:4807
26040 #, no-wrap
26041 msgid ""
26042 " zfile meth path\n"
26043 "\n"
26044 msgstr ""
26045
26046 #. type: textblock
26047 #: ../fish/guestfish-actions.pod:4814
26048 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
26049 msgstr ""
26050
26051 #. type: =head2
26052 #: ../fish/guestfish-actions.pod:4824
26053 msgid "zgrep"
26054 msgstr ""
26055
26056 #. type: verbatim
26057 #: ../fish/guestfish-actions.pod:4826
26058 #, no-wrap
26059 msgid ""
26060 " zgrep regex path\n"
26061 "\n"
26062 msgstr ""
26063
26064 #. type: =head2
26065 #: ../fish/guestfish-actions.pod:4834
26066 msgid "zgrepi"
26067 msgstr ""
26068
26069 #. type: verbatim
26070 #: ../fish/guestfish-actions.pod:4836
26071 #, no-wrap
26072 msgid ""
26073 " zgrepi regex path\n"
26074 "\n"
26075 msgstr ""
26076
26077 #. type: =head2
26078 #: ../fish/guestfish-commands.pod:1
26079 msgid "alloc"
26080 msgstr ""
26081
26082 #. type: =head2
26083 #: ../fish/guestfish-commands.pod:3
26084 msgid "allocate"
26085 msgstr ""
26086
26087 #. type: verbatim
26088 #: ../fish/guestfish-commands.pod:5
26089 #, no-wrap
26090 msgid ""
26091 " alloc filename size\n"
26092 "\n"
26093 msgstr ""
26094
26095 #. type: textblock
26096 #: ../fish/guestfish-commands.pod:7
26097 msgid ""
26098 "This creates an empty (zeroed) file of the given size, and then adds so it "
26099 "can be further examined."
26100 msgstr ""
26101
26102 #. type: textblock
26103 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
26104 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
26105 msgstr ""
26106
26107 #. type: textblock
26108 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
26109 msgid "Size can be specified using standard suffixes, eg. C<1M>."
26110 msgstr ""
26111
26112 #. type: textblock
26113 #: ../fish/guestfish-commands.pod:14
26114 msgid ""
26115 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
26116 "image, see L</PREPARED DISK IMAGES>."
26117 msgstr ""
26118
26119 #. type: =head2
26120 #: ../fish/guestfish-commands.pod:17
26121 msgid "copy-in"
26122 msgstr ""
26123
26124 #. type: verbatim
26125 #: ../fish/guestfish-commands.pod:19
26126 #, no-wrap
26127 msgid ""
26128 " copy-in local [local ...] /remotedir\n"
26129 "\n"
26130 msgstr ""
26131
26132 #. type: textblock
26133 #: ../fish/guestfish-commands.pod:21
26134 msgid ""
26135 "C<copy-in> copies local files or directories recursively into the disk "
26136 "image, placing them in the directory called C</remotedir> (which must "
26137 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
26138 "other commands as necessary."
26139 msgstr ""
26140
26141 #. type: textblock
26142 #: ../fish/guestfish-commands.pod:26
26143 msgid ""
26144 "Multiple local files and directories can be specified, but the last "
26145 "parameter must always be a remote directory.  Wildcards cannot be used."
26146 msgstr ""
26147
26148 #. type: =head2
26149 #: ../fish/guestfish-commands.pod:30
26150 msgid "copy-out"
26151 msgstr ""
26152
26153 #. type: verbatim
26154 #: ../fish/guestfish-commands.pod:32
26155 #, no-wrap
26156 msgid ""
26157 " copy-out remote [remote ...] localdir\n"
26158 "\n"
26159 msgstr ""
26160
26161 #. type: textblock
26162 #: ../fish/guestfish-commands.pod:34
26163 msgid ""
26164 "C<copy-out> copies remote files or directories recursively out of the disk "
26165 "image, placing them on the host disk in a local directory called C<localdir> "
26166 "(which must exist).  This guestfish meta-command turns into a sequence of "
26167 "L</download>, L</tar-out> and other commands as necessary."
26168 msgstr ""
26169
26170 #. type: textblock
26171 #: ../fish/guestfish-commands.pod:40
26172 msgid ""
26173 "Multiple remote files and directories can be specified, but the last "
26174 "parameter must always be a local directory.  To download to the current "
26175 "directory, use C<.> as in:"
26176 msgstr ""
26177
26178 #. type: verbatim
26179 #: ../fish/guestfish-commands.pod:44
26180 #, no-wrap
26181 msgid ""
26182 " copy-out /home .\n"
26183 "\n"
26184 msgstr ""
26185
26186 #. type: textblock
26187 #: ../fish/guestfish-commands.pod:46
26188 msgid ""
26189 "Wildcards cannot be used in the ordinary command, but you can use them with "
26190 "the help of L</glob> like this:"
26191 msgstr ""
26192
26193 #. type: verbatim
26194 #: ../fish/guestfish-commands.pod:49
26195 #, no-wrap
26196 msgid ""
26197 " glob copy-out /home/* .\n"
26198 "\n"
26199 msgstr ""
26200
26201 #. type: =head2
26202 #: ../fish/guestfish-commands.pod:51
26203 msgid "echo"
26204 msgstr ""
26205
26206 #. type: verbatim
26207 #: ../fish/guestfish-commands.pod:53
26208 #, no-wrap
26209 msgid ""
26210 " echo [params ...]\n"
26211 "\n"
26212 msgstr ""
26213
26214 #. type: textblock
26215 #: ../fish/guestfish-commands.pod:55
26216 msgid "This echos the parameters to the terminal."
26217 msgstr ""
26218
26219 #. type: =head2
26220 #: ../fish/guestfish-commands.pod:57
26221 msgid "edit"
26222 msgstr ""
26223
26224 #. type: =head2
26225 #: ../fish/guestfish-commands.pod:59
26226 msgid "vi"
26227 msgstr ""
26228
26229 #. type: =head2
26230 #: ../fish/guestfish-commands.pod:61
26231 msgid "emacs"
26232 msgstr ""
26233
26234 #. type: verbatim
26235 #: ../fish/guestfish-commands.pod:63
26236 #, no-wrap
26237 msgid ""
26238 " edit filename\n"
26239 "\n"
26240 msgstr ""
26241
26242 #. type: textblock
26243 #: ../fish/guestfish-commands.pod:65
26244 msgid ""
26245 "This is used to edit a file.  It downloads the file, edits it locally using "
26246 "your editor, then uploads the result."
26247 msgstr ""
26248
26249 #. type: textblock
26250 #: ../fish/guestfish-commands.pod:68
26251 msgid ""
26252 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
26253 "or C<emacs> you will get those corresponding editors."
26254 msgstr ""
26255
26256 #. type: =head2
26257 #: ../fish/guestfish-commands.pod:72
26258 msgid "glob"
26259 msgstr ""
26260
26261 #. type: verbatim
26262 #: ../fish/guestfish-commands.pod:74
26263 #, no-wrap
26264 msgid ""
26265 " glob command args...\n"
26266 "\n"
26267 msgstr ""
26268
26269 #. type: textblock
26270 #: ../fish/guestfish-commands.pod:76
26271 msgid ""
26272 "Expand wildcards in any paths in the args list, and run C<command> "
26273 "repeatedly on each matching path."
26274 msgstr ""
26275
26276 #. type: textblock
26277 #: ../fish/guestfish-commands.pod:79
26278 msgid "See L</WILDCARDS AND GLOBBING>."
26279 msgstr ""
26280
26281 #. type: =head2
26282 #: ../fish/guestfish-commands.pod:81
26283 msgid "hexedit"
26284 msgstr ""
26285
26286 #. type: verbatim
26287 #: ../fish/guestfish-commands.pod:83
26288 #, no-wrap
26289 msgid ""
26290 " hexedit <filename|device>\n"
26291 " hexedit <filename|device> <max>\n"
26292 " hexedit <filename|device> <start> <max>\n"
26293 "\n"
26294 msgstr ""
26295
26296 #. type: textblock
26297 #: ../fish/guestfish-commands.pod:87
26298 msgid ""
26299 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
26300 "device."
26301 msgstr ""
26302
26303 #. type: textblock
26304 #: ../fish/guestfish-commands.pod:90
26305 msgid ""
26306 "This command works by downloading potentially the whole file or device, "
26307 "editing it locally, then uploading it.  If the file or device is large, you "
26308 "have to specify which part you wish to edit by using C<max> and/or C<start> "
26309 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
26310 "usual modifiers allowed such as C<1M> (1 megabyte)."
26311 msgstr ""
26312
26313 #. type: textblock
26314 #: ../fish/guestfish-commands.pod:97
26315 msgid "For example to edit the first few sectors of a disk you might do:"
26316 msgstr ""
26317
26318 #. type: verbatim
26319 #: ../fish/guestfish-commands.pod:100
26320 #, no-wrap
26321 msgid ""
26322 " hexedit /dev/sda 1M\n"
26323 "\n"
26324 msgstr ""
26325
26326 #. type: textblock
26327 #: ../fish/guestfish-commands.pod:102
26328 msgid ""
26329 "which would allow you to edit anywhere within the first megabyte of the "
26330 "disk."
26331 msgstr ""
26332
26333 #. type: textblock
26334 #: ../fish/guestfish-commands.pod:105
26335 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
26336 msgstr ""
26337
26338 #. type: verbatim
26339 #: ../fish/guestfish-commands.pod:107
26340 #, no-wrap
26341 msgid ""
26342 " hexedit /dev/sda1 0x400 0x400\n"
26343 "\n"
26344 msgstr ""
26345
26346 #. type: textblock
26347 #: ../fish/guestfish-commands.pod:109
26348 msgid "(assuming the superblock is in the standard location)."
26349 msgstr ""
26350
26351 #. type: textblock
26352 #: ../fish/guestfish-commands.pod:111
26353 msgid ""
26354 "This command requires the external L<hexedit(1)> program.  You can specify "
26355 "another program to use by setting the C<HEXEDITOR> environment variable."
26356 msgstr ""
26357
26358 #. type: textblock
26359 #: ../fish/guestfish-commands.pod:115
26360 msgid "See also L</hexdump>."
26361 msgstr ""
26362
26363 #. type: =head2
26364 #: ../fish/guestfish-commands.pod:117
26365 msgid "lcd"
26366 msgstr ""
26367
26368 #. type: verbatim
26369 #: ../fish/guestfish-commands.pod:119
26370 #, no-wrap
26371 msgid ""
26372 " lcd directory\n"
26373 "\n"
26374 msgstr ""
26375
26376 #. type: textblock
26377 #: ../fish/guestfish-commands.pod:121
26378 msgid "Change the local directory, ie. the current directory of guestfish itself."
26379 msgstr ""
26380
26381 #. type: textblock
26382 #: ../fish/guestfish-commands.pod:124
26383 msgid "Note that C<!cd> won't do what you might expect."
26384 msgstr ""
26385
26386 #. type: =head2
26387 #: ../fish/guestfish-commands.pod:126
26388 msgid "man"
26389 msgstr ""
26390
26391 #. type: =head2
26392 #: ../fish/guestfish-commands.pod:128
26393 msgid "manual"
26394 msgstr ""
26395
26396 #. type: verbatim
26397 #: ../fish/guestfish-commands.pod:130
26398 #, no-wrap
26399 msgid ""
26400 "  man\n"
26401 "\n"
26402 msgstr ""
26403
26404 #. type: textblock
26405 #: ../fish/guestfish-commands.pod:132
26406 msgid "Opens the manual page for guestfish."
26407 msgstr ""
26408
26409 #. type: =head2
26410 #: ../fish/guestfish-commands.pod:134
26411 msgid "more"
26412 msgstr ""
26413
26414 #. type: =head2
26415 #: ../fish/guestfish-commands.pod:136
26416 msgid "less"
26417 msgstr ""
26418
26419 #. type: verbatim
26420 #: ../fish/guestfish-commands.pod:138
26421 #, no-wrap
26422 msgid ""
26423 " more filename\n"
26424 "\n"
26425 msgstr ""
26426
26427 #. type: verbatim
26428 #: ../fish/guestfish-commands.pod:140
26429 #, no-wrap
26430 msgid ""
26431 " less filename\n"
26432 "\n"
26433 msgstr ""
26434
26435 #. type: textblock
26436 #: ../fish/guestfish-commands.pod:142
26437 msgid "This is used to view a file."
26438 msgstr ""
26439
26440 #. type: textblock
26441 #: ../fish/guestfish-commands.pod:144
26442 msgid ""
26443 "The default viewer is C<$PAGER>.  However if you use the alternate command "
26444 "C<less> you will get the C<less> command specifically."
26445 msgstr ""
26446
26447 #. type: =head2
26448 #: ../fish/guestfish-commands.pod:147
26449 msgid "reopen"
26450 msgstr ""
26451
26452 #. type: verbatim
26453 #: ../fish/guestfish-commands.pod:149
26454 #, no-wrap
26455 msgid ""
26456 "  reopen\n"
26457 "\n"
26458 msgstr ""
26459
26460 #. type: textblock
26461 #: ../fish/guestfish-commands.pod:151
26462 msgid ""
26463 "Close and reopen the libguestfs handle.  It is not necessary to use this "
26464 "normally, because the handle is closed properly when guestfish exits.  "
26465 "However this is occasionally useful for testing."
26466 msgstr ""
26467
26468 #. type: =head2
26469 #: ../fish/guestfish-commands.pod:155
26470 msgid "sparse"
26471 msgstr ""
26472
26473 #. type: verbatim
26474 #: ../fish/guestfish-commands.pod:157
26475 #, no-wrap
26476 msgid ""
26477 " sparse filename size\n"
26478 "\n"
26479 msgstr ""
26480
26481 #. type: textblock
26482 #: ../fish/guestfish-commands.pod:159
26483 msgid ""
26484 "This creates an empty sparse file of the given size, and then adds so it can "
26485 "be further examined."
26486 msgstr ""
26487
26488 #. type: textblock
26489 #: ../fish/guestfish-commands.pod:162
26490 msgid ""
26491 "In all respects it works the same as the L</alloc> command, except that the "
26492 "image file is allocated sparsely, which means that disk blocks are not "
26493 "assigned to the file until they are needed.  Sparse disk files only use "
26494 "space when written to, but they are slower and there is a danger you could "
26495 "run out of real disk space during a write operation."
26496 msgstr ""
26497
26498 #. type: =head2
26499 #: ../fish/guestfish-commands.pod:172
26500 msgid "supported"
26501 msgstr ""
26502
26503 #. type: verbatim
26504 #: ../fish/guestfish-commands.pod:174
26505 #, no-wrap
26506 msgid ""
26507 " supported\n"
26508 "\n"
26509 msgstr ""
26510
26511 #. type: textblock
26512 #: ../fish/guestfish-commands.pod:176
26513 msgid ""
26514 "This command returns a list of the optional groups known to the daemon, and "
26515 "indicates which ones are supported by this build of the libguestfs "
26516 "appliance."
26517 msgstr ""
26518
26519 #. type: textblock
26520 #: ../fish/guestfish-commands.pod:180
26521 msgid "See also L<guestfs(3)/AVAILABILITY>."
26522 msgstr ""
26523
26524 #. type: =head2
26525 #: ../fish/guestfish-commands.pod:182
26526 msgid "time"
26527 msgstr ""
26528
26529 #. type: verbatim
26530 #: ../fish/guestfish-commands.pod:184
26531 #, no-wrap
26532 msgid ""
26533 " time command args...\n"
26534 "\n"
26535 msgstr ""
26536
26537 #. type: textblock
26538 #: ../fish/guestfish-commands.pod:186
26539 msgid ""
26540 "Run the command as usual, but print the elapsed time afterwards.  This can "
26541 "be useful for benchmarking operations."
26542 msgstr ""
26543
26544 #. type: textblock
26545 #: ../test-tool/libguestfs-test-tool.pod:5
26546 msgid "libguestfs-test-tool - End user tests for libguestfs"
26547 msgstr ""
26548
26549 #. type: verbatim
26550 #: ../test-tool/libguestfs-test-tool.pod:9
26551 #, no-wrap
26552 msgid ""
26553 " libguestfs-test-tool [--options]\n"
26554 "\n"
26555 msgstr ""
26556
26557 #. type: textblock
26558 #: ../test-tool/libguestfs-test-tool.pod:13
26559 msgid ""
26560 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
26561 "and developers, to allow them to check basic libguestfs functionality is "
26562 "working.  This is needed because libguestfs occasionally breaks for reasons "
26563 "beyond our control: usually because of changes in the underlying qemu or "
26564 "kernel packages, or the host environment."
26565 msgstr ""
26566
26567 #. type: textblock
26568 #: ../test-tool/libguestfs-test-tool.pod:20
26569 msgid "If you suspect a problem in libguestfs, then just run:"
26570 msgstr ""
26571
26572 #. type: verbatim
26573 #: ../test-tool/libguestfs-test-tool.pod:22
26574 #, no-wrap
26575 msgid ""
26576 " libguestfs-test-tool\n"
26577 "\n"
26578 msgstr ""
26579
26580 #. type: textblock
26581 #: ../test-tool/libguestfs-test-tool.pod:24
26582 msgid "It will print lots of diagnostic messages."
26583 msgstr ""
26584
26585 #. type: textblock
26586 #: ../test-tool/libguestfs-test-tool.pod:26
26587 msgid "If it runs to completion successfully, you will see this near the end:"
26588 msgstr ""
26589
26590 #. type: verbatim
26591 #: ../test-tool/libguestfs-test-tool.pod:28
26592 #, no-wrap
26593 msgid ""
26594 " ===== TEST FINISHED OK =====\n"
26595 "\n"
26596 msgstr ""
26597
26598 #. type: textblock
26599 #: ../test-tool/libguestfs-test-tool.pod:30
26600 msgid "and the test tool will exit with code 0."
26601 msgstr ""
26602
26603 #. type: textblock
26604 #: ../test-tool/libguestfs-test-tool.pod:32
26605 msgid ""
26606 "If it fails (and/or exits with non-zero error code), please paste the "
26607 "B<complete, unedited> output of the test tool into a bug report.  More "
26608 "information about reporting bugs can be found on the "
26609 "L<http://libguestfs.org/> website."
26610 msgstr ""
26611
26612 #. type: =item
26613 #: ../test-tool/libguestfs-test-tool.pod:41
26614 msgid "I<--help>"
26615 msgstr ""
26616
26617 #. type: textblock
26618 #: ../test-tool/libguestfs-test-tool.pod:43
26619 msgid "Display short usage information and exit."
26620 msgstr ""
26621
26622 #. type: =item
26623 #: ../test-tool/libguestfs-test-tool.pod:45
26624 msgid "I<--helper /path/to/libguestfs-test-tool-helper>"
26625 msgstr ""
26626
26627 #. type: textblock
26628 #: ../test-tool/libguestfs-test-tool.pod:47
26629 msgid ""
26630 "Pass an alternate name for the helper program.  libguestfs-test-tool will "
26631 "normally look in the C<$libexec> directory that was configured when the tool "
26632 "was built."
26633 msgstr ""
26634
26635 #. type: =item
26636 #: ../test-tool/libguestfs-test-tool.pod:51
26637 msgid "I<--qemu qemu_binary>"
26638 msgstr ""
26639
26640 #. type: textblock
26641 #: ../test-tool/libguestfs-test-tool.pod:53
26642 msgid ""
26643 "If you have downloaded another qemu binary, point this option at the full "
26644 "path of the binary to try it."
26645 msgstr ""
26646
26647 #. type: =item
26648 #: ../test-tool/libguestfs-test-tool.pod:56
26649 msgid "I<--qemudir qemu_source_dir>"
26650 msgstr ""
26651
26652 #. type: textblock
26653 #: ../test-tool/libguestfs-test-tool.pod:58
26654 msgid ""
26655 "If you have compiled qemu from source, point this option at the source "
26656 "directory to try it."
26657 msgstr ""
26658
26659 #. type: =item
26660 #: ../test-tool/libguestfs-test-tool.pod:61
26661 msgid "I<--timeout N>"
26662 msgstr ""
26663
26664 #. type: textblock
26665 #: ../test-tool/libguestfs-test-tool.pod:63
26666 msgid ""
26667 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
26668 "does not usually need to be adjusted unless your machine is very slow."
26669 msgstr ""
26670
26671 #. type: =head1
26672 #: ../test-tool/libguestfs-test-tool.pod:69
26673 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
26674 msgstr ""
26675
26676 #. type: textblock
26677 #: ../test-tool/libguestfs-test-tool.pod:71
26678 msgid ""
26679 "If you have compiled another version of qemu from source and would like to "
26680 "try that, then you can use the I<--qemudir> option to point to the qemu "
26681 "source directory."
26682 msgstr ""
26683
26684 #. type: textblock
26685 #: ../test-tool/libguestfs-test-tool.pod:75
26686 msgid ""
26687 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
26688 "option to point to the binary."
26689 msgstr ""
26690
26691 #. type: textblock
26692 #: ../test-tool/libguestfs-test-tool.pod:78
26693 msgid ""
26694 "When using an alternate qemu with libguestfs, usually you would need to "
26695 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
26696 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
26697 "when you use either of the I<--qemudir> or I<--qemu> options."
26698 msgstr ""
26699
26700 #. type: textblock
26701 #: ../test-tool/libguestfs-test-tool.pod:85
26702 msgid ""
26703 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
26704 "I<1> if there was an error."
26705 msgstr ""
26706
26707 #. type: =item
26708 #: ../test-tool/libguestfs-test-tool.pod:92
26709 msgid "/usr/libexec/libguestfs-test-tool-helper"
26710 msgstr ""
26711
26712 #. type: textblock
26713 #: ../test-tool/libguestfs-test-tool.pod:94
26714 msgid ""
26715 "This helper program is run inside the appliance and provides additional "
26716 "tests."
26717 msgstr ""
26718
26719 #. type: =item
26720 #: ../test-tool/libguestfs-test-tool.pod:97
26721 msgid "/usr/bin/mkisofs"
26722 msgstr ""
26723
26724 #. type: textblock
26725 #: ../test-tool/libguestfs-test-tool.pod:99
26726 msgid ""
26727 "The C<mkisofs> command is required in order to construct a CD-ROM ISO file "
26728 "which is used as part of the tests."
26729 msgstr ""
26730
26731 #. type: textblock
26732 #: ../test-tool/libguestfs-test-tool.pod:106
26733 msgid ""
26734 "For the full list of environment variables which may affect libguestfs, "
26735 "please see the L<guestfs(3)> manual page."
26736 msgstr ""
26737
26738 #. type: textblock
26739 #: ../test-tool/libguestfs-test-tool.pod:111
26740 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
26741 msgstr ""
26742
26743 #. type: textblock
26744 #: ../test-tool/libguestfs-test-tool.pod:121
26745 msgid "Copyright (C) 2009 Red Hat Inc.  L<http://libguestfs.org/>"
26746 msgstr ""
26747
26748 #. type: textblock
26749 #: ../fuse/guestmount.pod:5
26750 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
26751 msgstr ""
26752
26753 #. type: verbatim
26754 #: ../fuse/guestmount.pod:9
26755 #, no-wrap
26756 msgid ""
26757 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
26758 "\n"
26759 msgstr ""
26760
26761 #. type: verbatim
26762 #: ../fuse/guestmount.pod:11
26763 #, no-wrap
26764 msgid ""
26765 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
26766 "\n"
26767 msgstr ""
26768
26769 #. type: verbatim
26770 #: ../fuse/guestmount.pod:13
26771 #, no-wrap
26772 msgid ""
26773 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
26774 "\n"
26775 msgstr ""
26776
26777 #. type: textblock
26778 #: ../fuse/guestmount.pod:17
26779 msgid ""
26780 "You must I<not> use C<guestmount> in read-write mode on live virtual "
26781 "machines.  If you do this, you risk disk corruption in the VM."
26782 msgstr ""
26783
26784 #. type: textblock
26785 #: ../fuse/guestmount.pod:22
26786 msgid ""
26787 "The guestmount program can be used to mount virtual machine filesystems and "
26788 "other disk images on the host.  It uses libguestfs for access to the guest "
26789 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
26790 "a mountable device."
26791 msgstr ""
26792
26793 #. type: textblock
26794 #: ../fuse/guestmount.pod:27
26795 msgid ""
26796 "Along with other options, you have to give at least one device (I<-a> "
26797 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
26798 "option) or use the I<-i> inspection option.  How this works is better "
26799 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
26800 "below."
26801 msgstr ""
26802
26803 #. type: textblock
26804 #: ../fuse/guestmount.pod:33
26805 msgid ""
26806 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
26807 "by you, and the filesystem will not be visible to any other users unless you "
26808 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
26809 "the filesystem, use the C<fusermount -u> command."
26810 msgstr ""
26811
26812 #. type: textblock
26813 #: ../fuse/guestmount.pod:41
26814 msgid ""
26815 "For a typical Windows guest which has its main filesystem on the first "
26816 "partition:"
26817 msgstr ""
26818
26819 #. type: verbatim
26820 #: ../fuse/guestmount.pod:44
26821 #, no-wrap
26822 msgid ""
26823 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
26824 "\n"
26825 msgstr ""
26826
26827 #. type: textblock
26828 #: ../fuse/guestmount.pod:46
26829 msgid ""
26830 "For a typical Linux guest which has a /boot filesystem on the first "
26831 "partition, and the root filesystem on a logical volume:"
26832 msgstr ""
26833
26834 #. type: verbatim
26835 #: ../fuse/guestmount.pod:49
26836 #, no-wrap
26837 msgid ""
26838 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
26839 "\n"
26840 msgstr ""
26841
26842 #. type: textblock
26843 #: ../fuse/guestmount.pod:51
26844 msgid "To get libguestfs to detect guest mountpoints for you:"
26845 msgstr ""
26846
26847 #. type: verbatim
26848 #: ../fuse/guestmount.pod:53
26849 #, no-wrap
26850 msgid ""
26851 " guestmount -a guest.img -i --ro /mnt\n"
26852 "\n"
26853 msgstr ""
26854
26855 #. type: textblock
26856 #: ../fuse/guestmount.pod:55
26857 msgid "For a libvirt guest called \"Guest\" you could do:"
26858 msgstr ""
26859
26860 #. type: verbatim
26861 #: ../fuse/guestmount.pod:57
26862 #, no-wrap
26863 msgid ""
26864 " guestmount -d Guest -i --ro /mnt\n"
26865 "\n"
26866 msgstr ""
26867
26868 #. type: textblock
26869 #: ../fuse/guestmount.pod:59
26870 msgid ""
26871 "If you don't know what filesystems are contained in a guest or disk image, "
26872 "use L<virt-filesystems(1)> first:"
26873 msgstr ""
26874
26875 #. type: verbatim
26876 #: ../fuse/guestmount.pod:62
26877 #, no-wrap
26878 msgid ""
26879 " virt-filesystems MyGuest\n"
26880 "\n"
26881 msgstr ""
26882
26883 #. type: textblock
26884 #: ../fuse/guestmount.pod:64
26885 msgid ""
26886 "If you want to trace the libguestfs calls but without excessive debugging "
26887 "information, we recommend:"
26888 msgstr ""
26889
26890 #. type: verbatim
26891 #: ../fuse/guestmount.pod:67
26892 #, no-wrap
26893 msgid ""
26894 " guestmount [...] --trace /mnt\n"
26895 "\n"
26896 msgstr ""
26897
26898 #. type: textblock
26899 #: ../fuse/guestmount.pod:69
26900 msgid "If you want to debug the program, we recommend:"
26901 msgstr ""
26902
26903 #. type: verbatim
26904 #: ../fuse/guestmount.pod:71
26905 #, no-wrap
26906 msgid ""
26907 " guestmount [...] --trace --verbose /mnt\n"
26908 "\n"
26909 msgstr ""
26910
26911 #. type: =item
26912 #: ../fuse/guestmount.pod:77
26913 msgid "B<-a image> | B<--add image>"
26914 msgstr ""
26915
26916 #. type: textblock
26917 #: ../fuse/guestmount.pod:79
26918 msgid "Add a block device or virtual machine image."
26919 msgstr ""
26920
26921 #. type: =item
26922 #: ../fuse/guestmount.pod:84
26923 msgid "B<-c URI> | B<--connect URI>"
26924 msgstr ""
26925
26926 #. type: =item
26927 #: ../fuse/guestmount.pod:90
26928 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
26929 msgstr ""
26930
26931 #. type: =item
26932 #: ../fuse/guestmount.pod:96
26933 msgid "B<--dir-cache-timeout N>"
26934 msgstr ""
26935
26936 #. type: textblock
26937 #: ../fuse/guestmount.pod:98
26938 msgid ""
26939 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
26940 "seconds.  The readdir cache [actually, there are several semi-independent "
26941 "caches] is populated after a readdir(2) call with the stat and extended "
26942 "attributes of the files in the directory, in anticipation that they will be "
26943 "requested soon after."
26944 msgstr ""
26945
26946 #. type: textblock
26947 #: ../fuse/guestmount.pod:104
26948 msgid ""
26949 "There is also a different attribute cache implemented by FUSE (see the FUSE "
26950 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
26951 "requests, only cache existing ones."
26952 msgstr ""
26953
26954 #. type: =item
26955 #: ../fuse/guestmount.pod:115
26956 msgid "B<--format=raw|qcow2|..> | B<--format>"
26957 msgstr ""
26958
26959 #. type: textblock
26960 #: ../fuse/guestmount.pod:122
26961 msgid ""
26962 "If you have untrusted raw-format guest disk images, you should use this "
26963 "option to specify the disk format.  This avoids a possible security problem "
26964 "with malicious guests (CVE-2010-3851).  See also "
26965 "L<guestfs(3)/guestfs_add_drive_opts>."
26966 msgstr ""
26967
26968 #. type: =item
26969 #: ../fuse/guestmount.pod:127
26970 msgid "B<--fuse-help>"
26971 msgstr ""
26972
26973 #. type: textblock
26974 #: ../fuse/guestmount.pod:129
26975 msgid "Display help on special FUSE options (see I<-o> below)."
26976 msgstr ""
26977
26978 #. type: textblock
26979 #: ../fuse/guestmount.pod:133
26980 msgid "Display brief help and exit."
26981 msgstr ""
26982
26983 #. type: =item
26984 #: ../fuse/guestmount.pod:135
26985 msgid "B<-i> | B<--inspector>"
26986 msgstr ""
26987
26988 #. type: =item
26989 #: ../fuse/guestmount.pod:146
26990 msgid "B<-m dev[:mnt]> | B<--mount dev[:mnt]>"
26991 msgstr ""
26992
26993 #. type: textblock
26994 #: ../fuse/guestmount.pod:148
26995 msgid ""
26996 "Mount the named partition or logical volume on the given mountpoint B<in the "
26997 "guest> (this has nothing to do with mountpoints in the host)."
26998 msgstr ""
26999
27000 #. type: textblock
27001 #: ../fuse/guestmount.pod:151
27002 msgid ""
27003 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
27004 "something on C</>."
27005 msgstr ""
27006
27007 #. type: =item
27008 #: ../fuse/guestmount.pod:154
27009 msgid "B<-n> | B<--no-sync>"
27010 msgstr ""
27011
27012 #. type: textblock
27013 #: ../fuse/guestmount.pod:156
27014 msgid ""
27015 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
27016 "unmounted.  If you specify this option, then we don't attempt to sync the "
27017 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
27018 msgstr ""
27019
27020 #. type: =item
27021 #: ../fuse/guestmount.pod:161
27022 msgid "B<-o option> | B<--option option>"
27023 msgstr ""
27024
27025 #. type: textblock
27026 #: ../fuse/guestmount.pod:163
27027 msgid "Pass extra options to FUSE."
27028 msgstr ""
27029
27030 #. type: textblock
27031 #: ../fuse/guestmount.pod:165
27032 msgid ""
27033 "To get a list of all the extra options supported by FUSE, use the command "
27034 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
27035 "of them are a good idea."
27036 msgstr ""
27037
27038 #. type: verbatim
27039 #: ../fuse/guestmount.pod:169
27040 #, no-wrap
27041 msgid ""
27042 " guestmount --fuse-help\n"
27043 "\n"
27044 msgstr ""
27045
27046 #. type: textblock
27047 #: ../fuse/guestmount.pod:171
27048 msgid "Some potentially useful FUSE options:"
27049 msgstr ""
27050
27051 #. type: =item
27052 #: ../fuse/guestmount.pod:175
27053 msgid "B<-o allow_other>"
27054 msgstr ""
27055
27056 #. type: textblock
27057 #: ../fuse/guestmount.pod:177
27058 msgid "Allow other users to see the filesystem."
27059 msgstr ""
27060
27061 #. type: =item
27062 #: ../fuse/guestmount.pod:179
27063 msgid "B<-o attr_timeout=N>"
27064 msgstr ""
27065
27066 #. type: textblock
27067 #: ../fuse/guestmount.pod:181
27068 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
27069 msgstr ""
27070
27071 #. type: =item
27072 #: ../fuse/guestmount.pod:183
27073 msgid "B<-o kernel_cache>"
27074 msgstr ""
27075
27076 #. type: textblock
27077 #: ../fuse/guestmount.pod:185
27078 msgid ""
27079 "Allow the kernel to cache files (reduces the number of reads that have to go "
27080 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
27081 "afford the extra memory usage."
27082 msgstr ""
27083
27084 #. type: =item
27085 #: ../fuse/guestmount.pod:189
27086 msgid "B<-o uid=N> B<-o gid=N>"
27087 msgstr ""
27088
27089 #. type: textblock
27090 #: ../fuse/guestmount.pod:191
27091 msgid ""
27092 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
27093 "the chosen values."
27094 msgstr ""
27095
27096 #. type: =item
27097 #: ../fuse/guestmount.pod:196
27098 msgid "B<-r> | B<--ro>"
27099 msgstr ""
27100
27101 #. type: textblock
27102 #: ../fuse/guestmount.pod:198
27103 msgid ""
27104 "Add devices and mount everything read-only.  Also disallow writes and make "
27105 "the disk appear read-only to FUSE."
27106 msgstr ""
27107
27108 #. type: textblock
27109 #: ../fuse/guestmount.pod:201
27110 msgid ""
27111 "This is highly recommended if you are not going to edit the guest disk.  If "
27112 "the guest is running and this option is I<not> supplied, then there is a "
27113 "strong risk of disk corruption in the guest.  We try to prevent this from "
27114 "happening, but it is not always possible."
27115 msgstr ""
27116
27117 #. type: textblock
27118 #: ../fuse/guestmount.pod:206
27119 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
27120 msgstr ""
27121
27122 #. type: textblock
27123 #: ../fuse/guestmount.pod:210
27124 msgid "Enable SELinux support for the guest."
27125 msgstr ""
27126
27127 #. type: =item
27128 #: ../fuse/guestmount.pod:212
27129 msgid "B<-v> | B<--verbose>"
27130 msgstr ""
27131
27132 #. type: textblock
27133 #: ../fuse/guestmount.pod:214
27134 msgid "Enable verbose messages from underlying libguestfs."
27135 msgstr ""
27136
27137 #. type: =item
27138 #: ../fuse/guestmount.pod:216
27139 msgid "B<-V> | B<--version>"
27140 msgstr ""
27141
27142 #. type: textblock
27143 #: ../fuse/guestmount.pod:218
27144 msgid "Display the program version and exit."
27145 msgstr ""
27146
27147 #. type: =item
27148 #: ../fuse/guestmount.pod:220
27149 msgid "B<-w> | B<--rw>"
27150 msgstr ""
27151
27152 #. type: textblock
27153 #: ../fuse/guestmount.pod:222
27154 msgid ""
27155 "This option does nothing at the moment.  See L<guestfish(1)/OPENING DISKS "
27156 "FOR READ AND WRITE>."
27157 msgstr ""
27158
27159 #. type: =item
27160 #: ../fuse/guestmount.pod:225
27161 msgid "B<-x> | B<--trace>"
27162 msgstr ""
27163
27164 #. type: textblock
27165 #: ../fuse/guestmount.pod:227
27166 msgid "Trace libguestfs calls and entry into each FUSE function."
27167 msgstr ""
27168
27169 #. type: textblock
27170 #: ../fuse/guestmount.pod:229
27171 msgid "This also stops the daemon from forking into the background."
27172 msgstr ""
27173
27174 #. type: textblock
27175 #: ../fuse/guestmount.pod:235
27176 msgid ""
27177 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
27178 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
27179 "L<http://fuse.sf.net/>."
27180 msgstr ""
27181
27182 #. type: textblock
27183 #: ../tools/virt-edit.pl:34
27184 msgid "virt-edit - Edit a file in a virtual machine"
27185 msgstr ""
27186
27187 #. type: verbatim
27188 #: ../tools/virt-edit.pl:38
27189 #, no-wrap
27190 msgid ""
27191 " virt-edit [--options] domname file\n"
27192 "\n"
27193 msgstr ""
27194
27195 #. type: verbatim
27196 #: ../tools/virt-edit.pl:40
27197 #, no-wrap
27198 msgid ""
27199 " virt-edit [--options] disk.img [disk.img ...] file\n"
27200 "\n"
27201 msgstr ""
27202
27203 #. type: verbatim
27204 #: ../tools/virt-edit.pl:42
27205 #, no-wrap
27206 msgid ""
27207 " virt-edit [domname|disk.img] file -e 'expr'\n"
27208 "\n"
27209 msgstr ""
27210
27211 #. type: textblock
27212 #: ../tools/virt-edit.pl:46
27213 msgid ""
27214 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
27215 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
27216 "doing this, but doesn't catch all cases."
27217 msgstr ""
27218
27219 #. type: textblock
27220 #: ../tools/virt-edit.pl:52
27221 msgid ""
27222 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
27223 "the named virtual machine (or disk image)."
27224 msgstr ""
27225
27226 #. type: textblock
27227 #: ../tools/virt-edit.pl:55
27228 msgid ""
27229 "If you want to just view a file, use L<virt-cat(1)>.  For more complex cases "
27230 "you should look at the L<guestfish(1)> tool."
27231 msgstr ""
27232
27233 #. type: textblock
27234 #: ../tools/virt-edit.pl:60
27235 msgid "Edit the named files interactively:"
27236 msgstr ""
27237
27238 #. type: verbatim
27239 #: ../tools/virt-edit.pl:62
27240 #, no-wrap
27241 msgid ""
27242 " virt-edit mydomain /boot/grub/grub.conf\n"
27243 "\n"
27244 msgstr ""
27245
27246 #. type: verbatim
27247 #: ../tools/virt-edit.pl:64
27248 #, no-wrap
27249 msgid ""
27250 " virt-edit mydomain /etc/passwd\n"
27251 "\n"
27252 msgstr ""
27253
27254 #. type: textblock
27255 #: ../tools/virt-edit.pl:66
27256 msgid ""
27257 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
27258 "below).  To change the init default level to 5:"
27259 msgstr ""
27260
27261 #. type: verbatim
27262 #: ../tools/virt-edit.pl:70
27263 #, no-wrap
27264 msgid ""
27265 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
27266 "\n"
27267 msgstr ""
27268
27269 #. type: textblock
27270 #: ../tools/virt-edit.pl:82 ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
27271 msgid "Display brief help."
27272 msgstr ""
27273
27274 #. type: textblock
27275 #: ../tools/virt-edit.pl:90 ../tools/virt-win-reg.pl:114 ../tools/virt-resize.pl:272 ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
27276 msgid "Display version number and exit."
27277 msgstr ""
27278
27279 #. type: =item
27280 #: ../tools/virt-edit.pl:96
27281 msgid "B<--backup extension> | B<-b extension>"
27282 msgstr ""
27283
27284 #. type: textblock
27285 #: ../tools/virt-edit.pl:98
27286 msgid ""
27287 "Create a backup of the original file I<in the guest disk image>.  The backup "
27288 "has the original filename with C<extension> added."
27289 msgstr ""
27290
27291 #. type: textblock
27292 #: ../tools/virt-edit.pl:101
27293 msgid ""
27294 "Usually the first character of C<extension> would be a dot C<.> so you would "
27295 "write:"
27296 msgstr ""
27297
27298 #. type: verbatim
27299 #: ../tools/virt-edit.pl:104
27300 #, no-wrap
27301 msgid ""
27302 " virt-edit -b .orig [etc]\n"
27303 "\n"
27304 msgstr ""
27305
27306 #. type: textblock
27307 #: ../tools/virt-edit.pl:106
27308 msgid "By default, no backup file is made."
27309 msgstr ""
27310
27311 #. type: =item
27312 #: ../tools/virt-edit.pl:112 ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
27313 msgid "B<--connect URI> | B<-c URI>"
27314 msgstr ""
27315
27316 #. type: textblock
27317 #: ../tools/virt-edit.pl:114 ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
27318 msgid ""
27319 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
27320 "to the default libvirt hypervisor."
27321 msgstr ""
27322
27323 #. type: textblock
27324 #: ../tools/virt-edit.pl:117 ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
27325 msgid ""
27326 "If you specify guest block devices directly, then libvirt is not used at "
27327 "all."
27328 msgstr ""
27329
27330 #. type: =item
27331 #: ../tools/virt-edit.pl:124 ../tools/virt-win-reg.pl:140 ../tools/virt-resize.pl:520 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
27332 msgid "B<--format> raw"
27333 msgstr ""
27334
27335 #. type: textblock
27336 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
27337 msgid ""
27338 "Specify the format of disk images given on the command line.  If this is "
27339 "omitted then the format is autodetected from the content of the disk image."
27340 msgstr ""
27341
27342 #. type: textblock
27343 #: ../tools/virt-edit.pl:130 ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
27344 msgid ""
27345 "If disk images are requested from libvirt, then this program asks libvirt "
27346 "for this information.  In this case, the value of the format parameter is "
27347 "ignored."
27348 msgstr ""
27349
27350 #. type: textblock
27351 #: ../tools/virt-edit.pl:134 ../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:149 ../tools/virt-list-partitions.pl:100
27352 msgid ""
27353 "If working with untrusted raw-format guest disk images, you should ensure "
27354 "the format is always specified."
27355 msgstr ""
27356
27357 #. type: =item
27358 #: ../tools/virt-edit.pl:141
27359 msgid "B<--expr EXPR> | B<-e EXPR>"
27360 msgstr ""
27361
27362 #. type: textblock
27363 #: ../tools/virt-edit.pl:143
27364 msgid ""
27365 "Instead of launching the external editor, non-interactively apply the Perl "
27366 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
27367 "EDITING> below."
27368 msgstr ""
27369
27370 #. type: textblock
27371 #: ../tools/virt-edit.pl:147
27372 msgid ""
27373 "Be careful to properly quote the expression to prevent it from being altered "
27374 "by the shell."
27375 msgstr ""
27376
27377 #. type: =head1
27378 #: ../tools/virt-edit.pl:268
27379 msgid "NON-INTERACTIVE EDITING"
27380 msgstr ""
27381
27382 #. type: textblock
27383 #: ../tools/virt-edit.pl:270
27384 msgid ""
27385 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
27386 "administrator can interactively edit the file."
27387 msgstr ""
27388
27389 #. type: textblock
27390 #: ../tools/virt-edit.pl:273
27391 msgid ""
27392 "There are two ways also to use C<virt-edit> from scripts in order to make "
27393 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
27394 "like this, it's less error-prone to write scripts directly using the "
27395 "libguestfs API and Augeas for configuration file editing.)"
27396 msgstr ""
27397
27398 #. type: textblock
27399 #: ../tools/virt-edit.pl:279
27400 msgid ""
27401 "The first method is to temporarily set C<$EDITOR> to any script or program "
27402 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
27403 "update C<tmpfile> in place however it likes."
27404 msgstr ""
27405
27406 #. type: textblock
27407 #: ../tools/virt-edit.pl:283
27408 msgid ""
27409 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
27410 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
27411 "instances of C<foo> with C<bar> in a file:"
27412 msgstr ""
27413
27414 #. type: verbatim
27415 #: ../tools/virt-edit.pl:287
27416 #, no-wrap
27417 msgid ""
27418 " virt-edit domname filename -e 's/foo/bar/'\n"
27419 "\n"
27420 msgstr ""
27421
27422 #. type: textblock
27423 #: ../tools/virt-edit.pl:289
27424 msgid ""
27425 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
27426 "For example to delete root's password you could do:"
27427 msgstr ""
27428
27429 #. type: verbatim
27430 #: ../tools/virt-edit.pl:292
27431 #, no-wrap
27432 msgid ""
27433 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
27434 "\n"
27435 msgstr ""
27436
27437 #. type: textblock
27438 #: ../tools/virt-edit.pl:294
27439 msgid ""
27440 "What really happens is that the snippet is evaluated as a Perl expression "
27441 "for each line of the file.  The line, including the final C<\\n>, is passed "
27442 "in C<$_> and the expression should update C<$_> or leave it unchanged."
27443 msgstr ""
27444
27445 #. type: textblock
27446 #: ../tools/virt-edit.pl:299
27447 msgid ""
27448 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
27449 "C<apache> user account from the password file you can do:"
27450 msgstr ""
27451
27452 #. type: verbatim
27453 #: ../tools/virt-edit.pl:302
27454 #, no-wrap
27455 msgid ""
27456 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
27457 "\n"
27458 msgstr ""
27459
27460 #. type: textblock
27461 #: ../tools/virt-edit.pl:304
27462 msgid ""
27463 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
27464 "the end of the file is rather difficult this way since there is no concept "
27465 "of \"last line of the file\" - your expression just doesn't get called "
27466 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
27467 "want to do this."
27468 msgstr ""
27469
27470 #. type: textblock
27471 #: ../tools/virt-edit.pl:310
27472 msgid ""
27473 "The variable C<$lineno> contains the current line number.  As is "
27474 "traditional, the first line in the file is number C<1>."
27475 msgstr ""
27476
27477 #. type: textblock
27478 #: ../tools/virt-edit.pl:313
27479 msgid ""
27480 "The return value from the expression is ignored, but the expression may call "
27481 "C<die> in order to abort the whole program, leaving the original file "
27482 "untouched."
27483 msgstr ""
27484
27485 #. type: textblock
27486 #: ../tools/virt-edit.pl:317
27487 msgid ""
27488 "Remember when matching the end of a line that C<$_> may contain the final "
27489 "C<\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
27490 "newline then neither of these.  Thus to match or substitute some text at the "
27491 "end of a line, use this regular expression:"
27492 msgstr ""
27493
27494 #. type: verbatim
27495 #: ../tools/virt-edit.pl:322
27496 #, no-wrap
27497 msgid ""
27498 " /some text(\\r?\\n)?$/\n"
27499 "\n"
27500 msgstr ""
27501
27502 #. type: textblock
27503 #: ../tools/virt-edit.pl:324
27504 msgid ""
27505 "Alternately, use the perl C<chomp> function, being careful not to chomp "
27506 "C<$_> itself (since that would remove all newlines from the file):"
27507 msgstr ""
27508
27509 #. type: verbatim
27510 #: ../tools/virt-edit.pl:328
27511 #, no-wrap
27512 msgid ""
27513 " my $m = $_; chomp $m; $m =~ /some text$/\n"
27514 "\n"
27515 msgstr ""
27516
27517 #. type: =item
27518 #: ../tools/virt-edit.pl:334
27519 msgid "C<EDITOR>"
27520 msgstr ""
27521
27522 #. type: textblock
27523 #: ../tools/virt-edit.pl:336
27524 msgid ""
27525 "If set, this string is used as the editor.  It may contain arguments, "
27526 "eg. C<\"emacs -nw\">"
27527 msgstr ""
27528
27529 #. type: textblock
27530 #: ../tools/virt-edit.pl:339
27531 msgid "If not set, C<vi> is used."
27532 msgstr ""
27533
27534 #. type: =head1
27535 #: ../tools/virt-edit.pl:343 ../tools/virt-win-reg.pl:559 ../tools/virt-resize.pl:1476 ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:527 ../tools/virt-list-partitions.pl:250
27536 msgid "SHELL QUOTING"
27537 msgstr ""
27538
27539 #. type: textblock
27540 #: ../tools/virt-edit.pl:345 ../tools/virt-win-reg.pl:567 ../tools/virt-resize.pl:1478 ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:529 ../tools/virt-list-partitions.pl:252
27541 msgid ""
27542 "Libvirt guest names can contain arbitrary characters, some of which have "
27543 "meaning to the shell such as C<#> and space.  You may need to quote or "
27544 "escape these characters on the command line.  See the shell manual page "
27545 "L<sh(1)> for details."
27546 msgstr ""
27547
27548 #. type: textblock
27549 #: ../tools/virt-edit.pl:352
27550 msgid ""
27551 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, "
27552 "L<virt-tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
27553 "L<Sys::Virt(3)>, L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
27554 msgstr ""
27555
27556 #. type: =head1
27557 #: ../tools/virt-edit.pl:364 ../tools/virt-win-reg.pl:598 ../tools/virt-resize.pl:1504 ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:559 ../tools/virt-list-partitions.pl:269
27558 msgid "AUTHOR"
27559 msgstr ""
27560
27561 #. type: textblock
27562 #: ../tools/virt-edit.pl:366 ../tools/virt-win-reg.pl:600 ../tools/virt-resize.pl:1506 ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:561 ../tools/virt-list-partitions.pl:271
27563 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
27564 msgstr ""
27565
27566 #. type: textblock
27567 #: ../tools/virt-edit.pl:370 ../tools/virt-list-partitions.pl:275
27568 msgid "Copyright (C) 2009-2010 Red Hat Inc."
27569 msgstr ""
27570
27571 #. type: textblock
27572 #: ../tools/virt-win-reg.pl:37
27573 msgid ""
27574 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
27575 "guest"
27576 msgstr ""
27577
27578 #. type: verbatim
27579 #: ../tools/virt-win-reg.pl:41
27580 #, no-wrap
27581 msgid ""
27582 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
27583 "\n"
27584 msgstr ""
27585
27586 #. type: verbatim
27587 #: ../tools/virt-win-reg.pl:43
27588 #, no-wrap
27589 msgid ""
27590 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
27591 "\n"
27592 msgstr ""
27593
27594 #. type: verbatim
27595 #: ../tools/virt-win-reg.pl:45
27596 #, no-wrap
27597 msgid ""
27598 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
27599 "\n"
27600 msgstr ""
27601
27602 #. type: verbatim
27603 #: ../tools/virt-win-reg.pl:47
27604 #, no-wrap
27605 msgid ""
27606 " virt-win-reg --merge domname [input.reg ...]\n"
27607 "\n"
27608 msgstr ""
27609
27610 #. type: verbatim
27611 #: ../tools/virt-win-reg.pl:49
27612 #, no-wrap
27613 msgid ""
27614 " virt-win-reg [--options] disk.img ... # instead of domname\n"
27615 "\n"
27616 msgstr ""
27617
27618 #. type: textblock
27619 #: ../tools/virt-win-reg.pl:53
27620 msgid ""
27621 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
27622 "virtual machines.  If you do this, you I<will> get irreversible disk "
27623 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
27624 "but doesn't catch all cases."
27625 msgstr ""
27626
27627 #. type: textblock
27628 #: ../tools/virt-win-reg.pl:58
27629 msgid ""
27630 "Modifying the Windows Registry is an inherently risky operation.  The format "
27631 "is deliberately obscure and undocumented, and Registry changes can leave the "
27632 "system unbootable.  Therefore when using the C<--merge> option, make sure "
27633 "you have a reliable backup first."
27634 msgstr ""
27635
27636 #. type: textblock
27637 #: ../tools/virt-win-reg.pl:65
27638 msgid ""
27639 "This program can export and merge Windows Registry entries from a Windows "
27640 "guest."
27641 msgstr ""
27642
27643 #. type: textblock
27644 #: ../tools/virt-win-reg.pl:68
27645 msgid ""
27646 "The first parameter is the libvirt guest name or the raw disk image of a "
27647 "Windows guest."
27648 msgstr ""
27649
27650 #. type: textblock
27651 #: ../tools/virt-win-reg.pl:71
27652 msgid ""
27653 "If C<--merge> is I<not> specified, then the chosen registry key is "
27654 "displayed/exported (recursively).  For example:"
27655 msgstr ""
27656
27657 #. type: verbatim
27658 #: ../tools/virt-win-reg.pl:74
27659 #, no-wrap
27660 msgid ""
27661 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
27662 "\n"
27663 msgstr ""
27664
27665 #. type: textblock
27666 #: ../tools/virt-win-reg.pl:76
27667 msgid "You can also display single values from within registry keys, for example:"
27668 msgstr ""
27669
27670 #. type: verbatim
27671 #: ../tools/virt-win-reg.pl:79
27672 #, no-wrap
27673 msgid ""
27674 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
27675 " $ virt-win-reg Windows7 $cvkey ProductName\n"
27676 " Windows 7 Enterprise\n"
27677 "\n"
27678 msgstr ""
27679
27680 #. type: textblock
27681 #: ../tools/virt-win-reg.pl:83
27682 msgid ""
27683 "With C<--merge>, you can merge a textual regedit file into the Windows "
27684 "Registry:"
27685 msgstr ""
27686
27687 #. type: verbatim
27688 #: ../tools/virt-win-reg.pl:86
27689 #, no-wrap
27690 msgid ""
27691 " $ virt-win-reg --merge Windows7 changes.reg\n"
27692 "\n"
27693 msgstr ""
27694
27695 #. type: =head1
27696 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
27697 msgid "NOTE"
27698 msgstr ""
27699
27700 #. type: textblock
27701 #: ../tools/virt-win-reg.pl:90
27702 msgid ""
27703 "This program is only meant for simple access to the registry.  If you want "
27704 "to do complicated things with the registry, we suggest you download the "
27705 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
27706 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
27707 "L<hivexregedit(1)>."
27708 msgstr ""
27709
27710 #. type: =item
27711 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
27712 msgid "B<--debug>"
27713 msgstr ""
27714
27715 #. type: textblock
27716 #: ../tools/virt-win-reg.pl:122 ../tools/virt-resize.pl:498
27717 msgid "Enable debugging messages."
27718 msgstr ""
27719
27720 #. type: =item
27721 #: ../tools/virt-win-reg.pl:157
27722 msgid "B<--merge>"
27723 msgstr ""
27724
27725 #. type: textblock
27726 #: ../tools/virt-win-reg.pl:159
27727 msgid ""
27728 "In merge mode, this merges a textual regedit file into the Windows Registry "
27729 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
27730 "displays or exports Registry entries instead."
27731 msgstr ""
27732
27733 #. type: textblock
27734 #: ../tools/virt-win-reg.pl:163
27735 msgid ""
27736 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
27737 "result in disk corruption.  However exporting (without this flag)  is always "
27738 "safe."
27739 msgstr ""
27740
27741 #. type: =item
27742 #: ../tools/virt-win-reg.pl:171
27743 msgid "B<--encoding> UTF-16LE|ASCII"
27744 msgstr ""
27745
27746 #. type: textblock
27747 #: ../tools/virt-win-reg.pl:173
27748 msgid ""
27749 "When merging (only), you may need to specify the encoding for strings to be "
27750 "used in the hive file.  This is explained in detail in "
27751 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
27752 msgstr ""
27753
27754 #. type: textblock
27755 #: ../tools/virt-win-reg.pl:177
27756 msgid ""
27757 "The default is to use UTF-16LE, which should work with recent versions of "
27758 "Windows."
27759 msgstr ""
27760
27761 #. type: =head1
27762 #: ../tools/virt-win-reg.pl:402
27763 msgid "SUPPORTED SYSTEMS"
27764 msgstr ""
27765
27766 #. type: textblock
27767 #: ../tools/virt-win-reg.pl:404
27768 msgid ""
27769 "The program currently supports Windows NT-derived guests starting with "
27770 "Windows XP through to at least Windows 7."
27771 msgstr ""
27772
27773 #. type: textblock
27774 #: ../tools/virt-win-reg.pl:407
27775 msgid ""
27776 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, "
27777 "C<HKEY_LOCAL_MACHINE\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, "
27778 "C<HKEY_LOCAL_MACHINE\\SYSTEM> and C<HKEY_USERS\\.DEFAULT>."
27779 msgstr ""
27780
27781 #. type: textblock
27782 #: ../tools/virt-win-reg.pl:411
27783 msgid ""
27784 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
27785 "C<HKEY_USERS>."
27786 msgstr ""
27787
27788 #. type: textblock
27789 #: ../tools/virt-win-reg.pl:414
27790 msgid ""
27791 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
27792 "time."
27793 msgstr ""
27794
27795 #. type: =head1
27796 #: ../tools/virt-win-reg.pl:417
27797 msgid "ENCODING"
27798 msgstr ""
27799
27800 #. type: textblock
27801 #: ../tools/virt-win-reg.pl:419
27802 msgid ""
27803 "C<virt-win-reg> expects that regedit files have already been reencoded in "
27804 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
27805 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
27806 "with Windows-style line endings, you may need to reencode the whole file "
27807 "before or after processing."
27808 msgstr ""
27809
27810 #. type: textblock
27811 #: ../tools/virt-win-reg.pl:425
27812 msgid ""
27813 "To reencode a file from Windows format to Linux (before processing it with "
27814 "the C<--merge> option), you would do something like this:"
27815 msgstr ""
27816
27817 #. type: verbatim
27818 #: ../tools/virt-win-reg.pl:428
27819 #, no-wrap
27820 msgid ""
27821 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
27822 "\n"
27823 msgstr ""
27824
27825 #. type: textblock
27826 #: ../tools/virt-win-reg.pl:430
27827 msgid ""
27828 "To go in the opposite direction, after exporting and before sending the file "
27829 "to a Windows user, do something like this:"
27830 msgstr ""
27831
27832 #. type: verbatim
27833 #: ../tools/virt-win-reg.pl:433
27834 #, no-wrap
27835 msgid ""
27836 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
27837 "\n"
27838 msgstr ""
27839
27840 #. type: textblock
27841 #: ../tools/virt-win-reg.pl:435
27842 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
27843 msgstr ""
27844
27845 #. type: textblock
27846 #: ../tools/virt-win-reg.pl:437
27847 msgid ""
27848 "If you are unsure about the current encoding, use the L<file(1)> command.  "
27849 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
27850 "Windows-style (CRLF) line endings, like this:"
27851 msgstr ""
27852
27853 #. type: verbatim
27854 #: ../tools/virt-win-reg.pl:441
27855 #, no-wrap
27856 msgid ""
27857 " $ file software.reg\n"
27858 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
27859 " with CRLF line terminators\n"
27860 "\n"
27861 msgstr ""
27862
27863 #. type: textblock
27864 #: ../tools/virt-win-reg.pl:445
27865 msgid "This file would need conversion before you could C<--merge> it."
27866 msgstr ""
27867
27868 #. type: =head1
27869 #: ../tools/virt-win-reg.pl:447
27870 msgid "CurrentControlSet etc."
27871 msgstr ""
27872
27873 #. type: textblock
27874 #: ../tools/virt-win-reg.pl:449
27875 msgid ""
27876 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
27877 "Registry at the level of the hive file, and therefore you cannot modify "
27878 "these."
27879 msgstr ""
27880
27881 #. type: textblock
27882 #: ../tools/virt-win-reg.pl:453
27883 msgid ""
27884 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
27885 "circumstances it might refer to another control set.  The way to find out is "
27886 "to look at the C<HKLM\\SYSTEM\\Select> key:"
27887 msgstr ""
27888
27889 #. type: verbatim
27890 #: ../tools/virt-win-reg.pl:457
27891 #, no-wrap
27892 msgid ""
27893 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
27894 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
27895 " \"Current\"=dword:00000001\n"
27896 " \"Default\"=dword:00000001\n"
27897 " \"Failed\"=dword:00000000\n"
27898 " \"LastKnownGood\"=dword:00000002\n"
27899 "\n"
27900 msgstr ""
27901
27902 #. type: textblock
27903 #: ../tools/virt-win-reg.pl:464
27904 msgid "\"Current\" is the one which Windows will choose when it boots."
27905 msgstr ""
27906
27907 #. type: textblock
27908 #: ../tools/virt-win-reg.pl:466
27909 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
27910 msgstr ""
27911
27912 #. type: =head1
27913 #: ../tools/virt-win-reg.pl:469
27914 msgid "WINDOWS TIPS"
27915 msgstr ""
27916
27917 #. type: textblock
27918 #: ../tools/virt-win-reg.pl:471
27919 msgid ""
27920 "Note that some of these tips modify the guest disk image.  The guest I<must> "
27921 "be shut off, else you will get disk corruption."
27922 msgstr ""
27923
27924 #. type: =head2
27925 #: ../tools/virt-win-reg.pl:474
27926 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
27927 msgstr ""
27928
27929 #. type: textblock
27930 #: ../tools/virt-win-reg.pl:476
27931 msgid ""
27932 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
27933 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
27934 "is uploaded into C<C:\\>:"
27935 msgstr ""
27936
27937 #. type: verbatim
27938 #: ../tools/virt-win-reg.pl:480
27939 #, no-wrap
27940 msgid ""
27941 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
27942 "\n"
27943 msgstr ""
27944
27945 #. type: textblock
27946 #: ../tools/virt-win-reg.pl:482
27947 msgid "Prepare a regedit file containing the registry change:"
27948 msgstr ""
27949
27950 #. type: verbatim
27951 #: ../tools/virt-win-reg.pl:484
27952 #, no-wrap
27953 msgid ""
27954 " cat > test.reg <<'EOF'\n"
27955 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
27956 " \"Test\"=\"c:\\\\test.bat\"\n"
27957 " EOF\n"
27958 "\n"
27959 msgstr ""
27960
27961 #. type: textblock
27962 #: ../tools/virt-win-reg.pl:489
27963 msgid ""
27964 "In this example we use the key C<RunOnce> which means that the script will "
27965 "run precisely once when the first user logs in.  If you want it to run every "
27966 "time a user logs in, replace C<RunOnce> with C<Run>."
27967 msgstr ""
27968
27969 #. type: textblock
27970 #: ../tools/virt-win-reg.pl:493
27971 msgid "Now update the registry:"
27972 msgstr ""
27973
27974 #. type: verbatim
27975 #: ../tools/virt-win-reg.pl:495
27976 #, no-wrap
27977 msgid ""
27978 " virt-win-reg --merge WindowsGuest test.reg\n"
27979 "\n"
27980 msgstr ""
27981
27982 #. type: =head2
27983 #: ../tools/virt-win-reg.pl:497
27984 msgid "INSTALLING A SERVICE"
27985 msgstr ""
27986
27987 #. type: textblock
27988 #: ../tools/virt-win-reg.pl:499
27989 msgid ""
27990 "This section assumes you are familiar with Windows services, and you either "
27991 "have a program which handles the Windows Service Control Protocol directly "
27992 "or you want to run any program using a service wrapper like SrvAny or the "
27993 "free RHSrvAny."
27994 msgstr ""
27995
27996 #. type: textblock
27997 #: ../tools/virt-win-reg.pl:504
27998 msgid ""
27999 "First upload the program and optionally the service wrapper.  In this case "
28000 "the test program is called C<test.exe> and we are using the RHSrvAny "
28001 "wrapper:"
28002 msgstr ""
28003
28004 #. type: verbatim
28005 #: ../tools/virt-win-reg.pl:508
28006 #, no-wrap
28007 msgid ""
28008 " guestfish -i -d WindowsGuest <<EOF\n"
28009 "   upload rhsrvany.exe /rhsrvany.exe\n"
28010 "   upload test.exe /test.exe\n"
28011 " EOF\n"
28012 "\n"
28013 msgstr ""
28014
28015 #. type: textblock
28016 #: ../tools/virt-win-reg.pl:513
28017 msgid ""
28018 "Prepare a regedit file containing the registry changes.  In this example, "
28019 "the first registry change is needed for the service itself or the service "
28020 "wrapper (if used).  The second registry change is only needed because I am "
28021 "using the RHSrvAny service wrapper."
28022 msgstr ""
28023
28024 #. type: verbatim
28025 #: ../tools/virt-win-reg.pl:518
28026 #, no-wrap
28027 msgid ""
28028 " cat > service.reg <<'EOF'\n"
28029 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
28030 " \"Type\"=dword:00000010\n"
28031 " \"Start\"=dword:00000002\n"
28032 " \"ErrorControl\"=dword:00000001\n"
28033 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
28034 " \"DisplayName\"=\"RHSrvAny\"\n"
28035 " \"ObjectName\"=\"NetworkService\"\n"
28036 " \n"
28037 msgstr ""
28038
28039 #. type: verbatim
28040 #: ../tools/virt-win-reg.pl:527
28041 #, no-wrap
28042 msgid ""
28043 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
28044 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
28045 " \"PWD\"=\"c:\\\\Temp\"\n"
28046 " EOF\n"
28047 "\n"
28048 msgstr ""
28049
28050 #. type: textblock
28051 #: ../tools/virt-win-reg.pl:538
28052 msgid ""
28053 "For use of C<ControlSet001> see the section above in this manual page.  You "
28054 "may need to adjust this according to the control set that is in use by the "
28055 "guest."
28056 msgstr ""
28057
28058 #. type: textblock
28059 #: ../tools/virt-win-reg.pl:544
28060 msgid ""
28061 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
28062 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
28063 "privileged account."
28064 msgstr ""
28065
28066 #. type: textblock
28067 #: ../tools/virt-win-reg.pl:550
28068 msgid ""
28069 "For the meaning of the magic numbers, see this Microsoft KB article: "
28070 "L<http://support.microsoft.com/kb/103000>."
28071 msgstr ""
28072
28073 #. type: textblock
28074 #: ../tools/virt-win-reg.pl:555
28075 msgid "Update the registry:"
28076 msgstr ""
28077
28078 #. type: verbatim
28079 #: ../tools/virt-win-reg.pl:557
28080 #, no-wrap
28081 msgid ""
28082 " virt-win-reg --merge WindowsGuest service.reg\n"
28083 "\n"
28084 msgstr ""
28085
28086 #. type: textblock
28087 #: ../tools/virt-win-reg.pl:561
28088 msgid ""
28089 "Be careful when passing parameters containing C<\\> (backslash) in the "
28090 "shell.  Usually you will have to use 'single quotes' or double backslashes "
28091 "(but not both) to protect them from the shell."
28092 msgstr ""
28093
28094 #. type: textblock
28095 #: ../tools/virt-win-reg.pl:565
28096 msgid "Paths and value names are case-insensitive."
28097 msgstr ""
28098
28099 #. type: textblock
28100 #: ../tools/virt-win-reg.pl:574
28101 msgid ""
28102 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
28103 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
28104 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
28105 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
28106 msgstr ""
28107
28108 #. type: textblock
28109 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:550
28110 msgid ""
28111 "When reporting bugs, please enable debugging and capture the I<complete> "
28112 "output:"
28113 msgstr ""
28114
28115 #. type: verbatim
28116 #: ../tools/virt-win-reg.pl:592
28117 #, no-wrap
28118 msgid ""
28119 " export LIBGUESTFS_DEBUG=1\n"
28120 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
28121 "\n"
28122 msgstr ""
28123
28124 #. type: textblock
28125 #: ../tools/virt-win-reg.pl:595
28126 msgid ""
28127 "Attach /tmp/virt-win-reg.log to a new bug report at "
28128 "L<https://bugzilla.redhat.com/>"
28129 msgstr ""
28130
28131 #. type: textblock
28132 #: ../tools/virt-win-reg.pl:604 ../tools/virt-resize.pl:1510 ../tools/virt-make-fs.pl:565
28133 msgid "Copyright (C) 2010 Red Hat Inc."
28134 msgstr ""
28135
28136 #. type: textblock
28137 #: ../tools/virt-resize.pl:42
28138 msgid "virt-resize - Resize a virtual machine disk"
28139 msgstr ""
28140
28141 #. type: verbatim
28142 #: ../tools/virt-resize.pl:46
28143 #, no-wrap
28144 msgid ""
28145 " virt-resize [--resize /dev/sdaN=[+/-]<size>[%]]\n"
28146 "   [--expand /dev/sdaN] [--shrink /dev/sdaN]\n"
28147 "   [--ignore /dev/sdaN] [--delete /dev/sdaN] [...] indisk outdisk\n"
28148 "\n"
28149 msgstr ""
28150
28151 #. type: textblock
28152 #: ../tools/virt-resize.pl:52
28153 msgid ""
28154 "Virt-resize is a tool which can resize a virtual machine disk, making it "
28155 "larger or smaller overall, and resizing or deleting any partitions contained "
28156 "within."
28157 msgstr ""
28158
28159 #. type: textblock
28160 #: ../tools/virt-resize.pl:56
28161 msgid ""
28162 "Virt-resize B<cannot> resize disk images in-place.  Virt-resize B<should "
28163 "not> be used on live virtual machines - for consistent results, shut the "
28164 "virtual machine down before resizing it."
28165 msgstr ""
28166
28167 #. type: textblock
28168 #: ../tools/virt-resize.pl:60
28169 msgid ""
28170 "If you are not familiar with the associated tools: L<virt-filesystems(1)> "
28171 "and L<virt-df(1)>, we recommend you go and read those manual pages first."
28172 msgstr ""
28173
28174 #. type: textblock
28175 #: ../tools/virt-resize.pl:66
28176 msgid ""
28177 "Copy C<olddisk> to C<newdisk>, extending one of the guest's partitions to "
28178 "fill the extra 5GB of space."
28179 msgstr ""
28180
28181 #. type: verbatim
28182 #: ../tools/virt-resize.pl:69
28183 #, no-wrap
28184 msgid ""
28185 " truncate -r olddisk newdisk; truncate -s +5G newdisk\n"
28186 " virt-filesystems --long -h --all -a olddisk\n"
28187 " # Note \"/dev/sda2\" is a partition inside the \"olddisk\" file.\n"
28188 " virt-resize --expand /dev/sda2 olddisk newdisk\n"
28189 "\n"
28190 msgstr ""
28191
28192 #. type: textblock
28193 #: ../tools/virt-resize.pl:74
28194 msgid ""
28195 "As above, but make the /boot partition 200MB bigger, while giving the "
28196 "remaining space to /dev/sda2:"
28197 msgstr ""
28198
28199 #. type: verbatim
28200 #: ../tools/virt-resize.pl:77
28201 #, no-wrap
28202 msgid ""
28203 " virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 olddisk newdisk\n"
28204 "\n"
28205 msgstr ""
28206
28207 #. type: textblock
28208 #: ../tools/virt-resize.pl:79
28209 msgid "As above, but the output format will be uncompressed qcow2:"
28210 msgstr ""
28211
28212 #. type: verbatim
28213 #: ../tools/virt-resize.pl:81
28214 #, no-wrap
28215 msgid ""
28216 " qemu-img create -f qcow2 newdisk.qcow2 15G\n"
28217 " virt-resize --expand /dev/sda2 olddisk newdisk.qcow2\n"
28218 "\n"
28219 msgstr ""
28220
28221 #. type: =head1
28222 #: ../tools/virt-resize.pl:84
28223 msgid "DETAILED USAGE"
28224 msgstr ""
28225
28226 #. type: =head2
28227 #: ../tools/virt-resize.pl:86
28228 msgid "EXPANDING A VIRTUAL MACHINE DISK"
28229 msgstr ""
28230
28231 #. type: =item
28232 #: ../tools/virt-resize.pl:90
28233 msgid "1. Shut down the virtual machine"
28234 msgstr ""
28235
28236 #. type: =item
28237 #: ../tools/virt-resize.pl:92
28238 msgid "2. Locate input disk image"
28239 msgstr ""
28240
28241 #. type: textblock
28242 #: ../tools/virt-resize.pl:94
28243 msgid ""
28244 "Locate the input disk image (ie. the file or device on the host containing "
28245 "the guest's disk).  If the guest is managed by libvirt, you can use C<virsh "
28246 "dumpxml> like this to find the disk image name:"
28247 msgstr ""
28248
28249 #. type: verbatim
28250 #: ../tools/virt-resize.pl:98
28251 #, no-wrap
28252 msgid ""
28253 " # virsh dumpxml guestname | xpath /domain/devices/disk/source\n"
28254 " Found 1 nodes:\n"
28255 " -- NODE --\n"
28256 " <source dev=\"/dev/vg/lv_guest\" />\n"
28257 "\n"
28258 msgstr ""
28259
28260 #. type: =item
28261 #: ../tools/virt-resize.pl:103
28262 msgid "3. Look at current sizing"
28263 msgstr ""
28264
28265 #. type: textblock
28266 #: ../tools/virt-resize.pl:105
28267 msgid "Use L<virt-filesystems(1)> to display the current partitions and sizes:"
28268 msgstr ""
28269
28270 #. type: verbatim
28271 #: ../tools/virt-resize.pl:108
28272 #, no-wrap
28273 msgid ""
28274 " # virt-filesystems --long --parts --blkdevs -h -a /dev/vg/lv_guest\n"
28275 " Name       Type       Size  Parent\n"
28276 " /dev/sda1  partition  101M  /dev/sda\n"
28277 " /dev/sda2  partition  7.9G  /dev/sda\n"
28278 " /dev/sda   device     8.0G  -\n"
28279 "\n"
28280 msgstr ""
28281
28282 #. type: textblock
28283 #: ../tools/virt-resize.pl:114
28284 msgid ""
28285 "(This example is a virtual machine with an 8 GB disk which we would like to "
28286 "expand up to 10 GB)."
28287 msgstr ""
28288
28289 #. type: =item
28290 #: ../tools/virt-resize.pl:117
28291 msgid "4. Create output disk"
28292 msgstr ""
28293
28294 #. type: textblock
28295 #: ../tools/virt-resize.pl:119
28296 msgid ""
28297 "Virt-resize cannot do in-place disk modifications.  You have to have space "
28298 "to store the resized output disk."
28299 msgstr ""
28300
28301 #. type: textblock
28302 #: ../tools/virt-resize.pl:122
28303 msgid "To store the resized disk image in a file, create a file of a suitable size:"
28304 msgstr ""
28305
28306 #. type: verbatim
28307 #: ../tools/virt-resize.pl:125
28308 #, no-wrap
28309 msgid ""
28310 " # rm -f outdisk\n"
28311 " # truncate -s 10G outdisk\n"
28312 "\n"
28313 msgstr ""
28314
28315 #. type: textblock
28316 #: ../tools/virt-resize.pl:128
28317 msgid "Or use L<lvcreate(1)> to create a logical volume:"
28318 msgstr ""
28319
28320 #. type: verbatim
28321 #: ../tools/virt-resize.pl:130
28322 #, no-wrap
28323 msgid ""
28324 " # lvcreate -L 10G -n lv_name vg_name\n"
28325 "\n"
28326 msgstr ""
28327
28328 #. type: textblock
28329 #: ../tools/virt-resize.pl:132
28330 msgid "Or use L<virsh(1)> vol-create-as to create a libvirt storage volume:"
28331 msgstr ""
28332
28333 #. type: verbatim
28334 #: ../tools/virt-resize.pl:134
28335 #, no-wrap
28336 msgid ""
28337 " # virsh pool-list\n"
28338 " # virsh vol-create-as poolname newvol 10G\n"
28339 "\n"
28340 msgstr ""
28341
28342 #. type: =item
28343 #: ../tools/virt-resize.pl:137
28344 msgid "5. Resize"
28345 msgstr ""
28346
28347 #. type: textblock
28348 #: ../tools/virt-resize.pl:139
28349 msgid ""
28350 "virt-resize takes two mandatory parameters, the input disk (eg. device or "
28351 "file) and the output disk.  The output disk is the one created in the "
28352 "previous step."
28353 msgstr ""
28354
28355 #. type: verbatim
28356 #: ../tools/virt-resize.pl:143
28357 #, no-wrap
28358 msgid ""
28359 " # virt-resize indisk outdisk\n"
28360 "\n"
28361 msgstr ""
28362
28363 #. type: textblock
28364 #: ../tools/virt-resize.pl:145
28365 msgid ""
28366 "This command just copies disk image C<indisk> to disk image C<outdisk> "
28367 "I<without> resizing or changing any existing partitions.  If C<outdisk> is "
28368 "larger, then an extra, empty partition is created at the end of the disk "
28369 "covering the extra space.  If C<outdisk> is smaller, then it will give an "
28370 "error."
28371 msgstr ""
28372
28373 #. type: textblock
28374 #: ../tools/virt-resize.pl:151
28375 msgid ""
28376 "More realistically you'd want to expand existing partitions in the disk "
28377 "image by passing extra options (for the full list see the L</OPTIONS> "
28378 "section below)."
28379 msgstr ""
28380
28381 #. type: textblock
28382 #: ../tools/virt-resize.pl:155
28383 msgid ""
28384 "L</--expand> is the most useful option.  It expands the named partition "
28385 "within the disk to fill any extra space:"
28386 msgstr ""
28387
28388 #. type: verbatim
28389 #: ../tools/virt-resize.pl:158
28390 #, no-wrap
28391 msgid ""
28392 " # virt-resize --expand /dev/sda2 indisk outdisk\n"
28393 "\n"
28394 msgstr ""
28395
28396 #. type: textblock
28397 #: ../tools/virt-resize.pl:160
28398 msgid ""
28399 "(In this case, an extra partition is I<not> created at the end of the disk, "
28400 "because there will be no unused space)."
28401 msgstr ""
28402
28403 #. type: textblock
28404 #: ../tools/virt-resize.pl:163
28405 msgid ""
28406 "L</--resize> is the other commonly used option.  The following would "
28407 "increase the size of /dev/sda1 by 200M, and expand /dev/sda2 to fill the "
28408 "rest of the available space:"
28409 msgstr ""
28410
28411 #. type: verbatim
28412 #: ../tools/virt-resize.pl:167
28413 #, no-wrap
28414 msgid ""
28415 " # virt-resize --resize /dev/sda1=+200M --expand /dev/sda2 \\\n"
28416 "     indisk outdisk\n"
28417 "\n"
28418 msgstr ""
28419
28420 #. type: textblock
28421 #: ../tools/virt-resize.pl:170
28422 msgid ""
28423 "If the expanded partition in the image contains a filesystem or LVM PV, then "
28424 "if virt-resize knows how, it will resize the contents, the equivalent of "
28425 "calling a command such as L<pvresize(8)>, L<resize2fs(8)> or "
28426 "L<ntfsresize(8)>.  However virt-resize does not know how to resize some "
28427 "filesystems, so you would have to online resize them after booting the "
28428 "guest."
28429 msgstr ""
28430
28431 #. type: textblock
28432 #: ../tools/virt-resize.pl:177
28433 msgid "Other options are covered below."
28434 msgstr ""
28435
28436 #. type: =item
28437 #: ../tools/virt-resize.pl:179
28438 msgid "6. Test"
28439 msgstr ""
28440
28441 #. type: textblock
28442 #: ../tools/virt-resize.pl:181
28443 msgid "Thoroughly test the new disk image I<before> discarding the old one."
28444 msgstr ""
28445
28446 #. type: textblock
28447 #: ../tools/virt-resize.pl:183
28448 msgid "If you are using libvirt, edit the XML to point at the new disk:"
28449 msgstr ""
28450
28451 #. type: verbatim
28452 #: ../tools/virt-resize.pl:185
28453 #, no-wrap
28454 msgid ""
28455 " # virsh edit guestname\n"
28456 "\n"
28457 msgstr ""
28458
28459 #. type: textblock
28460 #: ../tools/virt-resize.pl:187
28461 msgid ""
28462 "Change E<lt>source ...E<gt>, see "
28463 "L<http://libvirt.org/formatdomain.html#elementsDisks>"
28464 msgstr ""
28465
28466 #. type: textblock
28467 #: ../tools/virt-resize.pl:190
28468 msgid "Then start up the domain with the new, resized disk:"
28469 msgstr ""
28470
28471 #. type: verbatim
28472 #: ../tools/virt-resize.pl:192
28473 #, no-wrap
28474 msgid ""
28475 " # virsh start guestname\n"
28476 "\n"
28477 msgstr ""
28478
28479 #. type: textblock
28480 #: ../tools/virt-resize.pl:194
28481 msgid ""
28482 "and check that it still works.  See also the L</NOTES> section below for "
28483 "additional information."
28484 msgstr ""
28485
28486 #. type: =item
28487 #: ../tools/virt-resize.pl:197
28488 msgid "7. Resize LVs etc inside the guest"
28489 msgstr ""
28490
28491 #. type: textblock
28492 #: ../tools/virt-resize.pl:199
28493 msgid "(This can also be done offline using L<guestfish(1)>)"
28494 msgstr ""
28495
28496 #. type: textblock
28497 #: ../tools/virt-resize.pl:201
28498 msgid ""
28499 "Once the guest has booted you should see the new space available, at least "
28500 "for filesystems that virt-resize knows how to resize, and for PVs.  The user "
28501 "may need to resize LVs inside PVs, and also resize filesystem types that "
28502 "virt-resize does not know how to expand."
28503 msgstr ""
28504
28505 #. type: =head2
28506 #: ../tools/virt-resize.pl:208
28507 msgid "SHRINKING A VIRTUAL MACHINE DISK"
28508 msgstr ""
28509
28510 #. type: textblock
28511 #: ../tools/virt-resize.pl:210
28512 msgid ""
28513 "Shrinking is somewhat more complex than expanding, and only an overview is "
28514 "given here."
28515 msgstr ""
28516
28517 #. type: textblock
28518 #: ../tools/virt-resize.pl:213
28519 msgid ""
28520 "Firstly virt-resize will not attempt to shrink any partition content (PVs, "
28521 "filesystems).  The user has to shrink content before passing the disk image "
28522 "to virt-resize, and virt-resize will check that the content has been shrunk "
28523 "properly."
28524 msgstr ""
28525
28526 #. type: textblock
28527 #: ../tools/virt-resize.pl:218
28528 msgid "(Shrinking can also be done offline using L<guestfish(1)>)"
28529 msgstr ""
28530
28531 #. type: textblock
28532 #: ../tools/virt-resize.pl:220
28533 msgid ""
28534 "After shrinking PVs and filesystems, shut down the guest, and proceed with "
28535 "steps 3 and 4 above to allocate a new disk image."
28536 msgstr ""
28537
28538 #. type: textblock
28539 #: ../tools/virt-resize.pl:223
28540 msgid "Then run virt-resize with any of the C<--shrink> and/or C<--resize> options."
28541 msgstr ""
28542
28543 #. type: =head2
28544 #: ../tools/virt-resize.pl:226
28545 msgid "IGNORING OR DELETING PARTITIONS"
28546 msgstr ""
28547
28548 #. type: textblock
28549 #: ../tools/virt-resize.pl:228
28550 msgid ""
28551 "virt-resize also gives a convenient way to ignore or delete partitions when "
28552 "copying from the input disk to the output disk.  Ignoring a partition speeds "
28553 "up the copy where you don't care about the existing contents of a "
28554 "partition.  Deleting a partition removes it completely, but note that it "
28555 "also renumbers any partitions after the one which is deleted, which can "
28556 "leave some guests unbootable."
28557 msgstr ""
28558
28559 #. type: =head2
28560 #: ../tools/virt-resize.pl:235
28561 msgid "QCOW2 AND NON-SPARSE RAW FORMATS"
28562 msgstr ""
28563
28564 #. type: textblock
28565 #: ../tools/virt-resize.pl:237
28566 msgid ""
28567 "If the input disk is in qcow2 format, then you may prefer that the output is "
28568 "in qcow2 format as well.  Alternately, virt-resize can convert the format on "
28569 "the fly.  The output format is simply determined by the format of the empty "
28570 "output container that you provide.  Thus to create qcow2 output, use:"
28571 msgstr ""
28572
28573 #. type: verbatim
28574 #: ../tools/virt-resize.pl:243
28575 #, no-wrap
28576 msgid ""
28577 " qemu-img create [-c] -f qcow2 outdisk [size]\n"
28578 "\n"
28579 msgstr ""
28580
28581 #. type: textblock
28582 #: ../tools/virt-resize.pl:245
28583 msgid "instead of the truncate command (use C<-c> for a compressed disk)."
28584 msgstr ""
28585
28586 #. type: textblock
28587 #: ../tools/virt-resize.pl:247
28588 msgid "Similarly, to get non-sparse raw output use:"
28589 msgstr ""
28590
28591 #. type: verbatim
28592 #: ../tools/virt-resize.pl:249
28593 #, no-wrap
28594 msgid ""
28595 " fallocate -l size outdisk\n"
28596 "\n"
28597 msgstr ""
28598
28599 #. type: textblock
28600 #: ../tools/virt-resize.pl:251
28601 msgid ""
28602 "(on older systems that don't have the L<fallocate(1)> command use C<dd "
28603 "if=/dev/zero of=outdisk bs=1M count=..>)"
28604 msgstr ""
28605
28606 #. type: textblock
28607 #: ../tools/virt-resize.pl:264
28608 msgid "Display help."
28609 msgstr ""
28610
28611 #. type: =item
28612 #: ../tools/virt-resize.pl:278
28613 msgid "B<--resize part=size>"
28614 msgstr ""
28615
28616 #. type: textblock
28617 #: ../tools/virt-resize.pl:280
28618 msgid ""
28619 "Resize the named partition (expanding or shrinking it) so that it has the "
28620 "given size."
28621 msgstr ""
28622
28623 #. type: textblock
28624 #: ../tools/virt-resize.pl:283
28625 msgid ""
28626 "C<size> can be expressed as an absolute number followed by b/K/M/G/T/P/E to "
28627 "mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Petabytes or "
28628 "Exabytes; or as a percentage of the current size; or as a relative number or "
28629 "percentage.  For example:"
28630 msgstr ""
28631
28632 #. type: verbatim
28633 #: ../tools/virt-resize.pl:288
28634 #, no-wrap
28635 msgid ""
28636 " --resize /dev/sda2=10G\n"
28637 "\n"
28638 msgstr ""
28639
28640 #. type: verbatim
28641 #: ../tools/virt-resize.pl:290
28642 #, no-wrap
28643 msgid ""
28644 " --resize /dev/sda4=90%\n"
28645 "\n"
28646 msgstr ""
28647
28648 #. type: verbatim
28649 #: ../tools/virt-resize.pl:292
28650 #, no-wrap
28651 msgid ""
28652 " --resize /dev/sda2=+1G\n"
28653 "\n"
28654 msgstr ""
28655
28656 #. type: verbatim
28657 #: ../tools/virt-resize.pl:294
28658 #, no-wrap
28659 msgid ""
28660 " --resize /dev/sda2=-200M\n"
28661 "\n"
28662 msgstr ""
28663
28664 #. type: verbatim
28665 #: ../tools/virt-resize.pl:296
28666 #, no-wrap
28667 msgid ""
28668 " --resize /dev/sda1=+128K\n"
28669 "\n"
28670 msgstr ""
28671
28672 #. type: verbatim
28673 #: ../tools/virt-resize.pl:298
28674 #, no-wrap
28675 msgid ""
28676 " --resize /dev/sda1=+10%\n"
28677 "\n"
28678 msgstr ""
28679
28680 #. type: verbatim
28681 #: ../tools/virt-resize.pl:300
28682 #, no-wrap
28683 msgid ""
28684 " --resize /dev/sda1=-10%\n"
28685 "\n"
28686 msgstr ""
28687
28688 #. type: textblock
28689 #: ../tools/virt-resize.pl:302
28690 msgid ""
28691 "You can increase the size of any partition.  Virt-resize will expand the "
28692 "direct content of the partition if it knows how (see C<--expand> below)."
28693 msgstr ""
28694
28695 #. type: textblock
28696 #: ../tools/virt-resize.pl:306
28697 msgid ""
28698 "You can only I<decrease> the size of partitions that contain filesystems or "
28699 "PVs which have already been shrunk.  Virt-resize will check this has been "
28700 "done before proceeding, or else will print an error (see also "
28701 "C<--resize-force>)."
28702 msgstr ""
28703
28704 #. type: textblock
28705 #: ../tools/virt-resize.pl:311 ../tools/virt-resize.pl:403 ../tools/virt-resize.pl:420
28706 msgid "You can give this option multiple times."
28707 msgstr ""
28708
28709 #. type: =item
28710 #: ../tools/virt-resize.pl:317
28711 msgid "B<--resize-force part=size>"
28712 msgstr ""
28713
28714 #. type: textblock
28715 #: ../tools/virt-resize.pl:319
28716 msgid ""
28717 "This is the same as C<--resize> except that it will let you decrease the "
28718 "size of any partition.  Generally this means you will lose any data which "
28719 "was at the end of the partition you shrink, but you may not care about that "
28720 "(eg. if shrinking an unused partition, or if you can easily recreate it such "
28721 "as a swap partition)."
28722 msgstr ""
28723
28724 #. type: textblock
28725 #: ../tools/virt-resize.pl:325
28726 msgid "See also the C<--ignore> option."
28727 msgstr ""
28728
28729 #. type: =item
28730 #: ../tools/virt-resize.pl:331
28731 msgid "B<--expand part>"
28732 msgstr ""
28733
28734 #. type: textblock
28735 #: ../tools/virt-resize.pl:333
28736 msgid ""
28737 "Expand the named partition so it uses up all extra space (space left over "
28738 "after any other resize changes that you request have been done)."
28739 msgstr ""
28740
28741 #. type: textblock
28742 #: ../tools/virt-resize.pl:336
28743 msgid ""
28744 "If virt-resize knows how, it will expand the direct content of the "
28745 "partition.  For example, if the partition is an LVM PV, it will expand the "
28746 "PV to fit (like calling L<pvresize(8)>).  Virt-resize leaves any other "
28747 "content it doesn't know about alone."
28748 msgstr ""
28749
28750 #. type: textblock
28751 #: ../tools/virt-resize.pl:341
28752 msgid "Currently virt-resize can resize:"
28753 msgstr ""
28754
28755 #. type: textblock
28756 #: ../tools/virt-resize.pl:347
28757 msgid ""
28758 "ext2, ext3 and ext4 filesystems when they are contained directly inside a "
28759 "partition."
28760 msgstr ""
28761
28762 #. type: textblock
28763 #: ../tools/virt-resize.pl:352
28764 msgid ""
28765 "NTFS filesystems contained directly in a partition, if libguestfs was "
28766 "compiled with support for NTFS."
28767 msgstr ""
28768
28769 #. type: textblock
28770 #: ../tools/virt-resize.pl:355
28771 msgid ""
28772 "The filesystem must have been shut down consistently last time it was used.  "
28773 "Additionally, L<ntfsresize(8)> marks the resized filesystem as requiring a "
28774 "consistency check, so at the first boot after resizing Windows will check "
28775 "the disk."
28776 msgstr ""
28777
28778 #. type: textblock
28779 #: ../tools/virt-resize.pl:362
28780 msgid ""
28781 "LVM PVs (physical volumes).  virt-resize does not usually resize anything "
28782 "inside the PV, but see the C<--LV-expand> option.  The user could also "
28783 "resize LVs as desired after boot."
28784 msgstr ""
28785
28786 #. type: textblock
28787 #: ../tools/virt-resize.pl:368 ../tools/virt-resize.pl:390
28788 msgid "Note that you cannot use C<--expand> and C<--shrink> together."
28789 msgstr ""
28790
28791 #. type: =item
28792 #: ../tools/virt-resize.pl:374
28793 msgid "B<--shrink part>"
28794 msgstr ""
28795
28796 #. type: textblock
28797 #: ../tools/virt-resize.pl:376
28798 msgid ""
28799 "Shrink the named partition until the overall disk image fits in the "
28800 "destination.  The named partition B<must> contain a filesystem or PV which "
28801 "has already been shrunk using another tool (eg. L<guestfish(1)> or other "
28802 "online tools).  Virt-resize will check this and give an error if it has not "
28803 "been done."
28804 msgstr ""
28805
28806 #. type: textblock
28807 #: ../tools/virt-resize.pl:382
28808 msgid ""
28809 "The amount by which the overall disk must be shrunk (after carrying out all "
28810 "other operations requested by the user) is called the \"deficit\".  For "
28811 "example, a straight copy (assume no other operations)  from a 5GB disk image "
28812 "to a 4GB disk image results in a 1GB deficit.  In this case, virt-resize "
28813 "would give an error unless the user specified a partition to shrink and that "
28814 "partition had more than a gigabyte of free space."
28815 msgstr ""
28816
28817 #. type: =item
28818 #: ../tools/virt-resize.pl:396
28819 msgid "B<--ignore part>"
28820 msgstr ""
28821
28822 #. type: textblock
28823 #: ../tools/virt-resize.pl:398
28824 msgid ""
28825 "Ignore the named partition.  Effectively this means the partition is "
28826 "allocated on the destination disk, but the content is not copied across from "
28827 "the source disk.  The content of the partition will be blank (all zero "
28828 "bytes)."
28829 msgstr ""
28830
28831 #. type: =item
28832 #: ../tools/virt-resize.pl:409
28833 msgid "B<--delete part>"
28834 msgstr ""
28835
28836 #. type: textblock
28837 #: ../tools/virt-resize.pl:411
28838 msgid ""
28839 "Delete the named partition.  It would be more accurate to describe this as "
28840 "\"don't copy it over\", since virt-resize doesn't do in-place changes and "
28841 "the original disk image is left intact."
28842 msgstr ""
28843
28844 #. type: textblock
28845 #: ../tools/virt-resize.pl:415
28846 msgid ""
28847 "Note that when you delete a partition, then anything contained in the "
28848 "partition is also deleted.  Furthermore, this causes any partitions that "
28849 "come after to be I<renumbered>, which can easily make your guest unbootable."
28850 msgstr ""
28851
28852 #. type: =item
28853 #: ../tools/virt-resize.pl:426
28854 msgid "B<--LV-expand logvol>"
28855 msgstr ""
28856
28857 #. type: textblock
28858 #: ../tools/virt-resize.pl:428
28859 msgid ""
28860 "This takes the logical volume and, as a final step, expands it to fill all "
28861 "the space available in its volume group.  A typical usage, assuming a Linux "
28862 "guest with a single PV C</dev/sda2> and a root device called "
28863 "C</dev/vg_guest/lv_root> would be:"
28864 msgstr ""
28865
28866 #. type: verbatim
28867 #: ../tools/virt-resize.pl:433
28868 #, no-wrap
28869 msgid ""
28870 " virt-resize indisk outdisk \\\n"
28871 "   --expand /dev/sda2 --LV-expand /dev/vg_guest/lv_root\n"
28872 "\n"
28873 msgstr ""
28874
28875 #. type: textblock
28876 #: ../tools/virt-resize.pl:436
28877 msgid ""
28878 "This would first expand the partition (and PV), and then expand the root "
28879 "device to fill the extra space in the PV."
28880 msgstr ""
28881
28882 #. type: textblock
28883 #: ../tools/virt-resize.pl:439
28884 msgid ""
28885 "The contents of the LV are also resized if virt-resize knows how to do "
28886 "that.  You can stop virt-resize from trying to expand the content by using "
28887 "the option C<--no-expand-content>."
28888 msgstr ""
28889
28890 #. type: textblock
28891 #: ../tools/virt-resize.pl:443
28892 msgid "Use L<virt-filesystems(1)> to list the filesystems in the guest."
28893 msgstr ""
28894
28895 #. type: textblock
28896 #: ../tools/virt-resize.pl:446
28897 msgid ""
28898 "You can give this option multiple times, I<but> it doesn't make sense to do "
28899 "this unless the logical volumes you specify are all in different volume "
28900 "groups."
28901 msgstr ""
28902
28903 #. type: =item
28904 #: ../tools/virt-resize.pl:454
28905 msgid "B<--no-copy-boot-loader>"
28906 msgstr ""
28907
28908 #. type: textblock
28909 #: ../tools/virt-resize.pl:456
28910 msgid ""
28911 "By default, virt-resize copies over some sectors at the start of the disk "
28912 "(up to the beginning of the first partition).  Commonly these sectors "
28913 "contain the Master Boot Record (MBR) and the boot loader, and are required "
28914 "in order for the guest to boot correctly."
28915 msgstr ""
28916
28917 #. type: textblock
28918 #: ../tools/virt-resize.pl:461
28919 msgid ""
28920 "If you specify this flag, then this initial copy is not done.  You may need "
28921 "to reinstall the boot loader in this case."
28922 msgstr ""
28923
28924 #. type: =item
28925 #: ../tools/virt-resize.pl:469
28926 msgid "B<--no-extra-partition>"
28927 msgstr ""
28928
28929 #. type: textblock
28930 #: ../tools/virt-resize.pl:471
28931 msgid ""
28932 "By default, virt-resize creates an extra partition if there is any extra, "
28933 "unused space after all resizing has happened.  Use this option to prevent "
28934 "the extra partition from being created.  If you do this then the extra space "
28935 "will be inaccessible until you run fdisk, parted, or some other partitioning "
28936 "tool in the guest."
28937 msgstr ""
28938
28939 #. type: textblock
28940 #: ../tools/virt-resize.pl:477
28941 msgid ""
28942 "Note that if the surplus space is smaller than 10 MB, no extra partition "
28943 "will be created."
28944 msgstr ""
28945
28946 #. type: =item
28947 #: ../tools/virt-resize.pl:484
28948 msgid "B<--no-expand-content>"
28949 msgstr ""
28950
28951 #. type: textblock
28952 #: ../tools/virt-resize.pl:486
28953 msgid ""
28954 "By default, virt-resize will try to expand the direct contents of "
28955 "partitions, if it knows how (see C<--expand> option above)."
28956 msgstr ""
28957
28958 #. type: textblock
28959 #: ../tools/virt-resize.pl:489
28960 msgid ""
28961 "If you give the C<--no-expand-content> option then virt-resize will not "
28962 "attempt this."
28963 msgstr ""
28964
28965 #. type: =item
28966 #: ../tools/virt-resize.pl:496
28967 msgid "B<-d> | B<--debug>"
28968 msgstr ""
28969
28970 #. type: =item
28971 #: ../tools/virt-resize.pl:504
28972 msgid "B<-n> | B<--dryrun>"
28973 msgstr ""
28974
28975 #. type: textblock
28976 #: ../tools/virt-resize.pl:506
28977 msgid "Print a summary of what would be done, but don't do anything."
28978 msgstr ""
28979
28980 #. type: =item
28981 #: ../tools/virt-resize.pl:512
28982 msgid "B<-q> | B<--quiet>"
28983 msgstr ""
28984
28985 #. type: textblock
28986 #: ../tools/virt-resize.pl:514
28987 msgid "Don't print the summary."
28988 msgstr ""
28989
28990 #. type: textblock
28991 #: ../tools/virt-resize.pl:522
28992 msgid ""
28993 "Specify the format of the input disk image.  If this flag is not given then "
28994 "it is auto-detected from the image itself."
28995 msgstr ""
28996
28997 #. type: textblock
28998 #: ../tools/virt-resize.pl:528
28999 msgid ""
29000 "Note that this option I<does not> affect the output format.  See L</QCOW2 "
29001 "AND NON-SPARSE RAW FORMATS>."
29002 msgstr ""
29003
29004 #. type: =item
29005 #: ../tools/virt-resize.pl:535
29006 msgid "B<--output-format> raw"
29007 msgstr ""
29008
29009 #. type: textblock
29010 #: ../tools/virt-resize.pl:537
29011 msgid ""
29012 "Specify the format of the output disk image.  If this flag is not given then "
29013 "it is auto-detected from the image itself."
29014 msgstr ""
29015
29016 #. type: textblock
29017 #: ../tools/virt-resize.pl:543
29018 msgid ""
29019 "Note that you still need to create the output disk with the right format.  "
29020 "See L</QCOW2 AND NON-SPARSE RAW FORMATS>."
29021 msgstr ""
29022
29023 #. type: =head1
29024 #: ../tools/virt-resize.pl:1419
29025 msgid "NOTES"
29026 msgstr ""
29027
29028 #. type: =head2
29029 #: ../tools/virt-resize.pl:1421
29030 msgid "\"Partition 1 does not end on cylinder boundary.\""
29031 msgstr ""
29032
29033 #. type: textblock
29034 #: ../tools/virt-resize.pl:1423
29035 msgid ""
29036 "Virt-resize aligns partitions to multiples of 64 sectors.  Usually this "
29037 "means the partitions will not be aligned to the ancient CHS geometry.  "
29038 "However CHS geometry is meaningless for disks manufactured since the early "
29039 "1990s, and doubly so for virtual hard drives.  Alignment of partitions to "
29040 "cylinders is not required by any modern operating system."
29041 msgstr ""
29042
29043 #. type: =head2
29044 #: ../tools/virt-resize.pl:1430
29045 msgid "RESIZING WINDOWS VIRTUAL MACHINES"
29046 msgstr ""
29047
29048 #. type: textblock
29049 #: ../tools/virt-resize.pl:1432
29050 msgid ""
29051 "In Windows Vista and later versions, Microsoft switched to using a separate "
29052 "boot partition.  In these VMs, typically C</dev/sda1> is the boot partition "
29053 "and C</dev/sda2> is the main (C:) drive.  We have not had any luck resizing "
29054 "the boot partition.  Doing so seems to break the guest completely.  However "
29055 "expanding the second partition (ie. C: drive) should work."
29056 msgstr ""
29057
29058 #. type: textblock
29059 #: ../tools/virt-resize.pl:1439
29060 msgid ""
29061 "Windows may initiate a lengthy \"chkdsk\" on first boot after a resize, if "
29062 "NTFS partitions have been expanded.  This is just a safety check and (unless "
29063 "it find errors) is nothing to worry about."
29064 msgstr ""
29065
29066 #. type: =head2
29067 #: ../tools/virt-resize.pl:1443
29068 msgid "GUEST BOOT STUCK AT \"GRUB\""
29069 msgstr ""
29070
29071 #. type: textblock
29072 #: ../tools/virt-resize.pl:1445
29073 msgid ""
29074 "If a Linux guest does not boot after resizing, and the boot is stuck after "
29075 "printing C<GRUB> on the console, try reinstalling grub.  This sometimes "
29076 "happens on older (RHEL 5-era) guests, for reasons we don't fully understand, "
29077 "although we think is to do with partition alignment."
29078 msgstr ""
29079
29080 #. type: verbatim
29081 #: ../tools/virt-resize.pl:1450
29082 #, no-wrap
29083 msgid ""
29084 " guestfish -i -a newdisk\n"
29085 " ><fs> cat /boot/grub/device.map\n"
29086 " # check the contents of this file are sensible or\n"
29087 " # edit the file if necessary\n"
29088 " ><fs> grub-install / /dev/vda\n"
29089 " ><fs> exit\n"
29090 "\n"
29091 msgstr ""
29092
29093 #. type: textblock
29094 #: ../tools/virt-resize.pl:1457
29095 msgid ""
29096 "For more flexible guest reconfiguration, including if you need to specify "
29097 "other parameters to grub-install, use L<virt-rescue(1)>."
29098 msgstr ""
29099
29100 #. type: =head1
29101 #: ../tools/virt-resize.pl:1460
29102 msgid "ALTERNATIVE TOOLS"
29103 msgstr ""
29104
29105 #. type: textblock
29106 #: ../tools/virt-resize.pl:1462
29107 msgid ""
29108 "There are several proprietary tools for resizing partitions.  We won't "
29109 "mention any here."
29110 msgstr ""
29111
29112 #. type: textblock
29113 #: ../tools/virt-resize.pl:1465
29114 msgid ""
29115 "L<parted(8)> and its graphical shell gparted can do some types of resizing "
29116 "operations on disk images.  They can resize and move partitions, but I don't "
29117 "think they can do anything with the contents, and they certainly don't "
29118 "understand LVM."
29119 msgstr ""
29120
29121 #. type: textblock
29122 #: ../tools/virt-resize.pl:1470
29123 msgid ""
29124 "L<guestfish(1)> can do everything that virt-resize can do and a lot more, "
29125 "but at a much lower level.  You will probably end up hand-calculating sector "
29126 "offsets, which is something that virt-resize was designed to avoid.  If you "
29127 "want to see the guestfish-equivalent commands that virt-resize runs, use the "
29128 "C<--debug> flag."
29129 msgstr ""
29130
29131 #. type: textblock
29132 #: ../tools/virt-resize.pl:1485
29133 msgid ""
29134 "L<virt-filesystems(1)>, L<virt-df(1)>, L<guestfs(3)>, L<guestfish(1)>, "
29135 "L<lvm(8)>, L<pvresize(8)>, L<lvresize(8)>, L<resize2fs(8)>, "
29136 "L<ntfsresize(8)>, L<virsh(1)>, L<parted(8)>, L<truncate(1)>, "
29137 "L<fallocate(1)>, L<grub(8)>, L<grub-install(8)>, L<virt-rescue(1)>, "
29138 "L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29139 msgstr ""
29140
29141 #. type: textblock
29142 #: ../tools/virt-list-filesystems.pl:32
29143 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29144 msgstr ""
29145
29146 #. type: verbatim
29147 #: ../tools/virt-list-filesystems.pl:36
29148 #, no-wrap
29149 msgid ""
29150 " virt-list-filesystems [--options] domname\n"
29151 "\n"
29152 msgstr ""
29153
29154 #. type: verbatim
29155 #: ../tools/virt-list-filesystems.pl:38
29156 #, no-wrap
29157 msgid ""
29158 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29159 "\n"
29160 msgstr ""
29161
29162 #. type: textblock
29163 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29164 msgid ""
29165 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29166 "replacement."
29167 msgstr ""
29168
29169 #. type: textblock
29170 #: ../tools/virt-list-filesystems.pl:45
29171 msgid ""
29172 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29173 "are contained in a virtual machine or disk image."
29174 msgstr ""
29175
29176 #. type: textblock
29177 #: ../tools/virt-list-filesystems.pl:49
29178 msgid ""
29179 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29180 "functionality.  For more complex cases you should look at the "
29181 "L<guestfish(1)> tool."
29182 msgstr ""
29183
29184 #. type: =item
29185 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29186 msgid "B<-l> | B<--long>"
29187 msgstr ""
29188
29189 #. type: textblock
29190 #: ../tools/virt-list-filesystems.pl:108
29191 msgid ""
29192 "With this option, C<virt-list-filesystems> displays the type of each "
29193 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29194 msgstr ""
29195
29196 #. type: =item
29197 #: ../tools/virt-list-filesystems.pl:115
29198 msgid "B<-a> | B<--all>"
29199 msgstr ""
29200
29201 #. type: textblock
29202 #: ../tools/virt-list-filesystems.pl:117
29203 msgid ""
29204 "Normally we only show mountable filesystems.  If this option is given then "
29205 "swap devices are shown too."
29206 msgstr ""
29207
29208 #. type: textblock
29209 #: ../tools/virt-list-filesystems.pl:191
29210 msgid ""
29211 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29212 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29213 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29214 msgstr ""
29215
29216 #. type: textblock
29217 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29218 msgid "Copyright (C) 2009 Red Hat Inc."
29219 msgstr ""
29220
29221 #. type: textblock
29222 #: ../tools/virt-tar.pl:33
29223 msgid "virt-tar - Extract or upload files to a virtual machine"
29224 msgstr ""
29225
29226 #. type: verbatim
29227 #: ../tools/virt-tar.pl:37
29228 #, no-wrap
29229 msgid ""
29230 " virt-tar [--options] -x domname directory tarball\n"
29231 "\n"
29232 msgstr ""
29233
29234 #. type: verbatim
29235 #: ../tools/virt-tar.pl:39
29236 #, no-wrap
29237 msgid ""
29238 " virt-tar [--options] -u domname tarball directory\n"
29239 "\n"
29240 msgstr ""
29241
29242 #. type: verbatim
29243 #: ../tools/virt-tar.pl:41
29244 #, no-wrap
29245 msgid ""
29246 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29247 "\n"
29248 msgstr ""
29249
29250 #. type: verbatim
29251 #: ../tools/virt-tar.pl:43
29252 #, no-wrap
29253 msgid ""
29254 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29255 "\n"
29256 msgstr ""
29257
29258 #. type: textblock
29259 #: ../tools/virt-tar.pl:47
29260 msgid ""
29261 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29262 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29263 msgstr ""
29264
29265 #. type: textblock
29266 #: ../tools/virt-tar.pl:52
29267 msgid "Download C</home> from the VM into a local tarball:"
29268 msgstr ""
29269
29270 #. type: verbatim
29271 #: ../tools/virt-tar.pl:54
29272 #, no-wrap
29273 msgid ""
29274 " virt-tar -x domname /home home.tar\n"
29275 "\n"
29276 msgstr ""
29277
29278 #. type: verbatim
29279 #: ../tools/virt-tar.pl:56
29280 #, no-wrap
29281 msgid ""
29282 " virt-tar -zx domname /home home.tar.gz\n"
29283 "\n"
29284 msgstr ""
29285
29286 #. type: textblock
29287 #: ../tools/virt-tar.pl:58
29288 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29289 msgstr ""
29290
29291 #. type: verbatim
29292 #: ../tools/virt-tar.pl:60
29293 #, no-wrap
29294 msgid ""
29295 " virt-tar -u domname uploadstuff.tar /tmp\n"
29296 "\n"
29297 msgstr ""
29298
29299 #. type: verbatim
29300 #: ../tools/virt-tar.pl:62
29301 #, no-wrap
29302 msgid ""
29303 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29304 "\n"
29305 msgstr ""
29306
29307 #. type: textblock
29308 #: ../tools/virt-tar.pl:66
29309 msgid ""
29310 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
29311 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29312 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29313 msgstr ""
29314
29315 #. type: textblock
29316 #: ../tools/virt-tar.pl:71
29317 msgid ""
29318 "You can use C<-x> (extract) on live virtual machines, but you might get "
29319 "inconsistent results or errors if there is filesystem activity inside the "
29320 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29321 "work, but the only way to guarantee consistent results is if the virtual "
29322 "machine is shut down."
29323 msgstr ""
29324
29325 #. type: textblock
29326 #: ../tools/virt-tar.pl:79
29327 msgid ""
29328 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29329 "parts of a guest filesystem.  There are many possibilities: making backups, "
29330 "uploading data files, snooping on guest activity, fixing or customizing "
29331 "guests, etc."
29332 msgstr ""
29333
29334 #. type: textblock
29335 #: ../tools/virt-tar.pl:84
29336 msgid ""
29337 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29338 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29339 "should look at the L<guestfish(1)> tool."
29340 msgstr ""
29341
29342 #. type: textblock
29343 #: ../tools/virt-tar.pl:88
29344 msgid ""
29345 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
29346 "its contents (recursively) from the virtual machine into a local tarball.  "
29347 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
29348 "virtual machine.  You cannot use these two options together."
29349 msgstr ""
29350
29351 #. type: textblock
29352 #: ../tools/virt-tar.pl:94
29353 msgid ""
29354 "In addition, you may need to use the C<-z> (gZip) option to enable "
29355 "compression.  When uploading, you have to specify C<-z> if the upload file "
29356 "is compressed because virt-tar won't detect this on its own."
29357 msgstr ""
29358
29359 #. type: textblock
29360 #: ../tools/virt-tar.pl:98
29361 msgid ""
29362 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29363 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29364 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29365 "the L<libguestfs(3)> API)."
29366 msgstr ""
29367
29368 #. type: =item
29369 #: ../tools/virt-tar.pl:156
29370 msgid "B<-x> | B<--extract> | B<--download>"
29371 msgstr ""
29372
29373 #. type: =item
29374 #: ../tools/virt-tar.pl:158
29375 msgid "B<-u> | B<--upload>"
29376 msgstr ""
29377
29378 #. type: textblock
29379 #: ../tools/virt-tar.pl:160
29380 msgid ""
29381 "Use C<-x> to extract (download) a directory from a virtual machine to a "
29382 "local tarball."
29383 msgstr ""
29384
29385 #. type: textblock
29386 #: ../tools/virt-tar.pl:163
29387 msgid ""
29388 "Use C<-u> to upload and unpack from a local tarball into a virtual machine.  "
29389 "Please read the L</WARNING> section above before using this option."
29390 msgstr ""
29391
29392 #. type: textblock
29393 #: ../tools/virt-tar.pl:167
29394 msgid "You must specify exactly one of these options."
29395 msgstr ""
29396
29397 #. type: =item
29398 #: ../tools/virt-tar.pl:173
29399 msgid "B<-z> | B<--gzip>"
29400 msgstr ""
29401
29402 #. type: textblock
29403 #: ../tools/virt-tar.pl:175
29404 msgid "Specify that the input or output tarball is gzip-compressed."
29405 msgstr ""
29406
29407 #. type: textblock
29408 #: ../tools/virt-tar.pl:288
29409 msgid ""
29410 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29411 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
29412 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
29413 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29414 msgstr ""
29415
29416 #. type: textblock
29417 #: ../tools/virt-make-fs.pl:37
29418 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29419 msgstr ""
29420
29421 #. type: verbatim
29422 #: ../tools/virt-make-fs.pl:41
29423 #, no-wrap
29424 msgid ""
29425 " virt-make-fs [--options] input.tar output.img\n"
29426 "\n"
29427 msgstr ""
29428
29429 #. type: verbatim
29430 #: ../tools/virt-make-fs.pl:43
29431 #, no-wrap
29432 msgid ""
29433 " virt-make-fs [--options] input.tar.gz output.img\n"
29434 "\n"
29435 msgstr ""
29436
29437 #. type: verbatim
29438 #: ../tools/virt-make-fs.pl:45
29439 #, no-wrap
29440 msgid ""
29441 " virt-make-fs [--options] directory output.img\n"
29442 "\n"
29443 msgstr ""
29444
29445 #. type: textblock
29446 #: ../tools/virt-make-fs.pl:49
29447 msgid ""
29448 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29449 "archive or some files in a directory.  It is similar to tools like "
29450 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29451 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29452 "useful if you want to attach these filesystems to existing virtual machines "
29453 "(eg. to import large amounts of read-only data to a VM)."
29454 msgstr ""
29455
29456 #. type: textblock
29457 #: ../tools/virt-make-fs.pl:57
29458 msgid "Basic usage is:"
29459 msgstr ""
29460
29461 #. type: verbatim
29462 #: ../tools/virt-make-fs.pl:59
29463 #, no-wrap
29464 msgid ""
29465 " virt-make-fs input output\n"
29466 "\n"
29467 msgstr ""
29468
29469 #. type: textblock
29470 #: ../tools/virt-make-fs.pl:61
29471 msgid ""
29472 "where C<input> is either a directory containing files that you want to add, "
29473 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29474 "C<output> is a disk image.  The input type is detected automatically.  The "
29475 "output disk image defaults to a raw ext2 image unless you specify extra "
29476 "flags (see L</OPTIONS> below)."
29477 msgstr ""
29478
29479 #. type: =head2
29480 #: ../tools/virt-make-fs.pl:67
29481 msgid "EXTRA SPACE"
29482 msgstr ""
29483
29484 #. type: textblock
29485 #: ../tools/virt-make-fs.pl:69
29486 msgid ""
29487 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29488 "the files that it contains, but might have extra space.  Depending on how "
29489 "you are going to use the output, you might think this extra space is wasted "
29490 "and want to minimize it, or you might want to leave space so that more files "
29491 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29492 "but you can use the C<--size> flag to leave space in the filesystem if you "
29493 "want it."
29494 msgstr ""
29495
29496 #. type: textblock
29497 #: ../tools/virt-make-fs.pl:77
29498 msgid ""
29499 "An alternative way to leave extra space but not make the output image any "
29500 "bigger is to use an alternative disk image format (instead of the default "
29501 "\"raw\" format).  Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
29502 "image format (check your hypervisor supports this before using it).  This "
29503 "allows you to choose a large C<--size> but the extra space won't actually be "
29504 "allocated in the image until you try to store something in it."
29505 msgstr ""
29506
29507 #. type: textblock
29508 #: ../tools/virt-make-fs.pl:85
29509 msgid ""
29510 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29511 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29512 "to build another image from scratch."
29513 msgstr ""
29514
29515 #. type: =head3
29516 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29517 msgid "EXAMPLE"
29518 msgstr ""
29519
29520 #. type: verbatim
29521 #: ../tools/virt-make-fs.pl:91
29522 #, no-wrap
29523 msgid ""
29524 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29525 "\n"
29526 msgstr ""
29527
29528 #. type: =head2
29529 #: ../tools/virt-make-fs.pl:93
29530 msgid "FILESYSTEM TYPE"
29531 msgstr ""
29532
29533 #. type: textblock
29534 #: ../tools/virt-make-fs.pl:95
29535 msgid ""
29536 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29537 "libguestfs supports can be used (but I<not> read-only formats like "
29538 "ISO9660).  Here are some of the more common choices:"
29539 msgstr ""
29540
29541 #. type: =item
29542 #: ../tools/virt-make-fs.pl:101
29543 msgid "I<ext3>"
29544 msgstr ""
29545
29546 #. type: textblock
29547 #: ../tools/virt-make-fs.pl:103
29548 msgid ""
29549 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29550 "you are not going to use the filesystem in a way that requires the journal, "
29551 "then this is just wasted overhead."
29552 msgstr ""
29553
29554 #. type: =item
29555 #: ../tools/virt-make-fs.pl:107
29556 msgid "I<ntfs> or I<vfat>"
29557 msgstr ""
29558
29559 #. type: textblock
29560 #: ../tools/virt-make-fs.pl:109
29561 msgid "Useful if exporting data to a Windows guest."
29562 msgstr ""
29563
29564 #. type: textblock
29565 #: ../tools/virt-make-fs.pl:111
29566 msgid ""
29567 "I<Note for vfat>: The tar archive or local directory must only contain files "
29568 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29569 "program running within libguestfs is unable to change the ownership of "
29570 "non-root files, since vfat itself does not support this."
29571 msgstr ""
29572
29573 #. type: =item
29574 #: ../tools/virt-make-fs.pl:116
29575 msgid "I<minix>"
29576 msgstr ""
29577
29578 #. type: textblock
29579 #: ../tools/virt-make-fs.pl:118
29580 msgid ""
29581 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29582 "total filesystem size."
29583 msgstr ""
29584
29585 #. type: verbatim
29586 #: ../tools/virt-make-fs.pl:125
29587 #, no-wrap
29588 msgid ""
29589 " virt-make-fs --type=minix input minixfs.img\n"
29590 "\n"
29591 msgstr ""
29592
29593 #. type: =head2
29594 #: ../tools/virt-make-fs.pl:127
29595 msgid "TO PARTITION OR NOT TO PARTITION"
29596 msgstr ""
29597
29598 #. type: textblock
29599 #: ../tools/virt-make-fs.pl:129
29600 msgid "Optionally virt-make-fs can add a partition table to the output disk."
29601 msgstr ""
29602
29603 #. type: textblock
29604 #: ../tools/virt-make-fs.pl:131
29605 msgid ""
29606 "Adding a partition can make the disk image more compatible with certain "
29607 "virtualized operating systems which don't expect to see a filesystem "
29608 "directly located on a block device (Linux doesn't care and will happily "
29609 "handle both types)."
29610 msgstr ""
29611
29612 #. type: textblock
29613 #: ../tools/virt-make-fs.pl:136
29614 msgid ""
29615 "On the other hand, if you have a partition table then the output image is no "
29616 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
29617 "directly on a partitioned disk image.  (However libguestfs tools such as "
29618 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
29619 msgstr ""
29620
29621 #. type: textblock
29622 #: ../tools/virt-make-fs.pl:144
29623 msgid "Add an MBR partition:"
29624 msgstr ""
29625
29626 #. type: verbatim
29627 #: ../tools/virt-make-fs.pl:146
29628 #, no-wrap
29629 msgid ""
29630 " virt-make-fs --partition -- input disk.img\n"
29631 "\n"
29632 msgstr ""
29633
29634 #. type: textblock
29635 #: ../tools/virt-make-fs.pl:148
29636 msgid ""
29637 "If the output disk image could be terabyte-sized or larger, it's better to "
29638 "use an EFI/GPT-compatible partition table:"
29639 msgstr ""
29640
29641 #. type: verbatim
29642 #: ../tools/virt-make-fs.pl:151
29643 #, no-wrap
29644 msgid ""
29645 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
29646 "\n"
29647 msgstr ""
29648
29649 #. type: textblock
29650 #: ../tools/virt-make-fs.pl:179
29651 msgid "Enable debugging information."
29652 msgstr ""
29653
29654 #. type: =item
29655 #: ../tools/virt-make-fs.pl:185
29656 msgid "B<--size=E<lt>NE<gt>>"
29657 msgstr ""
29658
29659 #. type: =item
29660 #: ../tools/virt-make-fs.pl:187
29661 msgid "B<--size=+E<lt>NE<gt>>"
29662 msgstr ""
29663
29664 #. type: =item
29665 #: ../tools/virt-make-fs.pl:189
29666 msgid "B<-s E<lt>NE<gt>>"
29667 msgstr ""
29668
29669 #. type: =item
29670 #: ../tools/virt-make-fs.pl:191
29671 msgid "B<-s +E<lt>NE<gt>>"
29672 msgstr ""
29673
29674 #. type: textblock
29675 #: ../tools/virt-make-fs.pl:193
29676 msgid "Use the C<--size> (or C<-s>) option to choose the size of the output image."
29677 msgstr ""
29678
29679 #. type: textblock
29680 #: ../tools/virt-make-fs.pl:196
29681 msgid ""
29682 "If this option is I<not> given, then the output image will be just large "
29683 "enough to contain all the files, with not much wasted space."
29684 msgstr ""
29685
29686 #. type: textblock
29687 #: ../tools/virt-make-fs.pl:199
29688 msgid ""
29689 "To choose a fixed size output disk, specify an absolute number followed by "
29690 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29691 "Petabytes or Exabytes.  This must be large enough to contain all the input "
29692 "files, else you will get an error."
29693 msgstr ""
29694
29695 #. type: textblock
29696 #: ../tools/virt-make-fs.pl:204
29697 msgid ""
29698 "To leave extra space, specify C<+> (plus sign) and a number followed by "
29699 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29700 "Petabytes or Exabytes.  For example: C<--size=+200M> means enough space for "
29701 "the input files, and (approximately) an extra 200 MB free space."
29702 msgstr ""
29703
29704 #. type: textblock
29705 #: ../tools/virt-make-fs.pl:210
29706 msgid ""
29707 "Note that virt-make-fs estimates free space, and therefore will not produce "
29708 "filesystems containing precisely the free space requested.  (It is much more "
29709 "expensive and time-consuming to produce a filesystem which has precisely the "
29710 "desired free space)."
29711 msgstr ""
29712
29713 #. type: =item
29714 #: ../tools/virt-make-fs.pl:219
29715 msgid "B<--format=E<lt>fmtE<gt>>"
29716 msgstr ""
29717
29718 #. type: =item
29719 #: ../tools/virt-make-fs.pl:221
29720 msgid "B<-F E<lt>fmtE<gt>>"
29721 msgstr ""
29722
29723 #. type: textblock
29724 #: ../tools/virt-make-fs.pl:223
29725 msgid "Choose the output disk image format."
29726 msgstr ""
29727
29728 #. type: textblock
29729 #: ../tools/virt-make-fs.pl:225
29730 msgid "The default is C<raw> (raw disk image)."
29731 msgstr ""
29732
29733 #. type: textblock
29734 #: ../tools/virt-make-fs.pl:227
29735 msgid ""
29736 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
29737 "that would really make sense here is C<qcow2>."
29738 msgstr ""
29739
29740 #. type: =item
29741 #: ../tools/virt-make-fs.pl:234
29742 msgid "B<--type=E<lt>fsE<gt>>"
29743 msgstr ""
29744
29745 #. type: =item
29746 #: ../tools/virt-make-fs.pl:236
29747 msgid "B<-t E<lt>fsE<gt>>"
29748 msgstr ""
29749
29750 #. type: textblock
29751 #: ../tools/virt-make-fs.pl:238
29752 msgid "Choose the output filesystem type."
29753 msgstr ""
29754
29755 #. type: textblock
29756 #: ../tools/virt-make-fs.pl:240
29757 msgid "The default is C<ext2>."
29758 msgstr ""
29759
29760 #. type: textblock
29761 #: ../tools/virt-make-fs.pl:242
29762 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
29763 msgstr ""
29764
29765 #. type: =item
29766 #: ../tools/virt-make-fs.pl:249
29767 msgid "B<--partition>"
29768 msgstr ""
29769
29770 #. type: =item
29771 #: ../tools/virt-make-fs.pl:251
29772 msgid "B<--partition=E<lt>parttypeE<gt>>"
29773 msgstr ""
29774
29775 #. type: textblock
29776 #: ../tools/virt-make-fs.pl:253
29777 msgid ""
29778 "If specified, this flag adds an MBR partition table to the output disk "
29779 "image."
29780 msgstr ""
29781
29782 #. type: textblock
29783 #: ../tools/virt-make-fs.pl:256
29784 msgid ""
29785 "You can change the partition table type, eg. C<--partition=gpt> for large "
29786 "disks."
29787 msgstr ""
29788
29789 #. type: textblock
29790 #: ../tools/virt-make-fs.pl:259
29791 msgid ""
29792 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
29793 "might consider the next parameter to be the partition type.  For example:"
29794 msgstr ""
29795
29796 #. type: verbatim
29797 #: ../tools/virt-make-fs.pl:263
29798 #, no-wrap
29799 msgid ""
29800 " virt-make-fs --partition input.tar ...\n"
29801 "\n"
29802 msgstr ""
29803
29804 #. type: textblock
29805 #: ../tools/virt-make-fs.pl:265
29806 msgid ""
29807 "would cause virt-make-fs to think you wanted to use a partition type of "
29808 "C<input.tar> which is completely wrong.  To avoid this, use C<--> (a double "
29809 "dash) between options and the input file argument:"
29810 msgstr ""
29811
29812 #. type: verbatim
29813 #: ../tools/virt-make-fs.pl:269
29814 #, no-wrap
29815 msgid ""
29816 " virt-make-fs --partition -- input.tar ...\n"
29817 "\n"
29818 msgstr ""
29819
29820 #. type: textblock
29821 #: ../tools/virt-make-fs.pl:536
29822 msgid ""
29823 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
29824 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
29825 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29826 msgstr ""
29827
29828 #. type: verbatim
29829 #: ../tools/virt-make-fs.pl:553
29830 #, no-wrap
29831 msgid ""
29832 " export LIBGUESTFS_DEBUG=1\n"
29833 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
29834 "\n"
29835 msgstr ""
29836
29837 #. type: textblock
29838 #: ../tools/virt-make-fs.pl:556
29839 msgid ""
29840 "Attach /tmp/virt-make-fs.log to a new bug report at "
29841 "L<https://bugzilla.redhat.com/>"
29842 msgstr ""
29843
29844 #. type: textblock
29845 #: ../tools/virt-list-partitions.pl:32
29846 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
29847 msgstr ""
29848
29849 #. type: verbatim
29850 #: ../tools/virt-list-partitions.pl:36
29851 #, no-wrap
29852 msgid ""
29853 " virt-list-partitions [--options] domname\n"
29854 "\n"
29855 msgstr ""
29856
29857 #. type: verbatim
29858 #: ../tools/virt-list-partitions.pl:38
29859 #, no-wrap
29860 msgid ""
29861 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
29862 "\n"
29863 msgstr ""
29864
29865 #. type: textblock
29866 #: ../tools/virt-list-partitions.pl:45
29867 msgid ""
29868 "C<virt-list-partitions> is a command line tool to list the partitions that "
29869 "are contained in a virtual machine or disk image.  It is mainly useful as a "
29870 "first step to using L<virt-resize(1)>."
29871 msgstr ""
29872
29873 #. type: textblock
29874 #: ../tools/virt-list-partitions.pl:50
29875 msgid ""
29876 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
29877 "functionality.  For more complex cases you should look at the "
29878 "L<guestfish(1)> tool."
29879 msgstr ""
29880
29881 #. type: =item
29882 #: ../tools/virt-list-partitions.pl:107
29883 msgid "B<-h> | B<--human-readable>"
29884 msgstr ""
29885
29886 #. type: textblock
29887 #: ../tools/virt-list-partitions.pl:109
29888 msgid "Show sizes in human-readable form (eg. \"1G\")."
29889 msgstr ""
29890
29891 #. type: textblock
29892 #: ../tools/virt-list-partitions.pl:117
29893 msgid ""
29894 "With this option, C<virt-list-partitions> displays the type and size of each "
29895 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
29896 msgstr ""
29897
29898 #. type: =item
29899 #: ../tools/virt-list-partitions.pl:124
29900 msgid "B<-t> | B<--total>"
29901 msgstr ""
29902
29903 #. type: textblock
29904 #: ../tools/virt-list-partitions.pl:126
29905 msgid "Display the total size of each block device (as a separate row or rows)."
29906 msgstr ""
29907
29908 #. type: textblock
29909 #: ../tools/virt-list-partitions.pl:259
29910 msgid ""
29911 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
29912 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
29913 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29914 msgstr ""