[问题] 请问paramiko读取远端big5问题

楼主: phoenixcx (曼秀雷敦)   2018-09-13 17:30:34
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname='192.168.1.1, port=22, username='root',
password='password', timeout=3)
command='df -h | awk \'NR>1\''
stdin, stdout, stderr = ssh.exec_command(command)
y = stdout.readlines()
for tmp in y:
print(tmp)
事情是这样的 本机端是utf8 centos7环境 远端是 big5 centos 5
这样在print资讯的时候总是出现
nicodeDecodeError: 'utf-8' codec can't decode byte 0xa5 in position 19:
invalid start byte
不管如何encode 或 decode都没办法成功转换
请问我要朝什么方向找答案 感谢
作者: s06yji3 (阿南)   2018-09-13 21:22:00
用decode('big5')解码
楼主: phoenixcx (曼秀雷敦)   2018-09-14 09:26:00
试过了 却误码一样错误码
作者: ckc1ark (伪物)   2018-09-14 11:01:00
stdout=io.TextIOWrapper(stdout, encoding='Big5')试试
楼主: phoenixcx (曼秀雷敦)   2018-09-14 13:01:00
楼上大大 可以了耶...感谢!!!!
作者: ckc1ark (伪物)   2018-09-14 13:34:00
不过要不要试试psutil https://tinyurl.com/y9bepsqq不用自己parse
作者: s06yji3 (阿南)   2018-09-14 18:53:00
学习了

Links booklink

Contact Us: admin [ a t ] ucptt.com