diff options
author | terminaldweller <thabogre@gmail.com> | 2021-05-17 16:33:27 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-05-17 16:33:27 +0000 |
commit | fac7f4aa97978d045f18bcd70e5c726958ed4dcc (patch) | |
tree | df7685cc093a560572994f43bfe3881c3735fccc /debian-buster | |
parent | debian buster (diff) | |
download | vagrantboxes-fac7f4aa97978d045f18bcd70e5c726958ed4dcc.tar.gz vagrantboxes-fac7f4aa97978d045f18bcd70e5c726958ed4dcc.zip |
updates for deb, new gentoo
Diffstat (limited to 'debian-buster')
-rw-r--r-- | debian-buster/Vagrantfile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/debian-buster/Vagrantfile b/debian-buster/Vagrantfile index fdb6ed9..687cfa1 100644 --- a/debian-buster/Vagrantfile +++ b/debian-buster/Vagrantfile @@ -14,12 +14,10 @@ Vagrant.configure("2") do |config| vb.memory = "1024" end - # config.vm.provision "shell", inline: <<-SHELL - # sudo dnf update - # sudo dnf install -y vim make cmake ninja-build meson gcc tmux wget curl git - # sudo dnf install -y python3-pyelftools - # sudo dnf groupinstall "Development Tools" - # sudo dnf install libpcap-devel zlib-devel libfdt-devel openssl-devel - # sudo modprobe vfio-pci - # SHELL + config.vm.provision "shell", inline: <<-SHELL + sudo apt update && sudo apt upgrade -y + sudo apt install -y ksh wget curl vim tmux apt-file git python3 python3-pip + sudo apt-file update + echo "set -g default-terminal screen-256" > ~/.tmux.conf + SHELL end |