美文网首页
树莓派自启动

树莓派自启动

作者: 张胜东 | 来源:发表于2021-03-08 01:24 被阅读0次

    新建服务文件

    sudo nano /usr/lib/systemd/system/xx_net.service
    

    [Unit]
    
    Description=xx_net
    
    [Service]
    
    Type=oneshot
    
    ExecStart=/home/pi/Desktop/XX-Net/start
    
    [Install]
    
    WantedBy=multi-user.target
    
    

    指定服务自启动

    sudo systemctl enable xx_net.service
    
    file

    相关文章

      网友评论

          本文标题:树莓派自启动

          本文链接:https://www.haomeiwen.com/subject/erwuqltx.html