Originally created by @recsater on GitHub (Mar 15, 2024).
after docker run
(qemu) vnc change password
# password setting...# at this point, I could connect with VNC viewer.(qemu) q # exit qemu console
container stopped.
docker start <headless container>
container started.
and.. how can I access the qemu console? It seems that the VNC password gets reset upon exiting the qemu console.
Originally created by @recsater on GitHub (Mar 15, 2024).
after docker run
```bash
(qemu) vnc change password
# password setting...
# at this point, I could connect with VNC viewer.
(qemu) q # exit qemu console
```
container stopped.
```bash
docker start <headless container>
```
container started.
and.. how can I access the qemu console? It seems that the VNC password gets reset upon exiting the qemu console.
Ah, I meant to kill the container, not exit the qemu console.
But even if the container is killed, how do I return to the qemu console?
@recsater commented on GitHub (Mar 15, 2024):
Ah, I meant to kill the container, not exit the qemu console.
But even if the container is killed, how do I return to the qemu console?
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @recsater on GitHub (Mar 15, 2024).
after docker run
container stopped.
container started.
and.. how can I access the qemu console? It seems that the VNC password gets reset upon exiting the qemu console.
@recsater commented on GitHub (Mar 15, 2024):
Ah, I meant to kill the container, not exit the qemu console.
But even if the container is killed, how do I return to the qemu console?
@recsater commented on GitHub (Mar 15, 2024):
I tried
docker exec -i <contianer name> qemu-system-x86_64 -monitor stdioBut
@recsater commented on GitHub (Mar 15, 2024):
Solved 👍
@sickcodes commented on GitHub (Apr 8, 2024):
Awesome, you can also do
docker start -aiwhich attaches to the container upon starting it