sickcodes
sickcodes
> Whenever I am trying the start OSX with this command > > ``` > docker run \ > --device /dev/kvm \ > --device /dev/snd \ > -v /tmp/X11-unix:/tmp/X11-unix \...
`docker run --device /dev/kvm --device /dev/snd -v /tmp/X11-unix:/tmp/X11-unix -e "DISPLAY=${DISPLAY:-:0.0}" sickcodes/docker-osx:latest` You have a trailing space on the first line.
`echo $DISPLAY` If this is blank you have no screen. `egrep -c '(svm|vmx)' /proc/cpuinfo` If this is 0, turn on hardware virt in your bios.
``` docker: unknown server OS: . See 'docker run --help'. ``` This happens when dockerd is off Can you confirm the docker daemon is running? `pgrep dockerd`
> I'll try the troubleshooting commands from the README.md > > See if that works... Sounds good! Can you let us know when you've fixed it?
Remove the OSX_COMMANDS line because it will close the image ```bash docker run -it \ --device /dev/kvm \ -p 50922:10022 \ -v /tmp/.X11-unix:/tmp/.X11-unix \ -e "DISPLAY=${DISPLAY:-:0.0}" \ sickcodes/docker-osx:auto ```
@mostwanted002 @Otus9051 ` -e "OSX_COMMANDS=/bin/bash -c \"pwd && uname -a\"" \` Will run, inside Mac's Terminal: `bin/bash -c "pwd && uname -a"` pwd is print working directory uname -a will...
Connect refused is either /dev/kvm permissions, xhost +, or you're not in libvirt, docker or kvm groups, or you're running with root
> who is running on WSL, and are getting stuck on `docker: unknown server OS: .` > must to use Docker on Windows Client and extern it to wsl v2...
I finally feel comfortable answering this question, sorry about that. You don't need a Mac mini to run this because the project emulates it for you, more to the point,...