<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: install man pages in HTML format and show them via Apache in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583961#M68477</link>
    <description>You can follow this steps,&lt;BR /&gt;&lt;BR /&gt;man command &amp;gt;command.txt&lt;BR /&gt;&lt;BR /&gt;The above command produces non stop output of man.  Create a simple html page calling this file in HTML body. Man pages under /usr/share/man are compressed files. You can also do gzcat /usr/share/man/command files to view the actual file.  But the format is different.&lt;BR /&gt;&lt;BR /&gt;Create a HTML page placing all commands and use href to reference to these man files.&lt;BR /&gt;&lt;BR /&gt;I would like to know if there is any direct method for this.&lt;BR /&gt;&lt;BR /&gt;And If I am in your place, i would place PDF file containing all HP-UX commands and reference this file.  There is PDF file which has all commands.&lt;BR /&gt;&lt;BR /&gt;Thx,&lt;BR /&gt;Pradeep.</description>
    <pubDate>Sat, 16 Jul 2005 20:12:26 GMT</pubDate>
    <dc:creator>Pradeep_29</dc:creator>
    <dc:date>2005-07-16T20:12:26Z</dc:date>
    <item>
      <title>install man pages in HTML format and show them via Apache</title>
      <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583960#M68476</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;is it any way to install man pages in HTML format and show them via Apache ?&lt;BR /&gt;I have Debian Sarge. &lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;chris&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 16 Jul 2005 08:52:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583960#M68476</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2005-07-16T08:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: install man pages in HTML format and show them via Apache</title>
      <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583961#M68477</link>
      <description>You can follow this steps,&lt;BR /&gt;&lt;BR /&gt;man command &amp;gt;command.txt&lt;BR /&gt;&lt;BR /&gt;The above command produces non stop output of man.  Create a simple html page calling this file in HTML body. Man pages under /usr/share/man are compressed files. You can also do gzcat /usr/share/man/command files to view the actual file.  But the format is different.&lt;BR /&gt;&lt;BR /&gt;Create a HTML page placing all commands and use href to reference to these man files.&lt;BR /&gt;&lt;BR /&gt;I would like to know if there is any direct method for this.&lt;BR /&gt;&lt;BR /&gt;And If I am in your place, i would place PDF file containing all HP-UX commands and reference this file.  There is PDF file which has all commands.&lt;BR /&gt;&lt;BR /&gt;Thx,&lt;BR /&gt;Pradeep.</description>
      <pubDate>Sat, 16 Jul 2005 20:12:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583961#M68477</guid>
      <dc:creator>Pradeep_29</dc:creator>
      <dc:date>2005-07-16T20:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: install man pages in HTML format and show them via Apache</title>
      <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583962#M68478</link>
      <description>'man2html' is your friend:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://packages.debian.org/unstable/doc/man2html" target="_blank"&gt;http://packages.debian.org/unstable/doc/man2html&lt;/A&gt;</description>
      <pubDate>Sat, 16 Jul 2005 23:17:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583962#M68478</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-07-16T23:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: install man pages in HTML format and show them via Apache</title>
      <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583963#M68479</link>
      <description>&lt;BR /&gt;as stuart mentioned, convert man pages to html using man2html.&lt;BR /&gt;&lt;BR /&gt;Usage is: man2html &lt;MAN page="" file=""&gt;&lt;BR /&gt;&lt;BR /&gt;remember, the man page file has to be gunziped before feeding on to man2html.man2html can also do multiple files at a time.&lt;BR /&gt;&lt;BR /&gt;if you do not want to do this, you can try accessing the man pages online, check this link: &lt;A href="http://linux.ctyme.com/" target="_blank"&gt;http://linux.ctyme.com/&lt;/A&gt;  there are lot more sites like this (eg: linux documentation project &lt;A href="http://www.tldp.org/)" target="_blank"&gt;http://www.tldp.org/)&lt;/A&gt; which allows you to download the html-ized man pages.&lt;BR /&gt;&lt;BR /&gt;Then its all matter of copying the html files to a particular directory in apache (/var/www/html) and accessing them through browser.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gopi&lt;/MAN&gt;</description>
      <pubDate>Sun, 17 Jul 2005 03:18:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583963#M68479</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-07-17T03:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: install man pages in HTML format and show them via Apache</title>
      <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583964#M68480</link>
      <description>thanks,&lt;BR /&gt;&lt;BR /&gt;# apt-get install apache man2html&lt;BR /&gt;&lt;BR /&gt;simply point your browser to this URL:&lt;BR /&gt;&lt;BR /&gt;http://localhost/cgi-bin/man/man2html &lt;BR /&gt;&lt;BR /&gt;and it works excellent !&lt;BR /&gt;&lt;BR /&gt;greetings&lt;BR /&gt;chris&lt;BR /&gt;</description>
      <pubDate>Sun, 17 Jul 2005 04:17:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583964#M68480</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2005-07-17T04:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: install man pages in HTML format and show them via Apache</title>
      <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583965#M68481</link>
      <description>If you are using debian you should also have a look at 'apt-get dwww'.  It makes several documentation formats viewable with a web browser at http://localhost/dwww/ .</description>
      <pubDate>Mon, 18 Jul 2005 15:03:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583965#M68481</guid>
      <dc:creator>Mike Stroyan</dc:creator>
      <dc:date>2005-07-18T15:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: install man pages in HTML format and show them via Apache</title>
      <link>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583966#M68482</link>
      <description>There is a man2html tool which could be of use to you</description>
      <pubDate>Tue, 19 Jul 2005 21:59:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/install-man-pages-in-html-format-and-show-them-via-apache/m-p/3583966#M68482</guid>
      <dc:creator>Guru Dutta</dc:creator>
      <dc:date>2005-07-19T21:59:05Z</dc:date>
    </item>
  </channel>
</rss>

