perl-inst.xml 877 B

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