菜单

飞牛nas

luoye
发布于 2024-09-16 / 18 阅读
0
0

问题-解决方法

①、代理

  • 临时设置代理:

export http_proxy=“http://192.168.31.46:10809”
export https_proxy=“https://proxy-XXXXX:”
  • 临时取消代理:

unset http_proxy
unset https_proxy
  • 查看代理:

env | grep xxx
  • 设置永久代理:

如果想要使代理服务器永久生效,可以修改 /etc/profile文件 ,在profile 中添加或者删除。


评论