为什么树莓派不会让你使用互联网?

时间:2015-05-20 07:08:57

标签: proxy

在我的学校,我正试图让代理人在树莓派上工作,但没有运气。 Aquire http https://username.password@(ip address)

1 个答案:

答案 0 :(得分:0)

最简单的解决方案是安装pi-proxy,它会在启动时自动设置代理。 (无耻的自我推销)

如果您希望手动执行此操作,则可以设置http_proxyhttps_proxy个环境变量:

export http_proxy=http://username:password@address:port/
export https_proxy=https://username:password@address:port/

没有身份验证:

export http_proxy=http://address:port/
export https_proxy=https://address:port/

如果密码包含感叹号,则需要使用反斜杠对其进行转义。例如如果您的密码为Passw0rd!,请写下Passw0rd\!