source: BOOK/final-preps/common/addinguser.xml @ f6cb7c6

clfs-3.0.0-sysvinitsysvinit
Last change on this file since f6cb7c6 was f6cb7c6, checked in by Chris Staub <chris@…>, 10 years ago

Specify root for more commands

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[3f8be484]1<?xml version="1.0" encoding="ISO-8859-1"?>
[aa18ac0]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[01817d3]4  <!ENTITY % general-entities SYSTEM "../../general.ent">
[3f8be484]5  %general-entities;
6]>
7
8<sect1 id="ch-final-preps-addinguser">
9  <?dbhtml filename="addinguser.html"?>
10
[95112ed]11  <title>Adding the CLFS User</title>
[3f8be484]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
[95112ed]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
[3f8be484]20  the installation process. As <systemitem class="username">root</systemitem>,
21  issue the following commands to add the new user:</para>
22
[95112ed]23<screen><userinput>groupadd clfs
[a4b892f]24useradd -s /bin/bash -g clfs -d /home/clfs clfs
25mkdir -pv /home/clfs
26chown -v clfs:clfs /home/clfs</userinput></screen>
[3f8be484]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
[95112ed]35        user <systemitem class="username">clfs</systemitem>.</para>
[a1ffe3e]36
37        <important>
38          <para>The build instructions assume that the <command>bash</command>
39          shell is in use.</para>
40        </important>
41
[3f8be484]42      </listitem>
43    </varlistentry>
44
45    <varlistentry>
[95112ed]46      <term><parameter>-g clfs</parameter></term>
[3f8be484]47      <listitem>
[fa9b711]48        <para>This option adds the new user to the
49        <systemitem class="groupname">clfs</systemitem> group.</para>
50      </listitem>
51    </varlistentry>
52
53    <varlistentry>
54      <term><parameter>-d /home/clfs</parameter></term>
55      <listitem>
56        <para>This option sets the user's home directory, but does not create
57        it. We could have used <option>-m</option> to tell
58        <command>useradd</command> to create the directory as well, but this
59        would also copy whatever is in the host system's
60        <filename class="directory">/etc/skel</filename> directory into the new
61        user's home. We would prefer to have a clean user environment, so we
62        just create an empty directory after adding the user.</para>
[3f8be484]63      </listitem>
64    </varlistentry>
65
66    <varlistentry>
[95112ed]67      <term><parameter>clfs</parameter></term>
[3f8be484]68      <listitem>
69        <para>This is the actual name for the created group and user.</para>
70      </listitem>
71    </varlistentry>
72
73  </variablelist>
74
[95112ed]75  <para>To log in as <systemitem class="username">clfs</systemitem> (as
76  opposed to switching to user <systemitem class="username">clfs</systemitem>
[3f8be484]77  when logged in as <systemitem class="username">root</systemitem>, which
[95112ed]78  does not require the <systemitem class="username">clfs</systemitem> user
79  to have a password), give <systemitem class="username">clfs</systemitem>
[3f8be484]80  a password:</para>
81
[95112ed]82<screen><userinput>passwd clfs</userinput></screen>
[3f8be484]83
[f6cb7c6]84  <para>As <systemitem class="username">root</systemitem>,
85  grant <systemitem class="username">clfs</systemitem> full access to
[040521bc]86  <filename class="directory">${CLFS}/cross-tools</filename> and
87  <filename class="directory">${CLFS}/tools</filename> by making <systemitem
[95112ed]88  class="username">clfs</systemitem> the directorys' owner:</para>
[3f8be484]89
[040521bc]90<screen><userinput>chown -v clfs ${CLFS}/tools
91chown -v clfs ${CLFS}/cross-tools</userinput></screen>
[3f8be484]92
[f6cb7c6]93  <para>If a separate working directory was created as suggested, run the
94  following command as <systemitem class="username">root</systemitem> to
95  give user <systemitem class="username">clfs</systemitem> ownership of this
96  directory as well:</para>
[3f8be484]97
[040521bc]98<screen><userinput>chown -v clfs ${CLFS}/sources</userinput></screen>
[3f8be484]99
[95112ed]100  <para>Next, login as user <systemitem class="username">clfs</systemitem>.
[3f8be484]101  This can be done via a virtual console, through a display manager, or
102  with the following substitute user command:</para>
103
[95112ed]104<screen><userinput>su - clfs</userinput></screen>
[3f8be484]105
106  <para>The <quote><parameter>-</parameter></quote> instructs
107  <command>su</command> to start a login shell as opposed to a non-login
108  shell. The difference between these two types of shells can be found
109  in detail in <filename>bash(1)</filename> and <command>info
110  bash</command>.</para>
111
[a1ffe3e]112  <note>
113    <para>Until specified otherwise, all commands from this point on
114    should be done as the <systemitem class="username">clfs</systemitem>
115    user.</para>
116  </note>
117
[3f8be484]118</sect1>
Note: See TracBrowser for help on using the repository browser.