profile.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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-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 just <quote>the shell</quote>) uses a collection of startup files to
  12. help create an environment to run in. Each file has a specific use and
  13. may affect login and interactive environments differently. The files in
  14. the <filename class="directory">/etc</filename> directory generally provide global
  15. settings. If an equivalent file exists in your home directory it may
  16. override the global settings.
  17. </para>
  18. <para>An interactive login shell is started after a successful login, using
  19. <command>/bin/login</command>, by reading the
  20. <filename>/etc/passwd</filename> file. An
  21. interactive non-login shell is started at the command-line (e.g.,
  22. <prompt>[prompt]$</prompt><command>/bin/bash</command>). A non-interactive
  23. shell is usually present when a shell script is running. It is non-interactive
  24. because it is processing a script and not waiting for user input between
  25. commands.</para>
  26. <para>For more information see <command>info bash</command> --
  27. <emphasis role="strong">Nodes: Bash Startup Files and Interactive
  28. Shells.</emphasis></para>
  29. <para>The files <filename>/etc/profile</filename> and
  30. <filename>~/.bash_profile</filename> are read when the shell is invoked
  31. as an interactive login shell.</para>
  32. <para>A base <filename>/etc/profile</filename> created below sets some
  33. environment variables necessary for native language support. By setting them
  34. properly, you get:
  35. </para>
  36. <itemizedlist>
  37. <listitem><para>the output of programs translated into your native
  38. language;</para></listitem>
  39. <listitem><para>correct classification of characters into letters, digits and
  40. other classes - this is necessary for Bash to accept non-ASCII characters
  41. in command lines properly in non-English locales;</para></listitem>
  42. <listitem><para>the alphabetical sorting order correct for your
  43. country;</para></listitem>
  44. <listitem><para>good default paper size;</para></listitem>
  45. <listitem><para>correct formatting of monetary, time and date
  46. values.</para></listitem>
  47. </itemizedlist>
  48. <para>This script also sets the INPUTRC environment variable that makes
  49. <application>Bash</application> and <application>Readline</application> use
  50. the <filename>/etc/inputrc</filename> file we created earlier.</para>
  51. <para>Replace <replaceable>[ll]</replaceable> below with the
  52. two-letter code for your language (e.g., <quote>en</quote>) and
  53. <replaceable>[CC]</replaceable> with the two-letter code for your country
  54. (e.g., <quote>GB</quote>). Also you may need to specify
  55. (and this is actually the preferred form) your
  56. character encoding (e.g. <quote>iso8859-1</quote>) after a dot
  57. (so that the result is <quote>en_GB.iso8859-1</quote>).
  58. Issue the following command for more information:</para>
  59. <screen><userinput>man 3 setlocale</userinput></screen>
  60. <para>The list of all locales supported by Glibc can be obtained by running
  61. the following command:</para>
  62. <screen><userinput>locale -a</userinput></screen>
  63. <para>Now, when you are sure about your locale settings, create the
  64. <filename>/etc/profile</filename> file:</para>
  65. <screen><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
  66. # Begin /etc/profile
  67. export LC_ALL=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
  68. export LANG=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
  69. export INPUTRC=/etc/inputrc
  70. # End /etc/profile
  71. EOF</userinput></screen>
  72. <note><para>The <quote>C</quote> (default) and <quote>en_US</quote>
  73. (the recommended one for US English users) locales are
  74. different.</para></note>
  75. <para>Setting the keyboard layout,
  76. the screen font and the locale-related environment variables
  77. are the only internationalization steps needed to support
  78. locales that use ordinary single-byte encodings and left-to-right
  79. writing direction. More complex cases (including UTF-8 based locales)
  80. require additional steps and additional patches because many applications
  81. tend to break in such conditions. Because of too little educational
  82. value for a typical reader, these steps and patches are not included
  83. in the LFS book and such locales are not supported by LFS in any way.
  84. </para>
  85. </sect1>