diff options
author | Alex Gronenwoud <alex@linuxfromscratch.org> | 2004-02-01 21:48:13 +0000 |
---|---|---|
committer | Alex Gronenwoud <alex@linuxfromscratch.org> | 2004-02-01 21:48:13 +0000 |
commit | c288d971d11a78cde87a5f4c0583ab9a43fbfeba (patch) | |
tree | 7d780a5e793f11d0e3fd12fb28331ac6f2051c20 /chapter05/chapter05.xml | |
parent | 6da8f0dd24273b2f1e8a0dc2004d18d5fa556d5a (diff) |
Turning some ./configures into a single line, taking 72 as max-width.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3202 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/chapter05.xml')
-rw-r--r-- | chapter05/chapter05.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/chapter05/chapter05.xml b/chapter05/chapter05.xml index 2371cb826..53139ae54 100644 --- a/chapter05/chapter05.xml +++ b/chapter05/chapter05.xml @@ -311,10 +311,9 @@ build the packages in this chapter as an unprivileged user. You could of course use your own user name, but to make it easier to set up a clean work environment we'll create a new user <emphasis>lfs</emphasis> and use this one during the installation process. As <emphasis>root</emphasis>, -issue the following commands to add the new user:</para> +issue the following command to add the new user:</para> -<screen><userinput>useradd -s /bin/bash -m -k /dev/null lfs -passwd lfs</userinput></screen> +<screen><userinput>useradd -s /bin/bash -m -k /dev/null lfs</userinput></screen> <para>The meaning of the switches:</para> @@ -328,6 +327,11 @@ directory for <emphasis>lfs</emphasis>, while preventing the files from a possible <filename>/etc/skel</filename> being copied into it.</para></listitem> </itemizedlist> +<para>If you want to be able to log in as <emphasis>lfs</emphasis>, then give +this new user a password:</para> + +<screen><userinput>passwd lfs</userinput></screen> + <para>Now grant this new user <emphasis>lfs</emphasis> full access to <filename class="directory">$LFS/tools</filename> by giving it ownership of the directory:</para> |