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 netcat openssl perl resolvconf 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