vi /etc/environment
add these lines...
LANG=en_US.utf-8
LC_ALL=en_US.utf-8
Alternatively,
- Create locale file manually:
localedef -i en_US -f UTF-8 en_US.UTF-8
Explained here
vi /etc/environmentadd these lines...
LANG=en_US.utf-8
LC_ALL=en_US.utf-8
Alternatively,
localedef -i en_US -f UTF-8 en_US.UTF-8Explained here
Just place this in your
/etc/environmentfile:LANG="en_US.utf-8" LC_ALL="en_US.utf-8" LC_CTYPE="en_US.UTF-8"Then run:
sudo localedef -i en_US -f UTF-8 en_US.UTF-8
It works!!!
worked on Deb13
Just place this in your
/etc/environmentfile:Then run: