diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-06-16 11:56:28 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-06-16 11:56:28 +0000 |
commit | 675606bde2ba53946537b42a5aa576692a311621 (patch) | |
tree | af20c20ce3841c16b24d0b9903af6878a4a0f5a6 /chapter04/addinguser.xml | |
parent | 560065f976e371779928dbf8b9428217f3f57331 (diff) | |
parent | 1cd59612d00603c9ce773ad821a15d20bc4fa0b7 (diff) |
Split Chapter 5 into three separate chapters.
Implement a new method of cross-building the LFS tool chain
and other tools to simplify the method of isolating the
new system from the original host. This will be the start of
LFS-10.0.
Move old trunk/BOOK to branches/old-trunk.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11946 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter04/addinguser.xml')
-rw-r--r-- | chapter04/addinguser.xml | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/chapter04/addinguser.xml b/chapter04/addinguser.xml index a26aa55a2..6a163f46b 100644 --- a/chapter04/addinguser.xml +++ b/chapter04/addinguser.xml @@ -11,8 +11,8 @@ <title>Adding the LFS User</title> <para>When logged in as user <systemitem class="username">root</systemitem>, - making a single mistake can damage or destroy a system. Therefore, we - recommend building the packages in the next chapter as an unprivileged user. + making a single mistake can damage or destroy a system. Therefore, + the packages in the next two chapters are built as an unprivileged user. You could use your own user name, but to make it easier to set up a clean working environment, create a new user called <systemitem class="username">lfs</systemitem> as a member of a new group (also named @@ -62,7 +62,7 @@ useradd -s /bin/bash -g lfs -m -k /dev/null lfs</userinput></screen> <varlistentry> <term><parameter>lfs</parameter></term> <listitem> - <para>This is the actual name for the created group and user.</para> + <para>This is the actual name for the created user.</para> </listitem> </varlistentry> @@ -77,10 +77,13 @@ useradd -s /bin/bash -g lfs -m -k /dev/null lfs</userinput></screen> <screen role="nodump"><userinput>passwd lfs</userinput></screen> <para>Grant <systemitem class="username">lfs</systemitem> full access to - <filename class="directory">$LFS/tools</filename> by making + all directories under <filename class="directory">$LFS</filename> by making <systemitem class="username">lfs</systemitem> the directory owner:</para> -<screen><userinput>chown -v lfs $LFS/tools</userinput></screen> +<screen><userinput>chown -v lfs $LFS/{usr,lib,var,etc,bin,sbin,tools} +case $(uname -m) in + x86_64) chown -v lfs $LFS/lib64 ;; +esac</userinput></screen> <para>If a separate working directory was created as suggested, give user <systemitem class="username">lfs</systemitem> ownership of this @@ -95,7 +98,7 @@ useradd -s /bin/bash -g lfs -m -k /dev/null lfs</userinput></screen> <para>Next, login as user <systemitem class="username">lfs</systemitem>. This can be done via a virtual console, through a display manager, or with - the following substitute user command:</para> + the following substitute/switch user command:</para> <screen role="nodump"><userinput>su - lfs</userinput></screen> |