Skip to content

Instantly share code, notes, and snippets.

@underhilllabs
Last active October 13, 2016 16:45
Show Gist options
  • Save underhilllabs/c7fcfda248564c2a37ce15f934081587 to your computer and use it in GitHub Desktop.
Save underhilllabs/c7fcfda248564c2a37ce15f934081587 to your computer and use it in GitHub Desktop.
Install Vlad, the lDrupal VM on Ubuntu 16.04

Install vagrant and supporting libraries

sudo apt-get virtualbox-5.0 # not 5.1

sudo apt-get intall vagrant
vagrant plugin install vagrant-triggers 
vagrant plugin install vagrant-hostsupdater

# Install Python
sudo apt-get install python
sudo easy_install pip

# ansible
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get upgrade
sudo apt-get install ansible

# Install NFS Libraries
sudo apt-get install nfs-common
sudo apt-get install nfs-common

# git clone and submodule init
git clone [....] drupal-dev
cd drupal-dev
git submodule init
git submodule update

# cd into drupal -vm
cd vlad
# rabbit hole to fix vagrant plugin install loop
vim +77 Vagrantfile # comment out plugin install as we've installed them above
vagrant up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment