setclock.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/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>This setclock script reads the time from your hardware clock, also
  13. known as BIOS or CMOS (Complementry Metal-Oxide Semiconductor) clock, and either converts that time to localtime
  14. using the <filename>/etc/localtime</filename> file (if the hardware clock
  15. is set to GMT) or not (if the hardware clock is already set to localtime).
  16. There is no way to auto-detect whether the hardware clock is set to GMT or
  17. not, so we need to configure that here ourselves.</para>
  18. <para>Change the value of the <emphasis>UTC</emphasis> variable below to a
  19. <emphasis>0</emphasis> (zero) if your hardware clock is not set to GMT
  20. time.</para>
  21. <para>Create a new file <filename>/etc/sysconfig/clock</filename> by running
  22. the following:</para>
  23. <screen><userinput>cat &gt; /etc/sysconfig/clock &lt;&lt; "EOF"</userinput>
  24. # Begin /etc/sysconfig/clock
  25. UTC=1
  26. # End /etc/sysconfig/clock
  27. <userinput>EOF</userinput></screen>
  28. <para>Now, you may want to take a look at a very good hint explaining how we
  29. deal with time on LFS at <ulink url="&hints-root;time.txt"/>.
  30. It explains issues such as time zones, UTC, and the TZ environment
  31. variable.</para>
  32. </sect1>