Page 1 of 1

howto: mint 12 set locale to iso

Posted: Mon May 14, 2012 9:58 am
by toastbrot
i needed en_US.ISO-8859-1 but through usual debian/ubuntu "dpkg-reconfigure locales" i could not select anything at all. so here how it worked for me:
as root or else use sudo in front of each command

vi /etc/environment
and add those lines:

Code: Select all

LANG=en_US
LANGUAGE="en_US.ISO-8859-1"
LC_ALL="en_US.ISO-8859-1"
vi /var/lib/locales/supported.d/en
and add this line:

Code: Select all

en_US.ISO-8859-1 ISO-8859-1
locale-gen


good luck...