启动时启动命令

启动时启动命令

我在使用 Ubuntu Mate,我希望系统homebridge在启动时运行该命令。

我是否只需要

sudo nano /etc/rc.local

并添加此

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
homebridge
exit 0

答案1

在使用 systemd 的系统上,rc.local 可能会被忽略。这篇文章提供了有关如何检查 rc.local 是否真正执行的建议。

我怎样才能让“rc.local”在启动时运行?

并确保删除示例中的“>”符号。

相关内容