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 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化