setclock.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-scripts-setclock">
  7. <title>Configuring the setclock Script</title>
  8. <?dbhtml filename="setclock.html"?>
  9. <indexterm zone="ch-scripts-setclock">
  10. <primary sortas="d-setclock">setclock</primary>
  11. <secondary>configuring</secondary></indexterm>
  12. <para>The <command>setclock</command> script reads the time from the hardware
  13. clock, also known as the BIOS or the Complementary Metal Oxide Semiconductor
  14. (CMOS) clock. If the hardware clock is set to UTC, this script will convert the
  15. hardware clock's time to the local time using the
  16. <filename>/etc/localtime</filename> file (which tells the
  17. <command>hwclock</command> program which timezone the user is in). There is no
  18. way to detect whether or not the hardware clock is set to UTC, so this
  19. needs to be configured manually.</para>
  20. <para>If you cannot remember whether or not the hardware clock is set to UTC,
  21. find out by running the <userinput>hwclock --localtime --show</userinput>
  22. command. This will display what the current time is according to the hardware
  23. clock. If this time matches whatever your watch says, then the hardware clock is
  24. set to local time. If the output from <command>hwclock</command> is not local
  25. time, chances are it is set to UTC time. Verify this by adding or subtracting
  26. the proper amount of hours for the timezone to the time shown by
  27. <command>hwclock</command>. For example, if you are currently in the MST
  28. timezone, which is also known as GMT -0700, add seven hours to the local
  29. time.</para>
  30. <para>Change the value of the <envar>UTC</envar> variable below
  31. to a value of <parameter>0</parameter> (zero) if the hardware clock
  32. is <emphasis>not</emphasis> set to UTC time.</para>
  33. <para>Create a new file <filename>/etc/sysconfig/clock</filename> by running
  34. the following:</para>
  35. <screen><userinput>cat &gt; /etc/sysconfig/clock &lt;&lt; "EOF"
  36. <literal># Begin /etc/sysconfig/clock
  37. UTC=1
  38. # End /etc/sysconfig/clock</literal>
  39. EOF</userinput></screen>
  40. <para>A good hint explaining how to deal with time on LFS is available
  41. at <ulink url="&hints-root;time.txt"/>. It explains issues such as
  42. time zones, UTC, and the <envar>TZ</envar> environment variable.</para>
  43. </sect1>