Falha de segmentação de localização local

0

Estou tentando gerar locales, mas segfaults de locale-gen (localedef?).

# sudo dpkg-reconfigure locales
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = "en_US.UTF-8",
        LC_CTYPE = "UTF-8",
        LANG = "en_US.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
/bin/bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
Generating locales...
  en_US.ISO-8859-1... /usr/sbin/locale-gen: line 177: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
/usr/sbin/locale-gen: line 243:  3809 Segmentation fault      localedef $no_archive -i $input -c -f $charset $locale_alias $locale
failed
  en_US.UTF-8... /usr/sbin/locale-gen: line 177: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
/usr/sbin/locale-gen: line 243:  3836 Segmentation fault      localedef $no_archive -i $input -c -f $charset $locale_alias $locale
failed
Generation complete.

Em top , vejo localedef -i en_US -c -f ISO-8859-1 en_US ocupando 8000G da memória virtual e, em seguida, algum número grande sem mesmo G sufixo e, em seguida, segfault.

O sistema possui 1G memory e 512MB SWAP, mas a memória mal é usada ( 130MB no pico da geração).

Dados do sistema:

root@docs:~# uname -a
Linux docs 2.6.32-042stab078.28 #1 SMP Mon Jul 8 10:17:22 MSK 2013 x86_64 x86_64 x86_64 GNU/Linux

root@docs:~# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.4 LTS"

root@docs:~# dpkg-query --show glibc*
glibc-2.13-1
glibc-doc

root@docs:~# sudo apt-get update && sudo apt-get upgrade
...skipped...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    
por Slava N 05.03.2014 / 09:29

1 resposta

1

Parece que você tem essas linhas no seu arquivo /etc/default/locale :

LC_ALL=en_US.UTF-8
LC_CTYPE=UTF-8
LANG=en_US.UTF-8

A configuração LC_CTYPE está errada, pois "UTF-8" não é um nome de localidade válido. Além disso, não faz sentido definir todas essas variáveis; Eu recomendaria que você simplesmente removesse as linhas LC_ALL e LC_CTYPE .

(Eu vi algo parecido recentemente. Seria interessante saber como a declaração LC_CTYPE=UTF-8 acabou lá em primeiro lugar.)

    
por Gunnar Hjalmarsson 05.03.2014 / 14:32