Open julianpoy opened 7 years ago
Agreed, High Sierra brings Xcode 9.x which is the version officially supported by e.g. https://github.com/flutter/flutter.
Updating via softwareupdate -a -i --verbose
gets stuck after downloading and unpacking files. Updating via UI also gets stuck a few minutes after reboot.
monsenso appears to have one https://app.vagrantup.com/monsenso/boxes/macos-10.13; although I couldn't get it to start. That's because I can't get a VirtualBox more recent than 5.1.18 to actually work on my MacBook Pro though...
How to get latest macOS High Sierra? Will this repo be updated?
Can confirm that the Vagrant box linked by @chaospixel works correctly, though it has the usual performance issues of OSX in a VM. It requires at least VirtualBox 5.2 (5.2.2 and above for the resolution fix below), with the extensions pack installed.
I can't find a Github/FOSS repo for the box, so I can't submit this there, but if you're using it and have problems with screen resolution not being detected/defaulting to 1024x768, you can override it in the Vagrantfile:
config.vm.provider "virtualbox" do |vb|
... Existing config here ...
# Set the screen resolution inside the machine
vb.customize ["setextradata", :id, "VBoxInternal2/EfiGraphicsResolution", "1920x1080"]
end
Replace 1920x1080 with whatever screen resolution you desire, obviously.
High Sierra version of the box would be nice now that it's released.