Skip to content

Latest commit

 

History

History

Debian

Linux-Configuration

This is a list of software and configurations i use on Linux.

logo

Sources

Download and run Setup.sh

sudo apt update -y
sudo apt install -y curl
BASE_URL="https://raw.githubusercontent.com/daNutzzzzz/Linux-Configuration/refs/heads/main/Debian"
SCRIPTS=(
  "setup.sh"
  "baseconfig.sh"
  "coretools.sh"
  "monitoring.sh"
  "storage.sh"
  "nfs_server.sh"
  "samba_server.sh"
)
for script in "${SCRIPTS[@]}"; do
  curl -L "$BASE_URL/$script" -o "$script"
done
chmod +x *.sh
bash ./setup.sh