proxmox 更换国内源 中科大&清华

debian 和 proxmox 源更新

参考 http://mirrors.ustc.edu.cn/help/debian.html

一般情况下,将 /etc/apt/sources.list 文件中 Debian 默认的源地址 http://deb.debian.org/ 替换为 http://mirrors.ustc.edu.cn 即可。

可以使用如下命令:

sudo sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list

当然也可以直接编辑 /etc/apt/sources.list 文件(需要使用 sudo)。以下是 Debian Stable 参考配置内容:

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

同时你也可能需要更改 Debian Security 源,请参考 Debian Security 源使用帮助,如下:

一般情况下,将 /etc/apt/sources.list 文件中 Debian 默认的源地址 http://security.debian.org/debian-security/ 替换为 http://mirrors.ustc.edu.cn/debian-security/ 即可

更改完 sources.list 文件后请运行 sudo apt-get update 更新索引以生效。

Proxmox 镜像使用帮助

新建 /etc/apt/sources.list.d/pve-no-subscription.list,内容为:

deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian bullseye pve-no-subscription

CT Templates

如果你需要加速 Proxmox 网页端下载 CT Templates,可以替换 CT Templates 的源为 https://mirrors.tuna.tsinghua.edu.cn

具体方法:将 /usr/share/perl5/PVE/APLInfo.pm 文件中默认的源地址 http://download.proxmox.com 替换为 https://mirrors.tuna.tsinghua.edu.cn/proxmox 即可。

可以使用如下命令修改:

cp /usr/share/perl5/PVE/APLInfo.pm /usr/share/perl5/PVE/APLInfo.pm_back
sed -i 's|http://download.proxmox.com|https://mirrors.tuna.tsinghua.edu.cn/proxmox|g' /usr/share/perl5/PVE/APLInfo.pm

针对 /usr/share/perl5/PVE/APLInfo.pm 文件的修改,重启后生效。

#也可修改为ustc中科大的源

grep -rn "download.proxmox.com" /usr/share/perl5/PVE/*
sed -i.bak "s#http://download.proxmox.com/images#https://mirrors.ustc.edu.cn/proxmox/images#g" /usr/share/perl5/PVE/APLInfo.pm
wget -O /var/lib/pve-manager/apl-info/mirrors.ustc.edu.cn https://mirrors.ustc.edu.cn/proxmox/images/aplinfo-pve-7.dat

参考 http://mirrors.ustc.edu.cn/help/proxmox.html

去除 Proxmox 企业版更新源

Proxmox VE 企业版软件源是默认的、稳定的、推荐使用的软件源,供订阅了 Proxmox VE 企业版的用户使用。如果你没有订阅 Proxmox VE 企业版,可以将企业版软件源配置信息在软件源配置文件中注释掉(在该行开头插入一个 # 字符),以避免系统发出错误提示信息。这种情况下可以配置使用 pve-no-subscriptin 软件源。

nano /etc/apt/sources.list.d/pve-enterprise.list

在其内容前加上 #

使用快捷键 Ctrl + O 回车保存文件,Ctrl + X 退出nano编辑器。

Ceph源修改

输入 nano /etc/apt/sources.list.d/ceph.list 命令,编辑修改 /etc/apt/sources.list.d/ceph.list Ceph软件包仓库位置的配置文件,内容编辑为

deb https://mirrors.ustc.edu.cn/proxmox/debian/ceph-pacific bullseye main

上述源更新完毕后,apt update 更新一下。

发表回复