2024最新Docker容器更换apt-get镜像源----debian&ubuntu
小鱼干儿♛ 2024-10-03 14:37:06 阅读 56
文章目录
最新Docker容器更换apt-get镜像源----debian&ubuntuDebian修改软件镜像源ubuntu修改软件镜像源清华大学开源镜像网站配置完成以后不生效
最新Docker容器更换apt-get镜像源----debian&ubuntu
从Debian 12开始,软件源的配置文件都变更为了为 DEB822 格式
大部分 Debian 的软件源配置文件使用传统的 One-Line-Style,路径为 /etc/apt/sources.list;但是对于容器镜像,从 Debian 12 开始,其软件源配置文件变更为 DEB822 格式,路径为 /etc/apt/sources.list.d/debian.sources。一般情况下,将对应文件中 Debian 默认的源地址 http://deb.debian.org/ 替换为镜像地址即可。
最新的ubuntu系统也修改了
在 Ubuntu 24.04 之前,Ubuntu 的软件源配置文件使用传统的 One-Line-Style,路径为 /etc/apt/sources.list;从 Ubuntu 24.04 开始,Ubuntu 的软件源配置文件变更为 DEB822 格式,路径为 /etc/apt/sources.list.d/ubuntu.sources。
因为新版本软件源配置文件的变更,原来修改方式也不管用了,就算你新建了相应的文件填入的对应的内容,也执行了<code>apt-get update 看到了自己设置的软件源,但是在安装的时候还是不会生效。
Debian修改软件镜像源
# 新版本的镜像源的配置文件在sources.list.d中的debian.sources
cd /etc/apt/sources.list.d
# 如果怕修改导致软件不能用可以先备份一下,备份的文件放在sources.list.d文件夹外面(我的放在内部,会导致出现失败)
mv /etc/apt/sources.list.d/debian.sources /etc/apt/sources.list.d/debian.sources.bak
# 默认是没有vim的,我们使用echo来写入文件
# 清空文件夹
echo "" > debian.sources
# 写入清华镜像源
echo "Types: deb
URIs: https://mirrors.tuna.tsinghua.edu.cn/debian
Suites: bookworm bookworm-updates bookworm-backports
Components: main contrib non-free non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
Types: deb
URIs: https://security.debian.org/debian-security
Suites: bookworm-security
Components: main contrib non-free non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg" > debian.sources
更新apt-get
apt-get update
安装vim测试
apt-get install vim
如果看到安装的时候是用的清华源,速度也比较快,就说明修改软件镜像源成功。
ubuntu修改软件镜像源
ubuntu的修改方式和Debian的类似,都是修改sources.list.d文件夹里下面的文件
路径为/etc/apt/sources.list.d/ubuntu.sources
# 进入对应的文件夹
cd /etc/apt/sources.list.d
# 备份配置文件
mv /etc/apt/sources.list.d/ubuntu.sources /etc/apt/sources.list.d/ubuntu.sources.bak
# 清空配置文件
echo "" > ubuntu.sources
# 写入清华源
echo "Types: deb
URIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntu
Suites: noble noble-updates noble-backports
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
Types: deb
URIs: http://security.ubuntu.com/ubuntu/
Suites: noble-security
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg" > ubuntu.sources
更新apt-get
apt-get update
安装vim测试
apt-get install vim
清华大学开源镜像网站
如果你想了解更多系统的配置方案可以去清华大学开源镜像网站:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/
选择自己使用的系统和版本号,网站会给出对应的配置信息
配置完成以后不生效
检查自己的系统版本,查看系统软件镜像源是采用的传统方式还是DEB822 格式检查配置文件的格式是否正确检查sources.list.d文件夹下是否有多余的文件
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。