1

Topic: Can someone tell me,

how to load a virtual machine through qemu, with hyperbola in it?

I wanted to use the testing version in a virtual machine to find bugs and report them.  If you know what I mean.

Can you tell me how? I opened an issue looking for documentation, but this would be loads better. 

Also, I would like it if the beginners documentation and the non fde version were more complete.

and last but not least, Can I install fde within a virtual machine on libreboot or is that overkill/silly...

I just wanted to do some testing of white hole in qemu that's all...

HyperbolaBSD: The Future of Secure Libre Lightweight Operating Systems!

2

Re: Can someone tell me,

Hi, good to virtualize in Hyperbola you can use aqemu, a graphical interface in QT

~ Jesús E.

3 (edited by zapper 2018-02-28 15:08:12)

Re: Can someone tell me,

Heckyel wrote:

Hi, good to virtualize in Hyperbola you can use aqemu, a graphical interface in QT

Tried that, it didn't work well for an odd reason,

I can only load, the iso, or the .img with the amount of hard drive space needed... not both.

So can you tell me how to do it manually with qemu?

With complete step by step of course...

HyperbolaBSD: The Future of Secure Libre Lightweight Operating Systems!

4

Re: Can someone tell me,

Well, here I have an example of how launch qemu with Hyperbola from the terminal:

/usr/bin/qemu-system-x86_64 \
    -monitor stdio \
    -soundhw ac97 \
    -k es \
    -machine accel=kvm \
    -m 1024 \
    -cdrom /home/heckyel/Descargas/hyperbola-milky-way-v0.2.2-dual.iso \
    -hda /home/heckyel/.aqemu/GNU_Linux_x86_64_HDA.img \
    -boot once=d,menu=off \
    -net nic,vlan=0 \
    -net user,vlan=0 \
    -rtc base=localtime \
    -name "Hyperbola GNU/Linux x86_64"
~ Jesús E.

5

Re: Can someone tell me,

Heckyel wrote:

Well, here I have an example of how launch qemu with Hyperbola from the terminal:

/usr/bin/qemu-system-x86_64 \
    -monitor stdio \
    -soundhw ac97 \
    -k es \
    -machine accel=kvm \
    -m 1024 \
    -cdrom /home/heckyel/Descargas/hyperbola-milky-way-v0.2.2-dual.iso \
    -hda /home/heckyel/.aqemu/GNU_Linux_x86_64_HDA.img \
    -boot once=d,menu=off \
    -net nic,vlan=0 \
    -net user,vlan=0 \
    -rtc base=localtime \
    -name "Hyperbola GNU/Linux x86_64"

This helped me enormously.  Thank you.

HyperbolaBSD: The Future of Secure Libre Lightweight Operating Systems!