Progetto

Generale

Profilo

EtchWithXen » Cronologia » Versione 1

Amministratore Truelite, 13-11-2006 10:25

1 1 Amministratore Truelite
'''Installare il sistema di virtualizzazione Xen'''
2
3
Installare una distribuzione Debian Etch (Testing).
4
5
Prerequisiti come riportati dal sito ufficiale di Xen:
6
{{{
7
    A working Linux distribution using the GRUB bootloader and running on a P6-class or newer CPU. 
8
9
    The iproute2 package. 
10
11
    The Linux bridge-utils2.1 (e.g., /sbin/brctl) 
12
13
    The Linux hotplug system2.2 (e.g., /sbin/hotplug and related scripts). On newer distributions, this is included alongside the Linux udev system2.3. 
14
15
    Build tools (gcc v3.2.x or v3.3.x, binutils, GNU make). 
16
17
    Development installation of zlib (e.g., zlib-dev). 
18
 
19
    Development installation of Python v2.2 or later (e.g., python-dev).
20
}}}
21
22
23
Aggiornare l'indice dei pacchetti e tutte le dipendenze con i comandi:
24
{{{
25
apt-get update
26
apt-get dist-upgrade
27
}}}
28
29
Installare con il comando apt-get i pacchetti necessari al sistema Xen:
30
{{{
31
apt-get install xen-linux-system-2.6.17-2-xen-686 \
32
                xen-utils-3.0-unstable-1          \
33
                xen-hypervisor-3.0.3-1-i386       \
34
                xen-ioemu-3.0-unstable            \
35
                xen-docs-3.0-unstable             \
36
                bridge-utils                      \
37
                libc6-xen                         \
38
                file                              \
39
}}}