-
Notifications
You must be signed in to change notification settings - Fork 3
Debugging with VNC
Kenta Kubo edited this page Sep 1, 2024
·
6 revisions
How to use on Fedora Asahi Remix 40:
- Enable QEMU's VNC support
- Install dependencies
sudo dnf install pixman-devel
- Build QEMU again with VNC enabled
- Download source code
tar xvf <downloaded .tar.xz file>cd <extracted directory>./configure --enable-vncmake -j8sudo make install
- Install dependencies
- Run QEMU
- Change the current directory to swift_os
- Modify
Makefile(or you can use SSH port forwarding using a SSH client app (e.g. Blink Shell))- $(QEMU) -machine raspi4b -kernel $(IMG) -serial stdio + $(QEMU) -machine raspi4b -kernel $(IMG) -serial stdio -display vnc=0.0.0.0:0
- Run
make run
- Connect to
<IP address>:5900from a VNC client (e.g. Screens or RealVNC Viewer)