mirror of
https://github.com/pimox/pimox7.git
synced 2026-06-03 20:51:40 +00:00
54857754b5b0deac226e12050968e5b386ca7475
While running the script, the following error will appear during the process: proxmox-ve depends on pve-manager; however: Package pve-manager is not configured yet. This appears to be a combination of upstream issues and race conditions. Installing pve-manager by itself, prior to installing the proxmox-ve package, along with disabling optional dependencies, seems to fix this issue. This pull request has the script install pve-manager early, before the other packages, so that it's already installed and configured by the time the remainder of the script performs the remaining functions.
Pimox - Proxmox V7 for the Raspberry Pi
Pimox is a port of Proxmox to the Raspberry Pi allowing you to build a Proxmox cluster of Rapberry Pi's or even a hybrid cluster of Pis and x86 hardware.
Requirements
- Raspberry Pi 4
- Internet connection via ethernet
Install from "scratch", RPiOS64bit Interactive Automatic Installer
- Flash and startup the latest image from https://downloads.raspberrypi.org/raspios_arm64/ .
- sudo -s
- curl https://raw.githubusercontent.com/pimox/pimox7/master/RPiOS64-IA-Install.sh > RPiOS64-IA-Install.sh
- chmod +x RPiOS64-IA-Install.sh
- ./RPiOS64-IA-Install.sh
- Follow the prompts
Manual installation
Prechecks
- Pre-installed Debian Bullseye based 64-bit OS (not 32bit)
- In /etc/network/interfaces, give the Pi a static IP address. You cannot use dhcp.
- In /etc/network/interfaces, remove any IPv6 addresses.
- In /etc/hostname, make sure the Pi has a name.
- In /etc/hosts, make sure this hostname corresponds to the static IP you previous set.
- Make sure the kernel-headers are installed.
Installation
- echo "deb https://raw.githubusercontent.com/pimox/pimox7/master/ dev/" > /etc/apt/sources.list.d/pimox.list
- curl https://raw.githubusercontent.com/pimox/pimox7/master/KEY.gpg | apt-key add -
- apt update
- apt install proxmox-ve (use a local attatched console! Network connections will be lost/reset during installation progress)
Notes
- This repo just contains the precompiled debian packages. The original Proxmox sources can be found at https://git.proxmox.com
- The (very minimally) patched sources to rebuild this can be found at https://github.com/pimox
Description
Languages
Shell
100%