Changeset 91ad4a4
- Timestamp:
- Jul 8, 2006, 9:09:05 AM (18 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 31d07f11
- Parents:
- 5646ec9
- Location:
- BOOK
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/boot/common/creatingdirs.xml
r5646ec9 r91ad4a4 35 35 36 36 <para os="d">The first mode change ensures that not just anybody can enter 37 the <filename class="directory"> ${CLFS}/root</filename> directory—the37 the <filename class="directory">/root</filename> directory—the 38 38 same as a normal user would do with his or her home directory. The 39 39 second mode change makes sure that any user can write to the 40 <filename class="directory"> ${CLFS}/tmp</filename> and41 <filename class="directory"> ${CLFS}/var/tmp</filename> directories, but40 <filename class="directory">/tmp</filename> and 41 <filename class="directory">/var/tmp</filename> directories, but 42 42 cannot remove another user's files from them. The latter is prohibited 43 43 by the so-called <quote>sticky bit,</quote> the highest bit (1) in the -
BOOK/boot/common/devices.xml
r5646ec9 r91ad4a4 9 9 <?dbhtml filename="devices.html"?> 10 10 11 <title>Populating ${CLFS}/dev</title>11 <title>Populating /dev</title> 12 12 13 13 <indexterm zone="ch-boot-devices"> 14 <primary sortas="e- ${CLFS}/dev/*">${CLFS}/dev/*</primary>14 <primary sortas="e-/dev/*">/dev/*</primary> 15 15 </indexterm> 16 16 -
BOOK/boot/common/fstab.xml
r5646ec9 r91ad4a4 9 9 <?dbhtml filename="fstab.html"?> 10 10 11 <title>Creating the ${CLFS}/etc/fstab File</title>11 <title>Creating the /etc/fstab File</title> 12 12 13 13 <indexterm zone="ch-boot-fstab"> 14 <primary sortas="e- ${CLFS}/etc/fstab">${CLFS}/etc/fstab</primary>14 <primary sortas="e-/etc/fstab">/etc/fstab</primary> 15 15 </indexterm> 16 16 17 <para os="a">The <filename> ${CLFS}/etc/fstab</filename> file is used by some17 <para os="a">The <filename>/etc/fstab</filename> file is used by some 18 18 programs to determine where file systems are to be mounted by default, 19 19 which must be checked, and in which order. Create a new file systems -
BOOK/boot/common/pwdgroup.xml
r5646ec9 r91ad4a4 12 12 13 13 <indexterm zone="ch-boot-pwdgroup"> 14 <primary sortas="e- ${CLFS}/etc/passwd">${CLFS}/etc/passwd</primary>15 </indexterm> 16 17 <indexterm zone="ch-boot-pwdgroup"> 18 <primary sortas="e- ${CLFS}/etc/group">${CLFS}/etc/group</primary>19 </indexterm> 20 21 <indexterm zone="ch-boot-pwdgroup"> 22 <primary sortas="e- ${CLFS}/var/run/utmp">${CLFS}/var/run/utmp</primary>23 </indexterm> 24 25 <indexterm zone="ch-boot-pwdgroup"> 26 <primary sortas="e- ${CLFS}/var/log/btmp">${CLFS}/var/log/btmp</primary>27 </indexterm> 28 29 <indexterm zone="ch-boot-pwdgroup"> 30 <primary sortas="e- ${CLFS}/var/log/lastlog">${CLFS}/var/log/lastlog</primary>31 </indexterm> 32 33 <indexterm zone="ch-boot-pwdgroup"> 34 <primary sortas="e- ${CLFS}/var/log/wtmp">${CLFS}/var/log/wtmp</primary>14 <primary sortas="e-/etc/passwd">/etc/passwd</primary> 15 </indexterm> 16 17 <indexterm zone="ch-boot-pwdgroup"> 18 <primary sortas="e-/etc/group">/etc/group</primary> 19 </indexterm> 20 21 <indexterm zone="ch-boot-pwdgroup"> 22 <primary sortas="e-/var/run/utmp">/var/run/utmp</primary> 23 </indexterm> 24 25 <indexterm zone="ch-boot-pwdgroup"> 26 <primary sortas="e-/var/log/btmp">/var/log/btmp</primary> 27 </indexterm> 28 29 <indexterm zone="ch-boot-pwdgroup"> 30 <primary sortas="e-/var/log/lastlog">/var/log/lastlog</primary> 31 </indexterm> 32 33 <indexterm zone="ch-boot-pwdgroup"> 34 <primary sortas="e-/var/log/wtmp">/var/log/wtmp</primary> 35 35 </indexterm> 36 36 37 37 <para>In order for user <systemitem class="username">root</systemitem> to 38 38 be able to login and for the name <quote>root</quote> to be recognized, 39 there must be relevant entries in the <filename> ${CLFS}/etc/passwd</filename>40 and <filename> ${CLFS}/etc/group</filename> files.</para>39 there must be relevant entries in the <filename>/etc/passwd</filename> 40 and <filename>/etc/group</filename> files.</para> 41 41 42 42 <para>Create the <filename>${CLFS}/etc/passwd</filename> file by running … … 221 221 chmod -v 600 ${CLFS}/var/log/btmp</userinput></screen> 222 222 223 <para>The <filename> ${CLFS}/var/run/utmp</filename> file records the users224 that are currently logged in. The <filename> ${CLFS}/var/log/wtmp</filename>223 <para>The <filename>/var/run/utmp</filename> file records the users 224 that are currently logged in. The <filename>/var/log/wtmp</filename> 225 225 file records all logins and logouts. The 226 <filename> ${CLFS}/var/log/lastlog</filename> file records when227 each user last logged in. The <filename> ${CLFS}/var/log/btmp</filename> file226 <filename>/var/log/lastlog</filename> file records when 227 each user last logged in. The <filename>/var/log/btmp</filename> file 228 228 records the bad login attempts.</para> 229 229 -
BOOK/boot/common/sysvinit.xml
r5646ec9 r91ad4a4 57 57 58 58 <indexterm zone="conf-tools-sysvinit"> 59 <primary sortas="e- ${CLFS}/etc/inittab">${CLFS}/etc/inittab</primary>59 <primary sortas="e-/etc/inittab">/etc/inittab</primary> 60 60 </indexterm> 61 61 -
BOOK/boot/mips/sysvinit.xml
r5646ec9 r91ad4a4 58 58 59 59 <indexterm zone="conf-tools-sysvinit"> 60 <primary sortas="e- ${CLFS}/etc/inittab">${CLFS}/etc/inittab</primary>60 <primary sortas="e-/etc/inittab">/etc/inittab</primary> 61 61 </indexterm> 62 62 -
BOOK/boot/sparc/fstab.xml
r5646ec9 r91ad4a4 9 9 <?dbhtml filename="fstab.html"?> 10 10 11 <title>Creating the ${CLFS}/etc/fstab File</title>11 <title>Creating the /etc/fstab File</title> 12 12 13 13 <indexterm zone="ch-boot-fstab"> 14 <primary sortas="e- ${CLFS}/etc/fstab">${CLFS}/etc/fstab</primary>14 <primary sortas="e-/etc/fstab">/etc/fstab</primary> 15 15 </indexterm> 16 16 -
BOOK/boot/sparc/sysvinit.xml
r5646ec9 r91ad4a4 58 58 59 59 <indexterm zone="conf-tools-sysvinit"> 60 <primary sortas="e- ${CLFS}/etc/inittab">${CLFS}/etc/inittab</primary>60 <primary sortas="e-/etc/inittab">/etc/inittab</primary> 61 61 </indexterm> 62 62 -
BOOK/boot/x86/grub.xml
r5646ec9 r91ad4a4 64 64 65 65 <para os="n">If all went well, GRUB will have reported finding its files 66 in <filename class="directory"> ${CLFS}/boot/grub</filename>. That's66 in <filename class="directory">/boot/grub</filename>. That's 67 67 all there is to it. Quit the <command>grub</command> shell:</para> 68 68 -
BOOK/boot/x86/kernel.xml
r5646ec9 r91ad4a4 72 72 73 73 <para os="af">If the use of kernel modules can't be avoided, an 74 <filename> ${CLFS}/etc/modprobe.conf</filename> file may be needed.74 <filename>/etc/modprobe.conf</filename> file may be needed. 75 75 Information pertaining to modules and kernel configuration is 76 76 located in the kernel documentation in the <filename -
BOOK/chroot/common/creatingdirs.xml
r5646ec9 r91ad4a4 33 33 xpointer="xpointer(//*[@os='c'])"/> 34 34 35 <para os="d">The first mode change ensures that not just anybody can enter 36 the <filename class="directory">/root</filename> directory—the 37 same as a normal user would do with his or her home directory. The 38 second mode change makes sure that any user can write to the 39 <filename class="directory">/tmp</filename> and 40 <filename class="directory">/var/tmp</filename> directories, but 41 cannot remove another user's files from them. The latter is prohibited 42 by the so-called <quote>sticky bit,</quote> the highest bit (1) in the 43 1777 bit mask.</para> 35 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 36 href="../../boot/common/creatingdirs.xml" 37 xpointer="xpointer(//*[@os='d'])"/> 44 38 45 39 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" -
BOOK/introduction/common/changelog.xml
r5646ec9 r91ad4a4 44 44 linux-headers-2.6.17.4-07072006.</para> 45 45 </listitem> 46 </itemizedlist> 47 </listitem> 48 49 <listitem> 50 <para>July 6, 2006</para> 46 <listitem> 47 <para>[Chris] - Removed many "${CLFS}" references from explanatory 48 text in boot section.</para> 49 </listitem> 50 </itemizedlist> 51 </listitem> 52 53 <listitem> 54 <para>July 7, 2006</para> 51 55 <itemizedlist> 52 56 <listitem>
Note:
See TracChangeset
for help on using the changeset viewer.