wie löse ich das folgende Problem?
Code: Alles auswählen
apt update
E: Release file for http://deb.debian.org/debian/dists/buster-updates/InRelease is not valid yet (invalid for another 35min 11s). Updates for this repository will not be applied.
/etc/apt/sources.list
Code: Alles auswählen
#
# deb cdrom:[Debian GNU/Linux 10.3.0 _Buster_ - Unofficial amd64 DVD Binary-1 with firmware 20200208-12:08]/ buster contrib main non-free
#deb cdrom:[Debian GNU/Linux 10.3.0 _Buster_ - Unofficial amd64 DVD Binary-1 with firmware 20200208-12:08]/ buster contrib main non-free
deb http://deb.debian.org/debian/ buster main
deb-src http://deb.debian.org/debian/ buster main
deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main contrib non-free
# buster-updates, previously known as 'volatile'
deb http://deb.debian.org/debian/ buster-updates main contrib non-free
deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free
# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.
Code: Alles auswählen
timedatectl
Local time: Sat 2021-01-23 08:51:09 CET
Universal time: Sat 2021-01-23 07:51:09 UTC
RTC time: Sat 2021-01-23 07:51:09
Time zone: Europe/Berlin (CET, +0100)
System clock synchronized: no
NTP service: inactive
RTC in local TZ: no
Code: Alles auswählen
systemctl status systemd-timesyncd
● systemd-timesyncd.service - Network Time Synchronization
Loaded: loaded (/lib/systemd/system/systemd-timesyncd.service; enabled; vendor preset: enabled)
Drop-In: /usr/lib/systemd/system/systemd-timesyncd.service.d
└─disable-with-time-daemon.conf
Active: inactive (dead)
Condition: start condition failed at Sat 2021-01-23 08:27:47 CET; 29min ago
└─ ConditionFileIsExecutable=!/usr/sbin/chronyd was not met
Docs: man:systemd-timesyncd.service(8)
Jan 23 08:27:47 omv5 systemd[1]: Condition check resulted in Network Time Synchronization being skipped.
Kurzfristige Lösung:
Code: Alles auswählen
timedatectl set-time 'HH:mm:ss'
AxelMD