作者:E4b9a6, 创建:2024-08-16, 字数:616, 已阅:188, 最后更新:2024-08-16
在Debian10中使用 apt 时遇到 Setting locale failed 错误
这个错误信息说明系统的区域设置(locale)配置有问题,需要进行调整
首先安装locales
sudo apt-get update
sudo apt-get install locales
sudo dpkg-reconfigure locales
在 dpkg-reconfigure locales 过程中,确保选择以下区域设置:
编辑文件: /etc/default/locale
LANG=en_US.UTF-8
LC_TIME=zh_CN.UTF-8
LC_MONETARY=zh_CN.UTF-8
LC_ADDRESS=zh_CN.UTF-8
LC_TELEPHONE=zh_CN.UTF-8
LC_NAME=zh_CN.UTF-8
LC_MEASUREMENT=zh_CN.UTF-8
LC_IDENTIFICATION=zh_CN.UTF-8
LC_NUMERIC=zh_CN.UTF-8
LC_PAPER=zh_CN.UTF-8
重新加载 locales 就可以解决这个问题了
source /etc/default/locale