便携式ROV搭建系列(四):树莓派开机自启动

便携式ROV搭建系列(四):树莓派开机自启动

1 视频传输方案

开源项目:mjpeg-streamer

1.1 启动脚本文件

在home/pi/mjpeg-streamer-master/mjpeg-streamer-experimental/路径下新建一个 CameraStart.sh文件,文件内容如下:

#!/bin/sh
cd /home/pi/mjpg-streamer-master/mjpg-streamer-experimental
./mjpg_streamer -i "./input_uvc.so" -o "./output_http.so -w ./www" 
1.2 /etc/rc.local

输入命令

sudo nano /etc/rc.local

修改后:

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
  printf "My IP address is %s\n" "$_IP"
fi
# 修改的地方
/home/pi/mjpg-streamer-master/mjpg-streamer-experimental/cameraStart.sh start
exit 0
2 通信自启动方案
1.1 桌面程序自启动

在/home/pi/.config下创建一个名为autostart的文件夹
在该文件夹下创建一个communication.desktop文件,文件内容如下:

[Desktop Entry] 
Name=communication
Exec=python /home/pi/communication.py 
Terminal=true 
Type=Application 
StartupNotify=true

但牵扯到socket通信,该方式启动成功存在一定的概率,并不是每次都能启动,因此还是通过 /etc/rc.local文件启动。

1.2 最终程序

两个自启动程序都通过 /etc/rc.local 完成

1.2.1 新建communicationStart.sh脚本文件

在home/pi/mjpeg-streamer-master/mjpeg-streamer-experimental/路径下新建一个 communicationStart.sh文件,文件内容如下:

#!/bin/bash
python /home/pi/commnication.py

即在该目录下有两个 .sh 脚本文件

1.2.2 修改cameraStart.sh脚本文件
#!/bin/sh
cd /home/pi/mjpg-streamer-master/mjpg-streamer-experimental
./mjpg_streamer -i "./input_uvc.so" -o "./output_http.so -w ./www" 
./communicationStart.sh

注意:脚本文件更改后要重新更改权限

chmod 777 cameraStart.sh

重启即可

sudo reboot
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

la_fe_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值