source: BOOK/final-preps/addinguser.xml @ a4b892f

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since a4b892f was a4b892f, checked in by Joe Ciccone <jciccone@…>, 16 years ago

Change the command that creates the clfs user to not include -k /dev/null. Newer versions of Shadow (4.1.2) apparently any argument passed to -k to be a directory.

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-final-preps-addinguser">
9  <?dbhtml filename="addinguser.html"?>
10
11  <title>Adding the CLFS User</title>
12
13  <para>When logged in as user <systemitem class="username">root</systemitem>,
14  making a single mistake can damage or destroy a system. Therefore, we
15  recommend building the packages as an unprivileged user.
16  You could use your own user name, but to make it easier to set up a clean
17  work environment, create a new user called <systemitem
18  class="username">clfs</systemitem> as a member of a new group (also named
19  <systemitem class="groupname">clfs</systemitem>) and use this user during
20  the installation process. As <systemitem class="username">root</systemitem>,
21  issue the following commands to add the new user:</para>
22
23<screen><userinput>groupadd clfs
24useradd -s /bin/bash -g clfs -d /home/clfs clfs
25mkdir -pv /home/clfs
26chown -v clfs:clfs /home/clfs</userinput></screen>
27
28  <variablelist>
29    <title>The meaning of the command line options:</title>
30
31    <varlistentry>
32      <term><parameter>-s /bin/bash</parameter></term>
33      <listitem>
34        <para>This makes <command>bash</command> the default shell for
35        user <systemitem class="username">clfs</systemitem>.</para>
36      </listitem>
37    </varlistentry>
38
39    <varlistentry>
40      <term><parameter>-g clfs</parameter></term>
41      <listitem>
42        <para>This option adds user <systemitem class="username">clfs</systemitem>
43        to group <systemitem class="groupname">clfs</systemitem>.</para>
44      </listitem>
45    </varlistentry>
46
47    <varlistentry>
48      <term><parameter>-m</parameter></term>
49      <listitem>
50        <para>This creates a home directory for <systemitem
51        class="username">clfs</systemitem>.</para>
52      </listitem>
53    </varlistentry>
54
55    <varlistentry>
56      <term><parameter>-k /dev/null</parameter></term>
57      <listitem>
58        <para>This parameter prevents possible copying of files from a skeleton
59        directory (default is <filename class="directory">/etc/skel</filename>)
60        by changing the input location to the special null device.</para>
61      </listitem>
62    </varlistentry>
63
64    <varlistentry>
65      <term><parameter>clfs</parameter></term>
66      <listitem>
67        <para>This is the actual name for the created group and user.</para>
68      </listitem>
69    </varlistentry>
70
71  </variablelist>
72
73  <para>To log in as <systemitem class="username">clfs</systemitem> (as
74  opposed to switching to user <systemitem class="username">clfs</systemitem>
75  when logged in as <systemitem class="username">root</systemitem>, which
76  does not require the <systemitem class="username">clfs</systemitem> user
77  to have a password), give <systemitem class="username">clfs</systemitem>
78  a password:</para>
79
80<screen><userinput>passwd clfs</userinput></screen>
81
82  <para>Grant <systemitem class="username">clfs</systemitem> full access to
83  <filename class="directory">${CLFS}/cross-tools</filename> and
84  <filename class="directory">${CLFS}/tools</filename> by making <systemitem
85  class="username">clfs</systemitem> the directorys' owner:</para>
86
87<screen><userinput>chown -v clfs ${CLFS}/tools
88chown -v clfs ${CLFS}/cross-tools</userinput></screen>
89
90  <para>If a separate working directory was created as suggested,
91  give user <systemitem class="username">clfs</systemitem> ownership of this directory:</para>
92
93<screen><userinput>chown -v clfs ${CLFS}/sources</userinput></screen>
94
95  <para>Next, login as user <systemitem class="username">clfs</systemitem>.
96  This can be done via a virtual console, through a display manager, or
97  with the following substitute user command:</para>
98
99<screen><userinput>su - clfs</userinput></screen>
100
101  <para>The <quote><parameter>-</parameter></quote> instructs
102  <command>su</command> to start a login shell as opposed to a non-login
103  shell. The difference between these two types of shells can be found
104  in detail in <filename>bash(1)</filename> and <command>info
105  bash</command>.</para>
106
107</sect1>
Note: See TracBrowser for help on using the repository browser.