Hello Community,
I have just installed Proxmox 8.1 on a HUNSN RJ46 - Micro Firewall Appliance. The installation was a bit difficult as it always stuck at boot after installing the Proxmox kernel. So I thought I would write some information here for others and the community.
Basically I followed the proxmox wiki (https://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_12_Bookworm) with some modifications before the reboot.
I skiped
Then I fix the network settings at
After this you can safely reboot into the proxmox kernel with
I have just installed Proxmox 8.1 on a HUNSN RJ46 - Micro Firewall Appliance. The installation was a bit difficult as it always stuck at boot after installing the Proxmox kernel. So I thought I would write some information here for others and the community.
Basically I followed the proxmox wiki (https://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_12_Bookworm) with some modifications before the reboot.
I skiped
apt remove linux-image-amd64 'linux-image-6.1*'
and apt remove os-prober
Then I fix the network settings at
/etc/network/interfaces
Don't forget to replace xxx.xxx.xxx.xxx with your ip address.
Code:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
auto enp1s0
iface enp1s0 inet manual
iface enp2s0 inet manual
iface enp3s0 inet manual
iface enp4s0 inet manual
iface enp5s0 inet manual
iface enp7s0 inet manual
auto vmbr0
iface vmbr0 inet static
address xxx.xxx.xxx.xxx/24
gateway xxx.xxx.xxx.xxx
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
After this you can safely reboot into the proxmox kernel with
systemctl reboot
.