可能不同的 ubuntu 版本方法不同,这里测试的版本为 ubuntu 18.04 以及 20.04;
注意:这种方式不适合于浏览器,具有界面的程序的自启动。因为可能在运行对应脚本时,无线网络服务、界面程序需要的环境等还没有配置完毕。(如果不成功,可能需要从这个角度查找一下原因?)
1、找到并打开 rc-local.service 文件
sudo vim /etc/systemd/system/rc-local.service
2、在原来文件中添加 [Install] 一栏
# SPDX-License-Identifier: LGPL-2.1+
#
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.
[Install]
WantedBy=multi-user.target
Alias=rc-local.service
[Unit]
Description=/etc/rc.local Compatibility
Documentation=man:systemd-rc-local-generator(8)
ConditionFileIsExecutable=/etc/rc.local
After=network.target
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes
GuessMainPID=no
3、打开(创建)rc.local 文件
sudo vim /etc/rc.local
应该 rc.local 在对应目录中是有的,没有则需要新建
4、编辑 rc.local 文件,在里面编写对应的 shell 命令
#!/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.
cd /root/WebServer/presenterserver/
echo $(pwd) >/usr/local/test.log
nohup /usr/bin/python3 /root/WebServer/presenterserver/presenter_server.py --app body_pose >/root/WebServer/presenterserver/cmd_out.log 2>&1 &
exit 0
5、设置 rc.local 可执行
sudo chmod +x /etc/rc.local
6、配置服务
使能服务:
sudo systemctl enable rc-local
rc.local VS rc-local
开始服务:
sudo systemctl start rc-local.service
检查服务状态
sudo systemctl status rc-local.service
图1 服务已被激活
7、重启电脑即可,开机自启动