该设置允许您使用代理服务器通过 apt 命令在 Linux Debian 12 中安装和更新软件包。
1. 创建一个包含以下内容的新文件:
1.2 对于有授权的代理:
touch /etc/apt/apt.conf.d/proxy.conf
Acquire::http::Proxy "http://username:password@<proxy-server-ip>:port/";
Acquire::https::Proxy "http://username:password@<proxy-server-ip>:port/";
1.3 对于未经授权的代理:
touch /etc/apt/apt.conf.d/proxy.conf
Acquire::http::Proxy "http://<proxy-server-ip>:port/";
Acquire::https::Proxy "http://<proxy-server-ip>:port/";
更改立即生效,无需任何操作。现在所有 apt 命令的调用,例如 apt update、apt install,都将通过指定的代理服务器。
暂时没有评论