CentOS8 - bash: garbled characters and solutions

CentOS8 - bash: garbled characters and solutions

This situation usually occurs because the Chinese language pack is not installed or there is a problem with the default language setting.
View the current locale
echo $LANG
Found to be
zh_TW.UTF-8
However, if the Chinese language pack is not installed or enabled, garbled characters will appear.

Enter LANG=en_US to set the display to English. This command takes effect immediately but not permanently. See below for permanent effect.
At this point, enter the command again to see the English error message

If you really need Chinese prompts, you can install it like this:
yum groupinstall chinese-support
Set the local default locale
vim /etc/locale.conf add
LANG="zh_TW.UTF-8"
Immediate and permanent effect
source /etc/locale.conf
Enter locale to view the local language environment

LANG=zh_TW.UTF-8
LC_CTYPE="zh_TW.UTF-8"
LC_NUMERIC=zh_TW.UTF-8
LC_TIME=zh_TW.UTF-8
LC_COLLATE="zh_TW.UTF-8"
LC_MONETARY=zh_TW.UTF-8
LC_MESSAGES="zh_TW.UTF-8"
LC_PAPER=zh_TW.UTF-8
LC_NAME="zh_TW.UTF-8"
LC_ADDRESS="zh_TW.UTF-8"
LC_TELEPHONE="zh_TW.UTF-8"
LC_MEASUREMENT=zh_TW.UTF-8
LC_IDENTIFICATION="zh_TW.UTF-8"
LC_ALL=

Note that my language environment is Taiwan Traditional Chinese, and the simplified Chinese language should be changed from TW to CN

Appendix: Let's take a look at the solution to Chinese garbled characters in the shell script that displays utf-8 encoding format in centos

Problem phenomenon

The shell script I wrote was saved in utf-8 encoding format, but when uploaded to centos, it was displayed as garbled characters

Use file shell.sh to view the encoding format of the file

shell.sh: UTF-8 Unicode text

Workaround

Use iconv to convert the file encoding format to gb2312

iconv -f utf-8 -t gb2312 shell.sh > shell2.sh

Run file shell2.sh again to view the file encoding

linuxsec2.sh: ISO-8859 text

The Chinese garbled characters problem has been solved

This is the end of this article about the CentOS8-bash: garbled code problem. For more related centos bash garbled code content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  Example analysis of the principle and solution of MySQL sliding order problem

>>:  jQuery implements HTML element hiding and display

Recommend

Detailed explanation of how to synchronize data from MySQL to Elasticsearch

Table of contents 1. Synchronization Principle 2....

Detailed explanation of the process of using GPU in Docker

Table of contents Download tf-gpu Build your own ...

Detailed explanation of CSS margin collapsing

Previous This is a classic old question. Since a ...

Summary of Operator Operations That Are Very Error-Prone in JavaScript

Table of contents Arithmetic operators Abnormal s...

Create a virtual environment using venv in python3 in Ubuntu

1. Virtual environment follows the project, creat...

Comparison of the efficiency of different methods of deleting files in Linux

Test the efficiency of deleting a large number of...

Solution to the paging error problem of MySQL one-to-many association query

The query data in the xml price inquiry contains ...

Vue routing to implement login interception

Table of contents 1. Overview 2. Routing Navigati...

Detailed installation and use of SSH in Ubuntu environment

SSH stands for Secure Shell, which is a secure tr...

Basic operation tutorial of files and permissions in centos

Preface Before we begin, we should briefly unders...