Raketenwilli: Waaas? 1 Stunde? Das geht auch schneller...

Beitrag lesen

synaptic

Die Stunde nehm ich mir.

Naja. Mit NAS-Server oder schnell auffindbarem USB-Stick geht es schneller:

remove.list: (example)

onboard
evolution-data-server

install.list: (example)

nmap
dnsutils
usbutils
mtr-tiny
mc

Feuer frei:

#!/usr/bin/sudo /usr/bin/sh

### Settings:
### Enable (uncomment) or disable (comment)

#force="-f";
#upgrade="y";

### The verry, verry difficult program:

apt $force update
apt $force purge $(cat remove.list)
apt $force autopurge
[ "$upgrade" = "y" ] && apt dist-upgrade
apt $force install $(cat install.list)