Answer by Abdul Awal Nadim for Enable System clock synchronization
after completing all of this, System clock synchronized: no.So I edited the file sudo nano /etc/systemd/timesyncd.conflike this[Time]Servers=your_NTP_ip 0.debian.pool.ntp.org 1.debian.pool.ntp.org...
View ArticleAnswer by chsymann for Enable System clock synchronization
I read somewhere that you have to have your system time maximum 1000 seconds off the sync-server time for the sync to work. If your current system time is more than 1000s off it will not work.So try to...
View ArticleAnswer by why it doesnt work for Enable System clock synchronization
For those who followed max's answer, but failed.Go to NTP, choose your specific pool zone, and add at least two pool zones to your /etc/systemd/timesyncd.conf. For instance, for Asia,...
View ArticleAnswer by teuber789 for Enable System clock synchronization
For those using Ubuntu 18+ on AWS EC2 instances, I found this worked fantastically. It utilizes AWS' internal time sync service:sudo apt install chronysudo nano /etc/chrony/chrony.confAdd the following...
View ArticleAnswer by user973021 for Enable System clock synchronization
A related case that isn't exactly this one but I want to add it somewhere:It is possible, as was the case for me, for this timedatectl output to correspond to the NTP port being blocked by your...
View ArticleAnswer by tgogos for Enable System clock synchronization
The following worked for me:timedatectl set-ntp trueand then...systemctl restart systemd-timesyncdExample:
View ArticleAnswer by TheArchitecta for Enable System clock synchronization
Gui Option:Go to "Settings" -->"Details" -->"Date & Time" --> Turn on "Automatic Date and Time".systemctl restart systemd-timesyncd might help
View ArticleAnswer by Max Robbertze for Enable System clock synchronization
It can be done without deploying NTP like this:sudo nano /etc/systemd/timesyncd.conf Edit the NTP Server detail[Time]NTP=ur.ntp.srvFallbackNTP=ur.fallbackntp.srvThen sudo systemctl daemon-reloadsudo...
View ArticleAnswer by Terrance for Enable System clock synchronization
One way to do it is to use ntp which still works in Ubuntu 18.04. Run the following command to install ntp.sudo apt install ntpAfter it is installed you can run ntpq -p to make sure that it is working....
View ArticleEnable System clock synchronization
'timedatectl' is giving following output - Local time: Wed 2018-06-13 18:08:51 IST Universal time: Wed 2018-06-13 12:38:51 UTC RTC time: Wed 2018-06-13 12:38:51 Time zone: Asia/Kolkata (IST, +0530)...
View Article