发布网友 发布时间: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”