profile.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-scripts-profile">
  8. <?dbhtml filename="profile.html"?>
  9. <title>The Bash Shell Startup Files</title>
  10. <indexterm zone="ch-scripts-profile">
  11. <primary sortas="e-/etc/profile">/etc/profile</primary>
  12. </indexterm>
  13. <para>The shell program <command>/bin/bash</command> (hereafter referred to
  14. as <quote>the shell</quote>) uses a collection of startup files to help
  15. create an environment to run in. Each file has a specific use and may affect
  16. login and interactive environments differently. The files in the <filename
  17. class="directory">/etc</filename> directory provide global settings. If an
  18. equivalent file exists in the home directory, it may override the global
  19. settings.</para>
  20. <para>An interactive login shell is started after a successful login, using
  21. <command>/bin/login</command>, by reading the <filename>/etc/passwd</filename>
  22. file. An interactive non-login shell is started at the command-line (e.g.,
  23. <prompt>[prompt]$</prompt><command>/bin/bash</command>). A non-interactive
  24. shell is usually present when a shell script is running. It is non-interactive
  25. because it is processing a script and not waiting for user input between
  26. commands.</para>
  27. <para>For more information, see <command>info bash</command> under the
  28. <emphasis>Bash Startup Files and Interactive Shells</emphasis> section.</para>
  29. <para>The files <filename>/etc/profile</filename> and
  30. <filename>~/.bash_profile</filename> are read when the shell is
  31. invoked as an interactive login shell.</para>
  32. <para>The base <filename>/etc/profile</filename> below sets some
  33. environment variables necessary for native language support. Setting
  34. them properly results in:</para>
  35. <itemizedlist>
  36. <listitem>
  37. <para>The output of programs translated into the native language</para>
  38. </listitem>
  39. <listitem>
  40. <para>Correct classification of characters into letters, digits and other
  41. classes. This is necessary for <command>bash</command> to properly accept
  42. non-ASCII characters in command lines in non-English locales</para>
  43. </listitem>
  44. <listitem>
  45. <para>The correct alphabetical sorting order for the country</para>
  46. </listitem>
  47. <listitem>
  48. <para>Appropriate default paper size</para>
  49. </listitem>
  50. <listitem>
  51. <para>Correct formatting of monetary, time, and date values</para>
  52. </listitem>
  53. </itemizedlist>
  54. <para>This script also sets the <envar>INPUTRC</envar> environment variable that
  55. makes Bash and Readline use the <filename>/etc/inputrc</filename> file created
  56. earlier.</para>
  57. <para>Replace <replaceable>[ll]</replaceable> below with the two-letter code
  58. for the desired language (e.g., <quote>en</quote>) and
  59. <replaceable>[CC]</replaceable> with the two-letter code for the appropriate
  60. country (e.g., <quote>GB</quote>). <replaceable>[charmap]</replaceable> should
  61. be replaced with the canonical charmap for your chosen locale. Optional
  62. modifiers such as <quote>@euro</quote> may also be present.</para>
  63. <para>The list of all locales supported by Glibc can be obtained by running
  64. the following command:</para>
  65. <screen role="nodump"><userinput>locale -a</userinput></screen>
  66. <para>Charmaps can have a number of aliases, e.g., <quote>ISO-8859-1</quote>
  67. is also referred to as <quote>iso8859-1</quote> and <quote>iso88591</quote>.
  68. Some applications cannot handle the various synonyms correctly (e.g., require
  69. that <quote>UTF-8</quote> is written as <quote>UTF-8</quote>, not
  70. <quote>utf8</quote>), so it is safest in most
  71. cases to choose the canonical name for a particular locale. To determine
  72. the canonical name, run the following command, where <replaceable>[locale
  73. name]</replaceable> is the output given by <command>locale -a</command> for
  74. your preferred locale (<quote>en_GB.iso88591</quote> in our example).</para>
  75. <screen role="nodump"><userinput>LC_ALL=<replaceable>[locale name]</replaceable> locale charmap</userinput></screen>
  76. <para>For the <quote>en_GB.iso88591</quote> locale, the above command
  77. will print:</para>
  78. <screen><computeroutput>ISO-8859-1</computeroutput></screen>
  79. <para>This results in a final locale setting of <quote>en_GB.ISO-8859-1</quote>.
  80. It is important that the locale found using the heuristic above is tested prior
  81. to it being added to the Bash startup files:</para>
  82. <screen role="nodump"><userinput>LC_ALL=[locale name] locale country
  83. LC_ALL=[locale name] locale language
  84. LC_ALL=[locale name] locale charmap
  85. LC_ALL=[locale name] locale int_curr_symbol
  86. LC_ALL=[locale name] locale int_prefix</userinput></screen>
  87. <para>The above commands should print the country and language names, the
  88. character encoding used by the locale, the local currency and the prefix to dial
  89. before the telephone number in order to get into the country. If any of the
  90. commands above fail with a message similar to the one shown below, this means
  91. that your locale was either not installed in Chapter 6 or is not supported by
  92. the default installation of Glibc.</para>
  93. <screen><computeroutput>locale: Cannot set LC_* to default locale: No such file or directory</computeroutput></screen>
  94. <para>If this happens, you should either install the desired locale using the
  95. <command>localedef</command> command, or consider choosing a different locale.
  96. Further instructions assume that there are no such error messages from
  97. Glibc.</para>
  98. <!-- FIXME: the xlib example will became obsolete real soon -->
  99. <para>Some packages beyond LFS may also lack support for your chosen locale. One
  100. example is the X library (part of the X Window System), which outputs the
  101. following error message:</para>
  102. <screen><computeroutput>Warning: locale not supported by Xlib, locale set to C</computeroutput></screen>
  103. <para>Sometimes it is possible to fix this by removing the charmap part of the
  104. locale specification, as long as that does not change the character map that
  105. Glibc associates with the locale (this can be checked by running the
  106. <command>locale charmap</command> command in both locales). For example, one
  107. would have to change &quot;de_DE.ISO-8859-15@euro&quot; to
  108. &quot;de_DE@euro&quot; in order to get this locale recognized by Xlib.</para>
  109. <para>Other packages can also function incorrectly (but may not necessarily
  110. display any error messages) if the locale name does not meet their expectations.
  111. In those cases, investigating how other Linux distributions support your locale
  112. might provide some useful information.</para>
  113. <para>Once the proper locale settings have been determined, create the
  114. <filename>/etc/profile</filename> file:</para>
  115. <screen><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
  116. <literal># Begin /etc/profile
  117. export LANG=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>.<replaceable>[charmap]</replaceable><replaceable>[@modifiers]</replaceable>
  118. export INPUTRC=/etc/inputrc
  119. # End /etc/profile</literal>
  120. EOF</userinput></screen>
  121. <para>The <quote>C</quote> (default) and <quote>en_US</quote> (the recommended
  122. one for United States English users) locales are different. <quote>C</quote>
  123. uses the US-ASCII 7-bit character set, and treats bytes with the high bit set
  124. as invalid characters. That's why, e.g., the <command>ls</command> command
  125. substitutes them with question marks in that locale. Also, an attempt to send
  126. mail with such characters from Mutt or Pine results in non-RFC-conforming
  127. messages being sent (the charset in the outgoing mail is indicated as <quote>unknown
  128. 8-bit</quote>). So you can use the <quote>C</quote> locale only if you are sure that
  129. you will never need 8-bit characters.</para>
  130. <para>UTF-8 based locales are not supported well by many programs. E.g., the
  131. <command>watch</command> program displays only ASCII characters in UTF-8
  132. locales and has no such restriction in traditional 8-bit locales like en_US.
  133. Without patches and/or installing software beyond BLFS, in UTF-8 based locales
  134. you will not be able to do such basic tasks as printing plain-text files from
  135. the command line, recording Windows-readable CDs with filenames containing
  136. non-ASCII characters, viewing ID3v1 tags in MP3 files and so on. Work is in
  137. progress to document and, if possible, fix such problems, see
  138. <ulink url="&blfs-root;view/svn/introduction/locale-issues.html"/>.
  139. It is, however, safe to use UTF-8 based locales if you are going to use only
  140. KDE or GNOME and never open the terminal.</para>
  141. <!-- All abovementioned problems except "watch" have a known fix beyond BLFS -->
  142. </sect1>