System time

From Gentoo Wiki
Jump to:navigation Jump to:search


The system time, backed by the system clock, is used in Unix systems to keep track of time. It can be set by an onboard hardware clock or by an external time server.

Preface

Software clock vs Hardware clock

The system clock, provided by the kernel, is implemented as a simple count of the number of ticks that have transpired since the 1 January 1970 00:00:00 UTC. This is called Unix time.

The hardware clock (also known as real-time clock or RTC) is typically a component on the mainboard. It runs independent of the state of the operating system all the time, also when the computer is shutdown.

UTC time vs localtime

The time for hardware clock can be modified to represent two standards: localtime or UTC time. The localtime is the real time of the time zone including DST. Preferred is UTC time because the system time gets computed by adding the time zone difference and DST. So daylight saving changes get automatically applied and changing the time zone are possible without changing the hardware clock. Exceptions can be made when using a dual-boot system; this is when the other operating system does not support or is not configured for an UTC hardware clock (by default, Windows uses localtime).

Configuration

Time zone

In order to keep time properly, select the proper time zone so the system knows where it is located.

OpenRC

See Timezone (AMD64 Handbook).

systemd

systemd comes with the timedatectl command to manage the time zone:

To check the current zone:

user $timedatectl

To list available zones:

user $timedatectl list-timezones

To change the time zone, e.g. for Germany:

root #timedatectl set-timezone Europe/Berlin

LC_TIME

This environment variable defines formatting of dates and times. For more details see The GNU C Library

System clock

Typically the system clock time is set up by the hardware clock on boot. Alternatively it is possible to manually set the system clock or use a network time server.

The date command can be used to manage the system clock time:

To check the current software clock time:

user $date

To set the system clock, e.g. 12:34, May 6, 2016:

root #date 050612342016

Time server

See the NTP or Chrony article for information concerning the use of time servers.

systemd

systemd comes with the timedatectl command to manage the system clock time:

To check the current software clock time:

user $timedatectl

To set the system clock:

root #timedatectl set-time "2012-12-17 12:30:59"

Hardware clock

To have a hardware clock, the following kernel options must be activated:

KERNEL Necessary kernel options for a hardware clock
    Device Drivers --->
      [*] Real Time Clock --->
            [ ]   Set system time from RTC on startup and resume
            [ ]   Set the RTC time based on NTP synchronization
            [*]   /sys/class/rtc/rtcN (sysfs)
            [*]   /proc/driver/rtc (procfs for rtc0)
            [*]   /dev/rtcN (character devices)
            <*>   PC-style 'CMOS'

At runtime, to check the current hardware clock time:

root #hwclock --show

To set the hardware clock to the current system clock:

root #hwclock --systohc

Syncing the hardware clock and system time

Typically the hardware clock is used to setup the system clock on boot. This can be done by the kernel itself or by a boot service (init script). Also on shutdown the kernel or a service can write the software clock to the hardware clock. This aids the system in having the correct time on boot.

In-kernel method

On a sufficiently modern kernel (3.9 or newer), Linux can be configured to handle setting the system time automatically. To do so, enable the Set system time from RTC on startup and resume (CONFIG_RTC_HCTOSYS) and Set the RTC time based on NTP synchronization (CONFIG_RTC_SYSTOHC) kernel options:

KERNEL Letting the kernel sync the system clock
    Device Drivers --->
      [*] Real Time Clock --->
            [*]   Set system time from RTC on startup and resume
            (rtc0)  RTC used to set the system time
            [*]   Set the RTC time based on NTP synchronization
            (rtc0)  RTC used to synchronize NTP adjustment
            [*]   /sys/class/rtc/rtcN (sysfs)
            [*]   /proc/driver/rtc (procfs for rtc0)
            [*]   /dev/rtcN (character devices)
            <*>   PC-style 'CMOS'

The Set the RTC time based on NTP synchronization kernel option is currently supported by chrony[1], NTP and OpenNTPD since version 5.9p1[2].

To check if the hardware time is updated, install net-misc/adjtimex and run:

root #adjtimex --print | grep status

Bit 6 of the reported number should be unset (0). More information in hwclock man pages (search '11 minute mode').

OpenRC

When using OpenRC the hwclock init script can set the system clock on boot and sync system time to the hardware clock on shutdown. The service is enabled by default and should be disabled in favor of the above mentioned in-kernel method. The hwclock script should not be run when using the kernel's real time clock.

root #rc-update delete hwclock boot
Note
It could however happen hwclock being started as dependency of another rc-service, e.g. sysklogd. In this case the rc-service osclock should be added to the same runlevel as the dependent rc-service.

If however there is a need for using the OpenRC, set both clock_hctosys and clock_systohc to YES in /etc/conf.d/hwclock. By default the service is configured for UTC time standard. To change to localtime add clock="local".

FILE /etc/conf.d/hwclockAdding hardware clock sync
clock_hctosys="YES" 
clock_systohc="YES"
# clock="local"

Restart the hwclock service and have the hardware clock init script run on system boot:

root #rc-service hwclock restart
root #rc-update add hwclock boot

systemd

systemd can be used to set the system clock on boot. Use timedatectl to manage the hardware clock:

To check the current hardware clock time:

user $timedatectl | grep "RTC time"

To set the hardware clock to the current system clock (UTC time standard):

root #timedatectl set-local-rtc 0

To set the hardware clock to the current system clock (localtime time standard):

root #timedatectl set-local-rtc 1

Troubleshooting

Dual booting with Windows

Systems that dual boot with another operating system, such as Windows, generally have a struggle over the hardware clock. To make Windows not adjust the hardware clock back to local time, add the following registry entry.

For 64-bit Windows, open regedit then browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation. Create a new QWORD entry called RealTimeIsUniversal, then set its value to 1. Reboot the system. The clock should now be in UTC time. For 32-bit Windows, follow the 64-bit instructions except use DWORD instead of QWORD.

See also

External resources

References

  1. Comparison of NTP implementations, chrony, March 1st, 2017. Retrieved on July 11th, 2017.
  2. OpenNTPD. OpenNTPD 5.9p1, OpenNTPD, March 29th, 2016. Retrieved on July 11th, 2017.