Under Linux svn update library containing Chinese name issue can not be updated

When updating the library file that contains Chinese name under Linux, there are suggested:

SVN Error: String of Can not Convert For from Native encoding to 'UTF-8'


by google, we found that there are two solutions:

Export LC_CTYPE = "zh_CN.GB2312"

or

export LANG = "zh_CN.UTF-8"


but will not work, and given as follows:

warning: setlocale: LC_CTYPE: CAN not Change locale (zh_CN.GB2312): No File or Directory SUCH


continue Google, by locale -a command shows the following results :

 




By

export LANG = "C.UTF-8"

or

export LC_CTYPE = "C.UTF-8"

or

export LC_CTYPE = "en_CA.utf8"

The problem is solved


if the problem still exists, then look at the following configuration, attention LANG and LANGUAGE:


Guess you like

Origin www.cnblogs.com/xingyunfashi/p/11388981.html