profile.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-scripts-profile">
  7. <title>The Bash Shell Startup Files</title>
  8. <?dbhtml filename="profile.html"?>
  9. <indexterm zone="ch-scripts-profile"><primary sortas="e-/etc/profile">/etc/profile</primary></indexterm>
  10. <para>The shell program <command>/bin/bash</command> (hereafter
  11. referred to as <quote>the shell</quote>) uses a collection of startup
  12. files to help create an environment to run in. Each file has a
  13. specific use and may affect login and interactive environments
  14. differently. The files in the <filename
  15. class="directory">/etc</filename> directory provide global settings.
  16. If an equivalent file exists in the home directory, it may override
  17. the global settings.</para>
  18. <para>An interactive login shell is started after a successful login,
  19. using <command>/bin/login</command>, by reading the
  20. <filename>/etc/passwd</filename> file. An interactive non-login shell
  21. is started at the command-line (e.g.,
  22. <prompt>[prompt]$</prompt><command>/bin/bash</command>). A
  23. non-interactive shell is usually present when a shell script is
  24. running. It is non-interactive because it is processing a script and
  25. not waiting for user input between commands.</para>
  26. <para>For more information, see <command>info bash</command> - Nodes:
  27. Bash Startup Files and Interactive Shells.</para>
  28. <para>The files <filename>/etc/profile</filename> and
  29. <filename>~/.bash_profile</filename> are read when the shell is
  30. invoked as an interactive login shell.</para>
  31. <para>A base <filename>/etc/profile</filename> below sets some
  32. environment variables necessary for native language support. Setting
  33. them properly results in:</para>
  34. <itemizedlist>
  35. <listitem><para>The output of programs translated into the native
  36. language</para></listitem>
  37. <listitem><para>Correct classification of characters into letters,
  38. digits and other classes. This is necessary for Bash to properly
  39. accept non-ASCII characters in command lines in non-English
  40. locales</para></listitem>
  41. <listitem><para>The correct alphabetical sorting order for the
  42. country</para></listitem>
  43. <listitem><para>Appropriate default paper size</para></listitem>
  44. <listitem><para>Correct formatting of monetary, time, and date
  45. values</para></listitem>
  46. </itemizedlist>
  47. <para>This script also sets the <envar>INPUTRC</envar> environment variable that
  48. makes Bash and Readline use the <filename>/etc/inputrc</filename> file created
  49. earlier.</para>
  50. <para>Replace <replaceable>[ll]</replaceable> below with the
  51. two-letter code for the desired language (e.g., <quote>en</quote>) and
  52. <replaceable>[CC]</replaceable> with the two-letter code for the
  53. appropriate country (e.g., <quote>GB</quote>).
  54. <replaceable>[charmap]</replaceable> should be replaced with the
  55. canonical charmap for your chosen locale.</para>
  56. <para>The list of all locales supported by Glibc can be obtained by running
  57. the following command:</para>
  58. <screen><userinput>locale -a</userinput></screen>
  59. <para>Locales can have a number of synonyms, e.g. <quote>ISO-8859-1</quote> is
  60. also referred to as <quote>iso8859-1</quote> and <quote>iso88591</quote>.
  61. Some applications cannot handle the various synonyms correctly, so it is safest
  62. to choose the canonical name for a particular locale. To determine the
  63. canonical name, run the following command, where
  64. <replaceable>[locale name]</replaceable> is the output given by
  65. <command>locale -a</command> for your preferred locale
  66. (<quote>en_GB.iso88591</quote> in our example).</para>
  67. <screen><userinput>LC_ALL=<replaceable>[locale name]</replaceable> locale charmap</userinput></screen>
  68. <para>For the <quote>en_GB.iso88591</quote> locale, the above command
  69. will print:</para>
  70. <screen>ISO-8859-1</screen>
  71. <para>This results in in a final locale setting of <quote>en_GB.ISO-8859-1</quote>.</para>
  72. <para>Once the proper locale settings have been determined, create the
  73. <filename>/etc/profile</filename> file:</para>
  74. <screen><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
  75. <literal># Begin /etc/profile
  76. export LANG=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>.<replaceable>[charmap]</replaceable>
  77. export INPUTRC=/etc/inputrc
  78. # End /etc/profile</literal>
  79. EOF</userinput></screen>
  80. <note><para>The <quote>C</quote> (default) and <quote>en_US</quote>
  81. (the recommended one for United States English users) locales are
  82. different.</para></note>
  83. <para>Setting the keyboard layout, screen font, and
  84. locale-related environment variables are the only internationalization
  85. steps needed to support locales that use ordinary single-byte
  86. encodings and left-to-right writing direction. More complex cases
  87. (including UTF-8 based locales) require additional steps and
  88. additional patches because many applications tend to not work properly
  89. under such conditions. These steps and patches are not included in
  90. the LFS book and such locales are not supported by LFS in any
  91. way.</para>
  92. </sect1>