Auf meinem System ist die Gebietsschemavariable LC_CTYPE
auf einen unzulässigen Wert festgelegt, was auf Linux-Systemen zu Problemen führt. Es ist eingestellt auf:
$ locale
LANG=
LC_COLLATE="C"
LC_CTYPE="UTF-8"
LC_MESSAGES="C"
LC_MONETARY="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_ALL=
LC_CTYPE=UTF-8
ist unter Linux kein legaler Wert; z.B.:
$ ssh front1
Linux front1 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
The programs included with the Debian GNU/Linux system are free software;
…
alex@front1 ~> perl
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"
are supported and installed on your system.
perl: warning: Falling back to a fallback locale ("en_US").
Aber wo wird überhaupt LC_CTYPE
gesetzt? Es ist in keiner Datei in /etc
oder $HOME
(ich habe ein sudo fgrep -ri LC_CTYPE /etc $HOME
).
Ich verwende iTerm2 als Terminalanwendung.