source: chapter03/creatingpart.xml@ 764d8f4

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.0 6.1 6.1.1 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 v4_0 v4_1 v5_0 v5_1 v5_1_1 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 764d8f4 was 764d8f4, checked in by Timothy Bauscher <timothy@…>, 22 years ago

Applied Bill Maltby's grammatic-fixes patch.

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

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<sect1 id="ch04-creatingpart">
2<title>Creating a new partition</title>
3<?dbhtml filename="creatingpart.html" dir="chapter04"?>
4
5<para>It is possible to build LFS on only one partition - the partition
6in which your original distribution is installed. While this is not
7recommended for your first LFS installation, it may be useful if you
8are short on disk space. If you feel brave, take a look at the
9<emphasis>Install LFS next to existing systems on the same
10partition</emphasis> hint at <ulink
11url="&hints-root;lfs_next_to_existing_systems.txt"/>.</para>
12
13<para>Before we can build our new Linux system, we need an empty
14Linux partition where we can build it. We recommend a partition size
15of at least 1 GB. This provides enough space to store the tarballs and
16compile all of the packages. You will probably need more space if you
17intend to install additional software and use the LFS system as your
18primary Linux system. If a Linux native partition is already available,
19this subsection can be skipped.</para>
20
21<para>Since your system memory can only hold a limited amount of data
22at one time, we recommend that disk space be set aside for swap files.
23A swap file is a place where items in memory may be stored until they
24are called for. This disk space may be shared between your host system
25and your LFS system. If you already have a swap partition, then you
26probably don't need to create another one. Otherwise, you should create
27a swap partition via an fdisk program. Regardless, you need to remember
28the designation of the swap partition (such as hda2) as it will be needed
29when we create the <filename>/etc/fstab</filename> file.</para>
30
31<para>The cfdisk program (or another fdisk-like program) should be
32started with the appropriate hard disk as the argument (like /dev/hda
33if a new partition is to be created on the primary master IDE disk).
34Using this program, create a Linux native partition. Please refer to
35the documentation of your fdisk program (the man pages are often a
36good place to start) for information about creating Linux native
37partitions and writing partition tables.</para>
38
39<para>The designation of your new partition should be remembered.
40It might be something similar to hda11. This newly created partition
41will be referred to as the LFS partition in this book.</para>
42
43</sect1>
Note: See TracBrowser for help on using the repository browser.