Which type of user one should be while doing Chapter 3 of BLFS-6.3 ???
I completed my LFS-6.7 and now doing BLFS build. Now while going through the book BLFS-6.3 in chapter no. 3 there are lot of operations to adjust Bash Shell Startup Files.
I am not clear about what type of user a developer should be while performing those operations. While logged in as a non-priviledged user one can't alter the bash files. And in the case of root login I am confused which root to be used??
The root of already built lfs (having its home directory as /mnt/lfs)
(chroot "$LFS" /usr/bin/env -i \
HOME=/root TERM="$TERM" PS1='\u:\w\$ ' \
PATH=/bin:/usr/bin:/sbin:/usr/sbin \
/bin/bash --login
)
OR
The root of the host system which I am using for the build??
(chroot "$LFS" /tools/bin/env -i \
HOME=/root TERM="$TERM" PS1='\u:\w\$ ' \
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
/tools/bin/bash --login +h
)
Please guide me
BLFS-6.3 used for the build
Ubuntu-10.04 used as host
|