在我们账号的home那有一个.bashrc文件,用来设置一些开机运行的bash命令
cd ~
ls -a
vi .bashrc
我们可以在这里添加代理
export http_proxy="http://10.95.1.1:8080"
export https_proxy="http://10.95.1.1:8080"
然后执行下面命令让它生效
source ~/.bashrc
服务器开启代理:
systemctl start squid
详细了解下squid
在我们账号的home那有一个.bashrc文件,用来设置一些开机运行的bash命令
cd ~
ls -a
vi .bashrc
我们可以在这里添加代理
export http_proxy="http://10.95.1.1:8080"
export https_proxy="http://10.95.1.1:8080"
然后执行下面命令让它生效
source ~/.bashrc
服务器开启代理:
systemctl start squid
详细了解下squid