Direkt zum Hauptinhalt

Install Base Software

Base Software

#!/bin/bash
# Update and Upgrade
apt update && apt upgrade -y && apt full-upgrade -y
#All the base Stuff
apt-get install -y apt-show-versions apt-transport-https bc binutils bsdmainutils bzip2 ca-certificates curl file git gpg gzip htop jq lib32gcc-s1 lib32stdc++6 libauthen-pam-perl libio-pty-perl libnet-ssleay-perl libpam-runtime libpam-yubico lsb-release openssl perl rsync screen software-properties-common sudo tar tmux unzip util-linux wget

Webserver + Datenbankserver

#!/bin/bash
# Update and Upgrade
apt update && apt upgrade -y && apt full-upgrade -y
#Apache + MariaDB
apt-get install -y apache2 libmariadb3 mariadb-client mariadb-server python python3

Qemu Agent (Nur wenn VM)

#!/bin/bash
#If VM guest additions
apt-get install -y qemu-guest-agent 

ResolvConf (Mainly for WireGuard)

Nach der Installation von ResolvConf muss die Maschine neu gestartet werden, da sonst keine Domains auflösbar sind!

#!/bin/bash
#If VM guest additions
apt-get install -y resolvconf