From a949899168799ad1b79f59c765270088b6368405 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Sun, 6 Sep 2026 13:40:20 +0200 Subject: [PATCH] =?UTF-8?q?Docs:=20Schnellstart-One-Liner=20zum=20Klonen?= =?UTF-8?q?=20und=20Ausf=C3=BChren=20zu=20README.md=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Junie --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 849ab80..cb1b1da 100644 --- a/README.md +++ b/README.md @@ -6,25 +6,35 @@ Ein modulares, sicheres und erweiterbares Framework zur automatisierten Einricht ## 🚀 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: ```bash sudo ./setup.sh ``` -### 2. Vollautomatischer CLI-Modus +### 3. Vollautomatischer CLI-Modus Führe alle Phasen (`00` bis `10`) ohne Interaktion aus: ```bash sudo ./setup.sh --all ``` -### 3. Gezielte Modulauswahl +### 4. Gezielte Modulauswahl Installiere nur bestimmte Phasen (z. B. nur Paketlisten und Schriften): ```bash sudo ./setup.sh --stages 04,05 ``` -### 4. Simulationslauf (Dry-Run) +### 5. Simulationslauf (Dry-Run) Überprüfe geplante Aktionen, ohne Änderungen am System vorzunehmen: ```bash ./setup.sh --dry-run --stages 01,02,04