armbian系统,开机自启动

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 

转自:开启armbian系统的开机启动脚本rc.local-斐讯无线路由器以及其它斐迅网络设备-恩山无线论坛 - Powered by Discuz! (right.com.cn)

标签: none

已有 2 条评论

  1. [...]给玩客云挂载硬盘后续不知道为什么永久挂载不行。我的意思是我照着教程改了没有用★永久挂载vim /etc/fstab #用vim打开文件在最后填入/dev/sda1(你的硬盘目录) /mydisk(要挂载的目录) ext4 defaulta 0 0*这一步不要填错了要仔细所以我直接写了一个文件guaz.sh只有一行就是mount /dev/sda1 /mnt/sda1给个权限:chmod -R 77[...]

  2. [...]给玩客云挂载硬盘后续不知道为什么永久挂载不行。我的意思是我照着教程改了没有用★永久挂载vim /etc/fstab #用vim打开文件在最后填入/dev/sda1(你的硬盘目录) /mydisk(要挂载的目录) ext4 defaulta 0 0*这一步不要填错了要仔细所以我直接写了一个文件guaz.sh只有一行就是mount /dev/sda1 /mnt/sda1给个权限:chmod -R 77[...]

添加新评论