mirror of
https://github.com/guilhermewerner/dotfiles
synced 2025-06-14 10:24:20 +00:00
Create Proxmox.sh
This commit is contained in:
30
Scripts/Proxmox.sh
Normal file
30
Scripts/Proxmox.sh
Normal file
@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Update
|
||||
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt update && sudo DEBIAN_FRONTEND=noninteractive apt upgrade -y
|
||||
|
||||
# Dependencies
|
||||
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
gzip \
|
||||
htop \
|
||||
iputils-ping \
|
||||
lsb-release \
|
||||
nano \
|
||||
neofetch \
|
||||
net-tools \
|
||||
qemu-guest-agent \
|
||||
tar \
|
||||
unzip \
|
||||
wget
|
||||
|
||||
# SSH
|
||||
|
||||
sudo rm /etc/ssh/ssh_host_*
|
||||
sudo dpkg-reconfigure openssh-server
|
Reference in New Issue
Block a user