每次启动时都会出现“无法更改语言环境”的错误

每次启动时都会出现“无法更改语言环境”的错误
Error found when loading /home/weaselbee/.profile: 

然后它向我发出警告:

setlocale: LC_MESSAGES cannot change locale: en_US.UTF-8

LC_CTYPE: cannot change locale: en_US.UTF-8

LC_COLLATE: cannot change locale: en_US.UTF-8

答案1

要解决此警告或安装新安装,请使用local-gen默认数据本地化,在这种情况下,正是如此en_US.UTF8

sudo locale-gen en_US.UTF-8 

要安装/重新安装以及 en_US.UTF-8 :

sudo locale-gen en en_US en_US.UTF-8

然后使用 dpkg-reconfigure locales 应用更改

sudo dpkg-reconfigure locales

然后

export LC_ALL="en_US"

相关内容