Skip to content

Instantly share code, notes, and snippets.

@vishmule
Created June 6, 2020 18:40
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 vishmule/851091688a792bd090944bca4934743e to your computer and use it in GitHub Desktop.
Save vishmule/851091688a792bd090944bca4934743e to your computer and use it in GitHub Desktop.
#!/bin/bash
# Author : vishmule
# Install VirtualBox and Vagrant on Linux Host machine
## Install following pre-requisites required for VirtualBox Installation
yum install compat-libstdc++-33 SDL wget
yum install gcc kernel-devel make libGL qt qt-devel libXmu
## Download and Install VirtualBox
wget https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0-6.0.4_128413_el7-1.x86_64.rpm
rpm -ivh VirtualBox-6.0-6.0.4_128413_el7-1.x86_64.rpm
## Download and Install Vagrant
wget https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.rpm
rpm -ivh vagrant_2.2.4_x86_64.rpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment