秋栈博客

七月

Failed to set locale, defaulting to C.UTF-8解决方法

2022-06-14

Failed to set locale, defaulting to C.UTF-8解决方法

问题

CentOS 8Linux系统提示“Failed to set locale, defaulting to C.UTF-8”

解决方案

这是由于没有配置正确的语言环境导致的,Linux百科:使用root账户登录你的CentOS操作系统,然后执行两条命令:
#echo "export LC_ALL=en_US.UTF8" >> /etc/profile
#source /etc/profile
  • 0