Skip to content

Instantly share code, notes, and snippets.

View Bintopia's full-sized avatar

Bintopia Bintopia

  • Global Payments
  • Chengdu, China
View GitHub Profile
@Bintopia
Bintopia / set-apt-proxy.md
Created April 30, 2022 12:13 — forked from wonderbeyond/set-apt-proxy.md
[ubuntu][socks5][proxy] Set proxy for apt

Writing an apt proxy conf file /etc/apt/apt.conf.d/proxy.conf as below.

Acquire::http::Proxy "socks5h://127.0.0.1:1080";
Acquire::https::Proxy "socks5h://127.0.0.1:1080";
Acquire::socks::Proxy "socks5h://127.0.0.1:1080";

And the proxy settings will be applied the next time we run apt.