comando locale-gen em centos6

13

No meu sistema cents6.5, que é um contêiner docker , en_US.utf-8 locale está ausente:

bash-4.1# locale -a
C
POSIX

Normalmente, no Ubuntu, há o comando locale-gen para fazer isso:

# locale-gen en_US.UTF-8
# echo 'LANG="en_US.UTF-8"' > /etc/default/locale

Como posso fazer isso no centos 6.5?

    
por larrycai 02.07.2014 / 08:06

2 respostas

24

locale-gen não está presente em Centos/Fedora .

Você deve usar localedef :

localedef -v -c -i en_US -f UTF-8 en_US.UTF-8

De man localedef :

NAME
       localedef - define locale environment

SYNOPSIS
       localedef [-c][-f charmap][-i sourcefile][-u code_set_name] name

DESCRIPTION
       The localedef utility shall convert source definitions for locale cate‐
       gories into a format usable by the functions and utilities whose opera‐
       tional behavior is determined by the setting of the locale  environment
       variables    defined    in    the    Base    Definitions    volume   of
       IEEE Std 1003.1-2001, Chapter 7, Locale. It  is  implementation-defined
       whether users have the capability to create new locales, in addition to
       those  supplied  by  the  implementation.  If  the  symbolic   constant
       POSIX2_LOCALEDEF  is  defined,  the system supports the creation of new
       locales.    On   XSI-conformant   systems,   the   symbolic    constant
       POSIX2_LOCALEDEF shall be defined.
    
por 02.07.2014 / 09:19
6

Eu forneci informações extras com base na resposta @Gnouc ( localedef será usado em centos)

O centos docker é uma imagem especial que fornece pacotes mínimos, consulte o script link

rm -rf "$target"/usr/{{lib,share}/locale,{lib,lib64}/gconv,bin/localedef,sbin/build-locale-archive}

Dentro do comando localedef é removido, glibc-common pacote que inclui isso deve ser reinstalado

yum reinstall glibc-common

certamente o tamanho será aumentado

    
por 03.07.2014 / 10:56