Newly installed an openSUSE system on my ThinkPad X1 Tablet for daily use. BTW Windows runs as shit on it. I noticed that the time of system was incorrect. So...I'm trying solving it by deploying NTP service and run it manually once.
sudo zypper install ntp
sudo systemctl enable ntpd
sudo systemctl start ntpd
Configure time server by editing /etc/ntp.conf
, add a line as:
server example-ntp-server.com
:wq
, and sudo systemctl restart ntpd
.
And manually synchronize once:
sudo ntpdate -u example-ntp-server.com
Okayy...
And...Thanks ChatGPT, again.