20 lines
826 B
Bash
20 lines
826 B
Bash
# List of package to install - Minimal server
|
|
|
|
# Packages to remove after installation
|
|
export PKGS_RMLIST="apparmor laptop-detect resolvconf snapd wamerican chafa"
|
|
|
|
# Packages where installation is forbidden
|
|
export PKGS_BLACKLIST="apparmor resolvconf chafa snapd"
|
|
|
|
# Base
|
|
export PKGS_BASE="debconf-utils debhelper ethtool \
|
|
curl hwinfo lm-sensors libatasmart-bin lsscsi pciutils vim emacs-nox \
|
|
mailutils htop lsof ltrace strace bash-completion host dnsutils \
|
|
sysstat ifstat iftop iotop mtr-tiny tcpdump mc pbzip2 pigz \
|
|
xz-utils zip unzip plzip lzip ftp lftp bc dc dos2unix psmisc udunits-bin \
|
|
whois tmux screen debconf-doc dump figlet gawk multitail fastfetch nmap \
|
|
oping pv traceroute rsync tree git qemu-guest-agent ca-certificates"
|
|
|
|
# Agregation of the package lists
|
|
export PKGSEL="$PKGS_BASE"
|