6

我试图弄清楚如何在启动时运行命令,就像我将它输入控制台一样。我在我的 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
4

3 回答 3

4

简单
运行cd ~
然后编辑.profile
在底部,放任何你想要的。

于 2014-07-23T20:06:08.923 回答
3

简单易行的答案,你去/etc/rc.local添加你的命令。

不要忘记,您的脚本必须以“exit 0”结尾。

于 2013-09-02T20:17:12.040 回答
2

这种方式在 Raspberry 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

这是我发现在 Raspberry Pi 上工作的唯一方法(我每次启动VNC服务器时都会启动它)。

于 2015-09-04T18:43:24.713 回答