Changeset 01600b9 for postlfs/config


Ignore:
Timestamp:
04/05/2003 01:54:02 PM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
8b220c27
Parents:
98e3bd5
Message:

update to sendmail-8.12.9

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@821 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
postlfs/config
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • postlfs/config/bootdisk.xml

    r98e3bd5 r01600b9  
    6767
    6868<para>Next, we will install <ulink url="http://www.busybox.net/downloads/busybox-0.60.4.tar.bz2">busybox</ulink> onto the image.  Busybox incorporates many of the *nix functions into a single small executable file.</para>
    69 <screen><userinput>
    70 tar -xzvf busybox-0.60.4.tar.gz
    71 cd busybox-0.60.4
    72 make &amp;&amp;
    73 make PREFIX=/mnt/loop1 install
    74 </userinput></screen>
    75 
    76 
    77 <screen><userinput>
    78 cp -ax /var/utmp /mnt/loop1/var
    79 mkdir /mnt/loop1/var/log
    80 </userinput></screen>
     69<screen><userinput>make &amp;&amp;
     70make PREFIX=/mnt/loop1 install &amp;&amp;
     71cp -ax /var/utmp /mnt/loop1/var &amp;&amp;
     72mkdir /mnt/loop1/var/log</userinput></screen>
    8173<para>
    8274Also, keeping in mind your space limitations, copy any other binaries and libraries you
     
    8981devices that busybox expects to find.</para>
    9082
    91 <screen><userinput>
    92 mv GNUmakefile Makefile
    93 make
    94 make PREFIX=/mnt/loop1 install
    95 cp /lib/libc.so.6 /lib/ld-linux.so.2 /lib/libdl.so.2 /tmp
    96 strip --strip-deb /tmp/ld-linux.so.2 /tmp/libc.so.6 /tmp/libdl.so.2
    97 mv /tmp/ld-linux.so.2 /tmp/libc.so.6 /tmp/libdl.so.2 /mnt/loop1/lib/   
    98 </userinput></screen>
     83<screen><userinput>mv GNUmakefile Makefile &amp;&amp;
     84make &amp;&amp;
     85make PREFIX=/mnt/loop1 install &amp;&amp;
     86cp /lib/libc.so.6 /lib/ld-linux.so.2 /lib/libdl.so.2 /tmp &amp;/&amp;
     87strip --strip-deb /tmp/ld-linux.so.2 /tmp/libc.so.6 /tmp/libdl.so.2 &amp;&amp;
     88mv /tmp/ld-linux.so.2 /tmp/libc.so.6 /tmp/libdl.so.2 /mnt/loop1/lib/</userinput></screen>
    9989<para>
    10090We will also need to set up an rc script to handle the devfsd startup.
    10191Put this in <filename>/mnt/loop1/etc/init.d/rcS</filename></para>
    102 <screen>
    103 #!/bin/sh
     92<screen>#!/bin/sh
    10493mount -t devfs devfs /dev
    105 /sbin/devfsd /dev
    106 </screen>
     94/sbin/devfsd /dev</screen>
    10795
    10896<para>
    10997Next create your compressed root filesystem.  We use -9 with gzip to
    11098make the smallest possible compressed image.</para>
    111 <screen><userinput>
    112 umount /mnt/loop1 &amp;&amp; dd if=/tmp/rfloppy bs=1k | gzip -v9 > rootfs.gz
    113 </userinput></screen> 
    114 <screen><userinput>ls -l rootfs.gz</userinput> to make sure it will fit on the diskette.
    115 </screen>
     99<screen><userinput>umount /mnt/loop1 &amp;&amp; dd if=/tmp/rfloppy bs=1k | gzip -v9 > rootfs.gz</userinput></screen> 
     100<screen><userinput>ls -l rootfs.gz</userinput> to make sure it will fit on the diskette.</screen>
    116101<para>
    117102make a custom kernel that is optimized for size.  Include only those features
  • postlfs/config/skel.xml

    r98e3bd5 r01600b9  
    99<filename>/usr/sbin/useradd</filename> program.</para>
    1010
    11 <para>For more information see <filename>man useradd</filename>.</para>
     11<para>For more information see <userinput>man useradd</userinput>.</para>
    1212
    1313<para>To get started create a <filename>/etc/skel</filename> directory.
     
    2323parameter.  For example:</para>
    2424
    25 <para><screen>[prompt]#<userinput>useradd -m -s/bin/bash jwrober</userinput></screen></para>
     25<para><screen><userinput>useradd -m -s/bin/bash jwrober</userinput></screen></para>
    2626
    2727<para>The <filename>/usr/sbin/useradd</filename> program uses a
  • postlfs/config/vimrc.xml

    r98e3bd5 r01600b9  
    4141options in this example file means here:</para>
    4242<itemizedlist>
    43 <listitem><para><userinput>set nocompatible :</userinput>
    44 This option stops vim from behaving in a strongly vi-compatible way.  It
     43<listitem><para><userinput>set nocompatible</userinput> : This option stops vim from behaving in a strongly vi-compatible way.  It
    4544should be at the start of any vimrc file as it can affect lots of other
    4645options which you may want to override.</para></listitem>
    4746
    48 <listitem><para><userinput>set bs=2 :</userinput>
    49 This influences the behavior of the backspace option.  It is fairly
     47<listitem><para><userinput>set bs=2</userinput> : This influences the behavior of the backspace option.  It is fairly
    5048complex so see <userinput>:help 'bs'</userinput> for more
    5149details.</para></listitem>
    5250
    53 <listitem><para><userinput>set columns=80 :</userinput>
    54 This simply sets the number of columns used on the
     51<listitem><para><userinput>set columns=80</userinput> : This simply sets the number of columns used on the
    5552screen.</para></listitem>
    5653
    57 <listitem><para><userinput>set background=dark :</userinput>
    58 This tells vim to use colors which look good on a dark
     54<listitem><para><userinput>set background=dark</userinput> : This tells vim to use colors which look good on a dark
    5955background.</para></listitem>
    6056
    61 <listitem><para><userinput>set tabstop=8 :</userinput>
    62 The number of spaces which a tabstop takes.</para></listitem>
     57<listitem><para><userinput>set tabstop=8</userinput> : The number of spaces which a tabstop takes.</para></listitem>
    6358
    64 <listitem><para><userinput>set wrapmargin=8 :</userinput>
    65 This is the number of characters from the right window
     59<listitem><para><userinput>set wrapmargin=8</userinput> : This is the number of characters from the right window
    6660border where wrapping starts.</para></listitem>
    6761
    68 <listitem><para><userinput>set nobk :</userinput>
    69 This stops vim from creating a backup before
     62<listitem><para><userinput>set nobk</userinput> : This stops vim from creating a backup before
    7063overwriting a file.</para></listitem>
    7164
    72 <listitem><para><userinput>syntax on :</userinput>
    73 Enables vim's syntax highlighting.</para></listitem>
     65<listitem><para><userinput>syntax on</userinput> : Enables vim's syntax highlighting.</para></listitem>
    7466
    75 <listitem><para><userinput>set ruler :</userinput>
    76 This makes vim show the current row and column at the bottom right of
     67<listitem><para><userinput>set ruler</userinput> : This makes vim show the current row and column at the bottom right of
    7768the screen.</para></listitem>
    7869
    79 <listitem><para><userinput>set noexpandtab :</userinput>
    80 This makes vim insert tabs as tab characters instead of as a set of
     70<listitem><para><userinput>set noexpandtab</userinput> : This makes vim insert tabs as tab characters instead of as a set of
    8171spaces.</para></listitem>
    8272
Note: See TracChangeset for help on using the changeset viewer.