doushang7209 2015-12-07 20:52
浏览 87
已采纳

从php脚本打开gnome-terminal

I want to try to open gnome-terminal from php script:

shell_exec('bash /data/manager/application/.shell/system.sh');

This script use a function to check terminal:

SCRIPTCURRENT=`readlink -m $0`
SCRIPTCURRENTPATH=$(dirname "$SCRIPTCURRENT")

runintoterminal () {
    if ! [ -t 1 ]; then
        gnome-terminal -e "bash $1"
        exit 0
    fi
}
runintoterminal $SCRIPTCURRENT

I've tried:

shell_exec('gnome-terminal');

But it's doesn't work... (I know it's possible...) But how to ?

I use nginx and php-fpm. With my own socket. nginx and socket use my user and not www-data. (I'm on ubuntu 14.04LTS)

I've try 0777 rights...

My bash script can run from netbeans IDE ans terminal... but not from php...

  • 写回答

1条回答 默认 最新

  • duanjie5570 2015-12-07 21:48
    关注

    The problem is most likely that gnome-terminal doesn't know where it should draw itself. Normally it shows up on the same display as the program that launched it (IDE, terminal), but web servers don't have displays so it doesn't know where to go. You can try DISPLAY=:0 gnome-terminal -e "bash $1" to show it on the current first local graphical login session, if it has permissions for that. that other guy

    shell_exec('DISPLAY=:0 bash /data/manager/application/.shell/system.sh');
    

    Or on function:

    SCRIPTCURRENT=`readlink -m $0`
    SCRIPTCURRENTPATH=$(dirname "$SCRIPTCURRENT")
    
    runintoterminal () {
        if ! [ -t 1 ]; then
            DISPLAY=:0 gnome-terminal -e "bash $1"
            exit 0
        fi
    }
    runintoterminal $SCRIPTCURRENT
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?