2013-05-29 213 views
4

我想弄清楚如何在啓動時運行一個命令,就像我將它輸入到控制檯。我在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 
+0

你試圖運行的命令實際上是三個單獨的命令; 1.作爲超級用戶運行下一個命令的「sudo」。 2.作爲終端多路複用器的「屏幕」,然後是3.「mono server.exe」,如果我們通過文件名來判斷,它是一個運行時調用可執行文件。很難知道爲什麼沒有更多的信息它不工作。 – jeremiah

回答

1

簡單易用的answser,你到/etc/rc.local並添加你的命令。

不要忘記,你的腳本必須以 「退出0」 結尾

4

簡單
運行cd ~
然後編輯.profile
在底部,放置任何你想。

2

這樣已經工作最適合我的PI:

cd /home/pi 
cd .config 
mkdir autostart 
cd autostart 

設置文件名以任何你想要的,只要它具有.desktop的結尾:

nano screen_mono.desktop 

然後在寫這篇文章該文件更改命令,以滿足您的需求:

[Desktop Entry] 
Type=Application 
Name=Screen_mono 
Exec=sudo screen mono server.exe 
StartupNotify=false 

這是我唯一的方法發現在pi上工作(我每次啓動時啓動一個VNC服務器)