Update readme of vagrant

This commit is contained in:
meaz 2019-11-05 13:48:51 +01:00
parent de8aa47a64
commit 969ea6f4c7
1 changed files with 16 additions and 7 deletions

View File

@ -3,32 +3,41 @@
# Disroot Website Development Environment using Vagrant
## requirements
1. vagrant 2.2.1
1. vagrant 2.2.6
for install on Debian run commands:
```
wget https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.deb
wget https://releases.hashicorp.com/vagrant/2.2.6/vagrant_2.2.6_x86_64.deb
```
```
sudo dpkg -i vagrant_2.2.1_x86_64.deb
sudo dpkg -i vagrant_2.2.6_x86_64.deb
```
```
sudo apt install -f
```
2. virtuabox
for install on Debian run command:
for install on Debian Jessie run command:
```
sudo apt install virtualbox-6.0
```
for install on Debian Buster run command:
```
sudo echo 'deb http://download.virtualbox.org/virtualbox/debian stretch contrib' > /etc/apt/sources.list.d/virtualbox.list
```
```
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
```
```
sudo apt-get update ; sudo apt-get install virtualbox-6.0
```
3. vagrant plugins vagrant-vbguest:
for install on Debian run commands:
```
vagrant plugin install vagrant-vbguest
```
```
vagrant vbguest
```
4. git
```