Created
December 20, 2024 18:18
-
-
Save devasheeshG/91b9b56ef2ed3d533163b192d7ef2155 to your computer and use it in GitHub Desktop.
Proxmox on raspberrypi 5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
flash pi5-64bit-lite OS | |
goto bootfs/config.txt | |
add this inside `[all]` key | |
``` | |
usb_max_current_enable=1 | |
``` | |
ssh in pi and run theese commands | |
sudo su - | |
curl -L https://mirrors.apqa.cn/proxmox/debian/pveport.gpg | tee /usr/share/keyrings/pveport.gpg | |
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/pveport.list | |
apt update | |
apt dist-upgrade | |
nano /etc/hosts | |
``` | |
127.0.0.1 localhost | |
127.0.1.1 raspberrypi | |
192.168.0.252 raspberrypi | |
``` | |
apt install ifupdown2 bridge-utils | |
nano /etc/network/interfaces | |
``` | |
auto lo | |
iface lo inet loopback | |
iface eth0 inet static | |
auto vmbr0 | |
iface vmbr0 inet static | |
address 192.168.0.252/24 | |
gateway 192.168.0.1 | |
bridge-ports eth0 | |
bridge-stp off | |
bridge-fd 0 | |
``` | |
systemctl restart networking | |
# Verify internet connection | |
ping google.com | |
# Install proxmox | |
apt install pve-edk2-firmware | |
apt install proxmox-ve postfix open-iscsi pve-edk2-firmware-aarch64 | |
# Email Server Config | |
`No Configuration` - If you don't want your proxmox instance to ever email you | |
... | |
# Question: | |
``` | |
Configuration file '/etc/apt/sources.list.d/pveport.list' | |
==> File on system created by you or by a script. | |
==> File also in package provided by package maintainer. | |
What would you like to do about it ? Your options are: | |
Y or I : install the package maintainer's version | |
N or O : keep your currently-installed version | |
D : show the differences between the versions | |
Z : start a shell to examine the situation | |
The default action is to keep your current version. | |
*** pveport.list (Y/I/N/O/D/Z) [default=N] | |
``` | |
Just press enter | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment