rqdmap
首页
博客
算法
漫评
关于
日志
创建时间
修改时间
字数
Systemd
clash+systemd自启动问题
2023.03.24 13:43
2023.05.29 23:05
Linux
clash
systemd
666字
通常来说, 参考网上最常见的guide来配置systemd + clash 没有问题: <Running Clash as a service · Dreamacro/clash Wiki> bash 1[Unit] 2Description=Clash daemon, A rule-based proxy in Go. 3After=network.target 4 5[Service] 6Type=simple 7Restart=always 8ExecStart=/usr/local/bin/clash -d /etc/clash 9 10[Install] 11WantedBy=multi-user.target 问题排查 但是在我的配置中(优先走的是url-test策略组)会出现一些问题: ...