今天折腾了下树莓派的迅雷固件,迅雷的安装很顺利,解压直接运行portal 就搞定了, 但是自启动就有问题了,由于新版的ArchLinux切换到systemd,不但rc.conf省了,连rc.local也没了,于是google了下,经过几次尝试,有了下面的确定可以启动的脚本
rc.local
#!/bin/sh #touch /test #xunlei /xunlei/portal
上面的脚本里面指启动了迅雷,touch /test是我用来测试的,如果想知道脚本是否运行了,可以把注释去掉
接下来是/usr/lib/systemd/system/rclocal.service文件(这是Archlinux的位置,别的发行版可能不一样,但基本都是大同小异)
[Unit] Description="/etc/rc.local Compatibility" ConditionPathExists=/etc/rc.local After=network.target [Service] Type=forking ExecStart=/etc/rc.local TimeoutSec=0 StandardInput=tty RemainAfterExit=yes SysVStartPriority=99 [Install] WantedBy=multi-user.target
别问我为什么这么写,自己查吧!你需要知道就是这样写脚本是可以运行的就OK了。
然后添加开机自启动
systemctl enable rclocal
最后可以重启了,重启后可以查看一下这个单元的状态
systemctl status rclocal
● rclocal.service - "/etc/rc.local Compatibility" Loaded: loaded (/usr/lib/systemd/system/rclocal.service; enabled; vendor preset: disabled) Active: active (running) since 二 2016-01-05 13:52:46 CST; 49min ago CGroup: /system.slice/rclocal.service ├─232 /xunlei/lib/ETMDaemon /xunlei/lib/EmbedThunderManager /dev/null /dev/null ****************************************** ├─234 /xunlei/lib/EmbedThunderManager ****************************************** └─236 /xunlei/lib/vod_httpserver 1月 05 13:52:41 pi systemd[1]: Starting "/etc/rc.local Compatibility"... 1月 05 13:52:46 pi systemd[1]: Started "/etc/rc.local Compatibility". 1月 05 14:42:13 pi systemd[1]: [/usr/lib/systemd/system/rclocal.service:12] Support for option SysVStartPriority= has been remo... ignored Hint: Some lines were ellipsized, use -l to show in full
ok,这是我在树莓派上的单元状态。