首页 养生问答 疾病百科 养生资讯 女性养生 男性养生

如何解决SSH Secure Shell Client中文乱码

发布网友 发布时间:2022-04-23 11:06

我来回答

1个回答

热心网友 时间:2022-05-02 15:04

方案一:修改linux服务器的环境变量
使用linux,在用户根目录下有一个.bash_profile配置文件,该配置只对当前用户有效.若对所有的用户有效,修改/etc/profile文件
使用ls -a命令可以查看到该文件.使用vi编辑器打开该文件后,在其中加入
lang=zh_cn.gb2312
export lang

即可正常显示中文.更改.bash_profile配置文件后,该文件内容如下:

# .bash_profile

# get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

# user specific environment and startup programs

path=$path:$home/bin
lang=zh_cn.gb2312
export path
export lang
unset username

方案二:或使用其他远程登陆软件,并修改配置,将字符编码设置为utf-8。
ps:远程登陆软件 命令行界面putty,cterm,securecrt,含ftp功能的有filezilla,secure shell client,图形界面的有xming,xshell,xmanager等
下面以putty和securecrt为例。
修改securecrt设置:选项(options)->会话选项(session options)->外观(appearance)->字符(character),选择utf-8。

putty选择配置窗口左边的windows—— translation,在右边的 received data assumed to be in which character set 下拉列表中选择“utf-8”

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com