从shell连接到X服务器

时间:2015-05-01 15:10:20

标签: shell xserver

有没有办法从.sh脚本连接到X服务器?我试过了

#!/bin/bash
export DISPLAY=:1
BASEDIR=`dirname "${0}"`
cd "$BASEDIR"
python_header.py

但没有运气。

1 个答案:

答案 0 :(得分:0)

只是对可能遇到同样问题的人的更新:以下链接

http://www.thegeekstuff.com/2010/06/xhost-cannot-open-display/

然后将其添加到我的代码中:

     export DISPLAY=:0.0 

解决了问题