diff options
| author | Richard W.M. Jones <rjones@redhat.com> | 2010-10-11 18:02:43 +0100 |
|---|---|---|
| committer | Richard W.M. Jones <rjones@redhat.com> | 2010-10-13 09:49:58 +0100 |
| commit | 728c0634432b39aacc7650bcdac92243b5817e6b (patch) | |
| tree | c2ebed1c9c5d8604d70a3d0d94b2ae31819ab627 /website/src/learning/start-virt-tools/index.html | |
| parent | 968acff01a0c4d20d89881ab20850ff2db2cbad8 (diff) | |
| download | virt-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.html | 94 |
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 → Administration → 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 → System Tools → 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 → Accessories → 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 → Accessories → 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 -%] |
