Compare commits
2 Commits
f05dc64514
...
0f2c3a614b
Author | SHA1 | Date | |
---|---|---|---|
|
0f2c3a614b | ||
|
73decfe6af |
@ -14,3 +14,9 @@ https://certbot.eff.org/lets-encrypt/ubuntubionic-apache
|
|||||||
|
|
||||||
ip setup:
|
ip setup:
|
||||||
https://help.ubuntu.com/lts/serverguide/network-configuration.html
|
https://help.ubuntu.com/lts/serverguide/network-configuration.html
|
||||||
|
|
||||||
|
|
||||||
|
## network interfaces
|
||||||
|
`ip link` lists all interfaces
|
||||||
|
multipass setup some dummy interfaces and left them there.
|
||||||
|
to delete did `ip link delete mpqemubr0-dummy`
|
17
vagrant.md
Normal file
17
vagrant.md
Normal 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
16
virtualbox.md
Normal 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
|
Loading…
Reference in New Issue
Block a user