gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:09:20 25 4
gpt4 key购买 nike

我想通过 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 集成开发环境:pycharm python 版本:3.4

最佳答案

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

然而,根据paramiko documentation ,您可以告诉 invoke_shell 模拟这样的终端类型:

ssh.invoke_shell(term='xterm')    

关于python - 如何连接到只支持 xterm 终端的 linux 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40281490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com