perl-inst.xml 823 B

123456789101112131415161718192021222324252627282930313233
  1. <sect2>
  2. <title>Installation of Perl</title>
  3. <para>
  4. Install Perl by running the following commands:
  5. </para>
  6. <para>
  7. <screen>
  8. <userinput>./Configure -Dprefix=/usr &amp;&amp;</userinput>
  9. <userinput>make &amp;&amp;</userinput>
  10. <userinput>make install</userinput>
  11. </screen>
  12. </para>
  13. <para>
  14. If you don't want to answer all those questions Perl asks, you can
  15. add the -d option to the configure script and Perl will use all the
  16. default settings. To avoid the Configure script asking questions
  17. after the config.sh file has been created you can pass the -e parameter
  18. to perl as well. The commands with these parameters included will be:
  19. </para>
  20. <para>
  21. <screen>
  22. <userinput>./Configure -Dprefix=/usr -d -e &amp;&amp;</userinput>
  23. <userinput>make &amp;&amp;</userinput>
  24. <userinput>make install</userinput>
  25. </screen>
  26. </para>
  27. </sect2>