aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07/clock.xml
blob: a4f204f1864df62911834c10e3f1f269a5c7c54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  <!ENTITY % general-entities SYSTEM "../general.ent">
  %general-entities;
]>

<sect1 id="ch-scripts-clock">
  <?dbhtml filename="clock.html"?>

  <title>Configuring the system clock</title>

  <indexterm zone="ch-scripts-clock">
    <primary sortas="d-clock">clock</primary>
  <secondary>configuring</secondary></indexterm>

  <para>This section discusses how to configure the
  <command>systemd-timedated</command> system service, which configures
  system clock and timezone.</para>

  <para>If you cannot remember whether or not the hardware clock is set to UTC,
  find out by running the <userinput>hwclock --localtime --show</userinput>
  command. This will display what the current time is according to the hardware
  clock. If this time matches whatever your watch says, then the hardware clock is
  set to local time. If the output from <command>hwclock</command> is not local
  time, chances are it is set to UTC time. Verify this by adding or subtracting
  the proper amount of hours for the timezone to the time shown by
  <command>hwclock</command>. For example, if you are currently in the MST
  timezone, which is also known as GMT -0700, add seven hours to the local
  time.</para>

  <para><command>systemd-timedated</command> reads <filename>/etc/adjtime</filename>,
  and depending on the contents of the file, it sets the clock to either UTC or
  local time.</para>

  <para>Create the <filename>/etc/adjtime</filename> file with the following contents
  if your hardware clock is set to local time:</para>

<screen role="nodump"><userinput>cat &gt; /etc/adjtime &lt;&lt; "EOF"
<literal>0.0 0 0.0
0
LOCAL</literal>
EOF</userinput></screen>

  <para>If <filename>/etc/adjtime</filename> isn't present at first boot,
  <command>systemd-timedated</command> will assume that hardware clock is
  set to UTC and adjust the file according to that.</para>

  <para>You can also use the <command>timedatectl</command> utility to tell
  <command>systemd-timedated</command> if your hardware clock is set to
  UTC or local time:</para>

<screen role="nodump"><userinput>timedatectl set-local-rtc 1</userinput></screen>

  <para><command>timedatectl</command> can also be used to change system time and
  time zone.</para>

  <para>To change your current system time, issue:</para>

<screen role="nodump"><userinput>timedatectl set-time YYYY:MM:DD HH:MM:SS</userinput></screen>

  <para>Hardware clock will also be updated accordingly.</para>

  <para>To change your current time zone, issue:</para>

<screen role="nodump"><userinput>timedatectl set-timezone TIMEZONE</userinput></screen>

  <para>You can get list of available time zones by running:</para>

<screen role="nodump"><userinput>timedatectl list-timezones</userinput></screen>

  <note><para>Please note that <command>timedatectl</command> command can
  be used only on a system booted with Systemd.</para></note>

</sect1>