树莓派设置开机启动脚本


0x00 背景需求

由于北邮校内网需要Drcom拨号,每次用curl命令很麻烦,所以开始了这次写开机启动脚本的过程。

0x01 linux启动过程

init 进程读取 /etc/inittab文件中的信息,并进入预设的运行级别。

# The default runlevel.
id:2:initdefault:

Debian中的运行级别

  • 0 - 停机(千万不要把initdefault设置为0 )
  • 1 - 单用户模式(单用户模式,只允许root用户对系统进行维护。)
  • 2 - 多用户,但是没有NFS
  • 3 - 完全多用户模式(字符界面)
  • 4 - 基本不用
  • 5 - X11(图形界面)
  • 6 - 重新启动(千万不要把initdefault设置为6 )

查看系统当前运行级别使用runlevel命令,通常情况下 /etc/rcS.d/目录下的启动脚本首先被执行,然后是/etc/rcN.d/目录,N为/etc/inittab中的initdefault。
/etc/rc2.d中的部分文件如下:

pi@raspberrypi:/etc/rc2.d $ ll
total 12
drwxr-xr-x   2 root root 4096 Sep 25 17:56 .
drwxr-xr-x 111 root root 4096 Sep 25 18:26 ..
lrwxrwxrwx   1 root root   17 May  7 07:03 K01lightdm -> ../init.d/lightdm
lrwxrwxrwx   1 root root   20 May  7 06:38 K05nfs-common -> ../init.d/nfs-common
lrwxrwxrwx   1 root root   17 May  7 06:38 K05rpcbind -> ../init.d/rpcbind
-rw-r--r--   1 root root  677 Jul 15  2013 README
lrwxrwxrwx   1 root root   18 May  7 06:16 S01bootlogs -> ../init.d/bootlogs
lrwxrwxrwx   1 root root   20 May  7 06:51 S01cgroup-bin -> ../init.d/cgroup-bin
lrwxrwxrwx   1 root root   16 May  7 07:16 S01dhcpcd -> ../init.d/dhcpcd
lrwxrwxrwx   1 root root   17 Sep 22 19:18 S01hostapd -> ../init.d/hostapd
lrwxrwxrwx   1 root root   17 May  7 06:38 S01ifplugd -> ../init.d/ifplugd
lrwxrwxrwx   1 root root   14 May  7 06:16 S01motd -> ../init.d/motd
lrwxrwxrwx   1 root root   17 May  7 06:38 S01rsyslog -> ../init.d/rsyslog
lrwxrwxrwx   1 root root   14 May  7 06:38 S01sudo -> ../init.d/sudo
lrwxrwxrwx   1 root root   22 May  7 06:38 S01triggerhappy -> ../init.d/triggerhappy
lrwxrwxrwx   1 root root   17 Sep 21 10:41 S02apache2 -> ../init.d/apache2
lrwxrwxrwx   1 root root   14 Sep 21 10:41 S03cron -> ../init.d/cron
lrwxrwxrwx   1 root root   14 Sep 21 10:41 S03dbus -> ../init.d/dbus
lrwxrwxrwx   1 root root   24 Sep 21 10:41 S03dphys-swapfile -> ../init.d/dphys-swapfile
lrwxrwxrwx   1 root root   15 Sep 25 17:56 S03drcom -> ../init.d/drcom
lrwxrwxrwx   1 root root   15 Sep 21 10:49 S03mysql -> ../init.d/mysql
lrwxrwxrwx   1 root root   13 Sep 21 10:41 S03ntp -> ../init.d/ntp
lrwxrwxrwx   1 root root   15 Sep 21 10:41 S03rsync -> ../init.d/rsync
lrwxrwxrwx   1 root root   15 Sep 21 14:42 S03snort -> ../init.d/snort
lrwxrwxrwx   1 root root   13 Sep 21 10:41 S03ssh -> ../init.d/ssh
lrwxrwxrwx   1 root root   16 Sep 22 19:21 S03udhcpd -> ../init.d/udhcpd
lrwxrwxrwx   1 root root   22 Sep 21 10:41 S04avahi-daemon -> ../init.d/avahi-daemon
lrwxrwxrwx   1 root root   18 Sep 21 10:41 S05plymouth -> ../init.d/plymouth
lrwxrwxrwx   1 root root   18 Sep 21 10:41 S05rc.local -> ../init.d/rc.local
lrwxrwxrwx   1 root root   19 Sep 21 10:41 S05rmnologin -> ../init.d/rmnologin

有K开头的文件,有S开头的文件,K的意思是Kill,S为Start。K和S后面紧跟着的数字就是关闭和启动的顺序,数字越大关闭或启动顺序越靠后。
将自定义脚本放在/etc/init.d目录下面,就可以使用service yourshellname start|stop当然需要脚本中写好start,stop功能。但是不能开机自启动。

0x03 update-rc.d函数

使用update-rc.d函数将脚本设置为开机自启动。
1)设置脚本启动和关闭依赖$remote_fs,$syslog,并且启动运行级别为2-5,关闭运行级别为0,1,6。
update-rc.d foobar defaults
上面一条命令就会在/etc/rc2.d rc3.d rc4.d rc5.d中创建软链接S03drcom -> ../init.d/drcom,在rc0.d rc1.d rc6.d中创建软链接K01drcom -> ../init.d/drcom
2)设置脚本启动关闭都为顺序20,并且启动运行级别为2-5,关闭运行级别为0,1,6。
update-rc.d foobar start 20 2 3 4 5 . stop 20 0 1 6 .
同理。

上面两条经过试验,运行级别和顺序需要在shell脚本头部注释中指定。命令行中设置无效。

3)移除连接。
update-rc.d yourshellname remove

0x02 shell脚本

#!/bin/sh
 
### BEGIN INIT INFO
# Provides:          drcom
# Required-Start:    $local_fs $remote_fs $network $syslog
# Required-Stop:     $local_fs $remote_fs $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the dail drcom
# Description:       starts drcom using start-stop-daemon
### END INIT INFO
 
case $1 in
        start)
                /usr/bin/curl -d "DDDDD=20131107**&upass=yourpassword&0MKKey=" "http://gw.bupt.edu.cn"
                ;;
        stop)
                /usr/bin/curl -b "myusername=20131107**&username=20131107**&smartdot=yourpassword"  "http://gw.bupt.edu.cn/F.htm"
                ;;
        *)
                echo "Usage: $0 (start|stop)"
                ;;
esac
exit 0

参考文献:
[1] 开机自动执行脚本 与 update-rc.d
[2] 树莓派开机自启动脚本制作
[3] Debian init 开机启动管理
[4] 树莓派开机启动程序及启动脚本的制作

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,482评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,377评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,762评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,273评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,289评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,046评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,351评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,988评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,476评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,948评论 2 324
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,064评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,712评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,261评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,264评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,486评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,511评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,802评论 2 345

推荐阅读更多精彩内容