blob: 5030b170deec643aafc0f15010801dc065b1384c (
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
|
<sect1 id="ch-scripts-setclock">
<title>Configuring the setclock script</title>
<?dbhtml filename="setclock.html" dir="chapter07"?>
<para>This setclock script reads the time from your hardware clock (also
known as BIOS or CMOS clock) and either converts that time to localtime
using the <filename>/etc/localtime</filename> file (if the hardware clock
is set to GMT) or not (if the hardware clock is already set to localtime).
There is no way to auto-detect whether the hardware clock is set to GMT or
not, so we need to configure that here ourselves.</para>
<para>Change the value of the <emphasis>UTC</emphasis> variable below to a
<emphasis>0</emphasis> (zero) if your hardware clock is not set to GMT
time.</para>
<para>Create a new file <filename>/etc/sysconfig/clock</filename> by running
the following:</para>
<screen><userinput>cat > /etc/sysconfig/clock << "EOF"</userinput>
# Begin /etc/sysconfig/clock
UTC=1
# End /etc/sysconfig/clock
<userinput>EOF</userinput></screen>
<para>Now, you may want to take a look at a very good hint explaining how we
deal with time on LFS at <ulink url="&hints-root;time.txt"/>.
It explains issues such as time zones, UTC, and the TZ environment
variable.</para>
</sect1>
|