sickcodes
sickcodes
`-monitor unix:qemu.socket,server,nowait` ```bash QEMU_SOCK="${PWD}/qemu.socket" ``` ` -e EXTRA='-display none -vnc 0.0.0.0:99,password=on -monitor unix:qemu.socket,server,nowait' \` Then socat to the sock: ```bash docker exec -it CHANGE_ME /bin/bash -c "sudo chown -R \$(id...
> I'm trying run with this command. but still can't connect to VNC > `docker run -i -d --name osx_big-sur --device /dev/kvm -p 50922:10022 -p 5999:5999 -v /tmp/.X11-unix:/tmp/.X11-unix -e QEMU_SOCK="${PWD}/qemu.socket"...
```bash docker exec -it CHANGE_ME /bin/bash -c "sudo chown -R \$(id -u):\$(id -g) qemu.socket" sendkeys () { ARG="${1}" for (( i = 0; i < "${#ARG}"; i++ )); do LETTER="${ARG:$i:1}"...
@GodTamIt Ahh because I didn't add it to the main Dockerfile. You will have to `docker exec -it CHANGE_ME /bin/bash -c "sudo chown -R \$(id -u):\$(id -g) qemu.socket" && bash...
This is the `gtk initialization failed` error, I'm gonna work on the windows instructions, have you jumped in the discord? Link on http://sick.chat and we're working on making Windows instructions...
Auto image might need a reset NVRAM since it didn't have a volume when it was made. It's quite an old image, should still works, but Monterey is the best...
Added notes in https://github.com/sickcodes/Docker-OSX/commit/b161ad7afd0b62a3ff5f5091d6c27321ee752bba **To exit a container using -i you must `docker kill `. For example, to kill everything, `docker ps | xargs docker kill`.**
With respect to restarting the container, `docker start -ai ` or `docker start -i ` I have not tested yet. I will test tonight, but let me know if you...
I believe you have to set a new password on each boot with qemu. That would be for security reasons
Everytime you run qemu you will need to set the password, unless you edit qemu.conf inside the container https://gist.github.com/marcolivierarsenault/07fda832a5c773944ff7