3

How do I view info files in a web browser? For man pages you can do man --html; is there anything similar for info pages?

I'm aware of makeinfo's ability to output HTML, but to do that you need the texinfo source for every package you want documentation for, which is a pain especially for preinstalled packages.

Bob Hogg
  • 121
  • 1
  • 1
  • 6

2 Answers2

2

If you have a local web server you can use info2www.

dwww is a frontend for info2www (and some other packages) that lets you search and read all sorts of local docs (including info and man pages) via a local web server.

  • Thanks! I also needed to follow the steps here https://askubuntu.com/questions/581118/i-cant-get-dwww-to-work-keeps-getting-404-not-found in order to get dwww to work. – Bob Hogg Aug 20 '15 at 00:31
0

For what it's worth, KDE's Konqueror and Rekonq browsers can display info pages directly, by exposing them through the info: protocol.

Simply launch Konqueror or Rekonq, and type e.g. "info:ls" in the address bar to access the info page for ls.

man pages are supported in the same way, via the man: protocol.

(cross-posted from https://unix.stackexchange.com/a/271396/4830)