source: postlfs/config/profile-systemd.xml@ 7fb40ca

systemd-13485
Last change on this file since 7fb40ca was d254cfb, checked in by Christopher Gregory <cjg@…>, 10 years ago

Corrected xdg information in profile, fixed download link for gdk-pixbuf.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@14902 af4574ff-66df-0310-9fd7-8a98e5e911e0

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