我想弄清楚如何在啓動時運行一個命令,就像我將它輸入到控制檯。我在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
你試圖運行的命令實際上是三個單獨的命令; 1.作爲超級用戶運行下一個命令的「sudo」。 2.作爲終端多路複用器的「屏幕」,然後是3.「mono server.exe」,如果我們通過文件名來判斷,它是一個運行時調用可執行文件。很難知道爲什麼沒有更多的信息它不工作。 – jeremiah