✨ NOUVELLE VERSION PROXMOX AUTONOME : - Script d'installation totalement autonome pour Proxmox VE - Création automatique du container LXC Ubuntu 22.04 - Configuration hardware et IPMI automatisée - Interface utilisateur avec ASCII art et couleurs - Compatible avec le pattern community-scripts 🛠️ FONCTIONNALITÉS AVANCÉES : - Outils d'administration intégrés (idrac-setup, idrac-status, etc.) - Scripts helpers avec interface colorée - Healthcheck et monitoring automatiques - Configuration par défaut optimisée pour Dell - Gestion des erreurs et diagnostics 📱 INTERFACE UTILISATEUR : - Menu de configuration avancée - Rapport d'installation détaillé - Instructions post-installation contextuelles - Scripts d'aide intégrés au container 🔗 MISE À JOUR REPOSITORY : - Toutes les URLs mises à jour avec git.benoitsz.com - Documentation cohérente sur toutes les versions - Liens Gitea pour issues et support 📚 DOCUMENTATION COMPLÈTE : - README-PROXMOX.md avec guide détaillé - Comparaison des 3 versions (Docker, LXC, Proxmox) - Instructions d'installation ultra-rapide - Guide de dépannage spécialisé ⚡ INSTALLATION EN 1 COMMANDE : bash -c "$(wget -qLO - https://git.benoitsz.com/benoit/iDRAC_fan_controller/raw/branch/main/proxmox/idrac-fan-controller.sh)" 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
89 lines
2.3 KiB
Markdown
89 lines
2.3 KiB
Markdown
# Guide d'installation
|
|
|
|
Choisissez votre méthode d'installation préférée :
|
|
|
|
## 🤖 Version Proxmox Autonome (Recommandée)
|
|
|
|
**Avantages :**
|
|
- **Installation en 1 seule commande** depuis Proxmox
|
|
- Création automatique du container LXC
|
|
- Configuration hardware automatique
|
|
- Interface graphique avec ASCII art
|
|
- Outils d'administration intégrés
|
|
|
|
**→ [Guide Proxmox complet](proxmox/README-PROXMOX.md)**
|
|
|
|
### Installation ultra-rapide Proxmox
|
|
|
|
```bash
|
|
# Depuis votre node Proxmox VE
|
|
bash -c "$(wget -qLO - https://git.benoitsz.com/benoit/iDRAC_fan_controller/raw/branch/main/proxmox/idrac-fan-controller.sh)"
|
|
```
|
|
|
|
---
|
|
|
|
## 🐳 Version Docker
|
|
|
|
**Avantages :**
|
|
- Installation simple avec Docker Compose
|
|
- Environment isolé et reproductible
|
|
- Gestion des versions via images Docker
|
|
- Intégration facile avec d'autres services
|
|
|
|
**→ [Guide Docker complet](docker/README-DOCKER.md)**
|
|
|
|
### Installation rapide Docker
|
|
|
|
```bash
|
|
# Cloner le repo
|
|
git clone https://git.benoitsz.com/benoit/iDRAC_fan_controller.git
|
|
cd Dell_iDRAC_fan_controller/docker
|
|
|
|
# Configurer
|
|
cp docker-compose.yml docker-compose.local.yml
|
|
nano docker-compose.local.yml
|
|
|
|
# Lancer
|
|
docker-compose -f docker-compose.local.yml up -d
|
|
```
|
|
|
|
---
|
|
|
|
## 📦 Version LXC (Proxmox)
|
|
|
|
**Avantages :**
|
|
- Performance native (pas d'overhead Docker)
|
|
- Intégration parfaite avec Proxmox
|
|
- Accès hardware direct
|
|
- Gestion avec systemd
|
|
|
|
**→ [Guide LXC complet](lxc/README-LXC.md)**
|
|
|
|
### Installation rapide LXC
|
|
|
|
```bash
|
|
# Dans un container LXC Ubuntu
|
|
wget -O - https://git.benoitsz.com/benoit/iDRAC_fan_controller/archive/main.tar.gz | tar -xz
|
|
cd Dell_iDRAC_fan_controller-main/lxc
|
|
chmod +x install-lxc.sh
|
|
./install-lxc.sh
|
|
```
|
|
|
|
---
|
|
|
|
## Comparaison rapide
|
|
|
|
| Critère | Proxmox Auto | Docker | LXC Manuel |
|
|
|---------|-------------|--------|------------|
|
|
| **Facilité** | ⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐ |
|
|
| **Performance** | ⭐⭐⭐ | ⭐⭐ | ⭐⭐⭐ |
|
|
| **Isolation** | ⭐⭐ | ⭐⭐⭐ | ⭐⭐ |
|
|
| **Maintenance** | ⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐ |
|
|
| **Proxmox** | ⭐⭐⭐⭐ | ⭐⭐ | ⭐⭐⭐ |
|
|
| **Ressources** | ⭐⭐⭐ | ⭐⭐ | ⭐⭐⭐ |
|
|
|
|
## Support
|
|
|
|
- **Issues** : [Gitea Issues](https://git.benoitsz.com/benoit/iDRAC_fan_controller/issues)
|
|
- **Discussions** : [Gitea](https://git.benoitsz.com/benoit/iDRAC_fan_controller)
|
|
- **Original** : [Projet source](https://github.com/tigerblue77/Dell_iDRAC_fan_controller_Docker) |