ubuntu 配置v2ray(sock5)包括git ,pip,wget,浏览器
ubuntu 配置v2ray
第一篇博文,写一下配置ubuntu的v2ray,首先得会搭梯子,有windows的v2ray配置文件,没有的请去别的文章学会搭v2ray的梯子
安装v2ray
- 首先去github的v2ray官网下载v2ray-linux-64.zip,和go.sh
- 两个文件放在一个目录下面
sudo bash go.sh --local ./v2ray-linux-64.zip
- 把windows配置的json文件改名替换到etc/v2ray目录下,记得先
sudo nautilus
- 启动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://……
来源:CSDN
作者:碧雨若风
链接:https://blog.csdn.net/weixin_42041163/article/details/104261972