source: chapter02/mounting.xml@ 4e7e16d

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 7.4 7.5 7.6 7.7 7.8 7.9 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
Last change on this file since 4e7e16d was 4e7e16d, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Expand discussion of file system types and
make ext4 the example LFS partition type

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

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[87bae31]7
[673b0d8]8<sect1 id="space-mounting">
[87bae31]9 <?dbhtml filename="mounting.html"?>
10
11 <title>Mounting the New Partition</title>
[673b0d8]12
[87bae31]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>
[81fd230]19
[87bae31]20 <para>Choose a mount point and assign it to the <envar>LFS</envar>
21 environment variable by running:</para>
[81fd230]22
[c2f2e792]23<screen role="nodump"><userinput>export LFS=/mnt/lfs</userinput></screen>
[81fd230]24
[87bae31]25 <para>Next, create the mount point and mount the LFS file system by
26 running:</para>
[81fd230]27
[5998892]28<screen role="nodump"><userinput>mkdir -pv $LFS
[4e7e16d]29mount -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS</userinput></screen>
[81fd230]30
[0090db5]31 <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the designation of the LFS
[87bae31]32 partition.</para>
[81fd230]33
[87bae31]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>
[81fd230]37
[5998892]38<screen role="nodump"><userinput>mkdir -pv $LFS
[4e7e16d]39mount -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS
[5998892]40mkdir -v $LFS/usr
[4e7e16d]41mount -v -t ext4 /dev/<replaceable>&lt;yyy&gt;</replaceable> $LFS/usr</userinput></screen>
[81fd230]42
[0090db5]43 <para>Replace <replaceable>&lt;xxx&gt;</replaceable> and
44 <replaceable>&lt;yyy&gt;</replaceable> with the appropriate partition
[87bae31]45 names.</para>
[81fd230]46
[d9c836b]47 <para>Ensure that this new partition is not mounted with permissions that are
48 too restrictive (such as the <option>nosuid</option> or
49 <option>nodev</option> options). Run the <command>mount</command> command
[87bae31]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>
[81fd230]54
[c226182]55 <para>If you are using a <systemitem
56 class="filesystem">swap</systemitem> partition, ensure that it is enabled
57 using the <command>swapon</command> command:</para>
58
59<screen role="nodump"><userinput>/sbin/swapon -v /dev/<replaceable>&lt;zzz&gt;</replaceable></userinput></screen>
60
61 <para>Replace <replaceable>&lt;zzz&gt;</replaceable> with the name of the
62 <systemitem class="filesystem">swap</systemitem> partition.</para>
63
[87bae31]64 <para>Now that there is an established place to work, it is time to
65 download the packages.</para>
[1422130]66
[673b0d8]67</sect1>
[81fd230]68
Note: See TracBrowser for help on using the repository browser.