setclock.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>The <command>setclock</command> is run via
  22. <application>udev</application> when the kernel detects the hardware
  23. capability upon boot. It can also be run manually with the stop parameter to
  24. store the system time to the CMOS clock.</para>
  25. <para>If you cannot remember whether or not the hardware clock is set to UTC,
  26. find out by running the <userinput>hwclock --localtime --show</userinput>
  27. command. This will display what the current time is according to the hardware
  28. clock. If this time matches whatever your watch says, then the hardware clock is
  29. set to local time. If the output from <command>hwclock</command> is not local
  30. time, chances are it is set to UTC time. Verify this by adding or subtracting
  31. the proper amount of hours for the timezone to the time shown by
  32. <command>hwclock</command>. For example, if you are currently in the MST
  33. timezone, which is also known as GMT -0700, add seven hours to the local
  34. time.</para>
  35. <para>Change the value of the <envar>UTC</envar> variable below
  36. to a value of <parameter>0</parameter> (zero) if the hardware clock
  37. is <emphasis>not</emphasis> set to UTC time.</para>
  38. <para>Create a new file <filename>/etc/sysconfig/clock</filename> by running
  39. the following:</para>
  40. <screen><userinput>cat &gt; /etc/sysconfig/clock &lt;&lt; "EOF"
  41. <literal># Begin /etc/sysconfig/clock
  42. UTC=1
  43. # Set this to any options you might need to give to hwclock,
  44. # such as machine hardware clock type for Alphas.
  45. CLOCKPARAMS=
  46. # End /etc/sysconfig/clock</literal>
  47. EOF</userinput></screen>
  48. <para>A good hint explaining how to deal with time on LFS is available
  49. at <ulink url="&hints-root;time.txt"/>. It explains issues such as
  50. time zones, UTC, and the <envar>TZ</envar> environment variable.</para>
  51. <note><para>The CLOCKPARAMS and UTC paramaters may be alternatively set
  52. in the <filename>/etc/sysconfig/rc.site</filename> file.</para></note>
  53. </sect1>