klange / toaruos

A completely-from-scratch hobby operating system: bootloader, kernel, drivers, C library, and userspace including a composited graphical UI, dynamic linker, syntax-highlighting text editor, network stack, etc.
https://toaruos.org/
University of Illinois/NCSA Open Source License
6.09k stars 477 forks source link

System error trying to read README.md from File Browser #216

Closed miiguemm01 closed 2 years ago

miiguemm01 commented 2 years ago

Hello! I don't know very well how to contribute/open an issue. Sorry if i didn't do it properly. I have found this bug running the OS in qemu-system-x86_64 Just see the image. You can replicate it trying to read "README.md" in File Browser

imagen

Greetings!!

klange commented 2 years ago

You are running QEMU with too little memory, likely the default of 128MiB as that is just enough to get to the GUI and launch a single application. I recommend at least 1GiB for the live CD.

klange commented 2 years ago

There is a recommended set of command line options for QEMU in the (repo's) README:

qemu-system-x86_64 -M q35 -enable-kvm -m 1G -soundhw ac97 -cdrom image.iso
miiguemm01 commented 2 years ago

Thank you for the help and sorry for opening an issue for this. I didn't know that was the problem!

klange commented 2 years ago

No worries :) Your screenshot made me notice a typo, and I've made the panic message more clear because of it.