debian 20.04の"locale check "でエラーを避ける
概要
-bash: /usr/bin/locale-check: No such file or directory
私がなるたびにroot
経由sudo su -
私のdebian 20.04サーバ.改正
/etc/profile.d/01-locale-fix.sh
そして、Debian 20.04のためのファイルを持っているパッケージはありません.base-files
または別のパッケージをインストールする必要があります、私は、ファイルがサーバーに追加されるたびに動作を開始する方法でエラーを避けることを決めた./etc/profile.d/01-locale-fix.sh
==========
# Make sure the locale variables are set to valid values.
# Hack: Added "if" statement because Debian 20.04 does not seem
# to have the file "/usr/bin/locale-check"
if [ -f "/usr/bin/locale-check" ];
then
eval $(/usr/bin/locale-check C.UTF-8)
fi
Reference
この問題について(debian 20.04の"locale check "でエラーを避ける), 我々は、より多くの情報をここで見つけました https://dev.to/brisbanewebdeveloper/avoid-error-with-locale-check-on-debian-20-04-5ba8テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol