请参考下载使用命令行版页面。
新建一个文件 /etc/systemd/system/brec.service
/etc/systemd/system/brec.service
写入以下内容,注意调整 ExecStart= 后面的文件路径和参数。
ExecStart=
[Unit]Description=BililiveRecorderAfter=network.target [Service]ExecStart=录播姬所在位置/BililiveRecorder.Cli run --bind "http://*:2356" --http-basic-user "用户名" --http-basic-pass "密码" "录播工作目录" [Install]WantedBy=multi-user.target
然后重载服务:
sudo systemctl daemon-reload
每次修改了 brec.service 文件后都需要运行这个命令重载一次。
brec.service
启动录播姬:
sudo systemctl start brec
sudo systemctl enable brec
可以用以下命令禁用开机启动
sudo systemctl disable brec
查看运行状态:
sudo systemctl status brec
运行、停止、重启:
sudo systemctl start brecsudo systemctl stop brecsudo systemctl restart brec
查看日志:
sudo journalctl -u brec.service
也可以直接查看录播姬旁边 logs 文件夹内的日志文件。