从 shell 连接到 X 服务器
Connect to X server from the shell
有没有办法从 .sh 脚本连接到 X 服务器?我试过了
#!/bin/bash
export DISPLAY=:1
BASEDIR=`dirname "[=11=]"`
cd "$BASEDIR"
python_header.py
但运气不好。
为可能遇到相同问题的人更新:以下 link
http://www.thegeekstuff.com/2010/06/xhost-cannot-open-display/
然后将其添加到我的代码中:
export DISPLAY=:0.0
解决了问题
有没有办法从 .sh 脚本连接到 X 服务器?我试过了
#!/bin/bash
export DISPLAY=:1
BASEDIR=`dirname "[=11=]"`
cd "$BASEDIR"
python_header.py
但运气不好。
为可能遇到相同问题的人更新:以下 link
http://www.thegeekstuff.com/2010/06/xhost-cannot-open-display/
然后将其添加到我的代码中:
export DISPLAY=:0.0
解决了问题