Bonjour,
Voici comment installer proxmox sur armbian par exemple.
Compatible avec les Boards suivantes :
Odroid C4 (arm64)
Rockpi (arm64)
Raspberry Pi (arm64)
Amlogic TV box (arm64)
Kunpeng (arm64)
FT (arm64)
Ampere (arm64)
Apple (arm64,vm only,no kvm support)
Connexion SSH :
ssh root@192.168.0.10
mot de passe : 1234
Dans notre exemple la board utilise l'ip suivante : 192.168.0.10
Mettre à jour votre OS :
apt update
apt dist-upgrade -y
Ajout votre nom d’hôte :
nano /etc/hosts
remplacer 127.0.1.1 odroidc4
par 192.168.0.10 odroidc4
Ajout de la clé GPG :
curl https://global.mirrors.apqa.cn/proxmox/debian/pveport.gpg -o /etc/apt/trusted.gpg.d/pveport.gpg
Ajout du repo Proxmox :
nano /etc/apt/sources.list.d/pveport.list
deb [arch=arm64] https://global.mirrors.apqa.cn/proxmox/debian/pve bookworm port
deb [arch=arm64] https://global.mirrors.apqa.cn/proxmox/debian/pve bookworm ceph-reef
deb [arch=arm64] https://global.mirrors.apqa.cn/proxmox/debian/pbs bookworm port
#deb [arch=arm64] https://global.mirrors.apqa.cn/proxmox/debian/pve bookworm pvetest
#deb [arch=arm64] https:global.mirrors.apqa.cn/proxmox/debian/devel bookworm port
#deb [arch=arm64] https:global.mirrors.apqa.cn/proxmox/debian/kernel sid port
Installer ifupdown2 :
apt update && apt install -y ifupdown2
Installer Proxmox :
mkdir -p /var/log/ceph
apt install -y proxmox-ve postfix open-iscsi
Configurer le Network :
ip a
L'interface de ma board est : end0
nano /etc/network/interfaces
auto lo
iface lo inet loopback
iface end0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.0.10/24
gateway 192.168.0.1
bridge-ports end0
bridge-stp off
bridge-fd 0
apt remove -y resolvconf rdnssd
(Si l'un des packages est installé)
Redémarrer la board
reboot
Configurer Proxmox :
https://192.168.0.10:8006
Repo LXC ARM64 :
https://images.linuxcontainers.org/images/ (Officiel)
https://mirror.tuna.tsinghua.edu.cn/lxc-images/images/ (Mirroir)
https://global.mirrors.apqa.cn/proxmox/lxc/ (Mirroir)
Télécharger Debian :
mkdir -p /var/lib/vz/template/cache
wget -O /var/lib/vz/template/cache/debian-12-default_20231105_arm64.tar.xz \
https://images.linuxcontainers.org/images/debian/bookworm/arm64/default/20231105_05%3A24/rootfs.tar.xz
Créer un LXC Debian :
pct create 200 --rootfs local:10 \
--hostname debian-bullseye \
--password linux \
local:vztmpl/debian-12-default_20231105_arm64.tar.xz
pct start 200 && pct enter 200
Voilà vous avez installer Proxmox !
Voici quelque liens utile :
https://github.com/jiangcuo/Proxmox-Arm64
https://github.com/pimox/pimox7