Quand je regarde https://help.ubuntu.com/lts/serverguide/NTP.html Je peux voir la configuration de l'heure actuelle avec timedatectl mais je reçois toujours une erreur.
$ timedatectl status
Failed to create bus connection: No such file or directory
$ Sudo timedatectl status
Failed to create bus connection: No such file or directory
# timedatectl status
Failed to create bus connection: No such file or directory
Aucun paquet ntp n'est installé et le service fonctionne normalement.
# systemctl status systemd-timesyncd
* systemd-timesyncd.service - Network Time Synchronization
Loaded: loaded (/lib/systemd/system/systemd-timesyncd.service; enabled; vendor preset: enabled)
Drop-In: /lib/systemd/system/systemd-timesyncd.service.d
`-disable-with-time-daemon.conf
Active: active (running) since Thu 2018-03-15 15:37:16 CET; 17h ago
Docs: man:systemd-timesyncd.service(8)
Main PID: 1801 (systemd-timesyn)
Status: "Synchronized to time server 193.190.253.212:123 (1.be.pool.ntp.org)."
CGroup: /system.slice/systemd-timesyncd.service
`-1801 /lib/systemd/systemd-timesyncd
Mar 15 15:37:16 linux-repo systemd[1]: Starting Network Time Synchronization...
Mar 15 15:37:16 linux-repo systemd[1]: Started Network Time Synchronization.
Mar 15 15:37:21 linux-repo systemd-timesyncd[1801]: Synchronized to time server 193.190.253.212:123 (1.be.pool.ntp.org).
Mar 16 08:28:56 linux-repo systemd[1]: Started Network Time Synchronization.
J'ai trouvé la solution ici: Merci pour la réponse mais j'ai trouvé la solution ici: https://stackoverflow.com/questions/43907925/ubuntu-timedatect-fails-in-docker-container
Sur une installation minimale d'Ubuntu 16.04 (comme la mienne), le paquet dbus n'est pas installé. Donc, apt-get install dbus
a résolu le problème.
timedatectl
essaye d'ouvrir plusieurs fichiers/devies. Ohne d'entre eux échoue dans votre cas. Démarrez le timedatectl
avec strace
et recherchez les messages d'erreur:
$ strace -o /tmp/timedatectl.log timedatectl status
$ grep "^open(" /tmp/timedatectl.log
...
open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 4
open("/dev/rtc", O_RDONLY|O_CLOEXEC) = 4
open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 4
...
Si vous savez quel fichier/périphérique crée le problème, vous pouvez commencer à le résoudre.