代码之家  ›  专栏  ›  技术社区  ›  aTechieSmile

如何启用beaglebone black中的服务?

  •  0
  • aTechieSmile  · 技术社区  · 6 年前
    [Unit]
    Description=Splash screen
    DefaultDependencies=no
    
    [Service]
    Type=oneshot
    ExecStart=/usr/local/bin/psplash
    
    [Install]
    WantedBy=basic.target
    

    的作业。服务失败,因为控制进程退出并返回错误代码

    2 回复  |  直到 6 年前
        1
  •  1
  •   Vijay Panchal karlphillip    6 年前

    下面是用于为python代码提供服务的shell脚本。 它将在启动时开始执行,

    [Unit]
    Description= Python First Service
    After=multi-user.target
    
    [Service]
    Type=simple
    ExecStart=/usr/bin/python /home/debian/serv_demo.py
    Restart=on-abort
    
    [Install]
    WantedBy=multi-user.target
    
        2
  •  0
  •   nahuelq78    6 年前

    我遵循了这个示例,它对我的BBB非常有效:

    https://gist.github.com/tstellanova/7323116