linux:proxmox

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
linux:proxmox [2025/05/29 15:18] – [Proxmox] add link phswlinux:proxmox [2025/12/06 22:30] (Version actuelle) – add how to setup acme certificate renewal phsw
Ligne 10: Ligne 10:
   * [[https://blog.pipetogrep.org/2025/05/23/how-to-install-windows-nt-4-server-on-proxmox/|How to Install Windows NT 4 Server on Proxmox]]   * [[https://blog.pipetogrep.org/2025/05/23/how-to-install-windows-nt-4-server-on-proxmox/|How to Install Windows NT 4 Server on Proxmox]]
   * [[https://memo-linux.com/proxmox-backup-server-stockage-zfs/|Proxmox Backup Server : Stockage ZFS]]   * [[https://memo-linux.com/proxmox-backup-server-stockage-zfs/|Proxmox Backup Server : Stockage ZFS]]
 +  * [[https://resinfo-gt.pages.in2p3.fr/proxmox/doc/index.html]]
 +  * [[https://raymii.org/s/tutorials/Finally_run_Docker_containers_natively_in_Proxmox_9.1.html|Finally, run Docker containers natively in Proxmox 9.1 (OCI images)]]
 +  * [[https://blog.zwindler.fr/2025/11/24/artefacts-oci-lxc-proxmox-9-1/|Les artefacts OCI comme base de machines LXC sur Proxmox 9.1, enfin ?]]
  
  
Ligne 24: Ligne 27:
 ==== Désactiver la popup suggérant un abonnement ==== ==== Désactiver la popup suggérant un abonnement ====
  
-Créer le fichier ''/etc/apt/apt.conf.d/no-nag-script'' avec le contenu suivant : +  * [[https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/pve/post-pve-install.sh]]
-<code> +
-DPkg::Post-Invoke { "dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; if [ $? -eq 1 ]; then { echo 'Removing subscription nag from UI...'; sed -i '/.*data\.status.*{/{s/!//;s/active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; }; fi"; }; +
-</code> +
- +
-Il est possible d'exécuter directement : +
-<code bash> +
-sed -i '/.*data\.status.*{/{s/!//;s/active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js +
-</code>+
  
  
Ligne 41: Ligne 36:
   * [[https://pve.proxmox.com/wiki/Cloud-Init_FAQ|Cloud-Init FAQ]]   * [[https://pve.proxmox.com/wiki/Cloud-Init_FAQ|Cloud-Init FAQ]]
   * [[https://pve.proxmox.com/wiki/VM_Templates_and_Clones|VM Templates and Clones]]   * [[https://pve.proxmox.com/wiki/VM_Templates_and_Clones|VM Templates and Clones]]
 +  * [[https://febryandana.xyz/posts/proxmox-create-lxc-instance-and-template/|Create LXC (Linux Container) Instance and Template]]
 +
 +
 +==== Faire écouter l'interface web sur le port 443 ====
 +
 +  * [[https://pve.proxmox.com/wiki/Web_Interface_Via_Nginx_Proxy|Web Interface Via Nginx Proxy]]
 +
 +Ajouter aux interfaces dans ''/etc/network/interfaces'' :
 +<code bash>
 +post-up iptables -t nat -A PREROUTING -d <your-ip> -p tcp --dport 443 -j REDIRECT --to-port 8006 || true
 +</code>
 +Ensuite pour appliquer immédiatement le changement :
 +<code bash>
 +sudo ifreload -a
 +</code>
 +
 +
 +==== Gérer le renouvellement du certificat HTTPS avec ACME ====
 +
 +  * [[https://pve.proxmox.com/wiki/Certificate_Management|Certificate Management]]
 +
 +<code bash>
 +sudo pvenode acme account register default em@il --directory https://ca.homelab/acme/acme/directory
 +sudo pvenode config set --acme domains=proxmox.homelab  # or from the web interface
 +sudo pvenode acme cert order  # or from the web interface
 +</code>
  
  • linux/proxmox.1748524718.txt.gz
  • Dernière modification : 2025/05/29 15:18
  • de phsw