Actualiser Readme.md

This commit is contained in:
Johnny 2025-12-31 09:51:54 +00:00
parent 2022a9fd4e
commit 6e3c3c4d15
1 changed files with 14 additions and 3 deletions

View File

@ -21,10 +21,21 @@ Script bash interactif pour la gestion complète des conteneurs LXC sur Proxmox
## 🚀 Installation
1. Copiez le script sur votre serveur Proxmox VE :
1. Installation du script sur votre serveur Proxmox VE :
```bash
curl -o /usr/local/bin/lxc-manager.sh https://raw.githubusercontent.com/votre-repo/lxc-manager/main/script.sh
chmod +x /usr/local/bin/lxc-manager.sh
# Clone dans un répertoire temporaire
cd /tmp
git clone https://git.h3campus.fr/Johnny/lxc-manager.git
# Cherchez le script
find /tmp/lxc-manager -name "*.sh" -type f
# Copiez le script (adaptez le chemin selon la sortie de find)
sudo cp /tmp/lxc-manager/lxc-manager.sh /usr/local/bin/lxc-manager.sh
sudo chmod +x /usr/local/bin/lxc-manager.sh
# Nettoyage
rm -rf /tmp/lxc-manager
```
2. Créez un alias pour une utilisation facile :