From 0f2c3a614b05b0858fd058782dadebfb8b5401ce Mon Sep 17 00:00:00 2001 From: pt Date: Thu, 20 Feb 2020 01:41:30 -0500 Subject: [PATCH] vagrant --- vagrant.md | 17 +++++++++++++++++ virtualbox.md | 16 ++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 vagrant.md create mode 100644 virtualbox.md diff --git a/vagrant.md b/vagrant.md new file mode 100644 index 0000000..af64bed --- /dev/null +++ b/vagrant.md @@ -0,0 +1,17 @@ +vagrant has releases at https://releases.hashicorp.com/vagrant/2.2.7/ + +curl -O https://releases.hashicorp.com/vagrant/2.2.7/vagrant_2.2.7_x86_64.deb + +then `sudo apt install ./file.deb` + +although if you go to the downloads page, it looks like it gives you a zip of the binary if you want to drop that somewhere. + +set the vagrant file to uncomment the public network option and specify some additional info + +vagrant init ubuntu/bionic64 + +`config.vm.network "public_network", bridge: "eno1", ip: "192.168.1.115"` + +vagrant up +vagrant ssh +vagrant halt \ No newline at end of file diff --git a/virtualbox.md b/virtualbox.md new file mode 100644 index 0000000..ff973e5 --- /dev/null +++ b/virtualbox.md @@ -0,0 +1,16 @@ +install from Oracles repo + +https://itsfoss.com/install-virtualbox-ubuntu/ + + +add key for repo + + wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - + +add virtualbox to list of repositories + + sudo add-apt-repository "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" + +`apt-get install virtualbox-6.1` + +vboxmanage is the cli program \ No newline at end of file