:: Re: [Dng] pre-alpha-valentine on qe…
Top Page
Delete this message
Reply to this message
Author: Svante Signell
Date:  
To: dng
Subject: Re: [Dng] pre-alpha-valentine on qemu
On Sun, 2015-02-15 at 02:52 +0000, KatolaZ wrote:
> Hi guys,
>
> a few simple steps to have Devuan-pre-alpha-valentine installed and
> running on qemu:
>
> 0)# wget "http://mirror.debianfork.org/devuan-jessie-i386-xfce-prealpha-valentine.iso"
>
> 1)$ apt-get install qemu-kvm
>
> 2)$ qemu-img create devuan_disk 5G 
>     (creates a 5G qemu disk image for devuan)

>
> 3)$ qemu-system-x86_64 -cdrom devuan-jessie-i386-xfce-prealpha-valentine.iso -hda devuan_disk -boot d -net nic -net user -m 256 -localtime & 
>     (installs Devuan on the qemu disk image)

>
> 4)$ qemu-system-x86_64  -hda devuan_disk -boot c -net nic -net user -m 256 -localtime &
>     (boots the system)

>
> Just two words: IT WORKS :)


Hi, it is a little slow without hardware acceleration: -enable-kvm is
the solution here if you have recent Intel/AMD CPUs. Additionally it's
nice to be able to log in with ssh (especially until you have set up the
local keyboard correctly under X), run kvm under a a vnc session and
having more memory.

qemu-system-x86_64 -enable-kvm -hda devuan_disk -boot c -net nic -net
user,hostfwd=tcp::5556-:22 -m 1024 -vnc 127.0.0.1:0 -localtime &