Ignore:
Timestamp:
01/11/2006 08:21:38 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
b0ed1af
Parents:
35edd52
Message:

Indented chapter 02.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter02/mounting.xml

    r35edd52 r87bae31  
    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.