Centos7+Clash+命令行方式安装配置使用

1.安装Clash

[root@xxx ~]# sudo su
[root@xxx ~]# mkdir /opt/clash && cd /opt/clash
[root@xxx clash]# wget https://dl.ssrss.club/clash-linux-amd64-v1.2.0.gz --no-check-certificate
[root@xxx clash]# wget -O /opt/clash/config.yaml "clash的订阅链接" --no-check-certificate
[root@xxx clash]# wget https://dl.ssrss.club/Country.mmdb --no-check-certificate
[root@xxx clash]# gunzip -c *.gz > clash && chmod +x clash

2.设置Systemd

[root@xxx clash]# cat > /usr/lib/systemd/system/clash.service <<'EOF'

粘贴如下内容

[Unit]
Description=clash
[Service]
TimeoutStartSec=0
ExecStart=/opt/clash/clash -d /opt/clash
[Install]WantedBy=multi-user.target
EOF

3.命令行方式设置代理端口

[root@xxx clash]# vim /etc/profile

在profile文件底部追加

export http_proxy=http://127.0.0.1:7890
export https_proxy=http://127.0.0.1:7890

保存并设置生效,然后重启Clash

[root@xxx clash]# source /etc/profile

4.启动或者重启

启动Clash: systemctl start clash
关闭Clash: systemctl stop clash
查看状态(可以用来检测是否成功启动): systemctl status clash
设置开机自启: systemctl enable clash
取消开机自启: systemctl disable clash

5.关闭clash后关闭本地代理

[root@xxx clash]# unset http_proxy
[root@xxx clash]# unset https_proxy

你可能感兴趣的:(Centos7+Clash+命令行方式安装配置使用)