Ignore:
Timestamp:
08/08/2004 02:10:00 AM (20 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
6.0
Children:
843710f
Parents:
6e35438
Message:

Completed global edits for upcoming 6.0 release

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@3996 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter02/mounting.xml

    r6e35438 r9a207c4  
    55]>
    66<sect1 id="space-mounting">
    7 <title>Mounting the new partition</title>
     7<title>Mounting the New Partition</title>
    88<?dbhtml filename="mounting.html"?>
    99
    10 <para>Now that we've created a file system, we want to be able to access
    11 the partition. For that, we need to mount it, and have to choose a mount
    12 point. In this book we assume that the file system is mounted under
    13 <filename class="directory">/mnt/lfs</filename>, but it doesn't matter what directory
    14 you choose.</para>
     10<para>Now that a file system has been created, the partition needs to
     11be made accessible. In order to do this, the partition needs to be
     12mounted at a chosen mount point. For the purposes of this book, it is
     13assumed that the file system is mounted under <filename
     14class="directory">/mnt/lfs</filename>, but the directory choice is up
     15to you.</para>
    1516
    16 <para>Choose a mount point and assign it to the LFS environment variable
    17 by running:</para>
     17<para>Choose a mount point and assign it to the LFS environment
     18variable by running:</para>
    1819
    1920<screen><userinput>export LFS=/mnt/lfs</userinput></screen>
    2021
    21 <para>Now create the mount point and mount the LFS file system by running:</para>
     22<para>Next, create the mount point and mount the LFS file system by
     23running:</para>
    2224
    2325<screen><userinput>mkdir -p $LFS
     
    2729partition.</para>
    2830
    29 <para>If you have decided to use multiple partitions for LFS (say one for
    30 <filename class="directory">/</filename> and another for
    31 <filename class="directory">/usr</filename>), mount them like this:</para>
     31<para>If using multiple partitions for LFS (e.g., one for <filename
     32class="directory">/</filename> and another for <filename
     33class="directory">/usr</filename>), mount them using:</para>
    3234
    3335<screen><userinput>mkdir -p $LFS
     
    3638mount /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen>
    3739
    38 <para>Of course, replace <replaceable>[xxx]</replaceable> and
    39 <replaceable>[yyy]</replaceable> with the appropriate partition names.</para>
     40<para>Replace <replaceable>[xxx]</replaceable> and
     41<replaceable>[yyy]</replaceable> with the appropriate partition
     42names.</para>
    4043
    41 <para>You should also ensure that this new partition is not mounted with
    42 permissions that are too restrictive (such as the nosuid, nodev or noatime
    43 options). You can run the <command>mount</command> command without any
    44 parameters to see with what options the LFS partition is mounted. If
    45 you see nosuid, nodev or noatime, you will need to remount it.</para>
    46  
    47 <para>Now that we've made ourselves a place to work in, we're ready to download
    48 the packages.</para>
     44<para>Ensure that this new partition is not mounted with permissions
     45that are too restrictive (such as the nosuid, nodev, or noatime
     46options). Run the <command>mount</command> command without any
     47parameters to see with what options are set for the mounted LFS
     48partition. If <emphasis>nosuid</emphasis>, <emphasis>nodev</emphasis>,
     49and/or <emphasis>noatime</emphasis> are set, the partition will need
     50to be remounted.</para>
     51
     52<para>Now that there is an established place to work, it's time to
     53download the packages.</para>
    4954
    5055</sect1>
     56
Note: See TracChangeset for help on using the changeset viewer.