apt-get使用代理
如果通过export https_proxy=http://localhost:7890 http_proxy=http://localhost:7890 all_proxy=socks5://localhost:7890
这种方式设置了代理,对于apt是无效的。
解决方法:
- 直接在 apt 命令中指定代理:
sudo apt-get -o Acquire::http::proxy="http://localhost:7890" -o Acquire::https::proxy="http://localhost:7890" install <package-name>
1
- 使用 apt 的配置文件设置代理
编辑 /etc/apt/apt.conf.d/95proxy 文件(如果不存在则创建):
sudo nano /etc/apt/apt.conf.d/95proxy
1
Acquire::http::proxy "http://localhost:7890";
Acquire::https::proxy "http://localhost:7890";
Acquire::ftp::proxy "http://localhost:7890";
1
2
3
2
3
编辑 (opens new window)
上次更新: 2024/11/17, 13:04:13
- 02
- containerd高版本换源,containerd换源无效问题11-07
- 03
- git的特殊需求使用技巧11-04