pve使用
# 系统初始化
完成后会有web登录页面
# 登录
账号: root
密码: 刚刚启动设置的
# 更新系统&工具安装
# PVE换源
在pve shell中输入
wget https://mirrors.ustc.edu.cn/proxmox/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
echo "#deb https://enterprise.proxmox.com/debian/pve bullseye pve-enterprise" > /etc/apt/sources.list.d/pve-enterprise.list
echo "deb https://mirrors.ustc.edu.cn/proxmox/debian/pve bullseye pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list
1
2
3
2
3
如图:
# Debian换源
pve 基于 debian ,所以也需要更换
mv /etc/apt/sources.list /etc/apt/sources.list.bk
nano /etc/apt/sources.list
1
2
2
回车后 输入 source.list 内容
deb http://mirrors.ustc.edu.cn/debian stable main contrib non-free
# deb-src http://mirrors.ustc.edu.cn/debian stable main contrib non-free
deb http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
# deb-src http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
# deb http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
# deb-src http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
1
2
3
4
5
6
7
2
3
4
5
6
7
然后 ctrl X
Y
最后再 回车 就保存好了
# 更新&安装ethtool
apt update
apt upgrade -y
1
2
2
上次更新: 2023/09/17, 20:06:58