source: chapter02/mounting.xml@ bfd117b

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.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 bfd117b was bfd117b, checked in by Bruce Dubbs <bdubbs@…>, 9 years ago

Spelling

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

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="space-mounting">
9 <?dbhtml filename="mounting.html"?>
10
11 <title>Mounting the New Partition</title>
12
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 the directory specified by the
17 <envar>LFS</envar> environment varibale as described in the previous section.
18 </para>
19
20 <para>Create the mount point and mount the LFS file system by running:</para>
21
22<screen role="nodump"><userinput>mkdir -pv $LFS
23mount -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS</userinput></screen>
24
25 <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the designation of the LFS
26 partition.</para>
27
28 <para>If using multiple partitions for LFS (e.g., one for <filename
29 class="directory">/</filename> and another for <filename
30 class="directory">/usr</filename>), mount them using:</para>
31
32<screen role="nodump"><userinput>mkdir -pv $LFS
33mount -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS
34mkdir -v $LFS/usr
35mount -v -t ext4 /dev/<replaceable>&lt;yyy&gt;</replaceable> $LFS/usr</userinput></screen>
36
37 <para>Replace <replaceable>&lt;xxx&gt;</replaceable> and
38 <replaceable>&lt;yyy&gt;</replaceable> with the appropriate partition
39 names.</para>
40
41 <para>Ensure that this new partition is not mounted with permissions that are
42 too restrictive (such as the <option>nosuid</option> or
43 <option>nodev</option> options). Run the <command>mount</command> command
44 without any parameters to see what options are set for the mounted LFS
45 partition. If <option>nosuid</option> and/or <option>nodev</option> are set,
46 the partition will need to be remounted.</para>
47
48 <para>If you are using a <systemitem
49 class="filesystem">swap</systemitem> partition, ensure that it is enabled
50 using the <command>swapon</command> command:</para>
51
52<screen role="nodump"><userinput>/sbin/swapon -v /dev/<replaceable>&lt;zzz&gt;</replaceable></userinput></screen>
53
54 <para>Replace <replaceable>&lt;zzz&gt;</replaceable> with the name of the
55 <systemitem class="filesystem">swap</systemitem> partition.</para>
56
57 <para>Now that there is an established place to work, it is time to
58 download the packages.</para>
59
60</sect1>
61
Note: See TracBrowser for help on using the repository browser.