aboutlfs.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <sect1 id="ch02-aboutlfs">
  2. <title>About $LFS</title>
  3. <?dbhtml filename="aboutlfs.html" dir="chapter02"?>
  4. <para>Please read the following carefully: throughout this book
  5. the variable LFS will be used frequently. $LFS must at all times be
  6. replaced with the directory where the partition that contains the LFS system
  7. is mounted. How to create and where to mount the partition will be
  8. explained in full detail in Chapter 4. For example, let's assume that
  9. the LFS partition is mounted on /mnt/lfs.</para>
  10. <para>When you are told to run a command like
  11. <userinput>./configure --prefix=$LFS/static</userinput> you actually have to
  12. execute <userinput>./configure --prefix=/mnt/lfs/static</userinput>.</para>
  13. <para>It's important that this is done no matter where it is read; be it in
  14. commands entered in a shell, or in a file edited or created.</para>
  15. <para>A possible solution is to set the environment variable LFS.
  16. This way $LFS can be entered literally instead of replacing it with
  17. /mnt/lfs. This is accomplished by running: </para>
  18. <para><screen><userinput>export LFS=/mnt/lfs</userinput></screen></para>
  19. <para>Now, if you are told to run a command such as
  20. <userinput>./configure --prefix=$LFS/static</userinput>, then you may type
  21. it literally. Your shell will replace $LFS with /mnt/lfs when it processes
  22. the command line (meaning when you hit enter after having typed the
  23. command).</para>
  24. </sect1>