As different users have different preferences for the operating system so they must want to customize it as per their preferences. Some might want different time zones in different languages and different countries with a different currency that they prefer on their Linux interface.
In this case, the locale is used as it can be used to change or set language, countries, time/date format, currencies, and many more as per the user preferences. So we are going to discuss such locales and discuss the process of changing or setting such locales on Linux.
We can look over the current system locale using the following command. With the command, we will get different variables that can be reset with different values as per user preference.
$locale
Also, using localectl status command, it will result the same.
$ localectl status
You can check all available locales on your Linux system with the following command:
$ locale -a
We can check the details of specific variables using the variable name. In case you want to check details on LC_TIME that stores the time and date format, LC_ADDRESS that stores streets or postal addresses format, LC_TELEPHONE that stores format of telephone settings, and so on.
To get such details, we can run the following commands:
$ locale -k LC_ADDRESS
$ locale -k LC_TIME
$ locale -k LC_TELEPHONE
$ locale -k LC_TIME
$ locale -k LC_ADDRESS
We can change or set system locale in Linux by using the update-locale program. Using the LANG variable, it will allow us to set up the locale for the entire system.
We can set the LANG to en_IN.UTF-8 LANGUAGE and remove the definition for language by using the following command.
$ sudo update-locale LANG=LANG=en_IN.UTF-8 LANGUAGE
Or,
$ sudo localectl set -locale LANG=en_IN.UTF-8
We can check or view the global locale setting in the following file on Linux:
$ sudo vim /etc/default/locale
We can modify the .bashrc profile after already setting the value of locale. Go through the following command:
$ sudo vim ~/.bashrc
To set the global locale for the single user, we can add the following line at the end of ~/.bashrc_profile
$ sudo vim ~/.bashrc_profile
LANG=”en_IN.UTF-8”
export LANG
To get more details on locale, update-locale, and localectl, we can check the manual section as below:
$ man locale
$ man update-locale
$ man localectl
In this article, you learnt how to set a system and view the locale on Linux. Thank you for reading.
Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications including CCNA RS, SCP, and ACE. As an IT engineer and technical author, he writes for various websites.
2024 was the GenAI year. With new and more performant LLMs and a higher number…
Canonical’s Kubernetes LTS (Long Term Support) will support FedRAMP compliance and receive at least 12…
Welcome to the Ubuntu Weekly Newsletter, Issue 878 for the week of February 2 –…
At Canonical, we firmly believe that delivering an outstanding, customer-centric support experience is impossible without…
I want to share how to install osTicket v1.14 for Ubuntu 20.04 server. osTicket written…
Now I want to share how to install WordPress on ubuntu 20.04 server. WordPress is…