-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sonoma reboot loop after install with missing "libSystem.8.dylib" #824
Comments
same here |
Having the same problem. Ventura works just fine, but Sonoma keeps rebooting |
I think I got Sonoma working now by using the following run command:
After installing Sonoma via recovery it booted up and seems to work properly. |
How do you access vnc? |
I was able to install both MacOS Ventura & MacOS Sonoma using these commands, and access them using VNC. Do note that you'll need to change the external ports so that they will not collide (I'm using 5999 and 5998). Not sure what port 50922 is for :/ MacOS Ventura (13)docker run -i \
--device /dev/kvm \
-p 50922:10022 \
-p 5999:5999 \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e "DISPLAY=${DISPLAY:-:0.0}" \
-e "SHORTNAME=ventura" \
-e EXTRA="-display none -vnc 0.0.0.0:99,password=off" \
sickcodes/docker-osx:latest MacOS Sonoma (14)docker run -it \
--device /dev/kvm \
-p 50922:10022 \
-p 5999:5999 \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e "DISPLAY=${DISPLAY:-:0.0}" \
-e GENERATE_UNIQUE=true \
-e CPU='Haswell-noTSX' \
-e CPUID_FLAGS='kvm=on,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on' \
-e MASTER_PLIST_URL='https://raw.githubusercontent.com/sickcodes/osx-serial-generator/master/config-custom-sonoma.plist' \
-e "SHORTNAME=sonoma" \
-e EXTRA="-display none -vnc 0.0.0.0:99,password=off" \
sickcodes/docker-osx:latest |
Doing this all on an Ubuntu 24.04 server.
Steps
docker build -t docker-osx:sonoma --build-arg SHORTNAME=sonoma --build-arg SIZE=30G .
docker build -t docker-osx:sonoma-vnc -f vnc-version/Dockerfile --build-arg SHORTNAME=sonoma --build-arg SIZE=30G --build-arg BASE_IMAGE=docker-osx:sonoma .
docker run -d -it --name osx-sonoma --device /dev/kvm --device /dev/snd -p 8888:5999 -p 50922:10022 --privileged docker-osx:sonoma-vnc
Did the same steps with Ventura and that installation worked.
The text was updated successfully, but these errors were encountered: