aboutlfs.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <sect1 id="ch-partitioning-aboutlfs">
  8. <?dbhtml filename="aboutlfs.html"?>
  9. <title>Setting The $LFS Variable</title>
  10. <para>Throughout this book, the environment variable <envar>LFS</envar> will
  11. be used several times. You should ensure that this variable is always defined
  12. throughout the LFS build process. It should be set to the name of the
  13. directory where you will be building your LFS system - we will use
  14. <filename class="directory">/mnt/lfs</filename> as an example, but the
  15. directory choice is up to you. If you are building LFS on a separate
  16. partition, this directory will be the mount point for the partition.
  17. Choose a directory location and set the variable with the
  18. following command:</para>
  19. <screen role="nodump"><userinput>export LFS=<replaceable>/mnt/lfs</replaceable></userinput></screen>
  20. <para>Having this variable set is beneficial in that commands such as
  21. <command>mkdir -v $LFS/tools</command> can be typed literally. The shell
  22. will automatically replace <quote>$LFS</quote> with
  23. <quote>/mnt/lfs</quote> (or whatever the variable was set to) when it
  24. processes the command line.</para>
  25. <para>Do not forget to check that <envar>LFS</envar> is set whenever
  26. you leave and reenter the current working environment (such as when doing a
  27. <command>su</command> to <systemitem class="username">root</systemitem> or
  28. another user). Check that the <envar>LFS</envar> variable is set up
  29. properly with:</para>
  30. <screen role="nodump"><userinput>echo $LFS</userinput></screen>
  31. <para>Make sure the output shows the path to your LFS system's build
  32. location, which is <filename class="directory">/mnt/lfs</filename> if the
  33. provided example was followed. If the output is incorrect, use the command
  34. given earlier on this page to set <envar>$LFS</envar> to the correct
  35. directory name.</para>
  36. <note><para>One way to ensure that the <envar>LFS</envar> variable is always
  37. set is to edit the <filename>.bash_profile</filename> file in both your
  38. personal home directory and in <filename>/root/.bash_profile</filename> and
  39. enter the export command above. </para></note>
  40. </sect1>