感谢交流群用户"紫菜"大佬提供的脚本,有兴趣交流的可以加群交流!
通过此脚本可以将小米球加入系统服务,以服务的方式运行,以下是部分脚本代码截图,有需要的可以下载研究和使用!
====================================分割线,2023年03月28日更新===========================
部分用户反映按此操作失败,结合大家的反馈,整理的另外一种方式供大家参考!
首先把这个小米球客户端文件夹放在/root/下面
cd /root/xmq
赋予运行权限
chmod +777 xiaomiqiu
chmod +777 xiaomiqiu.conf
chmod +777 xiaomiqiu_start.sh
在/etc/systemd/system/下面新建一个xiaomiqiu.service文件放入以下内容
[Unit]
Description=xiaomiqiu
After=network.target
[Service]
#Type=forking
ExecStart=/root/xmq/xiaomiqiu_start.sh
RestartSec=10s
Restart=always
[Install]
WantedBy=multi-user.target
保存后终端输入以下指令
systemctl daemon-reload
systemctl start xiaomiqiu.service
systemctl enable xiaomiqiu.service 这句是为了设置开机启动
systemctl status xiaomiqiu.service 查看运行状态
systemctl restart xiaomiqiu.service
然后就可以了
====================================end===========================
全部评论 4