web-dev-qa-db-ja.com

RaspberryPi3のロケール設定

私は何年もラズベリーを使用していて、さらに多くのLinuxを使用しています... rpiにDockerをインストールしようとすると、エラーが発生します。おそらくLOCALEのインストールに関連しています。問題はこれです:

apt-listchanges: Can't set locale; make sure $LC_* and $LANG are correct!
Perl: warning: Setting locale failed.
Perl: warning: Please check that your locale settings:
    LANGUAGE = (unset),
    LC_ALL = (unset),
    LC_CTYPE = "UTF-8",
    LANG = "en_US.UTF-8"
    are supported and installed on your system.
Perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory

私はすでにたくさんのガイドを試しましたが、問題は解決しません。

何か助けはありますか?

2
Jacopo Nasi

ここに投稿されたソリューションを参照してください:

https://unix.stackexchange.com/questions/269159/problem-of-cant-set-locale-make-sure-lc-and-lang-are-correct

短い答え:実行dpkg-reconfigure locales rootとして、リストで必要なロケールを選択し(設定では、en_GBとen_US.UTF-8が必要です— en_USとen_GB.UTF-8も選択することをお勧めします)、を押します。

1
DougB