From 0515650c1d33b9d4f2e4af79579be70d874826f4 Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Sat, 25 May 2002 00:24:08 +0000 Subject: third wave - remove old files git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1899 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/pwdgroup.xml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 chapter05/pwdgroup.xml (limited to 'chapter05/pwdgroup.xml') diff --git a/chapter05/pwdgroup.xml b/chapter05/pwdgroup.xml deleted file mode 100644 index f1c5e2176..000000000 --- a/chapter05/pwdgroup.xml +++ /dev/null @@ -1,41 +0,0 @@ - -Creating passwd and group files - - -In order for the user and group root to be recognized and to be able to -login, there needs to be an entry in the /etc/passwd and /etc/group file. -Besides the group root, a couple of other groups are recommended and needed by -packages. The groups created below aren't part of any standard. -The LSB only recommends a group bin with GID 1 to be present besides -group root. Other group names and GID's can be chosen by the user. Well -written packages don't depend on GID numbers but just use the group -name, so it doesn't matter which GID a group has. Since there -aren't any standards for groups the groups created here are the groups the -MAKEDEV script (the script that creates the device files in the /dev -directory) mentions. - -Create a new file $LFS/etc/passwd by running the -following command: - -echo "root:x:0:0:root:/root:/bin/bash" > $LFS/etc/passwd - -Create a new file $LFS/etc/group by running the -following command: - -cat > $LFS/etc/group << "EOF" -root:x:0: -bin:x:1: -sys:x:2: -kmem:x:3: -tty:x:4: -tape:x:5: -daemon:x:6: -floppy:x:7: -disk:x:8: -lp:x:9: -dialout:x:10: -audio:x:11: -EOF - - - -- cgit v1.2.3-54-g00ecf