source: BOOK/partitioning/common/mounting.xml@ aab67ee

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since aab67ee was aa18ac0, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Updated trunk book sources to use DocBook-XML DTD 4.5.

  • Property mode set to 100644
File size: 2.2 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="ch-partitioning-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/clfs</filename>, but the directory choice is up
18 to you.</para>
19
20 <para>Choose a mount point and assign it to the <envar>CLFS</envar>
21 environment variable by running:</para>
22
23<screen><userinput>export CLFS=/mnt/clfs</userinput></screen>
24
25 <para>Next, create the mount point and mount the CLFS file system by
26 running:</para>
27
28<screen><userinput>mkdir -pv ${CLFS}
29mount -v /dev/<replaceable>[xxx]</replaceable> ${CLFS}</userinput></screen>
30
31 <para>Replace <replaceable>[xxx]</replaceable> with the designation of
32 the CLFS partition.</para>
33
34 <para>If using multiple partitions for CLFS (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><userinput>mkdir -pv ${CLFS}
39mount -v /dev/<replaceable>[xxx]</replaceable> ${CLFS}
40mkdir -v ${CLFS}/usr
41mount -v /dev/<replaceable>[yyy]</replaceable> ${CLFS}/usr</userinput></screen>
42
43 <para>Replace <replaceable>[xxx]</replaceable> and
44 <replaceable>[yyy]</replaceable> with the appropriate partition
45 names.</para>
46
47 <para>Ensure that this new partition is not mounted with permissions
48 that are too restrictive (such as the nosuid, nodev, or noatime options).
49 Run the <command>mount</command> command without any parameters to see
50 what options are set for the mounted CLFS partition. If
51 <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>
Note: See TracBrowser for help on using the repository browser.