source: chapter02/creatingpartition.xml@ 2682464

6.1 6.1.1
Last change on this file since 2682464 was afbe6d9, checked in by Matthew Burgess <matthew@…>, 19 years ago

Merge r5317 and 5318 (wording and tagging corrections) to the testing branch

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

  • Property mode set to 100644
File size: 2.9 KB
Line 
1<?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" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="space-creatingpartition">
7<title>Creating a New Partition</title>
8<?dbhtml filename="creatingpartition.html"?>
9
10<para>Like most other operating systems, LFS is usually installed on
11a dedicated partition. The recommended approach to building an LFS
12system is to use an available empty partition or, if you have enough
13unpartitioned space, to create one. However, an LFS system (in
14fact even multiple LFS systems) may also be installed on a partition
15already occupied by another operating system and the different systems
16will co-exist peacefully. The document
17<ulink url="&hints-root;lfs_next_to_existing_systems.txt"><phrase
18condition="pdf">&hints-root;lfs_next_to_existing_ systems.txt</phrase></ulink>
19explains how to implement this, whereas this book discusses the method of
20using a fresh partition for the installation.</para>
21
22<para>A minimal system requires a partition of around 1.3 gigabytes
23(GB). This is enough to store all the source tarballs and compile
24the packages. However, if the LFS system is intended to be the primary
25Linux system, additional software will probably be installed which
26will require additional space (2 or 3 GB). The LFS system itself will
27not take up this much room. A large portion of this requirement
28is to provide sufficient free temporary storage. Compiling
29packages can require a lot of disk space which will be reclaimed after
30the package is installed.</para>
31
32<para>Because there is not always enough Random Access Memory (RAM)
33available for compilation processes, it is a good idea to use a small
34disk partition as swap space. This is used by the kernel to
35store seldom-used data and leave more memory available for active processes.
36The swap partition for an LFS system can be the same as the one used
37by the host system, in which case it is not necessary to create another
38one.</para>
39
40<para>Start a disk partitioning program such as
41<command>cfdisk</command> or <command>fdisk</command> with a command
42line option naming the hard disk on which the new partition will be
43created&mdash;for example <filename class="devicefile">/dev/hda</filename> for
44the primary Integrated Drive Electronics (IDE) disk. Create a Linux native
45partition and a swap partition, if needed. Please refer to the man
46pages of <command>cfdisk</command> or <command>fdisk</command> if you
47do not yet know how to use the programs.</para>
48
49<para>Remember the designation of the new partition (e.g.,
50<filename class="devicefile">hda5</filename>). This book will refer to this as the LFS
51partition. Also remember the designation of the swap partition. These
52names will be needed later for the <filename>/etc/fstab</filename>
53file.</para>
54
55</sect1>
56
Note: See TracBrowser for help on using the repository browser.