Howto proxmox raspberrypi5

From Vidalinux Wiki
Revision as of 19:31, 29 April 2024 by Mandulete1 (talk | contribs) (Created page with "install gpg key: curl -L https://mirrors.apqa.cn/proxmox/debian/pveport.gpg | tee /usr/share/keyrings/pveport.gpg install proxmox repo: echo "deb [deb=arm64 signed-by=/usr/share/keyrings/pveport.gpg] https://mirrors.apqa.cn/proxmox/debian/pve bookworm port" | tee /etc/apt/sources.list.d/pvport.list update to latest: apt update && apt dist-upgrade -y add hostname to /etc/host: cat >> /etc/hosts << EOF 127.0.0.1 localhost 127.0.1.1 raspberrypi 192.168.77.122 raspber...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

install gpg key:

curl -L https://mirrors.apqa.cn/proxmox/debian/pveport.gpg | tee /usr/share/keyrings/pveport.gpg

install proxmox repo:

echo "deb [deb=arm64 signed-by=/usr/share/keyrings/pveport.gpg] https://mirrors.apqa.cn/proxmox/debian/pve bookworm port" | tee /etc/apt/sources.list.d/pvport.list

update to latest:

apt update && apt dist-upgrade -y

add hostname to /etc/host:

cat >> /etc/hosts << EOF
127.0.0.1 localhost
127.0.1.1 raspberrypi
192.168.77.122 raspberrypi
EOF

edit network configuration:

cat >> /etc/network/interfaces << EOF
# loopback
auto lo
iface lo inet loopback
# eth0
iface eth0 inet static
# vmbr0 bridge
auto vmbr0
iface vmbr0 inet static
        address 192.168.77.122
        netmask 255.255.255.0
        gateway 192.168.77.1
        dns-nameservers 4.2.2.1 
        dns-nameservers 4.2.2.2
        bridge-ports eth0
        bridge-stp off
        bridge-fd 0
EOF

install this packages:

apt install ifupdown2 bridge-utils -y

install firmware:

apt install pve-edk2-firmware

install proxmox packages:

apt install proxmox-ve postfix open-iscsi pve-edk2-firmware-aarch64

reboot system:

reboot

for download lxc container images: