Add 'command' and 'command-lines'. Fix args freeing in Perl bindings.
[libguestfs.git] / guestfish-actions.pod
1 =head2 add-cdrom | cdrom
2
3  add-cdrom filename
4
5 This function adds a virtual CD-ROM disk image to the guest.
6
7 This is equivalent to the qemu parameter C<-cdrom filename>.
8
9 =head2 add-drive | add
10
11  add-drive filename
12
13 This function adds a virtual machine disk image C<filename> to the
14 guest.  The first time you call this function, the disk appears as IDE
15 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
16 so on.
17
18 You don't necessarily need to be root when using libguestfs.  However
19 you obviously do need sufficient permissions to access the filename
20 for whatever operations you want to perform (ie. read access if you
21 just want to read the image or write access if you want to modify the
22 image).
23
24 This is equivalent to the qemu parameter C<-drive file=filename>.
25
26 =head2 aug-close
27
28  aug-close
29
30 Close the current Augeas handle and free up any resources
31 used by it.  After calling this, you have to call
32 C<aug_init> again before you can use any other
33 Augeas functions.
34
35 =head2 aug-defnode
36
37  aug-defnode name expr val
38
39 Defines a variable C<name> whose value is the result of
40 evaluating C<expr>.
41
42 If C<expr> evaluates to an empty nodeset, a node is created,
43 equivalent to calling C<aug_set> C<expr>, C<value>.
44 C<name> will be the nodeset containing that single node.
45
46 On success this returns a pair containing the
47 number of nodes in the nodeset, and a boolean flag
48 if a node was created.
49
50 =head2 aug-defvar
51
52  aug-defvar name expr
53
54 Defines an Augeas variable C<name> whose value is the result
55 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
56 undefined.
57
58 On success this returns the number of nodes in C<expr>, or
59 C<0> if C<expr> evaluates to something which is not a nodeset.
60
61 =head2 aug-get
62
63  aug-get path
64
65 Look up the value associated with C<path>.  If C<path>
66 matches exactly one node, the C<value> is returned.
67
68 =head2 aug-init
69
70  aug-init root flags
71
72 Create a new Augeas handle for editing configuration files.
73 If there was any previous Augeas handle associated with this
74 guestfs session, then it is closed.
75
76 You must call this before using any other C<aug_*>
77 commands.
78
79 C<root> is the filesystem root.  C<root> must not be NULL,
80 use C</> instead.
81
82 The flags are the same as the flags defined in
83 E<lt>augeas.hE<gt>, the logical I<or> of the following
84 integers:
85
86 =over 4
87
88 =item C<AUG_SAVE_BACKUP> = 1
89
90 Keep the original file with a C<.augsave> extension.
91
92 =item C<AUG_SAVE_NEWFILE> = 2
93
94 Save changes into a file with extension C<.augnew>, and
95 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
96
97 =item C<AUG_TYPE_CHECK> = 4
98
99 Typecheck lenses (can be expensive).
100
101 =item C<AUG_NO_STDINC> = 8
102
103 Do not use standard load path for modules.
104
105 =item C<AUG_SAVE_NOOP> = 16
106
107 Make save a no-op, just record what would have been changed.
108
109 =item C<AUG_NO_LOAD> = 32
110
111 Do not load the tree in C<aug_init>.
112
113 =back
114
115 To close the handle, you can call C<aug_close>.
116
117 To find out more about Augeas, see L<http://augeas.net/>.
118
119 =head2 aug-insert
120
121  aug-insert path label true|false
122
123 Create a new sibling C<label> for C<path>, inserting it into
124 the tree before or after C<path> (depending on the boolean
125 flag C<before>).
126
127 C<path> must match exactly one existing node in the tree, and
128 C<label> must be a label, ie. not contain C</>, C<*> or end
129 with a bracketed index C<[N]>.
130
131 =head2 aug-load
132
133  aug-load
134
135 Load files into the tree.
136
137 See C<aug_load> in the Augeas documentation for the full gory
138 details.
139
140 =head2 aug-ls
141
142  aug-ls path
143
144 This is just a shortcut for listing C<aug_match>
145 C<path/*> and sorting the resulting nodes into alphabetical order.
146
147 =head2 aug-match
148
149  aug-match path
150
151 Returns a list of paths which match the path expression C<path>.
152 The returned paths are sufficiently qualified so that they match
153 exactly one node in the current tree.
154
155 =head2 aug-mv
156
157  aug-mv src dest
158
159 Move the node C<src> to C<dest>.  C<src> must match exactly
160 one node.  C<dest> is overwritten if it exists.
161
162 =head2 aug-rm
163
164  aug-rm path
165
166 Remove C<path> and all of its children.
167
168 On success this returns the number of entries which were removed.
169
170 =head2 aug-save
171
172  aug-save
173
174 This writes all pending changes to disk.
175
176 The flags which were passed to C<aug_init> affect exactly
177 how files are saved.
178
179 =head2 aug-set
180
181  aug-set path val
182
183 Set the value associated with C<path> to C<value>.
184
185 =head2 cat
186
187  cat path
188
189 Return the contents of the file named C<path>.
190
191 Note that this function cannot correctly handle binary files
192 (specifically, files containing C<\0> character which is treated
193 as end of string).  For those you need to use the C<read_file>
194 function which has a more complex interface.
195
196 Because of the message protocol, there is a transfer limit 
197 of somewhere between 2MB and 4MB.  To transfer large files you should use
198 FTP.
199
200 =head2 chmod
201
202  chmod mode path
203
204 Change the mode (permissions) of C<path> to C<mode>.  Only
205 numeric modes are supported.
206
207 =head2 chown
208
209  chown owner group path
210
211 Change the file owner to C<owner> and group to C<group>.
212
213 Only numeric uid and gid are supported.  If you want to use
214 names, you will need to locate and parse the password file
215 yourself (Augeas support makes this relatively easy).
216
217 =head2 command
218
219  command arguments,...
220
221 This calls runs a command from the guest filesystem.  The
222 filesystem must be mounted, and must contain a compatible
223 operating system (ie. something Linux, with the same
224 or compatible processor architecture).
225
226 The single parameter is an argv-style list of arguments.
227 The first element is the name of the program to run.
228 Subsequent elements are parameters.  The list must be
229 non-empty (ie. must contain a program name).
230
231 The C<$PATH> environment variable will contain at least
232 C</usr/bin> and C</bin>.  If you require a program from
233 another location, you should provide the full path in the
234 first parameter.
235
236 Shared libraries and data files required by the program
237 must be available on filesystems which are mounted in the
238 correct places.  It is the caller's responsibility to ensure
239 all filesystems that are needed are mounted at the right
240 locations.
241
242 =head2 command-lines
243
244  command-lines arguments,...
245
246 This is the same as C<command>, but splits the
247 result into a list of lines.
248
249 =head2 config
250
251  config qemuparam qemuvalue
252
253 This can be used to add arbitrary qemu command line parameters
254 of the form C<-param value>.  Actually it's not quite arbitrary - we
255 prevent you from setting some parameters which would interfere with
256 parameters that we use.
257
258 The first character of C<param> string must be a C<-> (dash).
259
260 C<value> can be NULL.
261
262 =head2 exists
263
264  exists path
265
266 This returns C<true> if and only if there is a file, directory
267 (or anything) with the given C<path> name.
268
269 See also C<is_file>, C<is_dir>, C<stat>.
270
271 =head2 file
272
273  file path
274
275 This call uses the standard L<file(1)> command to determine
276 the type or contents of the file.  This also works on devices,
277 for example to find out whether a partition contains a filesystem.
278
279 The exact command which runs is C<file -bsL path>.  Note in
280 particular that the filename is not prepended to the output
281 (the C<-b> option).
282
283 =head2 get-autosync
284
285  get-autosync
286
287 Get the autosync flag.
288
289 =head2 get-path
290
291  get-path
292
293 Return the current search path.
294
295 This is always non-NULL.  If it wasn't set already, then this will
296 return the default path.
297
298 =head2 get-verbose
299
300  get-verbose
301
302 This returns the verbose messages flag.
303
304 =head2 is-dir
305
306  is-dir path
307
308 This returns C<true> if and only if there is a directory
309 with the given C<path> name.  Note that it returns false for
310 other objects like files.
311
312 See also C<stat>.
313
314 =head2 is-file
315
316  is-file path
317
318 This returns C<true> if and only if there is a file
319 with the given C<path> name.  Note that it returns false for
320 other objects like directories.
321
322 See also C<stat>.
323
324 =head2 kill-subprocess
325
326  kill-subprocess
327
328 This kills the qemu subprocess.  You should never need to call this.
329
330 =head2 launch | run
331
332  launch
333
334 Internally libguestfs is implemented by running a virtual machine
335 using L<qemu(1)>.
336
337 You should call this after configuring the handle
338 (eg. adding drives) but before performing any actions.
339
340 =head2 list-devices
341
342  list-devices
343
344 List all the block devices.
345
346 The full block device names are returned, eg. C</dev/sda>
347
348 =head2 list-partitions
349
350  list-partitions
351
352 List all the partitions detected on all block devices.
353
354 The full partition device names are returned, eg. C</dev/sda1>
355
356 This does not return logical volumes.  For that you will need to
357 call C<lvs>.
358
359 =head2 ll
360
361  ll directory
362
363 List the files in C<directory> (relative to the root directory,
364 there is no cwd) in the format of 'ls -la'.
365
366 This command is mostly useful for interactive sessions.  It
367 is I<not> intended that you try to parse the output string.
368
369 =head2 ls
370
371  ls directory
372
373 List the files in C<directory> (relative to the root directory,
374 there is no cwd).  The '.' and '..' entries are not returned, but
375 hidden files are shown.
376
377 This command is mostly useful for interactive sessions.  Programs
378 should probably use C<readdir> instead.
379
380 =head2 lvcreate
381
382  lvcreate logvol volgroup mbytes
383
384 This creates an LVM volume group called C<logvol>
385 on the volume group C<volgroup>, with C<size> megabytes.
386
387 =head2 lvm-remove-all
388
389  lvm-remove-all
390
391 This command removes all LVM logical volumes, volume groups
392 and physical volumes.
393
394 B<This command is dangerous.  Without careful use you
395 can easily destroy all your data>.
396
397 =head2 lvs
398
399  lvs
400
401 List all the logical volumes detected.  This is the equivalent
402 of the L<lvs(8)> command.
403
404 This returns a list of the logical volume device names
405 (eg. C</dev/VolGroup00/LogVol00>).
406
407 See also C<lvs_full>.
408
409 =head2 lvs-full
410
411  lvs-full
412
413 List all the logical volumes detected.  This is the equivalent
414 of the L<lvs(8)> command.  The "full" version includes all fields.
415
416 =head2 mkdir
417
418  mkdir path
419
420 Create a directory named C<path>.
421
422 =head2 mkdir-p
423
424  mkdir-p path
425
426 Create a directory named C<path>, creating any parent directories
427 as necessary.  This is like the C<mkdir -p> shell command.
428
429 =head2 mkfs
430
431  mkfs fstype device
432
433 This creates a filesystem on C<device> (usually a partition
434 of LVM logical volume).  The filesystem type is C<fstype>, for
435 example C<ext3>.
436
437 =head2 mount
438
439  mount device mountpoint
440
441 Mount a guest disk at a position in the filesystem.  Block devices
442 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
443 the guest.  If those block devices contain partitions, they will have
444 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
445 names can be used.
446
447 The rules are the same as for L<mount(2)>:  A filesystem must
448 first be mounted on C</> before others can be mounted.  Other
449 filesystems can only be mounted on directories which already
450 exist.
451
452 The mounted filesystem is writable, if we have sufficient permissions
453 on the underlying device.
454
455 The filesystem options C<sync> and C<noatime> are set with this
456 call, in order to improve reliability.
457
458 =head2 mounts
459
460  mounts
461
462 This returns the list of currently mounted filesystems.  It returns
463 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
464
465 Some internal mounts are not shown.
466
467 =head2 pvcreate
468
469  pvcreate device
470
471 This creates an LVM physical volume on the named C<device>,
472 where C<device> should usually be a partition name such
473 as C</dev/sda1>.
474
475 =head2 pvs
476
477  pvs
478
479 List all the physical volumes detected.  This is the equivalent
480 of the L<pvs(8)> command.
481
482 This returns a list of just the device names that contain
483 PVs (eg. C</dev/sda2>).
484
485 See also C<pvs_full>.
486
487 =head2 pvs-full
488
489  pvs-full
490
491 List all the physical volumes detected.  This is the equivalent
492 of the L<pvs(8)> command.  The "full" version includes all fields.
493
494 =head2 read-lines
495
496  read-lines path
497
498 Return the contents of the file named C<path>.
499
500 The file contents are returned as a list of lines.  Trailing
501 C<LF> and C<CRLF> character sequences are I<not> returned.
502
503 Note that this function cannot correctly handle binary files
504 (specifically, files containing C<\0> character which is treated
505 as end of line).  For those you need to use the C<read_file>
506 function which has a more complex interface.
507
508 =head2 rm
509
510  rm path
511
512 Remove the single file C<path>.
513
514 =head2 rm-rf
515
516  rm-rf path
517
518 Remove the file or directory C<path>, recursively removing the
519 contents if its a directory.  This is like the C<rm -rf> shell
520 command.
521
522 =head2 rmdir
523
524  rmdir path
525
526 Remove the single directory C<path>.
527
528 =head2 set-autosync | autosync
529
530  set-autosync true|false
531
532 If C<autosync> is true, this enables autosync.  Libguestfs will make a
533 best effort attempt to run C<sync> when the handle is closed
534 (also if the program exits without closing handles).
535
536 =head2 set-path | path
537
538  set-path path
539
540 Set the path that libguestfs searches for kernel and initrd.img.
541
542 The default is C<$libdir/guestfs> unless overridden by setting
543 C<LIBGUESTFS_PATH> environment variable.
544
545 The string C<path> is stashed in the libguestfs handle, so the caller
546 must make sure it remains valid for the lifetime of the handle.
547
548 Setting C<path> to C<NULL> restores the default path.
549
550 =head2 set-verbose | verbose
551
552  set-verbose true|false
553
554 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
555
556 Verbose messages are disabled unless the environment variable
557 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
558
559 =head2 sfdisk
560
561  sfdisk device cyls heads sectors lines,...
562
563 This is a direct interface to the L<sfdisk(8)> program for creating
564 partitions on block devices.
565
566 C<device> should be a block device, for example C</dev/sda>.
567
568 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
569 and sectors on the device, which are passed directly to sfdisk as
570 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
571 of these, then the corresponding parameter is omitted.  Usually for
572 'large' disks, you can just pass C<0> for these, but for small
573 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
574 out the right geometry and you will need to tell it.
575
576 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
577 information refer to the L<sfdisk(8)> manpage.
578
579 To create a single partition occupying the whole disk, you would
580 pass C<lines> as a single element list, when the single element being
581 the string C<,> (comma).
582
583 B<This command is dangerous.  Without careful use you
584 can easily destroy all your data>.
585
586 =head2 sync
587
588  sync
589
590 This syncs the disk, so that any writes are flushed through to the
591 underlying disk image.
592
593 You should always call this if you have modified a disk image, before
594 closing the handle.
595
596 =head2 touch
597
598  touch path
599
600 Touch acts like the L<touch(1)> command.  It can be used to
601 update the timestamps on a file, or, if the file does not exist,
602 to create a new zero-length file.
603
604 =head2 umount | unmount
605
606  umount pathordevice
607
608 This unmounts the given filesystem.  The filesystem may be
609 specified either by its mountpoint (path) or the device which
610 contains the filesystem.
611
612 =head2 umount-all | unmount-all
613
614  umount-all
615
616 This unmounts all mounted filesystems.
617
618 Some internal mounts are not unmounted by this call.
619
620 =head2 vgcreate
621
622  vgcreate volgroup physvols,...
623
624 This creates an LVM volume group called C<volgroup>
625 from the non-empty list of physical volumes C<physvols>.
626
627 =head2 vgs
628
629  vgs
630
631 List all the volumes groups detected.  This is the equivalent
632 of the L<vgs(8)> command.
633
634 This returns a list of just the volume group names that were
635 detected (eg. C<VolGroup00>).
636
637 See also C<vgs_full>.
638
639 =head2 vgs-full
640
641  vgs-full
642
643 List all the volumes groups detected.  This is the equivalent
644 of the L<vgs(8)> command.  The "full" version includes all fields.
645
646 =head2 write-file
647
648  write-file path content size
649
650 This call creates a file called C<path>.  The contents of the
651 file is the string C<content> (which can contain any 8 bit data),
652 with length C<size>.
653
654 As a special case, if C<size> is C<0>
655 then the length is calculated using C<strlen> (so in this case
656 the content cannot contain embedded ASCII NULs).
657
658 Because of the message protocol, there is a transfer limit 
659 of somewhere between 2MB and 4MB.  To transfer large files you should use
660 FTP.
661