不同的Linux发行版有不同的自启动机制,如RedHat有 /etc/rc.local 文件,在里面写上要执行的命令就可以开机执行。 Arch Linux 采用的是守护进程的机制(daemon)。 在Arch Linux中, 守护进程是用systemd管理的. 用户用systemctl命令来管理. systemctl读取.service文件中包含怎么和什么时候启动相关的进程. Service的文件保存在/{etc,usr/lib,run}/systemd/system中. 看看systemd#Using units 有关怎么使用systemctl管理守护进程的完整信息.
在启动的时候添加,删除服务使用 systemctl enable|disable service_name命令
在系统运行时启动,停止服务, 使用 systemctl start|stop service_name命令.
为了重启服务, 使用 systemctl restart service_name命令.
查看当前服务的运行状态, 使用 systemctl status service_name命令.
检查服务是否开机启动,使用 systemctl is-enabled service_name; echo $?命令.
ln -sf /lib/systemd/system/ /etc/systemd/system/
++++++++++++++++++++++++++++++++++++++++++++++++++++
#!/bin/bash
# this file defines the commands that will be executed at system startup
echo "exect the application /home/pi/hello" > /dev/ttyAMA0
./home/hello
++++++++++++++++++++++++++++++++++++++++
chmod +x /etc/rc.local
++++++++++++++++++
[Unit] Description=/etc/rc.local Compatibility
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target
+++++++++++++++++++++++++
cd /etc/systemd/system/multi-user.target.wants
ln -s /usr/lib/systemd/system/rc-local.service rc-local.service
systemctl enable rc-local.service
重启
reboot
或者 直接启动服务
systemctl start rc-local.service
如果系统启动后,程序确实执行了,则表示自启动设置成功