From 92e86cbf1fabdff68ce87941a079f6467d964eb4 Mon Sep 17 00:00:00 2001 From: BadStorm Date: Sat, 1 Nov 2025 15:40:03 +0100 Subject: [PATCH] Update Repo --- README.md | 17 +++++++++-------- install.sh | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f604a1b..68881b2 100644 --- a/README.md +++ b/README.md @@ -9,22 +9,23 @@ Guida completa per configurare un'infrastruttura AI containerizzata con Podman r - Utente non-root con privilegi sudo ### Partizionamento -/boot → 1 GB → ext4 -/ → 40 GB → ext4 -/home → 50 GB → ext4 (se usi Podman rootless) -/srv → tutto il resto → xfs (per dati, modelli AI, volumi bind) -/swap → 16 GB → swap + +| Mount Point | Size | Filesystem | Note | +|-------------|---------------|------------|------| +| /boot | 1 GB | ext4 | | +| / | 40 GB | ext4 | | +| /home | 50 GB | ext4 | se usi Podman rootless | +| /srv | tutto il resto| xfs | per dati, modelli AI, volumi bind | +| /swap | 16 GB | swap | | ## Installazione Per installare automaticamente tutto il necessario, esegui: ```bash -curl -fsSL https://tuo-repo/install.sh | sh +curl -fsSL https://code.badstorm.xyz/SRV/bdi_podman_serverconf/raw/main/install.sh | sh ``` -Sostituisci `https://tuo-repo/install.sh` con l'URL del tuo repository remoto (ad esempio, `https://raw.githubusercontent.com/tuo-username/tuo-repo/main/install.sh`). - Questo script eseguirà tutti i passi di configurazione, inclusi aggiornamenti di sistema, installazione di Podman, configurazione di systemd e riavvio finale. ## Utilizzo dopo l'installazione diff --git a/install.sh b/install.sh index 1a9f118..269567c 100644 --- a/install.sh +++ b/install.sh @@ -3,7 +3,7 @@ set -e # Modifica questa variabile con l'URL raw del tuo repository remoto -REPO_URL="https://raw.githubusercontent.com/yourusername/yourrepo/main" +REPO_URL="https://code.badstorm.xyz/SRV/bdi_podman_serverconf/raw/main" echo "Iniziando l'installazione di BDI Podman Serverconf..."