Changeset ee61e9f


Ignore:
Timestamp:
09/21/2003 04:57:54 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, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2a7d0fc9
Parents:
78b3cd61
Message:

a few more

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/config/bootdisk.xml

    r78b3cd61 ree61e9f  
    156156<para>The reason these commands are used is that they work regardless of
    157157the version of <command>mount</command> (older ones don't have the
    158 <command>-o loop</command> option) or if <filename>/etc/mtab</filename>
     158<userinput>-o loop</userinput> option) or if <filename>/etc/mtab</filename>
    159159is symlinked to <filename>/proc</filename> (which causes mount to be
    160160unable to properly "unbind" a loop device, due to "lost" information).
     
    174174command makes an ext2 file system on the loopback device (which really
    175175means it is created in the file to which the loopback device is bound)
    176 and reserves no blocks.  The "-N 504" parameter causes only 504 inodes
    177 to be allocated, leaving more space for other things needed in the file
    178 system.</para>
     176and reserves no blocks.  The <userinput>-N 504</userinput> parameter causes
     177only 504 inodes to be allocated, leaving more space for other things needed
     178in the file system.</para>
    179179
    180180<para><command>mount -t ext2 /dev/loop1 /mnt/loop1</command>: This
     
    184184
    185185<para>If your <command>mount</command> supports the
    186 <command>-o loop</command> option <emphasis>and</emphasis> your
     186<userinput>-o loop</userinput> option <emphasis>and</emphasis> your
    187187<filename>/etc/mtab</filename> is a real file, rather than a symlink to
    188188<filename>/proc</filename>, the three above commands can be replaced
     
    196196<para><command>mke2fs -F -m 0 -N 504 /tmp/rfloppy</command>: As before,
    197197a file system is made, with only 504 inodes and no reserved blocks, that
    198 will be bound to a loopback device.  The <command>-F</command> parameter
     198will be bound to a loopback device.  The <userinput>-F</userinput> parameter
    199199just suppresses an irritating question issued when
    200200<command>mke2fs</command> realizes that you are not accessing a
     
    512512and the file will be removed when the unmount is done.  Just omit the
    513513<command>losetup -d /dev/loop1</command> from the following
    514 sequence.  The -9 parameter is used with gzip to make the smallest
    515 possible compressed image.  To make sure it will fit on the diskette,
    516 list the file's size.</para>
     514sequence.  The <userinput>-9</userinput> parameter is used with
     515<command>gzip</command> to make the smallest possible compressed image.  To
     516make sure it will fit on the diskette, list the file's size.</para>
    517517
    518518<screen><userinput><command>umount /mnt/loop1 &amp;&amp;
Note: See TracChangeset for help on using the changeset viewer.