Tag: vagrant
How To Create A Vagrant Base Box
https://scotch.io/tutorials/how-to-create-a-vagrant-base-box-from-an-existing-one https://www.vagrantup.com/docs/virtualbox/boxes.html This tutorial will create a base box using Ubuntu 16.04 1. First, initialize vagrant, ssh into the box…
How To Provision A LEMP Stack In Vagrant
snippets of code taken from: https://github.com/danielwrobert/vagrant-LEMP/blob/master/provision/setup.sh https://github.com/panique/vagrant-lamp-bootstrap This will install Ubuntu 16.04, NGINX, MariaDB, PHP7-FPM and Git 1. Initialize Vagrant…
How To Install Syncthing On Ubuntu 16.04 Using Vagrant
http://drup.org/setting-syncthing-ubuntu-1604-server https://docs.syncthing.net/intro/getting-started.html https://apt.syncthing.net/ $ curl -s https://syncthing.net/release-key.txt | sudo apt-key add – echo “deb http://apt.syncthing.net/ syncthing release” | sudo tee…
How To Install iPython Jupyter Notebook On Ubuntu 16.04 Using Vagrant
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04 First, in Vagrantfile make sure the forwarded ports reflect the code below (Jupyter notebook uses port 8888): config.vm.network “forwarded_port”,…
How To Install Resilio Sync On Ubuntu 16.04 Using Vagrant
https://www.linuxbabe.com/ubuntu/install-resilio-sync-ubuntu-16-04-16-10 https://help.getsync.com/hc/en-us/articles/206178924 1. Register the Resilio repository: $ echo “deb http://linux-packages.resilio.com/resilio-sync/deb resilio-sync non-free” | sudo tee /etc/apt/sources.list.d/resilio-sync.list 2. Add public…
How to Install WordPress When Using Vagrant Folder Sync
This step assumes you have already followed these steps: Vagrant, VirtualBox, Ubuntu 16.04 Setup Install LAMP Stack on Ubuntu Below…