Changeset eb55250 for BOOK/boot/common


Ignore:
Timestamp:
Feb 21, 2006, 2:27:09 AM (18 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
94e6142
Parents:
0b637f1
Message:

r1166@server (orig r1164): chris | 2006-02-10 22:07:07 -0800
Added -v to the rest of the temp-system pages, and various other text updates

Location:
BOOK/boot/common
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • BOOK/boot/common/bootscripts.xml

    r0b637f1 reb55250  
    2929    <para>Make bootscripts usable at boot:</para>
    3030
    31 <screen><userinput>cp ${LFS}/etc/rc.d/init.d/functions{,.bak}
     31<screen><userinput>cp -v ${LFS}/etc/rc.d/init.d/functions{,.bak}
    3232sed 's|/bin:/usr/bin:/sbin:/usr/sbin|/tools/bin:/tools/sbin:/bin:/sbin|g' \
    3333   ${LFS}/etc/rc.d/init.d/functions.bak \
    3434   > ${LFS}/etc/rc.d/init.d/functions
    35 cp ${LFS}/etc/rc.d/init.d/mountfs{,.bak}
     35cp -v ${LFS}/etc/rc.d/init.d/mountfs{,.bak}
    3636sed 's@mount -f /sys || failed=1@mount -f /sys | udevstart || failed=1@' \
    3737   ${LFS}/etc/rc.d/init.d/mountfs.bak \
  • BOOK/boot/common/changingowner.xml

    r0b637f1 reb55250  
    1919  <systemitem class="username">root</systemitem>. Change the ownership for $LFS and its subdirectories by running these commands:</para>
    2020
    21 <screen><userinput>chown root:root ${LFS}
    22 chown -R root:root $LFS/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}</userinput></screen>
     21<screen><userinput>chown -v root:root ${LFS}
     22chown -Rv root:root $LFS/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}</userinput></screen>
    2323
    2424  <para os="b">The same issue also exists with <filename class="directory">/tools</filename> and <filename class="directory">/cross-tools</filename>. Although these directories can be deleted once the
     
    3939  the following commands:</para>
    4040
    41 <screen><userinput>chown -R root:root /tools
    42 chown -R root:root /cross-tools</userinput></screen>
     41<screen><userinput>chown -Rv root:root /tools
     42chown -Rv root:root /cross-tools</userinput></screen>
    4343
    4444</sect1>
  • BOOK/boot/common/creatingdirs.xml

    r0b637f1 reb55250  
    1414  standard directory tree by issuing the following commands:</para>
    1515
    16 <screen><userinput>install -d ${LFS}/{bin,boot,dev,etc/opt,home,lib,mnt}
    17 install -d ${LFS}/{sbin,srv,usr/local,var,opt,proc,sys}
    18 install -d ${LFS}/root -m 0750
    19 install -d ${LFS}/tmp ${LFS}/var/tmp -m 1777
    20 install -d ${LFS}/media/{floppy,cdrom}
    21 install -d ${LFS}/usr/{bin,include,lib,sbin,share,src}
    22 ln -s share/{man,doc,info} ${LFS}/usr
    23 install -d ${LFS}/usr/share/{doc,info,locale,man}
    24 install -d ${LFS}/usr/share/{misc,terminfo,zoneinfo}
    25 install -d ${LFS}/usr/share/man/man{1,2,3,4,5,6,7,8}
    26 install -d ${LFS}/usr/local/{bin,etc,include,lib,sbin,share,src}
    27 ln -s share/{man,doc,info} ${LFS}/usr/local
    28 install -d ${LFS}/usr/local/share/{doc,info,locale,man}
    29 install -d ${LFS}/usr/local/share/{misc,terminfo,zoneinfo}
    30 install -d ${LFS}/usr/local/share/man/man{1,2,3,4,5,6,7,8}
    31 install -d ${LFS}/var/{lock,log,mail,run,spool}
    32 install -d ${LFS}/var/{opt,cache,lib/{misc,locate},local}
    33 install -d ${LFS}/opt/{bin,doc,include,info}
    34 install -d ${LFS}/opt/{lib,man/man{1,2,3,4,5,6,7,8}}</userinput></screen>
     16<screen><userinput>install -dv ${LFS}/{bin,boot,dev,etc/opt,home,lib,mnt}
     17install -dv ${LFS}/{sbin,srv,usr/local,var,opt,proc,sys}
     18install -dv ${LFS}/root -m 0750
     19install -dv ${LFS}/tmp ${LFS}/var/tmp -m 1777
     20install -dv ${LFS}/media/{floppy,cdrom}
     21install -dv ${LFS}/usr/{bin,include,lib,sbin,share,src}
     22ln -sv share/{man,doc,info} ${LFS}/usr
     23install -dv ${LFS}/usr/share/{doc,info,locale,man}
     24install -dv ${LFS}/usr/share/{misc,terminfo,zoneinfo}
     25install -dv ${LFS}/usr/share/man/man{1,2,3,4,5,6,7,8}
     26install -dv ${LFS}/usr/local/{bin,etc,include,lib,sbin,share,src}
     27ln -sv share/{man,doc,info} ${LFS}/usr/local
     28install -dv ${LFS}/usr/local/share/{doc,info,locale,man}
     29install -dv ${LFS}/usr/local/share/{misc,terminfo,zoneinfo}
     30install -dv ${LFS}/usr/local/share/man/man{1,2,3,4,5,6,7,8}
     31install -dv ${LFS}/var/{lock,log,mail,run,spool}
     32install -dv ${LFS}/var/{opt,cache,lib/{misc,locate},local}
     33install -dv ${LFS}/opt/{bin,doc,include,info}
     34install -dv ${LFS}/opt/{lib,man/man{1,2,3,4,5,6,7,8}}</userinput></screen>
    3535
    3636  <para os="b">Directories are, by default, created with permission mode 755,
  • BOOK/boot/common/e2fsprogs.xml

    r0b637f1 reb55250  
    5252    </variablelist>
    5353
    54 <screen os="ac"><userinput>make</userinput></screen>
     54    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     55    href="../../final-system/common/e2fsprogs.xml"
     56    xpointer="xpointer(//*[@os='f'])"/>
     57
     58    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     59    href="../../final-system/common/e2fsprogs.xml"
     60    xpointer="xpointer(//*[@os='g'])"/>
    5561
    5662    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/boot/common/introduction.xml

    r0b637f1 reb55250  
    3333class="username">root</systemitem>:</para>
    3434
    35 <screen><userinput>chown lfs $LFS</userinput></screen>
     35<screen><userinput>chown -v lfs $LFS</userinput></screen>
    3636
    3737</sect1>
  • BOOK/boot/common/pwdgroup.xml

    r0b637f1 reb55250  
    111111
    112112<screen><userinput>touch ${LFS}/var/run/utmp ${LFS}/var/log/{btmp,lastlog,wtmp}
    113 chmod 664 ${LFS}/var/run/utmp ${LFS}/var/log/lastlog
    114 chmod 600 ${LFS}/var/log/btmp</userinput></screen>
     113chmod -v 664 ${LFS}/var/run/utmp ${LFS}/var/log/lastlog
     114chmod -v 600 ${LFS}/var/log/btmp</userinput></screen>
    115115
    116116  <para>The <filename>${LFS}/var/run/utmp</filename> file records the users
  • BOOK/boot/common/sysvinit.xml

    r0b637f1 reb55250  
    2626    during our build:</para>
    2727
    28 <screen os="ab"><userinput>cp src/Makefile src/Makefile.orig
     28<screen os="ab"><userinput>cp -v src/Makefile src/Makefile.orig
    2929sed -e 's@root@0@g' \
    3030    -e "s@/dev/initctl@${LFS}&amp;@g" \
  • BOOK/boot/common/udev.xml

    r0b637f1 reb55250  
    4444    xpointer="xpointer(//*[@os='j'])"/>
    4545
    46 <screen os="k"><userinput>cp ../&udev-config-file; ${LFS}/etc/udev/rules.d/25-lfs.rules</userinput></screen>
     46<screen os="k"><userinput>cp -v ../&udev-config-file; ${LFS}/etc/udev/rules.d/25-lfs.rules</userinput></screen>
    4747
    4848  </sect2>
  • BOOK/boot/common/util-linux.xml

    r0b637f1 reb55250  
    4343    directory by default. This is fixed by altering the configure script:</para>
    4444
    45 <screen os="bb"><userinput>cp configure{,.orig}
     45<screen os="bb"><userinput>cp -v configure{,.orig}
    4646sed -e 's@/usr/include@/tools/include@g' configure.orig > configure</userinput></screen>
    4747
     
    5050    yet:</para>
    5151
    52 <screen os="bd"><userinput>cp MCONFIG{,.orig}
     52<screen os="bd"><userinput>cp -v MCONFIG{,.orig}
    5353sed -e 's|-o root||' MCONFIG.orig > MCONFIG</userinput></screen>
    5454
Note: See TracChangeset for help on using the changeset viewer.