Vagrant: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 29: Line 29:


==References==
==References==
* [https://superuser.com/questions/529149/how-to-compact-virtualboxs-vdi-file-size How to compact VirtualBox's VDI file size?]
* [https://superuser.com/questions/391509/files-to-remove-from-windows-xp-to-save-space How to optimized Windows XP size?]
* [http://emoxter.com/post/creating-a-windows-xp-vagrant-box/ Creating a Windows XP Vagrant box]
* [http://emoxter.com/post/creating-a-windows-xp-vagrant-box/ Creating a Windows XP Vagrant box]
* [https://app.vagrantup.com/boxes/search?utf8=%E2%9C%93&sort=&provider=virtualbox&q=windows+xp Discover Vagrant Boxes]
* [https://app.vagrantup.com/boxes/search?utf8=%E2%9C%93&sort=&provider=virtualbox&q=windows+xp Discover Vagrant Boxes]
Line 38: Line 40:
* [https://github.com/WinRb/vagrant-windows Vagrant Windows]
* [https://github.com/WinRb/vagrant-windows Vagrant Windows]
* [https://www.vagrantup.com/intro/getting-started/index.html Getting Started]
* [https://www.vagrantup.com/intro/getting-started/index.html Getting Started]
* [https://gist.github.com/kuznero/576e848c39080745ac1915c6b3e4820b Compact VDI]

Revision as of 08:56, 13 October 2018

Info

brew cask info virtualbox
brew cask info vagrant
brew cask info vagrant-manager

Install

brew cask install virtualbox
brew cask install vagrant
brew cask install vagrant-manager

Syntax

vagrant box add {title} {url}
vagrant init {title}

Example

vagrant box add hashicorp/precise64 https://vagrantcloud.com/hashicorp/boxes/precise64/versions/1.1.0/providers/virtualbox.box
vagrant init hashicorp/precise64
vagrant up
vagrant ssh
vagrant halt

References