diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2003-01-09 00:39:48 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2003-01-09 00:39:48 +0000 |
commit | f47f9cdaf3084e79bc3070e80217e6b4af98728e (patch) | |
tree | 1479662519cb0346ac93ff1fbb9ab066a2bf6c27 /chapter05 | |
parent | 7359e673711fae3923ba5a0bb32b0a6b7b29a1c7 (diff) |
Grammatic changes to Add User and Set Environment sections.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2293 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/adding-user.xml | 5 | ||||
-rw-r--r-- | chapter05/setting-environment.xml | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/chapter05/adding-user.xml b/chapter05/adding-user.xml index f36d5578f..b1a740875 100644 --- a/chapter05/adding-user.xml +++ b/chapter05/adding-user.xml @@ -12,9 +12,8 @@ the following commands to add the new user:</para> <para><screen><userinput>useradd -s /bin/bash -m lfs passwd lfs</userinput></screen></para> -<para>In order to grant the user <emphasis>lfs</emphasis> the proper permissions -to the <filename>$LFS/static</filename> directory, issue the following -command:</para> +<para>In order to grant ownership of the <filename>$LFS/static</filename> +directory to the user <emphasis>lfs</emphasis>, issue the command:</para> <para><screen><userinput>chown -R lfs $LFS/static</userinput></screen></para> diff --git a/chapter05/setting-environment.xml b/chapter05/setting-environment.xml index f143b8b69..9ee0477d4 100644 --- a/chapter05/setting-environment.xml +++ b/chapter05/setting-environment.xml @@ -21,14 +21,13 @@ Other users of the system will be have read permission, and executable permission to directories. It is advisable to keep this setting throughout your LFS installation.</para> -<para>The LFS, LC_ALL, and CC environment variables are also set. The LFS -variable has been explained in previous chapters. LC_ALL is a variable used -for internationalization.</para> +<para>The LFS variable has been explained in previous chapters. LC_ALL is +a variable used for internationalization.</para> <para>The LC_ALL variable controls the localization of certain programs, making their messages follow the conventions of a specified country. If your host system uses a version of <emphasis>glibc</emphasis> older than 2.2.4, -having LC_ALL set to something other than "C" or "POSIX" during Chapter 5 +having LC_ALL set to something other than "C" or "POSIX" during this chapter may cause trouble if you exit the chroot environment and wish to return later. By setting LC_ALL to "POSIX" ("C" is an alias for "POSIX") we ensure that everything will work as expected in the chroot environment.</para> |