summaryrefslogtreecommitdiffstats
path: root/website/src/learning/start-virt-tools/index.html
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2010-10-11 18:02:43 +0100
committerRichard W.M. Jones <rjones@redhat.com>2010-10-13 09:49:58 +0100
commit728c0634432b39aacc7650bcdac92243b5817e6b (patch)
treec2ebed1c9c5d8604d70a3d0d94b2ae31819ab627 /website/src/learning/start-virt-tools/index.html
parent968acff01a0c4d20d89881ab20850ff2db2cbad8 (diff)
downloadvirt-tools-728c0634432b39aacc7650bcdac92243b5817e6b.tar.gz
virt-tools-728c0634432b39aacc7650bcdac92243b5817e6b.tar.xz
virt-tools-728c0634432b39aacc7650bcdac92243b5817e6b.zip
virt-tools website using Template Toolkit (incomplete).
Diffstat (limited to 'website/src/learning/start-virt-tools/index.html')
-rw-r--r--website/src/learning/start-virt-tools/index.html94
1 files changed, 94 insertions, 0 deletions
diff --git a/website/src/learning/start-virt-tools/index.html b/website/src/learning/start-virt-tools/index.html
new file mode 100644
index 0000000..b6b2e91
--- /dev/null
+++ b/website/src/learning/start-virt-tools/index.html
@@ -0,0 +1,94 @@
+[% topdir = "../.." -%]
+[% PROCESS globals -%]
+[% WRAPPER page
+ title = "Installing virt tools"
+ h1 = "Download and install virt tools"
+ section = "learning"
+%]
+
+<p>
+Select your operating system or Linux distro from the list below:
+</p>
+
+<ul>
+<li> <a href="#fedora">Fedora, Red Hat Enterprise Linux and clones</a> </li>
+<li> <a href="#debian">Debian</a> </li>
+<li> <a href="#ubuntu">Ubuntu</a> </li>
+</ul>
+
+[% WRAPPER h2 h2="Fedora, Red Hat Enterprise Linux" anchor="fedora" %]
+
+<h3>Graphical method</h3>
+
+<p>
+Go to System &rarr; Administration &rarr; Add/Remove Software.
+</p>
+
+<p>
+From the list on the left, select Virtualization.
+</p>
+
+<p>
+Select the required virt tools and click Apply.
+</p>
+
+<h3>From the command line</h3>
+
+<p>
+Open a terminal window (Applications &rarr; System Tools &rarr; Terminal)
+and type the following:
+</p>
+
+<pre>
+su
+</pre>
+
+<p>
+(now type your root password)
+</p>
+
+<pre>
+yum install qemu libvirt-client virt-manager \
+ virt-viewer guestfish libguestfs-tools virt-top
+</pre>
+
+[% END %]
+
+[% WRAPPER h2 h2="Debian" anchor="debian" %]
+
+<p>
+Open a terminal window (Applications &rarr; Accessories &rarr; Terminal)
+and type:
+</p>
+
+<pre>
+su
+apt-get install kvm libvirt-bin virt-manager virt-viewer virt-top
+</pre>
+
+<p>
+For information on installing guestfish and libguestfs-tools in
+Debian, see <a href="http://libguestfs.org/FAQ.html#binaries">this page</a>.
+</p>
+
+[% END %]
+
+[% WRAPPER h2 h2="Ubuntu" anchor="ubuntu" %]
+
+<p>
+Open a terminal window (Applications &rarr; Accessories &rarr; Terminal)
+and type:
+</p>
+
+<pre>
+sudo apt-get install ubuntu-virt virt-top virt-what
+</pre>
+
+<p>
+For information on installing guestfish and libguestfs-tools in
+Ubuntu, see <a href="http://libguestfs.org/FAQ.html#binaries">this page</a>.
+</p>
+
+[% END %]
+
+[% END -%]