在 Debian 中选择与配置 FetchDebian 镜像
一、选择镜像的基本原则
二、通过配置文件指定镜像
sudo apt update && sudo apt install fetchdebiansudo nano /etc/fetchdebian.confmirror = https://deb.debian.org/debian/output = /var/cache/fetchdebianthreads = 4三、常用命令与镜像切换示例
fetchdebian listfetchdebian search busterfetchdebian download buster amd64fetchdebian latest amd64fetchdebian iso <version> <architecture>四、网络受限环境的优化
sudo nano /etc/environmenthttp_proxy="http://proxy_server_ip:proxy_server_port/"https_proxy="https://proxy_server_ip:proxy_server_port/"source /etc/environmentsudo nano /etc/apt/apt.confAcquire::http::Proxy "http://proxy_server_ip:proxy_server_port/";Acquire::https::Proxy "https://proxy_server_ip:proxy_server_port/";五、下载后的校验与常见问题