项目地址 https://github.com/pimox/pimox7

重装成debian11

首先使用netboot重装系统为debian11,具体不多说了,大家都会

网络设置

想要安装后不断网,一定要先将网络设置为静态

先查看自己的内网IP

我这里是10.0.0.234

修改/etc/network/interfaces

1
2
3
4
iface enp0s3 inet static
	address 10.0.0.234
	netmask 255.255.255.0
	gateway 10.0.0.1
VIM

重启生效

修改hosts

添加一行

1
公网IP 主机名.proxmox.com 主机名
VIM

并注释掉其他的,只留下127.0.0.1 localhost和这一行

修改好后执行

1
hostname --ip-address
BASH

只返回你的公网IP即可,不然等会安装会报错

修改源并安装pve

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
rm /etc/apt/sources.list.d/*.list
rm /etc/apt/source.list

echo "# Raspberry Pi Bullseye Repoo
deb http://archive.raspberrypi.org/debian/ bullseye main

# Pimox7 Repo
deb https://raw.githubusercontent.com/pimox/pimox7/master/ dev/

# Debian Rep0
deb http://deb.debian.org/debian bullseye main contrib non-free

# Security Updated
deb http://security.debian.org/debian-security bullseye-security main contrib non-free" > /etc/apt/sources.list

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 82B129927FA3303E
curl https://raw.githubusercontent.com/pimox/pimox7/master/KEY.gpg | apt-key add -
apt update
apt install proxmox-ve -y
BASH

不要盲目复制粘贴,自己看着执行下去

安装中途会有弹窗,默认选项即可

等个几分钟就装好了,然后重启

浏览器输入https://ip:8006即可打开pve

但是会发现AppArmor报错,开小鸡时候也会报错

重新编译安装AppArmor

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apt install git bison flex autoconf libtool swig gettext -y
git clone https://gitlab.com/apparmor/apparmor.git
cd apparmor
export PYTHONPATH=$(realpath libraries/libapparmor/swig/python)
export PYTHON=/usr/bin/python3
export PYTHON_VERSION=3
export PYTHON_VERSIONS=python3
cd ./libraries/libapparmor
./autogen.sh
./configure --prefix=/usr --with-perl --with-python
make
make install
cd ../../binutils/
make
make install
cd ../parser/
make
make install
cd ../utils/
make
make install
BASH

下载ARM模板开机

去这里下载arm的模板https://uk.lxd.images.canonical.com/images/

rootfs.tar.xz文件名,基本上什么系统都有

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。