在 Ubuntu 18
以下,设置开机自动启动一般是编辑 /etc/rc.local
在 Ubuntu 18
以上则需要链接 rc-local.service
文件 然后创建 rc.local
文件并修改权限,大概是这样的:
ln -fs /lib/systemd/system/rc-local.service /etc/systemd/system/rc-local.service
touch /etc/rc.local
chmod 755 /etc/rc.local
然后编辑rc.local 大概格式是这样的:
#!/bin/bash
service start ....
exit 0
此方法并不适用于 WSL2
的 ubuntu