我正在试图找出如何在启动时运行命令,就像我将其键入控制台一样。我在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 :(得分:6)
<强>简单强>
运行cd ~
然后修改.profile
在底部,放置你想要的任何东西。
答案 1 :(得分:3)
这种方式对我来说最有效:
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服务器)
答案 2 :(得分:1)
简单易行的答案,你去/etc/rc.local并添加你的命令。
别忘了,你的剧本必须以“退出0”结束