# 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)