理解CentOS7.4/docker terminal 编码 locale中文支持

2024-03-30 08:48

本文主要是介绍理解CentOS7.4/docker terminal 编码 locale中文支持,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  • 获取编码格式

    From How to get terminal’s Character Encoding, the terminal uses environment variables to determine which character set to use, therefore you can determine it by looking at those variables: echo $LANG

  • locale

    Locales are used in Linux to define which language and character set (encoding) user see in the terminal.

    Locale is defined in the following format:

    <LANGUAGE>_<TERRITORY>.<CODESET>[@<MODIFIERS>]

    ITEMsFORMAT
    LANGUAGEISO 639 language code
    TERRITORYISO 3166 country code
    CODESETCharacter set or encoding identifier, like ISO-8859-1 or UTF-8

    locale是一个综合性的概念,是根据计算机用户所使用的语言、所在国家或者地区、当地的文化传统所定义的一个软件运行时的语言环境。

    这个语言环境可以按照所涉及的不同领域划分成几大类:用户所使用的语言符号及其分类(LC_CTYPE),数字 (LC_NUMERIC),比较和排序习惯(LC_COLLATE),时间显示格式(LC_TIME),货币单位(LC_MONETARY),信息主要是提示信息,错误信息, 状态信息, 标题, 标签, 按钮和菜单等(LC_MESSAGES),姓名书写方式(LC_NAME),地址书写方式(LC_ADDRESS),电话号码书写方式 (LC_TELEPHONE),度量衡表达方式(LC_MEASUREMENT),默认纸张尺寸大小(LC_PAPER)和locale对自身包含信息的概述(LC_IDENTIFICATION)。

    这些locale定义文件放在/usr/share/i18n/locales目录下

  • locale issues

    There are two questions: how to check and change the current locale and language settings from the command line in Linux.

    • check current locale and language settings
      # current locale and language settings
      $ locale 
      # list all enabled locales
      $ locale -a
      # list available encoding
      $ locale -m
      # locale and language settings are defined in the LANG variable
      $ echo $LANG
      
    • change the current locale and language settings
      • add new locale

        Before a locale can be enabled on the system, it must be generated.

        If you didn’t find the desired language or encoding in the list of enabled locales(locale -a), you can search for them in the list of all supported locales and install whatever you need.

        # for centos
        $ localedef --list-archive # list the all supported(available for generation) locales
        $ localedef -- list-archive | grep zh_CN.UTF-8 # find the desired locale 这一句好像无效
        $ sudo localedef -c -i zh_CN(locale定义文件) -f UTF-8(字符集) zh_CN.UTF-8 # generate it 
        $ locale -a | grep zh_CN.utf8 # available
        
      • already have useable locale

        To set the required locale and language for the current sesion - it is just needed to redefine LANG variable.

        $ LANG=zh_CN.utf8 # =两边不能有空格
        

        此方法设置后,echo $LANG 虽然显示zh_CN.utf8,但实际运行过程中中文还是乱码,而且locale命令下LANG未改变。

        $ export 
        
    • Define locale and language permanently

      Set the required value of the LANG variable in a user’s bash profile and the needed locale and language settings will be automatically loaded upon the each session.

      Put export LANG=zh_CN.utf8 line to the ~./bashrc or ~/.profile files.

      then source ~/.profile

  • Dockerfile

    修改基础镜像中文locale支持

    RUN yum -y update \&& yum install kde-l10n-Chinese -y \&& yum reinstall glibc-common -y \&& localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8 \&& echo 'LANG="zh_CN.UTF-8"' > /etc/locale.conf \&& source /etc/locale.conf
    ENV LC_ALL=zh_CN.UTF-8 \LANG=zh_CN.UTF-8
    
  • Reference

  1. Linux: Define Locale and Language Settings

  2. 关于locale的设定,为什么要设定locale

  3. CentOS7及Docker配置中文字符集问题

这篇关于理解CentOS7.4/docker terminal 编码 locale中文支持的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/861029

相关文章

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

SpringKafka消息发布之KafkaTemplate与事务支持功能

《SpringKafka消息发布之KafkaTemplate与事务支持功能》通过本文介绍的基本用法、序列化选项、事务支持、错误处理和性能优化技术,开发者可以构建高效可靠的Kafka消息发布系统,事务支... 目录引言一、KafkaTemplate基础二、消息序列化三、事务支持机制四、错误处理与重试五、性能优

Docker镜像pull失败两种解决办法小结

《Docker镜像pull失败两种解决办法小结》有时候我们在拉取Docker镜像的过程中会遇到一些问题,:本文主要介绍Docker镜像pull失败两种解决办法的相关资料,文中通过代码介绍的非常详细... 目录docker 镜像 pull 失败解决办法1DrQwWCocker 镜像 pull 失败解决方法2总

通过Docker Compose部署MySQL的详细教程

《通过DockerCompose部署MySQL的详细教程》DockerCompose作为Docker官方的容器编排工具,为MySQL数据库部署带来了显著优势,下面小编就来为大家详细介绍一... 目录一、docker Compose 部署 mysql 的优势二、环境准备与基础配置2.1 项目目录结构2.2 基

关于Docker Desktop的WSL报错问题解决办法

《关于DockerDesktop的WSL报错问题解决办法》:本文主要介绍关于DockerDesktop的WSL报错问题解决办法的相关资料,排查发现是因清理%temp%文件夹误删关键WSL文件,... 目录发现问题排查过程:解决方法其实很简单:重装之后再看就能够查到了:最后分享几个排查这类问题的小www.cp

VSCode中C/C++编码乱码问题的两种解决方法

《VSCode中C/C++编码乱码问题的两种解决方法》在中国地区,Windows系统中的cmd和PowerShell默认编码是GBK,但VSCode默认使用UTF-8编码,这种编码不一致会导致在VSC... 目录问题方法一:通过 Code Runner 插件调整编码配置步骤方法二:在 PowerShell

一文教你解决Python不支持中文路径的问题

《一文教你解决Python不支持中文路径的问题》Python是一种广泛使用的高级编程语言,然而在处理包含中文字符的文件路径时,Python有时会表现出一些不友好的行为,下面小编就来为大家介绍一下具体的... 目录问题背景解决方案1. 设置正确的文件编码2. 使用pathlib模块3. 转换路径为Unicod

Python如何实现读取csv文件时忽略文件的编码格式

《Python如何实现读取csv文件时忽略文件的编码格式》我们再日常读取csv文件的时候经常会发现csv文件的格式有多种,所以这篇文章为大家介绍了Python如何实现读取csv文件时忽略文件的编码格式... 目录1、背景介绍2、库的安装3、核心代码4、完整代码1、背景介绍我们再日常读取csv文件的时候经常

如何使用Docker部署FTP和Nginx并通过HTTP访问FTP里的文件

《如何使用Docker部署FTP和Nginx并通过HTTP访问FTP里的文件》本文介绍了如何使用Docker部署FTP服务器和Nginx,并通过HTTP访问FTP中的文件,通过将FTP数据目录挂载到N... 目录docker部署FTP和Nginx并通过HTTP访问FTP里的文件1. 部署 FTP 服务器 (

解读docker运行时-itd参数是什么意思

《解读docker运行时-itd参数是什么意思》在Docker中,-itd参数组合用于在后台运行一个交互式容器,同时保持标准输入和分配伪终端,这种方式适合需要在后台运行容器并保持交互能力的场景... 目录docker运行时-itd参数是什么意思1. -i(或 --interactive)2. -t(或 --