mirror of
https://codeberg.org/Computertruhe/Setup-Skripte.git
synced 2025-06-28 11:26:18 +02:00
Add seperations via comments
This commit is contained in:
parent
ff5f677340
commit
44a238ca73
1 changed files with 22 additions and 0 deletions
|
@ -1,10 +1,27 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
###
|
||||||
|
# Variabeln setzung
|
||||||
|
###
|
||||||
|
|
||||||
|
|
||||||
|
###
|
||||||
|
# Begrüßung
|
||||||
|
###
|
||||||
echo -e "\nComputertruhe-Setup"
|
echo -e "\nComputertruhe-Setup"
|
||||||
echo "-------------------"
|
echo "-------------------"
|
||||||
echo ">>> Starte initiales Setup für Rechner mit frisch installiertem Linux Mint 19 ..."
|
echo ">>> Starte initiales Setup für Rechner mit frisch installiertem Linux Mint 19 ..."
|
||||||
|
|
||||||
|
|
||||||
|
###
|
||||||
|
# Root modus
|
||||||
|
###
|
||||||
echo ">>> Rootshell öffnen ..."
|
echo ">>> Rootshell öffnen ..."
|
||||||
sudo -i
|
sudo -i
|
||||||
|
|
||||||
|
###
|
||||||
|
# Automatisierung
|
||||||
|
###
|
||||||
echo ">>> Automatische Installation empfohlener Pakete aktivieren ..."
|
echo ">>> Automatische Installation empfohlener Pakete aktivieren ..."
|
||||||
sudo sed -i 's/false/true/g' /etc/apt/apt.conf.d/00recommends
|
sudo sed -i 's/false/true/g' /etc/apt/apt.conf.d/00recommends
|
||||||
echo ">>> Besten Spiegelserver für Linux Mint auswählen ..."
|
echo ">>> Besten Spiegelserver für Linux Mint auswählen ..."
|
||||||
|
@ -29,6 +46,11 @@ apt clean
|
||||||
apt autoremove -y
|
apt autoremove -y
|
||||||
echo ">>> Rootshell beenden ..."
|
echo ">>> Rootshell beenden ..."
|
||||||
exit
|
exit
|
||||||
|
|
||||||
|
|
||||||
|
###
|
||||||
|
# Abschluss
|
||||||
|
###
|
||||||
echo ">>> Initiales Setup beendet."
|
echo ">>> Initiales Setup beendet."
|
||||||
echo
|
echo
|
||||||
echo ">>> To-dos:"
|
echo ">>> To-dos:"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue