11

I can't find the ncurses man pages even after:

sudo apt-get install libncurses5-dev
Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407
Jake
  • 270

3 Answers3

18

You have to install also ncurses-doc. To install it from terminal run the following command:

sudo apt-get install ncurses-doc

Then you can read the manual page:

man ncurses
Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407
3

You can also get the man page online:

http://manpages.ubuntu.com/ncurses

You can also use this link to search http://manpages.ubuntu.com/cgi-bin/search.py?q=. Just add your search to the end of that address.

Braiam
  • 69,112
2

Besides the mentioned ncurses-doc package, don't forget to install the examples!

ncurses-examples Install ncurses-examples

They are priceless... installed at /usr/lib/ncurses/examples and best viewed with dwww

MestreLion
  • 20,726