setclock.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 clock,
  13. 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 hardware clock's time to
  15. the local time using the <filename>/etc/localtime</filename> file
  16. (which tells the <command>hwclock</command> program which timezone the
  17. user is in). There is no way to
  18. detect whether or not the hardware clock is set to UTC time, so this
  19. needs to be manually configured.</para>
  20. <para>If you cannot remember whether or not the hardware
  21. clock is set to UTC time, find out by running
  22. the <userinput>hwclock --localtime --show</userinput> command. This will tell
  23. what the current time is according to the hardware clock. If this time
  24. matches whatever your watch says, then the hardware clock is set to
  25. local time. If the output from <command>hwclock</command> is not local
  26. time, chances are it is set to UTC time. Verify this by adding or
  27. subtracting the proper amount of hours for the timezone to this
  28. <command>hwclock</command> time. For example, if you live in the MST
  29. timezone, which is also known as GMT -0700, add seven hours to the local
  30. time. Then, account for Daylight Savings Time, which requires
  31. subtracting an hour (or only add six in the first place) during the summer
  32. months.</para>
  33. <para>Change the value of the <envar>UTC</envar> variable below
  34. to a value of <parameter>0</parameter> (zero) if the hardware clock
  35. is <emphasis>not</emphasis> set to UTC time.</para>
  36. <para>Create a new file <filename>/etc/sysconfig/clock</filename> by running
  37. the following:</para>
  38. <screen><userinput>cat &gt; /etc/sysconfig/clock &lt;&lt; "EOF"
  39. <literal># Begin /etc/sysconfig/clock
  40. UTC=1
  41. # End /etc/sysconfig/clock</literal>
  42. EOF</userinput></screen>
  43. <para>A good hint explaining how to deal with time on LFS is available
  44. at <ulink url="&hints-root;time.txt"/>. It explains issues such as
  45. time zones, UTC, and the <envar>TZ</envar> environment variable.</para>
  46. </sect1>