diff options
Diffstat (limited to 'results/classifier/118/none/2145')
| -rw-r--r-- | results/classifier/118/none/2145 | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/results/classifier/118/none/2145 b/results/classifier/118/none/2145 new file mode 100644 index 00000000..85a969c7 --- /dev/null +++ b/results/classifier/118/none/2145 @@ -0,0 +1,67 @@ +graphic: 0.633 +architecture: 0.632 +performance: 0.571 +ppc: 0.544 +user-level: 0.510 +semantic: 0.506 +device: 0.442 +hypervisor: 0.415 +x86: 0.410 +mistranslation: 0.369 +vnc: 0.360 +risc-v: 0.359 +permissions: 0.351 +files: 0.337 +debug: 0.336 +PID: 0.320 +peripherals: 0.306 +network: 0.296 +register: 0.283 +KVM: 0.282 +kernel: 0.267 +socket: 0.264 +arm: 0.261 +VMM: 0.260 +boot: 0.260 +TCG: 0.243 +assembly: 0.241 +i386: 0.228 +virtual: 0.135 + +Issue with Graphical Interface on RISC-V Emulation in QEMU +Description of problem: +I am facing an issue when attempting to run Ubuntu on RISC-V architecture in QEMU with a graphical interface. Specifically, when executing the following command without the -nographic option, the operating system fails to start: + +```bash +qemu-system-riscv64 -machine virt -m 2048 -smp 4 -bios /usr/lib/riscv64-linux-gnu/opensbi/generic/fw_jump.bin -kernel /usr/lib/u-boot/qemu-riscv64_smode/uboot.elf -drive file=ubuntu-22.04.3-preinstalled-server-riscv64+unmatched.img,format=raw,if=virtio +``` + +I have not found any examples online where QEMU is used with RISC-V architecture without the -nographic option, which raises uncertainty about the feasibility of running it with a graphical interface. + +Interestingly, when I run a similar command for x86_64 architecture, the operating system starts successfully with a graphical interface: + +```bash +qemu-system-x86_64 -enable-kvm -m 2G -drive file=ubuntu-22.04.3-desktop-amd64.iso,format=raw -boot c -cpu host -vga std -device virtio-net-pci -device virtio-rng-pci +``` +Steps to reproduce: +Execute QEMU with RISC-V architecture without the -nographic option. + +```bash +qemu-system-riscv64 -machine virt -m 2048 -smp 4 -bios /usr/lib/riscv64-linux-gnu/opensbi/generic/fw_jump.bin -kernel /usr/lib/u-boot/qemu-riscv64_smode/uboot.elf -drive file=ubuntu-22.04.3-preinstalled-server-riscv64+unmatched.img,format=raw,if=virtio +``` + +(The above command fails to start with a graphical interface) + +Execute QEMU with RISC-V architecture and the -nographic option. + +```bash +qemu-system-riscv64 -machine virt -nographic -m 2048 -smp 4 -bios /usr/lib/riscv64-linux-gnu/opensbi/generic/fw_jump.bin -kernel /usr/lib/u-boot/qemu-riscv64_smode/uboot.elf -drive file=ubuntu-22.04.3-preinstalled-server-riscv64+unmatched.img,format=raw,if=virtio +``` +(The above command works, but without a graphical interface) + +Execute QEMU with x86_64 architecture. + +```bash +qemu-system-x86_64 -enable-kvm -m 2G -drive file=ubuntu-22.04.3-desktop-amd64.iso,format=raw -boot c -cpu host -vga std -device virtio-net-pci -device virtio-rng-pci +``` +(The above command works and starts with a graphical interface) |