Repo for some of my Vagrantfiles for different purposes.
- Download Vagrant and install it.
- Download VirtualBox and install it.
- Clone this repo:
git clone https://github.com/K9173A/vagrantfiles
. - Go to the directory with needed Vagrantfile and execute:
vagrant up
.
- Install VirtualBox Guest Addition to be able to create shared folders:
vagrant plugin install vagrant-vbguest
# The following should be executed from the Vagrantfile directory
vagrant reload
- Execute on guest os:
# Add current user to the vboxsf group
sudo usermod -aG vboxsf $(whoami)
# Mount shared folder
sudo mount -t vboxsf data /vagrant_data
vagrantfiles is released under the terms of the MIT license. See MIT and LICENSE for more information.