在Linux上设置全局代理的步骤如下:
/etc/environment
文件:sudo nano /etc/environment
http_proxy
和https_proxy
为代理服务器的地址和端口:http_proxy=http://proxy_address:port
https_proxy=https://proxy_address:port
source /etc/environment
curl
命令测试:curl http://www.example.com
如果返回结果正常,则代理设置成功。注意:以上步骤是针对全局代理设置,如果只想为特定应用程序设置代理,可以在该应用程序的配置文件中进行设置。