setclock.xml 2.4 KB

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