This commit is contained in:
pt 2020-02-20 01:41:30 -05:00
parent 73decfe6af
commit 0f2c3a614b
2 changed files with 33 additions and 0 deletions

17
vagrant.md Normal file
View File

@ -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

16
virtualbox.md Normal file
View File

@ -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