树莓派编辑开机启动服务

作者: 管理员 分类: 设备趣玩 发布时间: 2020-10-17 22:34

树莓派创建开机启动服务例子,留存记录,便于后期调用!

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


发表评论

电子邮件地址不会被公开。