如何在Pi板启动时自动运行a.out文件?

时间:2017-07-22 10:50:43

标签: linux raspberry-pi startup

我有一个可执行文件a.out,每次我的Pi板启动时我想运行它?有什么建议我怎么办?

2 个答案:

答案 0 :(得分:2)

@DELETE @Path("/list/{id}") public void delete(@PathParam("id") String id) { Query query = helper.getEntityManager().createQuery("Delete from CtmOrderEntity c where c.id=?1"); query.setParameter(1, id); Object result = query.getSingleResult(); int update = query.executeUpdate(); System.out.println("Delete resutl" + result); System.out.println("Delete signal" + update); } 说:

No resource method found for GET, return 405 with Allow header

另外,您是否了解此委员会:https://raspberrypi.stackexchange.com/

答案 1 :(得分:1)

在/etc/init.d中创建一个包含应用程序路径的新shell脚本:

#!/bin/sh
/<insertpath>/a.out

告诉系统更新其启动:

update-rc.d a.out defaults

最后,你需要让你的应用程序可执行:

chmod ugo+x /etc/init.d/a.out