同福

Debian12Bookworm设置apt国内源的方法

操作步骤

切换root

使用su命令切换到root账号。

1.png

备份默认apt配置文件

原始文件还是备份一下比较好!

cp /etc/apt/sources.list /etc/apt/sources.list-bak241028

2.png

apt配置文件添加国内源

使用下面的内容替换/etc/api/sources.list文件的内容。

deb http://mirrors.aliyun.com/debian/ bookworm main non-free contrib
deb http://mirrors.aliyun.com/debian/ bookworm-updates main non-free contrib
deb http://mirrors.aliyun.com/debian/ bookworm-backports main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bookworm main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bookworm-updates main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bookworm-backports main non-free contrib
deb http://mirrors.aliyun.com/debian-security/ bookworm-security main non-free contrib
deb-src http://mirrors.aliyun.com/debian-security/ bookworm-security main non-free contrib

3.png

更新apt库

使用下面的命令更新apt库。

apt update

4.png

测试

刚刚安装好的操作系统是没有ifconfig命令的。

5.png

ifconfig命令在net-tools软件包里面,所以我们安装net-tools包就可以了!

apt-get -y install net-tools

6.png

再次测试ifconfig命令,可以用了!

/usr/sbin/ifconfig

7.png