1、下载 * 客户端。
执行 cd && mkdir *
在用户目录下创建 * 文件夹。
下载适合的 * 二进制文件并解压重命名为 *
一般个人的64位电脑下载 *-linux-amd64.tar.gz 即可。
下载链接:https://github.com/Dreamacro/*/releases
2、下载 * 配置文件。
在终端 cd
到 * 二进制文件所在的目录,下载 * 配置文件
wget -O config.yaml https://stc-spadesdns.com/link/[订阅链接参数,忽略中括号]
sudo wget -O Country.mmdb https://www.sub-speeder.com/client-download/Country.mmdb
3、启动 *。
执行 ./* -d .
即可启动 *,同时启动 HTTP 代理和 Socks5 代理。
如提示权限不足,请执行 chmod +x *
4、管理 *。
设置系统代理:
sudo nano /etc/environment
加入以下三行
export http_proxy="http://127.0.0.1:7890"
export https_proxy="http://127.0.0.1:7890"
export no_proxy="localhost, 127.0.0.1"
修改sudo文件
sudo visudo
加入
Defaults env_keep+="http_proxy https_proxy no_proxy"
重启
reboot
设置 config.yaml
访问 * Dashboard:http://*.razord.top/
可以进行切换节点、测延迟等操作。
Host: 127.0.0.1
,端口: 9090
,密码:config.yaml 中设置的密码
5、设置 * 开机启动:
创建启动服务
vim /etc/systemd/system/*.service
输入以下内容,* -d的意思是指定配置文件路径
[Unit]
Description=* daemon
[Service]
Type=simple
User=root
ExecStart=/home/kali/*/* -d /home/kali/*/
Restart=on-failure
[Install]
WantedBy=multi-user.target
重新加载systemctl daemon
sudo systemctl daemon-reload
启动*
sudo systemctl start *.service
设置*开机自启动
sudo systemctl enable *.service
以下为*相关的管理命令
启动*
sudo systemctl start *.service
重启*
sudo systemctl restart *.service
查看*运行状态
sudo systemctl status *.service
6、配置定时更新订阅:
先撸个脚本,别忘了设可执行权限
#!/bin/bash
# 设置*路径
*_path="/opt/*"
# 停止*
systemctl stop *.service
# 取消代理
unset https_proxy
# 如果配置文件存在,备份后下载,如果不存在,直接下载
if [ -e $*_path/config.yaml ]; then
mv $*_path/config.yaml $*_path/configbackup.yaml
wget -O $*_path/config.yaml "[你的订阅链接]"
else
wget -O $*_path/config.yaml "[你的订阅链接]"
fi
# 重启*
systemctl restart *.service
# 重设代理
export https_proxy="http://127.0.0.1:7890"
设置定时任务:
sudo crontab -e
填入以下内容
//每月1号和15号的4点30分开始更新
30 4 1,15 * * sh [脚本目录]/[脚本名称]
重启crontab,使配置生效
sudo systemctl restart cron.service
查看代理是否正常工作:
curl www.google.com