|
|
本帖最后由 hayes 于 2018-11-6 15:45 编辑
N1安装armbian系统,开机启动脚本rc.local 默认是不启动,不管在里面添加了什么脚本都是不管用的,需要按如下方法开启
方法:
命令vi修改,也可以winscp修改
- vi /lib/systemd/system/rc.local.service
复制代码
在最后添加下面三行内容
- [Install]
- WantedBy=multi-user.target
- Alias=rc-local.service
复制代码
然后就可以在/etc/rc.local 中添加需要的开机启动脚本,脚本要写在exit 0的前面 。
----------------------------------------------------------------------------------------------------------------
以下是找的原理
armbian(我使用5.62 5.64版本) 使用的是systemd管理系统,不是使用initd管理系统,systemd 默认读取 /etc/systemd/system 下的配置文件,该目录下的文件会链接/lib/systemd/system/下的文件
执行 ls /lib/systemd/system 你可以看到有很多启动脚本,其中就有我们需要的 rc.local.service
打开脚本内容:
- # 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.
- [Unit]
- Description=/etc/rc.local Compatibility
- ConditionFileIsExecutable=/etc/rc.local
- After=network.target
- [Service]
- Type=forking
- ExecStart=/etc/rc.local start
- TimeoutSec=0
- RemainAfterExit=yes
复制代码
一般正常的启动文件主要分成三部分
[Unit] 段: 启动顺序与依赖关系
[Service] 段: 启动行为,如何启动,启动类型
[Install] 段: 定义如何安装这个配置文件,即怎样做到开机启动
可以看出,/etc/rc.local 的启动顺序是在网络后面,但是显然它少了 Install 段,也就没有定义如何做到开机启动,所以显然这样配置是无效的。 因此我们就需要在后面帮他加上 [Install] 段:
[Install] WantedBy=multi-user.target Alias=rc-local.service
|
|