博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
树莓派进阶之路 (033) - 开机启动自定义脚本
阅读量:6327 次
发布时间:2019-06-22

本文共 1600 字,大约阅读时间需要 5 分钟。

因为需求需要,树莓派开机需要自动运行一些代码和脚本,并且需要对网络是否正常进行监测,所以需要做带网络监测的自启动服务。

参考了一下文档:

,,,,

,,, ,

 

经过上面的文档:

进入配置开机启动文件:

cd /etcsudo vim rc.local

rc.local

1 #!/bin/sh -e 2 # 3 # rc.local 4 # 5 # This script is executed at the end of each multiuser runlevel. 6 # Make sure that the script will "exit 0" on success or any other 7 # value on error. 8 # 9 # In order to enable or disable this script just change the execution10 # bits.11 #12 # By default this script does nothing.13 14 # Print the IP address15 _IP=$(hostname -I) || true16 if [ "$_IP" ]; then17   printf "My IP address is %s\n" "$_IP"18 fi19 20 nohup  /etc/init.d/network_test.sh &    #后台启动自定义脚本21 22 exit 0

 

建立自定义的网络测试脚本:

vim network_test.sh

把一下文件cp到文件中:

1 #!/bin/bash 2 # 3 #检测网络链接&&ftp上传数据 4  5  6 declare -i n=0            #在定义变量n前面加上declare -i 表示该变量为数值 7 while [ $n -ne 1 ]        #判断 8 do 9         ret_code=`curl -I -s --connect-timeout 5 baidu.com -w %{http_code} | tail -n1`    #网络值10          if [ "$ret_code" = "200" ]; then11                 nohup /home/pi/bind &           #网络连接成功启动脚本程序脚本12                 n=1;13         else14                 n=0; #失败等待15         fi16 done

把文件cp到rc.local脚本自定的目录:

sudo mv network_test.sh /etc/init.d

我们在/home/pi目录中建立自己的启动脚本 bind 来启动自定义的脚本。

 

=============================== 脚本实现方法=================================

service.sh

1 #!/bin/bash 2  3 sudo rm -r pi/ 4 sudo apt-get install git 5 git clone https://gitee.com/jikexianfeng/pi.git 6 cd ~/pi/service 7 sudo mv ./rc.local /etc/rc.local 8 sudo mv ./network_test.sh /etc/init.d/network_test.sh 9 mv bind ~10 cd11 sudo rm -r pi/12 rm service.sh13 sudo reboot

 

转载地址:http://ixgaa.baihongyu.com/

你可能感兴趣的文章
mesos
查看>>
Sun Grid Engine (SGE)大型集群作业调度系统
查看>>
信号处理——生成给定分布随机数
查看>>
2014年上半年软件设计师考试之绝密答案--有待大家完好
查看>>
Java动态代理学习【Spring AOP基础之一】
查看>>
在cmd窗口输入命令遇到You must run this command from a command prompt with administrator privilege怎么办?...
查看>>
ElasticSearch入门 第五篇:使用C#查询文档
查看>>
设置数据库状态
查看>>
Android之读取 AndroidManifest.xml 中的数据:版本号、应用名称、自定义K-V数据(meta-data)...
查看>>
获取指定的内容---MXCMS ReadNews标签说明
查看>>
R学习笔记 第五篇:字符串操作
查看>>
在Mac OS下配置PHP开发环境
查看>>
(转)介绍下Nuget在传统Asp.net项目中的使用
查看>>
C# ArcEngine 实现点击要素高亮并弹出其属性
查看>>
初识GO语言——安装Go语言
查看>>
SDK命令行操作
查看>>
基于Bootstrap的DropDownList的JQuery组件的完善版
查看>>
EXTJS学习系列提高篇:第二十四篇(转载)作者殷良胜,ext2.2打造全新功能grid系列--阅增删改篇...
查看>>
Hadoop MapReduce编程 API入门系列之分区和合并(十四)
查看>>
判断二叉树是否平衡、是否完全二叉树、是否二叉排序树
查看>>