Docs: Schnellstart-One-Liner zum Klonen und Ausführen zu README.md hinzugefügt

Co-authored-by: Junie <junie@jetbrains.com>
This commit is contained in:
2026-09-06 13:40:20 +02:00
co-authored by Junie
parent 20d4952740
commit a949899168
+14 -4
View File
@@ -6,25 +6,35 @@ Ein modulares, sicheres und erweiterbares Framework zur automatisierten Einricht
## 🚀 Schnellstart ## 🚀 Schnellstart
### 1. Interaktiver TUI-Modus (Empfohlen) ### 1. One-Liner (Klonen & Starten)
Klonen des Repositories und direkter Start des Setups in einem einzigen Befehl:
```bash
git clone https://gitea.creative-dragonslayer.de/Scripts/Setup.git && cd Setup && sudo ./setup.sh
```
Oder direkt vollautomatisch alle Stages (`00` bis `10`) ausführen:
```bash
git clone https://gitea.creative-dragonslayer.de/Scripts/Setup.git && cd Setup && sudo ./setup.sh --all
```
### 2. Interaktiver TUI-Modus (Empfohlen)
Starte das grafische Terminal-Menü (`whiptail`) zur flexiblen Auswahl einzelner Module: Starte das grafische Terminal-Menü (`whiptail`) zur flexiblen Auswahl einzelner Module:
```bash ```bash
sudo ./setup.sh sudo ./setup.sh
``` ```
### 2. Vollautomatischer CLI-Modus ### 3. Vollautomatischer CLI-Modus
Führe alle Phasen (`00` bis `10`) ohne Interaktion aus: Führe alle Phasen (`00` bis `10`) ohne Interaktion aus:
```bash ```bash
sudo ./setup.sh --all sudo ./setup.sh --all
``` ```
### 3. Gezielte Modulauswahl ### 4. Gezielte Modulauswahl
Installiere nur bestimmte Phasen (z. B. nur Paketlisten und Schriften): Installiere nur bestimmte Phasen (z. B. nur Paketlisten und Schriften):
```bash ```bash
sudo ./setup.sh --stages 04,05 sudo ./setup.sh --stages 04,05
``` ```
### 4. Simulationslauf (Dry-Run) ### 5. Simulationslauf (Dry-Run)
Überprüfe geplante Aktionen, ohne Änderungen am System vorzunehmen: Überprüfe geplante Aktionen, ohne Änderungen am System vorzunehmen:
```bash ```bash
./setup.sh --dry-run --stages 01,02,04 ./setup.sh --dry-run --stages 01,02,04