creatingpartition.xml 2.8 KB

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