ubuntu 配置v2ray(sock5)包括git ,pip,wget,浏览器

允我心安 提交于 2020-02-11 14:10:29

ubuntu 配置v2ray(sock5)包括git ,pip,wget,浏览器

ubuntu 配置v2ray

第一篇博文,写一下配置ubuntu的v2ray,首先得会搭梯子,有windows的v2ray配置文件,没有的请去别的文章学会搭v2ray的梯子

安装v2ray

  1. 首先去github的v2ray官网下载v2ray-linux-64.zip,和go.sh
  2. 两个文件放在一个目录下面sudo bash go.sh --local ./v2ray-linux-64.zip
  3. 把windows配置的json文件改名替换到etc/v2ray目录下,记得先sudo nautilus
  4. 启动v2ray
## 启动
systemctl start v2ray

## 停止
systemctl stop v2ray

## 重启
systemctl restart v2ray

## 开机自启
systemctl enable v2ray

查看是否启动v2ray

service v2ray status

配置浏览器代理

在系统的设置,网络,网络代理里面,选中socks主机,然后127.0.0.1,端口为10808 地址和端口根据json文件来

配置git,pip,wget链接

#只对github.com
git config --global http.https://github.com.proxy socks5://127.0.0.1:10808

pip install pysocks
pip install -r requirements.txt --proxy='socks5://127.0.0.1:10808'


wget 使用sock5代理
Linux
对 debian 系 linux ,可以通过tsocks 实现。

首先安装tsocks:
$ sudo apt install tsocks
然后修改tsocks的配置文件:
$ sudo vim /etc/tsocks.conf
server = 127.0.0.1
server_type = 5
server_port = 1080


tsocks wget http://……
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!