From 399b6eeb4564b7e543740470235b421d6df15274 Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Sat, 3 Aug 2002 18:12:41 +0000 Subject: [PATCH] removed stale bashprofile.xml file git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2043 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/bashprofile.xml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 chapter06/bashprofile.xml diff --git a/chapter06/bashprofile.xml b/chapter06/bashprofile.xml deleted file mode 100644 index eafcc7541..000000000 --- a/chapter06/bashprofile.xml +++ /dev/null @@ -1,31 +0,0 @@ - -Creating $LFS/root/.bash_profile - - -When we have entered the chroot'ed environment in the next section we -want to export a couple of environment variables in that shell such as -PS1, PATH and others variables which are good to have set. For that -purpose we'll create the $LFS/root/.bash_profile file which will be read -by bash when we enter the chroot environment. - -Create a new file $LFS/root/.bash_profile -by running the following. - -cat > $LFS/root/.bash_profile << "EOF" -# Begin /root/.bash_profile - -PS1='\u:\w\$ ' -PATH=/bin:/usr/bin:/sbin:/usr/sbin - -export PS1 PATH - -# End /root/.bash_profile -EOF - -The PS1 variable is an environment variable that controls the appearance -of the command prompt. See the bash man page for details how this variable -is constructed. Additional environment variables, aliases and so forth that are -needed and/or wanted can be added at your own discretion. - - -