树莓派编辑开机启动服务
树莓派创建开机启动服务例子,留存记录,便于后期调用!
cd /etc/systemd/system sudo touch send_ip.service #创建send_ip服务 sudo vi send_ip.service #编辑send_ip.service的内容 sudo chmod 664 send.servie #赋予权限 sudo systemctl daemon-reload #重新加载服务 sudo systemctl enable send_ip.service #开启发送send_ip服务,只用'使能'一次,以后开机时会自动开启服务
[Unit] Description=cwy_when_start [Service] ExecStart=/bin/sh /home/pi/send.sh [Install] WantedBy=multi-user.target