LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   *BSD (https://www.linuxquestions.org/questions/%2Absd-17/)
-   -   Installing 7.1 openbsd in vbox (https://www.linuxquestions.org/questions/%2Absd-17/installing-7-1-openbsd-in-vbox-4175717431/)

sniper8752 10-04-2022 05:27 PM

Installing 7.1 openbsd in vbox
 
1 Attachment(s)
I am trying to install openbsd on my virtualbox, but I am encountering this error message. I've tried at least twice now, to install, with no success.

Turbocapitalist 10-05-2022 10:57 AM

The notes, at least from a while back, indicate that OpenBSD might need Virtualbox configured to use VT-x or AMD-V hardware virtualization support: https://www.virtualbox.org/wiki/Guest_OSes

Otherwise, I might suggest Qemu.

Code:

$ qemu-img create -f qcow2 obsd-qemu.img 10G

$ qemu-system-x86_64 \
        -name "OpenBSD in Qemu",process=openbsd \
        -net nic,model=e1000 \
        -net user,hostfwd=tcp::2022-:22 \
        -m 3G \
        -cpu host \
        -enable-kvm \
        -audiodev pa,id=snd0 \
        -device ich9-intel-hda \
        -device hda-duplex,audiodev=snd0 \
        -vga qxl \
        -drive format=qcow2,index=0,cache=none,media=disk,file=obsd-qemu.img \
        -D ~/logs/qemu.log 2> ~/logs/qemu-stderr.log \
        -cdrom install72.iso \
        -boot c;



All times are GMT -5. The time now is 06:37 PM.