source: chapter02/mounting.xml@ b7a775eb

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
Last change on this file since b7a775eb was b7a775eb, checked in by Archaic <archaic@…>, 18 years ago

Specify the filesystem type when mounting.

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

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/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 <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>
22
23<screen role="nodump"><userinput>export LFS=/mnt/lfs</userinput></screen>
24
25 <para>Next, create the mount point and mount the LFS file system by
26 running:</para>
27
28<screen role="nodump"><userinput>mkdir -pv $LFS
29mount -v -t ext3 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS</userinput></screen>
30
31 <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the designation of the LFS
32 partition.</para>
33
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>
37
38<screen role="nodump"><userinput>mkdir -pv $LFS
39mount -v -t ext3 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS
40mkdir -v $LFS/usr
41mount -v -t ext3 /dev/<replaceable>&lt;yyy&gt;</replaceable> $LFS/usr</userinput></screen>
42
43 <para>Replace <replaceable>&lt;xxx&gt;</replaceable> and
44 <replaceable>&lt;yyy&gt;</replaceable> with the appropriate partition
45 names.</para>
46
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>
54
55 <para>Now that there is an established place to work, it is time to
56 download the packages.</para>
57
58</sect1>
59
Note: See TracBrowser for help on using the repository browser.