我正在 Linux Debian 服务器(AWS EC2)上工作,并且我有一个需要在图形环境中运行的软件。
如果我手动启动它(通过./program.sh
在其目录中输入),它工作正常:我可以切换到 vncviewer 窗口(它是我远程控制的云服务器),我可以看到程序启动。该$DISPLAY
值在启动时设置为:1.0
但是,如果我尝试program.sh
通过创建脚本在启动时运行我的init.d
程序,我在图形环境中看不到任何事情发生。
我尝试阅读程序日志,但找不到任何结论性的信息。
我认为变量或 xhosts 权限有问题DISPLAY
,但因为我运行的软件有点复杂(带有登录凭据等),所以我很难找到问题
这就是为什么我想诉诸于创建一个简单的“ hello_world.sh
”脚本,该脚本只会在图形环境中打开一个简单的窗口,以测试手动启动和引导启动时会发生什么。
谁能给我这样的脚本吗?它的功能基本上应该是:输入./hello_world.sh
shell -> 在图形环境中查看打开的窗口。目的是测试如果我为其创建 init.d 启动脚本,该简单脚本的行为方式。
我当前的非工作 init.d 文件的详细信息是:
#!/bin/sh
### BEGIN INIT INFO
# Provides: IBController
# Required-Start: $remote_fs $syslog +vncserver
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start daemon at boot time
# Description: Enable service provided by daemon.
### END INIT INFO
dir="/opt/IBController"
cmd="./IBControllerGatewayStart.sh"
user="depot"
name=`basename $0`
pid_file="/var/run/$name.pid"
stdout_log="/var/log/$name.log"
stderr_log="/var/log/$name.err"
get_pid() {
cat "$pid_file"
}
is_running() {
[ -f "$pid_file" ] && ps -p `get_pid` > /dev/null 2>&1
}
case "$1" in
start)
if is_running; then
echo "Already started"
else
echo "Starting $name"
xhost local:depot
export DISPLAY=:2.0
cd "$dir"
if [ -z "$user" ]; then
sudo $cmd >> "$stdout_log" 2>> "$stderr_log" &
else
sudo -u "$user" $cmd >> "$stdout_log" 2>> "$stderr_log" &
fi
echo $! > "$pid_file"
if ! is_running; then
echo "Unable to start, see $stdout_log and $stderr_log"
exit 1
fi
fi
;;
stop)
if is_running; then
echo -n "Stopping $name.."
kill `get_pid`
for i in 1 2 3 4 5 6 7 8 9 10
# for i in `seq 10`
do
if ! is_running; then
break
fi
echo -n "."
sleep 1
done
echo
if is_running; then
echo "Not stopped; may still be shutting down or shutdown may have failed"
exit 1
else
echo "Stopped"
if [ -f "$pid_file" ]; then
rm "$pid_file"
fi
fi
else
echo "Not running"
fi
;;
restart)
$0 stop
if is_running; then
echo "Unable to stop, will not attempt to start"
exit 1
fi
$0 start
;;
status)
if is_running; then
echo "Running"
else
echo "Stopped"
exit 1
fi
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac
exit 0
答案1
桌面环境在user
登录后加载。因此,init.d
不会工作,因为不会Xserver
运行。
在尝试下面的解决方法之前,您还必须配置Debian
为自动登录指定的user
以便加载 GUI。
program.desktop
在此目录中创建一个文件/home/$user/.config/autostart/
。如果不存在则创建目录。
程序.桌面
[Desktop Entry]
Type=Application
Exec=program.sh
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Name=Porgram
Comment=Program Description
还有一些相关的问题,也可以看看。