本文在安装了树莓派 OS(64位) Bookworm 桌面系统
然后ssh安装了aapanel可视化面板
接下来准备安装PVE8.1虚拟化系统
在这期间,建议不要安装和使用其他程序应用,避免因为环境变更到PVE8安装失败
先ssh进入树莓派,切换到root账户
先删除其他文件
rm /etc/network/interfaces.d/*
然后编辑网卡文件
nano /etc/network/interfaces
网卡文件内容应该如下
注意eth0是本文有线网卡的名称,如果你的网卡是多个网卡或者网卡名称不一样,要替换为你设备的网卡名称
192.168.100.236是路由器自动分配给树莓派的ip地址,这里写为固定的ip(需要根据你的实际ip更换)
192.168.100.1是路由网关(需要根据你的实际ip更换)
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.100.236/24
gateway 192.168.100.1
如何查看网卡名称和当前ipv4地址
使用命令
ip addr
执行命令
echo "nameserver 223.5.5.5" >>/etc/resolv.con
编辑hosts文件
nano /etc/hosts
添加红框处,一共一行三段
第一段是本机ip地址,第二段是自定义域名,第三段是本机设备名
删除现在的源
rm /etc/apt/sources.list
编辑新的源
nano /etc/apt/sources.list
内容为
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free
添加源,执行
echo "deb https://mirrors.apqa.cn/proxmox/debian/pve bookworm port">/etc/apt/sources.list.d/pveport.list
设置apt-key,执行
curl https://mirrors.apqa.cn/proxmox/debian/pveport.gpg -o /etc/apt/trusted.gpg.d/pveport.gpg
设置正确路径,执行
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
建议这个时候重启下树莓派,让网络配置生效
执行
apt update && apt install -y proxmox-ve
等待执行结束
正常情况下会有一个弹框提示
但是本文没有遇到,也没有报错
再次重启,等待一段时间后,正常访问PVE
如果在安装PVE时,遇到弹框提示,选择红色框区域即可
没有则无需理会,只要不报错,重启即可
安装PVE成功后,需要https协议下访问ip:8006
所以本文的PVE管理后台地址为https://192.168.100.236:8006
因为使用aapanel防火墙,所以需要单独开放8006端口(如果访问不成功,记得确认端口已开放)
因为是ip和https形式,没有证书很正常,看到下面页面点击继续前往即可
PVE默认使用root账户登录 (root为系统的账户)
如果没有设置root密码,请使用ssh及时设置root密码
执行
sudo passwd root
然后使用root和密码登录
至此,PVE8.1在树莓派上安装完成
因为树莓派系统就是基于Debian系统,所以可以安装PVE虚拟机
在PVE下可以安装完整版本的Home Assistant智能家居以及其他系统
END.