profile.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 only sets some
  33. environment variables necessary for Bash to accept keystrokes properly,
  34. even in non-English locale. Replace <replaceable>[ll]</replaceable> with the
  35. two-letter code for your language (e.g., <quote>en</quote>) and
  36. <replaceable>[CC]</replaceable> with the two-letter code for your country
  37. (e.g., <quote>GB</quote>). Also you may need to specify
  38. (and this is actually the preferred form) your
  39. character encoding (e.g. <quote>iso8859-1</quote>) after a dot (so that the result
  40. is <quote>en_GB.iso8859-1</quote>).
  41. Issue the following command for more information:</para>
  42. <screen><userinput>man 3 setlocale</userinput></screen>
  43. <para>The list of all locales supported by Glibc can be obtained by running
  44. the following command:</para>
  45. <screen><userinput>locale -a</userinput></screen>
  46. <para>Now, when you are sure about your locale settings, create the
  47. <filename>/etc/profile</filename> file:</para>
  48. <screen><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
  49. # Begin /etc/profile
  50. # Written for Linux From Scratch
  51. # by Alexander E. Patrakov
  52. export LC_ALL=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
  53. export LANG=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
  54. export INPUTRC=/etc/inputrc
  55. # End /etc/profile
  56. EOF</userinput></screen>
  57. <para>Setting the keyboard layout,
  58. the screen font and the locale-related environment variables
  59. are the only internationalization steps needed to support
  60. locales that use ordinary single-byte encodings and left-to-right
  61. writing direction. More complex cases (including UTF-8 based locales)
  62. require additional steps and additional patches because many applications
  63. tend to break in such conditions. Because of too little educational
  64. value for a typical reader, these steps and patches are not included
  65. in the LFS book and such locales are not supported by LFS in any way.
  66. </para>
  67. </sect1>