creatingpartition.xml 2.8 KB

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