我试图弄清楚如何在启动时运行命令,就像我将它输入控制台一样。我在我的 Raspberry Pi 中使用 Rasbian,但我认为这个问题对于 Debian 来说是一样的。我试图运行的命令是:
sudo screen mono server.exe
我尝试了以下解决方案,但由于我刚开始使用 Linux,我不确定这是否正确。
#! /bin/sh
# /etc/init.d/server
### BEGIN INIT INFO
# Provides: server
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Simple script to start a program at boot
# Description: ..
### END INIT INFO
# If you want a command to always run, put it here
sudo screen mono server.exe
exit 0