Skip to content

Support us

Authors: fire1ce | Created: 2021-09-02 | Last update: 2022-08-02

Locales & Timezone

Fix Locales (Fix Bash Local Error)

Set the Locale, Find the en_US.UTF-8 in the list and select it, at the following screen select it.

dpkg-reconfigure locales

Set System Time With Time Zone (timedatectl ntp)

Find your time zone with timedatectl list-timezones use grep for easier results:

timedatectl list-timezones | grep "Toronto"

The output should look like this:

America/Toronto

Now set the Time Zone and active it.

timedatectl set-timezone Asia/Jerusalem
timedatectl set-ntp true

Now test timedatectl status

timedatectl status

Check your system time

date

Comments