HELP WANTED: Fixing Boot Issues for SafeOS #188967
-
BodyI have an operating system called SafeOS, and is unable to fix the boot issue. Booting into it results into a faulty screen. Any help would be appreciated. Guidelines
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi ajm19826! A faulty screen during boot can come from several things (graphics initialization, framebuffer issues, or boot configuration). Since SafeOS is still early-stage, a few checks might help narrow it down.
qemu-system-x86_64 -vga std -cdrom safeos.iso Graphics mode mismatches often cause garbled screens.
make clean Then recreate the boot image.
bootloader configuration framebuffer initialization code
|
Beta Was this translation helpful? Give feedback.
Hi ajm19826! A faulty screen during boot can come from several things (graphics initialization, framebuffer issues, or boot configuration). Since SafeOS is still early-stage, a few checks might help narrow it down.
Check the boot environment
Are you running SafeOS on real hardware, a VM (VirtualBox/VMware/QEMU), or an emulator?
Some hobby OS projects rely on specific framebuffer modes that don’t work in all environments.
Try a different VM or display adapter
If you're using a VM:
In VirtualBox, try switching the graphics controller (e.g., VBoxVGA ↔ VMSVGA).
In QEMU, try booting with a standard VGA device:
qemu-system-x86_64 -vga std -cdrom safeos.iso
Graphics mode mismatches often c…