You've already forked Docker-OSX
mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2025-07-02 02:42:37 -05:00
[QOL] Launch without having to press anything at the boot menu (see readme)
This commit is contained in:
17
README.md
17
README.md
@ -70,6 +70,23 @@ ssh fullname@localhost -p 50922
|
||||
|
||||
```
|
||||
|
||||
# Autoboot into OSX after you've installed everything
|
||||
|
||||
```bash
|
||||
# find you containerID
|
||||
docker ps
|
||||
|
||||
# move the no picker script on top of the Launch script
|
||||
# NEW CONTAINERS
|
||||
docker exec containerID mv ./Launch-nopicker.sh ./Launch.sh
|
||||
|
||||
# LEGACY CONTAINERS
|
||||
docker exec containerID bash -c "grep -v InstallMedia ./Launch.sh > ./Launch-nopicker.sh
|
||||
chmod +x ./Launch-nopicker.sh
|
||||
sed -i -e s/OpenCore\.qcow2/OpenCore\-nopicker\.qcow2/ ./Launch-nopicker.sh
|
||||
"
|
||||
```
|
||||
|
||||
# Requirements: KVM on the host
|
||||
Need to turn on hardware virtualization in your BIOS, very easy to do.
|
||||
|
||||
|
Reference in New Issue
Block a user