Debian 8 sous Qemu

Debian 8 sous Qemu.
1) Répertoire de travail :

[~] ➔ mkdir -p VIRTUALISATION/Debian
[~] ➔ cd VIRTUALISATION/Debian/
[~/VIRTUALISATION/Debian] ➔

2) Téléchargement de Debian :

[~/VIRTUALISATION/Debian] ➔ wget ftp://ftp2.fr.debian.org/pub/debian-cd/8.2.0/i386/iso-cd/debian-8.2.0-i386-CD-1.iso

3) Création d’un disque dur virtuel :

[~/VIRTUALISATION/Debian/station01] ➔ qemu-img create -f raw vhda.img 3G
Formatting 'vhda.img', fmt=raw size=3221225472
[~/VIRTUALISATION/Debian/station01] ➔ ls -lh *.img
-rw-r--r-- 1 util01 util01 3,0G janv.  2 23:40 vhda.img

4) Lancement pour l’installation :

[~/VIRTUALISATION/Debian/station01] ➔ qemu-system-i386 -enable-kvm -k fr -m 1024 -sdl  -vga std -hda vhda.img -cdrom ../debian-8.2.0-i386-CD-1.iso -boot d -net nic,model=rtl8139 -net user -smp 2 -localtime

Paquetage à installer : ssh
5) Lancement avec les options de base :

[~/VIRTUALISATION/Debian/station01] ➔ qemu-system-i386 -enable-kvm -k fr -m 1024 -sdl  -vga std -hda vhda.img -net nic,model=rtl8139 -net user -smp 2 -localtime

6) Lancement avec le support réseau :
Configuration réseau : http://rockstarninja.tech/puppy-tahr-configuration-reseau-sous-qemu/

[~/VIRTUALISATION/Debian/station01] ➔ qemu-system-i386 -enable-kvm -k fr -m 1024 -sdl -vga std -hda vhda.img -net nic -net tap,ifname=tap0,script=no

7) Paquetages de base à installer :

# apt-get update && apt-get upgrade
# apt-get install openssh-server mc screen links vim

8) Capture d’écran :
Capture du 2016-01-03 00:49:20

Comments are closed, but trackbacks and pingbacks are open.