MichielDerhaeg / build-linux

A short tutorial about building Linux based operating systems.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Problem booting from qemu

andreyferriyan opened this issue · comments

$ sudo qemu-system-x86_64 -enable-kvm image

WARNING: Image format was not specified for 'image' and probing guessed raw.
         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
         Specify the 'raw' format explicitly to remove the restrictions.
Could not initialize SDL(No available video device) - exiting

qemu is trying to open an X11 window to display emulated vga output, if you want to run qemu in the console, use the ncurses console instead:
sudo qemu-system-x86_64 -enable-kvm -curses image

Thank you, it is working now