askforhelp.xml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <sect1 id="ch02-askforhelp">
  2. <title>How to ask for help</title>
  3. <?dbhtml filename="askforhelp.html" dir="chapter02"?>
  4. <para>If you encounter a problem while using this book, and your problem
  5. is not listed in the FAQ (<ulink
  6. url="http://www.linuxfromscratch.org/faq"/>), you will find that most
  7. of the people on Internet Relay Chat (IRC) and
  8. on the mailing lists are willing to help you. An
  9. overview of the LFS mailing lists can be found in
  10. <xref linkend="ch01-maillists"/>. To assist us in diagnosing and solving
  11. your problem, include as much relevant information as possible in your
  12. request for help.</para>
  13. <sect2>
  14. <title>Things to mention</title>
  15. <para>Apart from a brief explanation of the problem you're having, the
  16. essential things to include in your request are:</para>
  17. <itemizedlist>
  18. <listitem><para>the version of the book you are using (being &version;),</para></listitem>
  19. <listitem><para>the package or section giving you problems,</para></listitem>
  20. <listitem><para>the exact error message or symptom you are receiving,</para></listitem>
  21. <listitem><para>whether you have deviated from the book at all.</para></listitem>
  22. </itemizedlist>
  23. <para>(Note that saying that you've deviated from the book doesn't mean
  24. that we won't help you. After all, LFS is about choice. It'll just
  25. help us to see other possible causes of your problem.)</para>
  26. </sect2>
  27. <sect2>
  28. <title>Configure problems</title>
  29. <para>When something goes wrong during the stage where the configure
  30. script is run, look at the last lines of the
  31. <filename>config.log</filename>. This file may contain errors
  32. encountered during configure which weren't printed to the screen.
  33. Include those relevant lines if you decide to ask for help.</para>
  34. </sect2>
  35. <sect2>
  36. <title>Compile problems</title>
  37. <para>To help us find the cause of the problem, both screen output and
  38. the contents of various files are useful. The screen output from both
  39. the ./configure script and the make run can be useful. Don't blindly
  40. include the whole thing but on the other hand, don't include too little.
  41. As an example, here is some screen output from make:</para>
  42. <para><screen>gcc -DALIASPATH=\"/mnt/lfs/usr/share/locale:.\"
  43. -DLOCALEDIR=\"/mnt/lfs/usr/share/locale\" -DLIBDIR=\"/mnt/lfs/usr/lib\"
  44. -DINCLUDEDIR=\"/mnt/lfs/usr/include\" -DHAVE_CONFIG_H -I. -I.
  45. -g -O2 -c getopt1.c
  46. gcc -g -O2 -static -o make ar.o arscan.o commands.o dir.o expand.o file.o
  47. function.o getopt.o implicit.o job.o main.o misc.o read.o remake.o rule.o
  48. signame.o variable.o vpath.o default.o remote-stub.o version.o opt1.o
  49. -lutil job.o: In function `load_too_high':
  50. /lfs/tmp/make-3.79.1/job.c:1565: undefined reference to `getloadavg'
  51. collect2: ld returned 1 exit status
  52. make[2]: *** [make] Error 1
  53. make[2]: Leaving directory `/lfs/tmp/make-3.79.1'
  54. make[1]: *** [all-recursive] Error 1
  55. make[1]: Leaving directory `/lfs/tmp/make-3.79.1'
  56. make: *** [all-recursive-am] Error 2</screen></para>
  57. <para>In this case, many people just include the bottom section where it
  58. says <screen>make [2]: *** [make] Error 1</screen> and onwards. This
  59. isn't enough for us to diagnose the problem because it only tells us
  60. that <emphasis>something</emphasis> went wrong, not
  61. <emphasis>what</emphasis> went wrong. The whole section, as
  62. in the example above, is what should be included to be helpful, because it
  63. includes the command that was executed and the command's error
  64. message(s).</para>
  65. <para>An excellent article on asking for help on the Internet in general
  66. has been written by Eric S. Raymond. It is available online at <ulink
  67. url="http://www.tuxedo.org/~esr/faqs/smart-questions.html"/>.
  68. Read and follow the hints in that document and you are much more likely
  69. to get a response to start with and also to get the help you actually
  70. need.</para>
  71. </sect2>
  72. </sect1>