source: postlfs/config/profile.xml@ 931a597

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 931a597 was 931a597, checked in by DJ Lucas <dj@…>, 7 years ago

Add bash_completion.d directory to bash shell statup files.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18733 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 19.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="postlfs-config-profile" xreflabel="The Bash Shell Startup Files">
9 <?dbhtml filename="profile.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>The Bash Shell Startup Files</title>
17
18 <para>The shell program <filename>/bin/bash</filename> (hereafter
19 referred to as just "the shell") uses a collection of startup files to
20 help create an environment. Each file has a specific use and
21 may affect login and interactive environments differently. The files in
22 the <filename class="directory">/etc</filename> directory generally provide
23 global settings. If an equivalent file exists in your home directory it may
24 override the global settings.</para>
25
26 <para>An interactive login shell is started after a successful login, using
27 <filename>/bin/login</filename>, by reading the
28 <filename>/etc/passwd</filename> file. This shell invocation normally reads
29 <filename>/etc/profile</filename> and its private equivalent
30 <filename>~/.bash_profile</filename> (or <filename>~/.profile</filename> if
31 called as <command>/bin/sh</command>) upon startup.</para>
32
33 <para>An interactive non-login shell is normally started at the command-line
34 using a shell program (e.g.,
35 <prompt>[prompt]$</prompt><command>/bin/bash</command>) or by the
36 <command>/bin/su</command> command. An interactive non-login shell is also
37 started with a terminal program such as <command>xterm</command> or
38 <command>konsole</command> from within a graphical environment. This type of
39 shell invocation normally copies the parent environment and then reads the
40 user's <filename>~/.bashrc</filename> file for additional startup
41 configuration instructions.</para>
42
43 <para>A non-interactive shell is usually present when a shell script is
44 running. It is non-interactive because it is processing a script and not
45 waiting for user input between commands. For these shell invocations, only
46 the environment inherited from the parent shell is used.</para>
47
48 <para> The file <filename>~/.bash_logout</filename> is not used for an
49 invocation of the shell. It is read and executed when a user exits from an
50 interactive login shell.</para>
51
52 <para>Many distributions use <filename>/etc/bashrc</filename> for system wide
53 initialization of non-login shells. This file is usually called from the
54 user's <filename>~/.bashrc</filename> file and is not built directly into
55 <command>bash</command> itself. This convention is followed in this
56 section.</para>
57
58 <para>For more information see <command>info bash</command> --
59 <emphasis role="strong">Nodes: Bash Startup Files and Interactive
60 Shells</emphasis>.</para>
61
62 <note>
63 <para>Most of the instructions below are used to create files located in
64 the <filename class='directory'>/etc</filename> directory structure which
65 requires you to execute the commands as the
66 <systemitem class='username'>root</systemitem> user. If you elect to create
67 the files in user's home directories instead, you should run the commands
68 as an unprivileged user.</para>
69 </note>
70
71 <sect2 id="etc-profile-profile">
72 <title>/etc/profile</title>
73
74 <indexterm zone="postlfs-config-profile etc-profile-profile">
75 <primary sortas="e-etc-profile">/etc/profile</primary>
76 </indexterm>
77
78 <para>Here is a base <filename>/etc/profile</filename>. This file starts by
79 setting up some helper functions and some basic parameters. It specifies some
80 <command>bash</command> history parameters and, for security purposes,
81 disables keeping a permanent history file for the <systemitem
82 class="username">root</systemitem> user. It also sets a
83 default user prompt. It then calls small, single purpose scripts in the
84 <filename class='directory'>/etc/profile.d</filename> directory to provide most
85 of the initialization.</para>
86
87 <para>For more information on the escape sequences you can use for your prompt
88 (i.e., the <envar>PS1</envar> environment variable) see <command>info
89 bash</command> -- <emphasis role="strong">Node: Printing a
90 Prompt</emphasis>.</para>
91
92<screen role="root"><?dbfo keep-together="auto"?><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
93<literal># Begin /etc/profile
94# Written for Beyond Linux From Scratch
95# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
96# modifications by Dagmar d'Surreal &lt;rivyqntzne@pbzpnfg.arg&gt;
97
98# System wide environment variables and startup programs.
99
100# System wide aliases and functions should go in /etc/bashrc. Personal
101# environment variables and startup programs should go into
102# ~/.bash_profile. Personal aliases and functions should go into
103# ~/.bashrc.
104
105# Functions to help us manage paths. Second argument is the name of the
106# path variable to be modified (default: PATH)
107pathremove () {
108 local IFS=':'
109 local NEWPATH
110 local DIR
111 local PATHVARIABLE=${2:-PATH}
112 for DIR in ${!PATHVARIABLE} ; do
113 if [ "$DIR" != "$1" ] ; then
114 NEWPATH=${NEWPATH:+$NEWPATH:}$DIR
115 fi
116 done
117 export $PATHVARIABLE="$NEWPATH"
118}
119
120pathprepend () {
121 pathremove $1 $2
122 local PATHVARIABLE=${2:-PATH}
123 export $PATHVARIABLE="$1${!PATHVARIABLE:+:${!PATHVARIABLE}}"
124}
125
126pathappend () {
127 pathremove $1 $2
128 local PATHVARIABLE=${2:-PATH}
129 export $PATHVARIABLE="${!PATHVARIABLE:+${!PATHVARIABLE}:}$1"
130}
131
132export -f pathremove pathprepend pathappend
133
134# Set the initial path
135export PATH=/bin:/usr/bin
136
137if [ $EUID -eq 0 ] ; then
138 pathappend /sbin:/usr/sbin
139 unset HISTFILE
140fi
141
142# Setup some environment variables.
143export HISTSIZE=1000
144export HISTIGNORE="&amp;:[bf]g:exit"
145
146# Set some defaults for graphical systems
147export XDG_DATA_DIRS=/usr/share/
148export XDG_CONFIG_DIRS=/etc/xdg/
149
150# Setup a red prompt for root and a green one for users.
151NORMAL="\[\e[0m\]"
152RED="\[\e[1;31m\]"
153GREEN="\[\e[1;32m\]"
154if [[ $EUID == 0 ]] ; then
155 PS1="$RED\u [ $NORMAL\w$RED ]# $NORMAL"
156else
157 PS1="$GREEN\u [ $NORMAL\w$GREEN ]\$ $NORMAL"
158fi
159
160for script in /etc/profile.d/*.sh ; do
161 if [ -r $script ] ; then
162 . $script
163 fi
164done
165
166unset script RED GREEN NORMAL
167
168# End /etc/profile</literal>
169EOF</userinput></screen>
170
171 <sect3 id="etc-profile.d">
172 <title>The /etc/profile.d Directory</title>
173
174 <indexterm zone="postlfs-config-profile etc-profile.d">
175 <primary sortas="e-etc-profile.d">/etc/profile.d</primary>
176 </indexterm>
177
178 <para>Now create the <filename class='directory'>/etc/profile.d</filename>
179 directory, where the individual initialization scripts are placed:</para>
180
181<screen role="root"><userinput>install --directory --mode=0755 --owner=root --group=root /etc/profile.d</userinput></screen>
182
183 </sect3>
184
185 <sect3 id="etc-profile.d-bash-completion.sh">
186 <title>/etc/profile.d/bash_completion.sh</title>
187
188 <indexterm zone="postlfs-config-profile etc-profile.d-bash-completion.sh">
189 <primary sortas="e-etc-profile.d-bash-completion.sh">/etc/profile.d/bash_completion.sh</primary>
190 </indexterm>
191
192 <para>This script imports bash completion scripts, installed by many
193 other BLFS packages, to allow TAB command line completion.</para>
194
195<screen role="root"><userinput>cat &gt; /etc/profile.d/bash_completion.sh &lt;&lt; "EOF"
196<literal># Begin /etc/profile.d/bash_completion.sh
197# Import bash completion scripts
198
199for script in /etc/bash_completion.d/*.sh ; do
200 if [ -r $script ] ; then
201 . $script
202 fi
203done
204# End /etc/profile.d/bash_completion.sh</literal>
205EOF</userinput></screen>
206
207 <para>Make sure that the directory exists:</para>
208
209<screen role="root"><userinput>install --directory --mode=0755 --owner=root --group=root /etc/bash_completion.d</userinput></screen>
210
211 </sect3>
212
213
214
215 <sect3 id="etc-profile.d-dircolors.sh">
216 <title>/etc/profile.d/dircolors.sh</title>
217
218 <indexterm zone="postlfs-config-profile etc-profile.d-dircolors.sh">
219 <primary sortas="e-etc-profile.d-dircolors.sh">/etc/profile.d/dircolors.sh</primary>
220 </indexterm>
221
222 <para>This script uses the <filename>~/.dircolors</filename> and
223 <filename>/etc/dircolors</filename> files to control the colors of file names in a
224 directory listing. They control colorized output of things like <command>ls
225 --color</command>. The explanation of how to initialize these files is at the
226 end of this section.</para>
227
228<screen role="root"><userinput>cat &gt; /etc/profile.d/dircolors.sh &lt;&lt; "EOF"
229<literal># Setup for /bin/ls and /bin/grep to support color, the alias is in /etc/bashrc.
230if [ -f "/etc/dircolors" ] ; then
231 eval $(dircolors -b /etc/dircolors)
232fi
233
234if [ -f "$HOME/.dircolors" ] ; then
235 eval $(dircolors -b $HOME/.dircolors)
236fi
237
238alias ls='ls --color=auto'
239alias grep='grep --color=auto'</literal>
240EOF</userinput></screen>
241
242 </sect3>
243
244 <sect3 id="extrapaths.sh">
245 <title>/etc/profile.d/extrapaths.sh</title>
246
247 <indexterm zone="postlfs-config-profile extrapaths.sh">
248 <primary sortas="e-etc-profile.d-extrapaths.sh">/etc/profile.d/extrapaths.sh</primary>
249 </indexterm>
250
251 <para>This script adds some useful paths to the <envar>PATH</envar> and
252 can be used to customize other PATH related environment variables
253 (e.g. LD_LIBRARY_PATH, etc) that may be needed for all users.</para>
254
255<screen role="root"><userinput>cat &gt; /etc/profile.d/extrapaths.sh &lt;&lt; "EOF"
256<literal>if [ -d /usr/local/lib/pkgconfig ] ; then
257 pathappend /usr/local/lib/pkgconfig PKG_CONFIG_PATH
258fi
259if [ -d /usr/local/bin ]; then
260 pathprepend /usr/local/bin
261fi
262if [ -d /usr/local/sbin -a $EUID -eq 0 ]; then
263 pathprepend /usr/local/sbin
264fi
265
266# Set some defaults before other applications add to these paths.
267pathappend /usr/share/man MANPATH
268pathappend /usr/share/info INFOPATH</literal>
269EOF</userinput></screen>
270
271 </sect3>
272
273 <sect3 id="readline.sh">
274 <title>/etc/profile.d/readline.sh</title>
275
276 <indexterm zone="postlfs-config-profile readline.sh">
277 <primary sortas="e-etc-profile.d-readline.sh">/etc/profile.d/readline.sh</primary>
278 </indexterm>
279
280 <para>This script sets up the default <filename>inputrc</filename>
281 configuration file. If the user does not have individual settings, it uses the
282 global file.</para>
283
284<screen role="root"><userinput>cat &gt; /etc/profile.d/readline.sh &lt;&lt; "EOF"
285<literal># Setup the INPUTRC environment variable.
286if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ] ; then
287 INPUTRC=/etc/inputrc
288fi
289export INPUTRC</literal>
290EOF</userinput></screen>
291
292 </sect3>
293
294 <sect3 id="umask.sh">
295 <title>/etc/profile.d/umask.sh</title>
296
297 <indexterm zone="postlfs-config-profile umask.sh">
298 <primary sortas="e-etc-profile.d-umask.sh">/etc/profile.d/umask.sh</primary>
299 </indexterm>
300
301 <para>Setting the <command>umask</command> value is important for security.
302 Here the default group write permissions are turned off for system users and when
303 the user name and group name are not the same.</para>
304
305<screen role="root"><userinput>cat &gt; /etc/profile.d/umask.sh &lt;&lt; "EOF"
306<literal># By default, the umask should be set.
307if [ "$(id -gn)" = "$(id -un)" -a $EUID -gt 99 ] ; then
308 umask 002
309else
310 umask 022
311fi</literal>
312EOF</userinput></screen>
313
314 </sect3>
315
316<!-- This is handled in the Xorg section of the book
317 <sect3 id="X.sh">
318 <title>/etc/profile.d/X.sh</title>
319
320 <indexterm zone="postlfs-config-profile X.sh">
321 <primary sortas="e-etc-profile.d-X.sh">/etc/profile.d/X.sh</primary>
322 </indexterm>
323
324 <para>If <application>X</application> is installed, the <envar>PATH</envar>
325 and <envar>PKG_CONFIG_PATH</envar> variables are also updated.</para>
326
327<screen role="root"><userinput>cat &gt; /etc/profile.d/X.sh &lt;&lt; "EOF"
328<literal>if [ -x /usr/X11R6/bin/X ]; then
329 pathappend /usr/X11R6/bin
330fi
331if [ -d /usr/X11R6/lib/pkgconfig ] ; then
332 pathappend /usr/X11R6/lib/pkgconfig PKG_CONFIG_PATH
333fi</literal>
334EOF</userinput></screen>
335
336 </sect3>
337-->
338 <sect3 id="i18n.sh">
339 <title>/etc/profile.d/i18n.sh</title>
340
341 <indexterm zone="postlfs-config-profile i18n.sh">
342 <primary sortas="e-etc-profile.d-i18n.sh">/etc/profile.d/i18n.sh</primary>
343 </indexterm>
344
345 <para>This script sets an environment variable necessary for
346 native language support. A full discussion on determining this
347 variable can be found on the <ulink
348 url="&lfs-root;/chapter07/profile.html">LFS Bash Shell
349 Startup Files</ulink> page.</para>
350
351<screen role="root"><userinput>cat &gt; /etc/profile.d/i18n.sh &lt;&lt; "EOF"
352<literal># Set up i18n variables
353export LANG=<replaceable>&lt;ll&gt;</replaceable>_<replaceable>&lt;CC&gt;</replaceable>.<replaceable>&lt;charmap&gt;</replaceable><replaceable>&lt;@modifiers&gt;</replaceable></literal>
354EOF</userinput></screen>
355
356 </sect3>
357
358 <sect3>
359 <title>Other Initialization Values</title>
360
361 <para>Other initialization can easily be added to the
362 <filename>profile</filename> by adding additional scripts to the
363 <filename class='directory'>/etc/profile.d</filename> directory.</para>
364
365 </sect3>
366
367 </sect2>
368
369 <sect2 id="etc-bashrc-profile">
370 <title>/etc/bashrc</title>
371
372 <indexterm zone="postlfs-config-profile etc-bashrc-profile">
373 <primary sortas="e-etc-bashrc">/etc/bashrc</primary>
374 </indexterm>
375
376 <para>Here is a base <filename>/etc/bashrc</filename>. Comments in the
377 file should explain everything you need.</para>
378
379<screen role="root"><userinput>cat &gt; /etc/bashrc &lt;&lt; "EOF"
380<literal># Begin /etc/bashrc
381# Written for Beyond Linux From Scratch
382# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
383# updated by Bruce Dubbs &lt;bdubbs@&lfs-domainname;&gt;
384
385# System wide aliases and functions.
386
387# System wide environment variables and startup programs should go into
388# /etc/profile. Personal environment variables and startup programs
389# should go into ~/.bash_profile. Personal aliases and functions should
390# go into ~/.bashrc
391
392# Provides colored /bin/ls and /bin/grep commands. Used in conjunction
393# with code in /etc/profile.
394
395alias ls='ls --color=auto'
396alias grep='grep --color=auto'
397
398# Provides prompt for non-login shells, specifically shells started
399# in the X environment. [Review the LFS archive thread titled
400# PS1 Environment Variable for a great case study behind this script
401# addendum.]
402
403NORMAL="\[\e[0m\]"
404RED="\[\e[1;31m\]"
405GREEN="\[\e[1;32m\]"
406if [[ $EUID == 0 ]] ; then
407 PS1="$RED\u [ $NORMAL\w$RED ]# $NORMAL"
408else
409 PS1="$GREEN\u [ $NORMAL\w$GREEN ]\$ $NORMAL"
410fi
411
412unset RED GREEN NORMAL
413
414# End /etc/bashrc</literal>
415EOF</userinput></screen>
416
417 </sect2>
418
419 <sect2 id="bash_profile-profile">
420 <title>~/.bash_profile</title>
421
422 <indexterm zone="postlfs-config-profile bash_profile-profile">
423 <primary sortas="e-AA.bash_profile">~/.bash_profile</primary>
424 </indexterm>
425
426 <para>Here is a base <filename>~/.bash_profile</filename>. If you want each
427 new user to have this file automatically, just change the output of
428 the command to <filename>/etc/skel/.bash_profile</filename> and check the
429 permissions after the command is run. You can then copy
430 <filename>/etc/skel/.bash_profile</filename> to the home directories of already
431 existing users, including <systemitem class="username">root</systemitem>,
432 and set the owner and group appropriately.</para>
433
434<screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
435<literal># Begin ~/.bash_profile
436# Written for Beyond Linux From Scratch
437# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
438# updated by Bruce Dubbs &lt;bdubbs@&lfs-domainname;&gt;
439
440# Personal environment variables and startup programs.
441
442# Personal aliases and functions should go in ~/.bashrc. System wide
443# environment variables and startup programs are in /etc/profile.
444# System wide aliases and functions are in /etc/bashrc.
445
446if [ -f "$HOME/.bashrc" ] ; then
447 source $HOME/.bashrc
448fi
449
450if [ -d "$HOME/bin" ] ; then
451 pathprepend $HOME/bin
452fi
453
454# Having . in the PATH is dangerous
455#if [ $EUID -gt 99 ]; then
456# pathappend .
457#fi
458
459# End ~/.bash_profile</literal>
460EOF</userinput></screen>
461
462 </sect2>
463
464 <sect2 id="dot_profile-profile">
465 <title>~/.profile</title>
466
467 <indexterm zone="postlfs-config-profile dot_profile-profile">
468 <primary sortas="e-AA.dot_profile">~/.profile</primary>
469 </indexterm>
470
471 <para>Here is a base <filename>~/.profile</filename>. The comments and
472 instructions for using <filename class="directory">/etc/skel</filename> for
473 <filename>.bash_profile</filename> above also apply here. Only the target
474 file names are different.</para>
475
476<screen><userinput>cat &gt; ~/.profile &lt;&lt; "EOF"
477<literal># Begin ~/.profile
478# Personal environment variables and startup programs.
479
480if [ -d "$HOME/bin" ] ; then
481 pathprepend $HOME/bin
482fi
483
484# End ~/.profile</literal>
485EOF</userinput></screen>
486
487 </sect2>
488
489 <sect2 id="bashrc-profile">
490 <title>~/.bashrc</title>
491
492 <indexterm zone="postlfs-config-profile bashrc-profile">
493 <primary sortas="e-AA.bashrc">~/.bashrc</primary>
494 </indexterm>
495
496 <para>Here is a base <filename>~/.bashrc</filename>.</para>
497
498<screen><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
499<literal># Begin ~/.bashrc
500# Written for Beyond Linux From Scratch
501# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
502
503# Personal aliases and functions.
504
505# Personal environment variables and startup programs should go in
506# ~/.bash_profile. System wide environment variables and startup
507# programs are in /etc/profile. System wide aliases and functions are
508# in /etc/bashrc.
509
510if [ -f "/etc/bashrc" ] ; then
511 source /etc/bashrc
512fi
513
514# End ~/.bashrc</literal>
515EOF</userinput></screen>
516
517 </sect2>
518
519
520 <sect2 id="bash_logout-profile">
521 <title>~/.bash_logout</title>
522
523 <indexterm zone="postlfs-config-profile bash_logout-profile">
524 <primary sortas="e-AA.bash_logout">~/.bash_logout</primary>
525 </indexterm>
526
527 <para>This is an empty <filename>~/.bash_logout</filename> that can be used as
528 a template. You will notice that the base <filename>~/.bash_logout</filename>
529 does not include a <userinput>clear</userinput> command. This is because the
530 clear is handled in the <filename>/etc/issue</filename> file.</para>
531
532<screen><userinput>cat &gt; ~/.bash_logout &lt;&lt; "EOF"
533<literal># Begin ~/.bash_logout
534# Written for Beyond Linux From Scratch
535# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
536
537# Personal items to perform on logout.
538
539# End ~/.bash_logout</literal>
540EOF</userinput></screen>
541
542 </sect2>
543
544
545 <sect2 id="etc-dircolors-profile">
546 <title>/etc/dircolors</title>
547
548 <indexterm zone="postlfs-config-profile etc-dircolors-profile">
549 <primary sortas="e-etc-dircolors">/etc/dircolors</primary>
550 </indexterm>
551
552 <indexterm zone="postlfs-config-profile etc-dircolors-profile">
553 <primary sortas="e-AA.dircolors">~/.dircolors</primary>
554 </indexterm>
555
556 <para> If you want to use the <filename>dircolors</filename> capability,
557 then run the following command. The
558 <filename class="directory">/etc/skel</filename> setup steps shown above
559 also can be used here to provide a <filename>~/.dircolors</filename> file
560 when a new user is set up. As before, just change the output file name on
561 the following command and assure the permissions, owner, and group are
562 correct on the files created and/or copied.</para>
563
564<screen role="root"><userinput>dircolors -p > /etc/dircolors</userinput></screen>
565
566 <para>If you wish to customize the colors used for different file types,
567 you can edit the <filename>/etc/dircolors</filename> file. The instructions
568 for setting the colors are embedded in the file.</para>
569
570
571 <para>Finally, Ian Macdonald has written an excellent collection of tips and
572 tricks to enhance your shell environment. You can read it online at
573 <ulink url="http://www.caliban.org/bash/index.shtml"/>.</para>
574
575 </sect2>
576
577</sect1>
Note: See TracBrowser for help on using the repository browser.