man-inst.xml 652 B

123456789101112131415161718192021
  1. <sect2>
  2. <title>Installation of Man</title>
  3. <para>Run the following commands to install man:</para>
  4. <para><screen><userinput>for i in configure src/Makefile.in src/makewhatis.sh
  5. do
  6. &nbsp;&nbsp;&nbsp;cp $i $i.backup &amp;&amp;
  7. &nbsp;&nbsp;&nbsp;sed 's/gawk/awk/g' $i &gt; tmp~ &amp;&amp;
  8. &nbsp;&nbsp;&nbsp;mv tmp~ $i
  9. done &amp;&amp;
  10. chmod 755 configure &amp;&amp;
  11. ./configure -default &amp;&amp;
  12. make &amp;&amp;
  13. make install</userinput></screen></para>
  14. <para>You may want to take a look at the man hint at <ulink
  15. url="&hints-root;man.txt">&hints-root;man.txt</ulink>
  16. which deals with formatting and compression issues for man pages.</para>
  17. </sect2>