Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 994 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 994 Bytes

vagrantfiles

Repo for some of my Vagrantfiles for different purposes.

Getting started

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

Shared folder

  • 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

License

vagrantfiles is released under the terms of the MIT license. See MIT and LICENSE for more information.