I am not so into Linux. On an Ubuntu VM on a client environment it seems that I can't use apt-get command.
In particular trying to perform:
sudo apt-get install ntpdate
I am obtain this message error:
Temporary failure resolving 'archive.ubuntu.com'
Here a screenshot:
What could be the cause of the error? Can something block apt-get on this infrastructure? (firewall or something like this?)
Altro trying to perform a:
sudo apt-get update
I have the same problem
I tried also to install other application via apt-get and I am facing the same issue? In case there are other solution to manually download and install ntpdate without using apt-get?
Do
sudo apt update && sudo apt install ntpdate
to update the list of available installs first before trying to get ntpdate.If that fails, you could have a problem connecting to the archive.ubuntu.com server, which normally resolves itself soon.