@modesta
Configuring NTP (Network Time Protocol) on Ubuntu involves the following steps:
1
|
sudo apt-get install ntp |
1
|
sudo nano /etc/ntp.conf |
1 2 |
server ntp.ubuntu.com server ntp2.ubuntu.com |
1
|
sudo systemctl restart ntp |
1
|
sudo systemctl status ntp |
You should now have successfully configured NTP on your Ubuntu system. The system clock should now be synchronized with the NTP servers.
@modesta
Here are the summarized steps to configure NTP (Network Time Protocol) on Ubuntu:
1 2 |
server ntp.ubuntu.com server ntp2.ubuntu.com |
Following these steps will configure NTP on your Ubuntu system and synchronize the system clock with the specified NTP servers.