linux looks at the system code and how to modify the system code

  • 2020-05-07 20:44:57
  • OfStack

View the supported character encodings

Use the locale command, such as:


# locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"

And then modify/etc sysconfig/i18n, such as to Chinese code:


LANG=en_US.UTF-8

Instead of

LANG="zh_CN.GBK"

And then you can restart it


Related articles: