저는 ARM 기반 보드(nanopi m1, 라즈베리 파이와 같은 것)를 가지고 있고 날짜와 시간을 업데이트하려고 합니다! 온라인에서 본 모든 방법을 사용했지만 작동하지 않습니다! (실제로 내 보드의 기본 날짜는 1970년이었지만 이를 변경 timesyncd.conf
하고 ntp.conf
서버를 설정하자 0-4.ir.pool.ntp.org iburst
날짜가 2014년으로 변경되었습니다!)
이 문제를 어떻게 해결할 수 있나요?
이것은 내 "ntp.conf" 파일의 내용입니다:
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help
driftfile /var/lib/ntp/ntp.drift
# Enable this if you want statistics to be logged.
#statsdir /var/log/ntpstats/
statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable
# You do need to talk to an NTP server or two (or three).
#server ntp.your-provider.example
# pool.ntp.org maps to about 1000 low-stratum NTP servers. Your server will
# pick a different set every time it starts up. Please consider joining the
# pool: <http://www.pool.ntp.org/join.html>
#server 0.debian.pool.ntp.org iburst
#server 1.debian.pool.ntp.org iburst
#server 2.debian.pool.ntp.org iburst
#server 3.debian.pool.ntp.org iburst
server 1.ir.pool.ntp.org
server 1.asia.pool.ntp.org
server 0.asia.pool.ntp.org
# Access control configuration; see /usr/share/doc/ntp-doc/html/accopt.html for
# details. The web page <http://support.ntp.org/bin/view/Support/AccessRestrictions>
# might also be helpful.
#
# Note that "restrict" applies to both servers and clients, so a configuration
# that might be intended to block requests from certain clients could also end
# up blocking replies from your own upstream servers.
# By default, exchange time with everybody, but don't allow configuration.
restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery
# Local users may interrogate the ntp server more closely.
restrict 127.0.0.1
restrict ::1
# Clients from this (example!) subnet have unlimited access, but only if
# cryptographically authenticated.
#restrict 192.168.123.0 mask 255.255.255.0 notrust
# If you want to provide time to your local subnet, change the next line.
# (Again, the address is an example only.)
#broadcast 192.168.123.255
# If you want to listen to time broadcasts on your local subnet, de-comment the
# next lines. Please do this only if you trust everybody on the network!
#disable auth
#broadcastclient
또한 이 명령을 실행한 후에도 다음 경고가 표시됩니다.
systemctl enable fake-hwclock.service
Synchronizing state for fake-hwclock.service with sysvinit using update-rc.d...
Executing /usr/sbin/update-rc.d fake-hwclock defaults
insserv: warning: script 'K01tightvncserver' missing LSB tags and overrides
insserv: warning: script 'tightvncserver' missing LSB tags and overrides
Executing /usr/sbin/update-rc.d fake-hwclock enable
insserv: warning: script 'K01tightvncserver' missing LSB tags and overrides
insserv: warning: script 'tightvncserver' missing LSB tags and overrides
답변1
NTP 서버를 올바르게 설정하고 hwclock --systohc
명령을 실행하십시오.
그런 다음 설치fake-hwclock
패키징, 활성화 및 실행 fake-hwclock.service
:
systemctl enable fake-hwclock.service
systemctl start fake-hwclock.service
systemctl restart fake-hwclock.service
일부 시스템에는 RTC(실시간 시계) 장치가 없거나 기존 하드웨어용 드라이버가 없습니다.
fake-hwclock
커널의 현재 시계(종료 시 포함)를 주기적으로 저장하고 부팅 시 이를 복원하여 시스템 시계가 최소한 실시간에 가깝게 유지되도록 하는 간단한 스크립트 세트입니다. 이렇게 하면 부팅할 때마다 파일 시스템 검사를 수행해야 하는 등 시스템이 1970년으로 거슬러 올라간다고 믿기 때문에 발생할 수 있는 일부 문제를 방지할 수 있습니다.이 외에도 하드웨어가 중지되거나 다시 시작될 때 가짜 시계 "드리프트"를 처리하기 위해 NTP를 사용하는 것이 좋습니다.
편집하다
dpkg-reconfigure tzdata
이 문제는 runnig (@user3486308의 의견) 에 의해 해결되었습니다.