AndrewDryga / vagrant-box-osx

Issue tracker for macOS Sierra Vagrant box.
https://app.vagrantup.com/AndrewDryga/boxes/vagrant-box-osx
MIT License
984 stars 106 forks source link

OSX High Sierra #64

Open julianpoy opened 6 years ago

julianpoy commented 6 years ago

High Sierra version of the box would be nice now that it's released.

dotdoom commented 6 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.

chaospixel commented 6 years ago

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...

omkarnathsingh commented 6 years ago

How to get latest macOS High Sierra? Will this repo be updated?

SilverPreece commented 5 years ago

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.