재부팅 중에 하드웨어 시계를 시스템 시계와 동기화하는 프로그램 이름을 얻는 방법

재부팅 중에 하드웨어 시계를 시스템 시계와 동기화하는 프로그램 이름을 얻는 방법
cat /var/log/syslog |grep Synchronise
Feb  8 20:49:22 hwy systemd[1]: Starting Synchronise Hardware Clock to System Clock...

재부팅하는 동안 하드웨어 시계를 시스템 시계와 동기화하는 프로그램 이름을 어떻게 알 수 있나요? systemctl 재부팅 중에 하드웨어 시계를 시스템 시계와 동기화하는 프로그램 이름을 알려주실 수 있나요?

답변1

/lib/systemd/system/hwclock-save.service

[root@hostname username]# more /lib/systemd/system/hwclock-save.service
[Unit]
Description=Synchronise Hardware Clock to System Clock
DefaultDependencies=no
Before=shutdown.target
ConditionFileIsExecutable=!/usr/sbin/ntpd
ConditionFileIsExecutable=!/usr/sbin/openntpd
ConditionFileIsExecutable=!/usr/sbin/chrony
ConditionVirtualization=!container

[Service]
Type=oneshot
ExecStart=/sbin/hwclock -D --systohc

[Install]
WantedBy=reboot.target halt.target poweroff.target

그래서 결국 전화하게 된 것 같다./sbin/hwclock

관련 정보