PDA

View Full Version : Date Time change



AlacJ
2019-12-17, 16:20
Hi

I am facing this issue t getting a with date time, and not seem to get a solution.
when I check date, instead of PM, I am getting "Carra"
Also, month name is also "kaxxa garablu" instead of December.

root@:~# date
tal kax 17 9:37:17 carra IST 2019



I am bit new to Linux (and Kali), so not getting a solution for it

rohitbasak9921
2019-12-31, 07:52
Same problem here too😢

Pavlovian Research Team
2020-01-11, 22:53
Same here after upgrade to Kali-Full can't change date and time, so browsers fail to allow access. on ARM platform

jeremyiron
2020-01-13, 18:51
I guess you need to change locale at first.

1. Type 'locale' in terminal to print current locale setting.

In my case, it prints out like...

LANG=en_US.utf8
LANGUAGE=
LC_CTYPE="en_US.utf8"
LC_NUMERIC="en_US.utf8"
LC_TIME="en_US.utf8" <==== especially this value should be changed.
LC_COLLATE="en_US.utf8"
LC_MONETARY="en_US.utf8"
LC_MESSAGES="en_US.utf8"
LC_PAPER="en_US.utf8"
LC_NAME="en_US.utf8"
LC_ADDRESS="en_US.utf8"
LC_TELEPHONE="en_US.utf8"
LC_MEASUREMENT="en_US.utf8"
LC_IDENTIFICATION="en_US.utf8"
LC_ALL=

2. Change your locale with 'localectl' command like this...

localectl set-locale LC_TIME=en_US.utf8

jeremyiron
2020-01-13, 18:53
As I already answered another question,
you can set timezone with "timedatectl" command like this...

timedatectl show (this command prints your current timezone setting)
timedatectl list-timezones (you can list timezones to search your actual timezone)
timedatectl set-timezone Zone (you can change to new 'Zone')