1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| #Update pve 8 sourcelist
#You can choose to run one of the option command.
#Option 1: PVE Offical sourcelist
tee /etc/apt/sources.list.d/pve-install-repo.list << "EOF"
deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription
EOF
# Option 2: mirrors utsc
tee /etc/apt/sources.list.d/pve-install-repo.list << "EOF"
deb [arch=amd64] https://mirrors.ustc.edu.cn/proxmox/debian/pve bookworm pve-no-subscription
EOF
#Downlaod and install gpg key
#You can choose to run one of the option command.
#Option 1. Download gpg key from pve offical site
wget http://download.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
#Option 2. Install with mirrors UTSC
wget https://mirrors.ustc.edu.cn/proxmox/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
#Change Ceph
#You can choose to run one of the option command.
#Option 1: pve offical
echo "deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription" > /etc/apt/sources.list.d/ceph.list
#Option 2: mirrors.ustc.edu.cn
echo "deb https://mirrors.ustc.edu.cn/proxmox/debian/ceph-quincy bookworm no-subscription" > /etc/apt/sources.list.d/ceph.list
apt update && apt -y full-upgrade
# Install proxmxo ve kernel
apt install pve-kernel-6.2
# Reboot
systemctl reboot
|