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
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?