Changeset 09c1e75


Ignore:
Timestamp:
08/31/2003 09:06:48 PM (21 years ago)
Author:
Jeremy Utley <jeremy@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
be2dd91
Parents:
087e584
Message:

Added user and group nobody for coreutils tests

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2707 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r087e584 r09c1e75  
    8383</para></listitem>
    8484
     85<listitem><para>August 31, 2003 [jeremy] - Added user nobody to
     86passwd and group files, so coreutils tests will pass.</para></listitem>
     87
    8588<listitem><para>August 30, 2003 [jeremy] - Updated fix-includes
    8689patch to GCC 3.3.1</para></listitem>
  • chapter06/pwdgroup.xml

    r087e584 r09c1e75  
    66name "root" to be recognized, there need to be relevant entries in the
    77<filename>/etc/passwd</filename> and
    8 <filename>/etc/group</filename> files.</para>
     8<filename>/etc/group</filename> files. Also, to support one of the coreutils
     9tests, we will also create the user and group nobody, which is almost
     10universally present on Linux computers.</para>
    911
    1012<para>Create the <filename>/etc/passwd</filename> file by running the
    1113following command:</para>
    1214
    13 <para><screen><userinput>echo "root:x:0:0:root:/root:/bin/bash" &gt; /etc/passwd</userinput></screen></para>
     15<para><screen><userinput>cat &gt; /etc/passwd &lt;&lt; "EOF"</userinput>
     16root:x:0:0:root:/root:/bin/bash
     17nobody:x:1000:1000:nobody:/:/bin/bash
     18<userinput>EOF</userinput></screen></para>
    1419
    1520<para>The actual password for <emphasis>root</emphasis> (the "x" here is
     
    3237dialout:x:10:
    3338audio:x:11:
     39nobody:x:1000:
    3440<userinput>EOF</userinput></screen></para>
    3541
  • index.xml

    r087e584 r09c1e75  
    55<!ENTITY book SYSTEM "book/book.xml">
    66
    7 <!ENTITY version "20030830">
    8 <!ENTITY releasedate "August 30th, 2003">
     7<!ENTITY version "20030831">
     8<!ENTITY releasedate "August 31th, 2003">
    99<!ENTITY nbsp " ">
    1010
Note: See TracChangeset for help on using the changeset viewer.