因为pve官方源是国外的服务器,所以导致在国内的时候下载速度很慢
为了解决这个问题,我们就需要将下载源换为国内镜像服务器,下面就是换源的过程
在shell中输入此命令以打开配置文件列表
nano /etc/apt/sources.list
warning Tips
文本中被#注释的是PVE原来的官方源地址
将文件内容改为以下文本:
# deb http://ftp.debian.org/debian bookworm main contrib
deb http://mirrors.163.com/debian bookworm main contri
# deb http://ftp.debian.org/debian bookworm-updates main contrib
deb http://mirrors.163.com/debian bookworm-updates main contrib
# security updates
deb http://mirrors.163.com/debian-security bookworm-security main contrib
如法炮制将另一个文件也进行修改
打开文件:
nano /etc/apt/sources.list.d/ceph.list pve
将文件内容改为以下文本:
deb https://mirrors.ustc.edu.cn/proxmox/debian/ceph-quincy bookworm no-subscription
deb http://mirrors.ustc.edu.cn/proxmox/debian/ceph-pacific bullseye main
deb http://mirrors.ustc.edu.cn/proxmox/debian/ceph-octopus/ bullseye main
最后执行如下命令更新软件列表:
apt update