linux go 代理
时间: 2023-09-30 08:08:20 浏览: 87
go语言写的websocket代理服务器
要在 Linux 上使用代理,可以按照以下步骤操作:
1. 设置环境变量
export http_proxy="http://your_proxy_server:port"
export https_proxy="http://your_proxy_server:port"
这将设置 HTTP 和 HTTPS 代理变量。将 "your_proxy_server" 和 "port" 替换为代理服务器的 IP 地址和端口号。
2. 配置 APT 包管理器
如果你使用的是 Debian 或 Ubuntu 等基于 APT 的 Linux 发行版,需要在 /etc/apt/apt.conf 文件中配置代理:
Acquire::http::Proxy "http://your_proxy_server:port";
Acquire::https::Proxy "http://your_proxy_server:port";
同样,将 "your_proxy_server" 和 "port" 替换为代理服务器的 IP 地址和端口号。
3. 测试代理
使用 curl 或 wget 命令测试代理是否正常工作:
curl http://example.com
wget http://example.com
如果一切正常,你应该能够看到网站的 HTML 内容被下载下来。
4. 永久设置代理
如果你想在每次启动 Linux 时自动使用代理,可以将代理设置添加到 /etc/environment 文件中:
http_proxy="http://your_proxy_server:port"
https_proxy="http://your_proxy_server:port"
这将永久设置代理变量。请注意,这样设置可能会影响其他用户的系统设置。
阅读全文