
我使用了这个代码片段,我常见于类似的程序中使用:
master,slave = pty.openpty()p = subprocess.Popen(["/bin/bash","-i"],stdin=slave,stdout=slave,stderr=slave)os.close(slave)x = os.read(master,1026)print xsubprocess.Popen.kill(p)os.close(master)
但是当我运行它时,我得到以下输出:
$./pty_try.pybash: cannot set terminal process group (10790): Inappropriate ioctl for devicebash: no job control in this shell
运行的Strace显示一些错误:
...readlink("/usr/bin/python2.7",0x7ffc8db02510,4096) = -1 EINVAL (InvalID argument)...ioctl(3,SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS,0x7ffc8db03590) = -1 ENottY (Inappropriate ioctl for device)...readlink("./pty_try.py",0x7ffc8db00610,4096) = -1 EINVAL (InvalID argument) 代码片段看起来很简单,Bash没有得到它需要的东西吗?这可能是什么问题?
解决方法 这是在子进程中运行交互式命令的解决方案.它使用伪终端使stdout非阻塞(也有一些命令需要tty设备,例如bash).它使用select来处理输入和输出到子进程.#!/usr/bin/env python# -*- Coding: utf-8 -*-import osimport sysimport selectimport termiosimport ttyimport ptyfrom subprocess import Popencommand = 'bash'# command = 'docker run -it --rm centos /bin/bash'.split()# save original tty setting then set it to raw modeold_tty = termios.tcgetattr(sys.stdin)tty.setraw(sys.stdin.fileno())# open pseudo-terminal to interact with subprocessmaster_fd,slave_fd = pty.openpty()# use os.setsID() make it run in a new process group,or bash job control will not be enabledp = Popen(command,preexec_fn=os.setsID,stdin=slave_fd,stdout=slave_fd,stderr=slave_fd,universal_newlines=True)while p.poll() is None: r,w,e = select.select([sys.stdin,master_fd],[],[]) if sys.stdin in r: d = os.read(sys.stdin.fileno(),10240) os.write(master_fd,d) elif master_fd in r: o = os.read(master_fd,10240) if o: os.write(sys.stdout.fileno(),o)# restore tty settings backtermios.tcsetattr(sys.stdin,termios.TCSADRAIN,old_tty)总结
以上是内存溢出为你收集整理的使用popen和专用的TTY Python运行交互式Bash全部内容,希望文章能够帮你解决使用popen和专用的TTY Python运行交互式Bash所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)