Ignore:
Timestamp:
01/11/2006 08:22:30 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Children:
e956635
Parents:
e1266e5
Message:

Ported r7271 from trunk.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter02/mounting.xml

    re1266e5 r1b20267  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
     3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
    34  <!ENTITY % general-entities SYSTEM "../general.ent">
    45  %general-entities;
    56]>
     7
    68<sect1 id="space-mounting">
    7 <title>Mounting the New Partition</title>
    8 <?dbhtml filename="mounting.html"?>
     9  <?dbhtml filename="mounting.html"?>
    910
    10 <para>Now that a file system has been created, the partition needs to
    11 be made accessible. In order to do this, the partition needs to be
    12 mounted at a chosen mount point. For the purposes of this book, it is
    13 assumed that the file system is mounted under <filename
    14 class="directory">/mnt/lfs</filename>, but the directory choice is up
    15 to you.</para>
     11  <title>Mounting the New Partition</title>
    1612
    17 <para>Choose a mount point and assign it to the <envar>LFS</envar>
    18 environment variable by running:</para>
     13  <para>Now that a file system has been created, the partition needs to
     14  be made accessible. In order to do this, the partition needs to be
     15  mounted at a chosen mount point. For the purposes of this book, it is
     16  assumed that the file system is mounted under <filename
     17  class="directory">/mnt/lfs</filename>, but the directory choice is up
     18  to you.</para>
     19
     20  <para>Choose a mount point and assign it to the <envar>LFS</envar>
     21  environment variable by running:</para>
    1922
    2023<screen role="nodump"><userinput>export LFS=/mnt/lfs</userinput></screen>
    2124
    22 <para>Next, create the mount point and mount the LFS file system by
    23 running:</para>
     25  <para>Next, create the mount point and mount the LFS file system by
     26  running:</para>
    2427
    2528<screen role="nodump"><userinput>mkdir -pv $LFS
    2629mount -v /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen>
    2730
    28 <para>Replace <replaceable>[xxx]</replaceable> with the designation of the LFS
    29 partition.</para>
     31  <para>Replace <replaceable>[xxx]</replaceable> with the designation of the LFS
     32  partition.</para>
    3033
    31 <para>If using multiple partitions for LFS (e.g., one for <filename
    32 class="directory">/</filename> and another for <filename
    33 class="directory">/usr</filename>), mount them using:</para>
     34  <para>If using multiple partitions for LFS (e.g., one for <filename
     35  class="directory">/</filename> and another for <filename
     36  class="directory">/usr</filename>), mount them using:</para>
    3437
    3538<screen role="nodump"><userinput>mkdir -pv $LFS
     
    3841mount -v /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen>
    3942
    40 <para>Replace <replaceable>[xxx]</replaceable> and
    41 <replaceable>[yyy]</replaceable> with the appropriate partition
    42 names.</para>
     43  <para>Replace <replaceable>[xxx]</replaceable> and
     44  <replaceable>[yyy]</replaceable> with the appropriate partition
     45  names.</para>
    4346
    44 <para>Ensure that this new partition is not mounted with permissions
    45 that are too restrictive (such as the nosuid, nodev, or noatime
    46 options). Run the <command>mount</command> command without any
    47 parameters to see what options are set for the mounted LFS
    48 partition. If <parameter>nosuid</parameter>, <parameter>nodev</parameter>,
    49 and/or <parameter>noatime</parameter> are set, the partition will need
    50 to be remounted.</para>
     47  <para>Ensure that this new partition is not mounted with permissions that
     48  are too restrictive (such as the <option>nosuid</option>, <option>nodev</option>,
     49  or <option>noatime</option> options). Run the <command>mount</command> command
     50  without any parameters to see what options are set for the mounted LFS
     51  partition. If <option>nosuid</option>, <option>nodev</option>, and/or
     52  <option>noatime</option> are set, the partition will need to be
     53  remounted.</para>
    5154
    52 <para>Now that there is an established place to work, it is time to
    53 download the packages.</para>
     55  <para>Now that there is an established place to work, it is time to
     56  download the packages.</para>
    5457
    5558</sect1>
Note: See TracChangeset for help on using the changeset viewer.