made absolute paths for localtime

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1963 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Timothy Bauscher 2002-06-03 17:03:32 +00:00
parent 8a3b9dfbc9
commit c1a7c17f72
2 changed files with 6 additions and 3 deletions

View File

@ -6,6 +6,9 @@
<itemizedlist> <itemizedlist>
<listitem><para>June 3rd, 2002 [timothy] Chapter 06 - Configuring
essential software: made absolute paths for localtime.</para></listitem>
<listitem><para>June 3rd, 2002 [timothy] Chapter 01 - FAQ: edited <listitem><para>June 3rd, 2002 [timothy] Chapter 01 - FAQ: edited
to include reporting typos.</para></listitem> to include reporting typos.</para></listitem>

View File

@ -38,18 +38,18 @@ location of the needed timezone file.</para>
<para> Create the <filename class="directory">/etc/localtime</filename> symlink <para> Create the <filename class="directory">/etc/localtime</filename> symlink
by running:</para> by running:</para>
<para><screen><userinput>ln -sf ../usr/share/zoneinfo/&lt;tzselect's output&gt; /etc/localtime</userinput></screen></para> <para><screen><userinput>ln -sf /usr/share/zoneinfo/&lt;tzselect's output&gt; /etc/localtime</userinput></screen></para>
<para>tzselect's output can be something like <emphasis>EST5EDT</emphasis> or <para>tzselect's output can be something like <emphasis>EST5EDT</emphasis> or
<emphasis>Canada/Eastern</emphasis>.</para> <emphasis>Canada/Eastern</emphasis>.</para>
<para>The symlink you'd create with that information would be:</para> <para>The symlink you'd create with that information would be:</para>
<para><screen><userinput>ln -sf ../usr/share/zoneinfo/EST5EDT /etc/localtime</userinput></screen></para> <para><screen><userinput>ln -sf /usr/share/zoneinfo/EST5EDT /etc/localtime</userinput></screen></para>
<para>Or:</para> <para>Or:</para>
<para><screen><userinput>ln -sf ../usr/share/zoneinfo/Canada/Eastern /etc/localtime </userinput></screen></para> <para><screen><userinput>ln -sf /usr/share/zoneinfo/Canada/Eastern /etc/localtime </userinput></screen></para>
</sect2> </sect2>