feat: Automatische Installation benötigter Pakete für Laufwerksformatierung hinzugefügt

This commit is contained in:
2026-05-10 19:55:03 +02:00
parent 19ec70a540
commit 00e706b186
2 changed files with 3 additions and 2 deletions

View File

@@ -160,7 +160,7 @@ Das Ziel-Laufwerk kann direkt im Web-Interface formatiert werden, ohne einen PC
> **Hinweis:** Das Formatieren löscht alle Daten auf dem Laufwerk unwiderruflich. PiCopy fordert vor dem Start eine Bestätigung an.
>
> Benötigte Pakete: `exfatprogs` (exFAT), `dosfstools` (FAT32), `ntfs-3g` (NTFS) PiCopy zeigt eine Fehlermeldung mit dem genauen `apt install`-Befehl wenn ein Paket fehlt.
> Die benötigten Pakete (`exfatprogs`, `dosfstools`, `ntfs-3g`) werden beim Installieren von PiCopy automatisch mitinstalliert.
### Kopier-Verlauf

View File

@@ -35,7 +35,8 @@ echo ""
# ── System-Pakete ─────────────────────────────────────────────────────────────
info "Systemabhängigkeiten werden installiert..."
apt-get update -q
apt-get install -y -q python3 python3-venv python3-pip util-linux rclone
apt-get install -y -q python3 python3-venv python3-pip util-linux rclone \
exfatprogs dosfstools ntfs-3g
ok "Systemabhängigkeiten installiert"
# ── Verzeichnis anlegen ───────────────────────────────────────────────────────