aboutsummaryrefslogtreecommitdiffstats
path: root/debian-buster/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'debian-buster/Vagrantfile')
-rw-r--r--debian-buster/Vagrantfile14
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