apt-get 命令代理
2021-02-16 tech linux 1 mins 510 字
apt-get 工具可以使用 -o
参数来使用配置字符串,或使用 -c
参数使用指定配置文件。
1. 使用-o选项
http代理:
sudo apt-get -o Acquire::http::proxy="http://127.0.0.1:8000/" update
socks代理:
sudo apt-get -o Acquire::socks::proxy="socks5://127.0.0.1:1080/" update
2. 使用-c选项
创建个人配置文件~/apt_proxy.conf,内容:
Acquire::http::proxy "http://127.0.0.1:8087/";
Acquire::https::proxy "https://127.0.0.1:8087/";
使用命令:
sudo apt-get -c ~/apt_proxy.conf update
3. 如果我们设置了环境变量APT_CONFIG,那么APT工具集将使用APT_CONFIG指向的配置文件。
export APT_CONFIG=~/apt_proxy.conf
sudo apt-get update