mardi 27 décembre 2011

Installation d'un domaine domU sous linux Centos


Configuration inspirée du wiki centos.org - nov 2010


Création du fichier image
dd if=/dev/zero of=/home/xen/domains/centos.img oflag=direct bs=1M seek=10239 count=1


Télécharger le fichier initrd et le kernel à partir d'un miroir centos


Création du fichier d'installation mouflon.cfg
kernel = "/boot/vmlinuz-xen-install"
ramdisk = "/boot/initrd-xen-install"
name = "mouflon"
memory = "256"
disk = [ 'file:/home/xen/domains/centos/centos.img,xvda,w', ]
vif = [ 'bridge=xenbr0', ]
vcpus=1
on_reboot = 'destroy'
on_crash = 'destroy'


On lance l'installation
#xm create mouflon.cfg -c


Puis, une fois le système installé, on modifie le fichier de configuration
name = "mouflon"
memory = "256"
disk = [ 'file:/home/xen/domains/centos/centos.img,xvda,w', ]
vif = [ 'bridge=xenbr0', ]
bootloader="/usr/lib/xen-3.2-1/bin/pygrub"
vcpus=1
on_reboot = 'restart'
on_crash = 'restart'

Enfin, le système est démarré.
#xm create mouflon

Aucun commentaire:

Enregistrer un commentaire

Comment ajouter une route statique sur une distribution Linux Ubuntu

Pour ajouter une route statique au démarrage d'Ubuntu, voici le fichier à modifier. Dans l'exemple on ajoute une route pour joindre ...