-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHelpers.xml
More file actions
75 lines (66 loc) · 2.73 KB
/
Helpers.xml
File metadata and controls
75 lines (66 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xl="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xml:id="VDG-Helpers" version="5.1">
<title>Helper Utilities</title>
<para>
Up until now most of the commands we've been using have been very
low-level. Just the section on resizing images
<footnote><para><xref linkend="VDG-Cookbook-Resize-Image" /></para></footnote>
is about 8 pages of this book (depending on what format you're
reading it in). Let's get real here: it's not pragmatic to run ten
commands when one or two will suffice. Luckily for us some very
helpful utilities exist.
</para>
<para>
This section will introduce those utilities. I'll highlight some
key features in each, show demos, and tell you where you can find
more information. Let's get started by introducing our new heros
using their official descriptions.
</para>
<variablelist>
<varlistentry>
<term>libguestfs</term>
<listitem>
<para>
<systemitem class="library">libguestfs</systemitem> is a way
to create, access and modify disk images. You can look
inside disk images, modify the files they contain, create
them from scratch, resize them, and much more. It's
especially useful from scripts and programs and from the
command line.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>virt-manager</term>
<listitem>
<para>
The <quote>Virtual Machine Manager</quote> application
(<application>virt-manager</application> for short package
name) is a desktop user interface for managing virtual
machines. It presents a summary view of running domains,
their live performance & resource utilization
statistics. The detailed view graphs performance &
utilization over time. Wizards enable the creation of new
domains, and configuration & adjustment of a domain's
resource allocation & virtual hardware. An embedded VNC
client viewer presents a full graphical console to the guest
domain.
</para>
</listitem>
</varlistentry>
<!-- <varlistentry> -->
<!-- <term>virt tools</term> -->
<!-- <listitem> -->
<!-- <para> -->
<!-- Virt Tools are open source virtualization management tools -->
<!-- for Linux system administrators. -->
<!-- </para> -->
<!-- </listitem> -->
<!-- </varlistentry> -->
</variablelist>
<xi:include href="helpers/libguestfs.xml"/>
<xi:include href="helpers/virtmanager.xml"/>
<!-- <xi:include href="helpers/virttools.xml"/> -->
</chapter>