gpt4 book ai didi

debian - 使用 BeagleBone Black 在启动时执行脚本

转载 作者:行者123 更新时间:2023-12-04 10:17:30 27 4
gpt4 key购买 nike

我有一个 a.out我想在我的BeagleBone 时运行启动。它实际上是一个套接字服务器,我想在 BeagleBone 通电后立即启动它。我试图把它放在 /etc/init.d ,但没有帮助。我编写了一个 shell 脚本来运行这个可执行文件,但即使这样也无济于事。

我该怎么做才能使脚本在启动后立即运行?

最佳答案

我按照 7 个步骤创建了一个服务,但它对我不起作用,然后我将我的 shellscript 命令放在/etc/rc.local 中运行我的程序,它就起作用了。

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

cd /home/my_program_directory
/home/my_program_directory/my_executable

exit 0

关于debian - 使用 BeagleBone Black 在启动时执行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28854705/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com