How to display Chinese Characters in SSH Secure Shell Client
This is a shortcoming that the SSH Secure Shell Client has not solved for many years. Both the Client and the server must be 'utf-8' encoded, now I finally know that the Windows Chinese version of the encoding is not a UTF-8.
It means that I cannot use this stuff without changing the operating system?
As a result, there seems to be only two solutions.
1. Change the system.
2, using Putty: http://filezilla-project.org/download.php? Type = client
Of course, if SFTP is required, you can use filezilla, which contains a small server and FTP function.
Installation is troublesome...
Later, I found a fundamental solution. I only knew the solution and did not know the reason.
1. # vi/etc/sysconfig/i18n
[Java] view plaincopy
1. # vi/etc/sysconfig/i18n
Change content
LANG = "zh_CN.GB18030"
LANGUAGE = "zh_CN.GB18030: zh_CN.GB2312: zh_CN"
SUPPORTED = "zh_CN.GB18030: zh_CN: zh: en_US.UTF-8: en_US: en"
SYSFONT = "lat0-sun16"
In this way, the Chinese characters are displayed on the SSH terminal.