Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created April 2, 2020 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/5a92b5eebc31774844d560b58be2368d to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/5a92b5eebc31774844d560b58be2368d to your computer and use it in GitHub Desktop.
How to install Vagrant on Ubuntu 18.04 LTS
# Youtube:
# !/bin/sh
# Vagrant Installation:
# ====================
# Firstly install VirtualBox
sudo apt install virtualbox
# Update package list:
sudo apt update
# Download the Vagrant package using the following curl command:
curl -O https://releases.hashicorp.com/vagrant/2.2.6/vagrant_2.2.6_x86_64.deb
# After downloading .deb file install it by using this command
sudo apt install ./vagrant_2.2.6_x86_64.deb
# Finally check/verify vagrant version
vagrant --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment