* Setup dell'ambiente Editare il file env.sh e caricarlo nella shell: . [path]/env.sh * Compilazione qemu: cd $MBASE/qemu/src/qemu-0.9.1/ ./configure --enable-alsa --prefix=$MBASE/qemu/ make make install cd $MBASE/qemu/src/kqemu-1.3.0pre11 ./configure --prefix=$MBASE/qemu/ make * Generazione del sistema base con debootstrap: debootstrap etch debian/ file:///var/www/etch/1/debian/ * Lancio del sistema base tramite chroot mount -t proc proc $MBASE/debian/debian/proc/ echo 127.0.0.1 localhost localhost.localdomain > $MBASE/debian/debian/etc/hosts chroot $MBASE/debian/debian/ * Lancio del sistema tramite QEMU/NFS qemu -k it -m 256M -hda $MBASE/debian/debian.ext2 -append "root=/dev/nfs rw ip=::::mindeb:eth0:dhcp nfsroot=10.0.2.2:$MBASE/debian/debian ide2=noprobe ide3=noprobe ide4=noprobe ide5=noprobe" -kernel $MBASE/kernel/linux/arch/x86/boot/bzImage -net nic,model=ne2k_pci -net user * Lancio del sistema tramite QEMU/immagine disco qemu -k it -m 256M -hda $MBASE/debian/debian.ext2 -append "root=/dev/hda rw ide2=noprobe ide3=noprobe ide4=noprobe ide5=noprobe" -kernel $MBASE/kernel/linux/arch/x86/boot/bzImage