如何连接到linux服务器只支持xterm终端

时间:2016-10-27 09:51:39

标签: python linux ssh paramiko xterm

我想ssh到具有paramiko模块的服务器,但是当我这样做时,让服务器响应如下: 错误:仅支持xterm终端 enter image description here

连接代码:

ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname=blip,username=bluser,password=blpasswd)
channel = ssh.invoke_shell()

如何设置终端类型? 我的回忆:     操作系统:Windows 7     IDE:pycharm     python版本:3.4

1 个答案:

答案 0 :(得分:2)

根据this website,您需要将TERM环境变量设置为' xterm'。

但是,根据paramiko documentation,您可以告诉invoke_shell模拟终端类型,如下所示:

ssh.invoke_shell(term='xterm')