Skip to content

Instantly share code, notes, and snippets.

@f9n
Last active November 26, 2018 19:21
Show Gist options
  • Save f9n/81ab44c2fd50296d12c9e7db8949dec2 to your computer and use it in GitHub Desktop.
Save f9n/81ab44c2fd50296d12c9e7db8949dec2 to your computer and use it in GitHub Desktop.
Vagrant kullanarak Macos kurmak.
$ # Ilk once Virtualbox'in yaninda <Oracle VM VirtualBox Extension Pack> 'ide indirmelisiniz.
$ ### Arch Linux
$ yay virtualbox-ext-oracle
Vagrant.configure("2") do |config|
  # Box'in boyutu yaklasik 9GB'dir.
  config.vm.box = "jhcook/macos-sierra"
  
  # BSD tabanli dagitimlar virtualbox dosya sistemi desteklemedikleri icin ya dosya paylasimi iptal ediceksiniz ya da rsync veya nfs tip olarak paylasicaksiniz.
  config.vm.synced_folder ".", "/vagrant", disabled: true
  # config.vm.synced_folder ".", "/vagrant", type: "nfs" # or "rsync"

  config.vm.provider "virtualbox" do |vb|
    vb.name = 'Macos-Sierra'
    vb.gui = true
    vb.memory = "2048"
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment