I recently installed libusb-1.0-dev in Debian, but I noticed that I can't find any of the functions in the man pages. I've had a similar experience when installing SDL2 and other common libraries before. However, I can't find any information on how to install man pages other than for the C standard library and OS-level information. What is the correct way to install man pages for common libraries such as libusb-1.0?
Asked
Active
Viewed 204 times
-2
-
2After you install a package that installs man pages to either `/usr/share/man/manX` or `/usr/local/share/man/manX`, you need to change to root and run `mandb` so the man database index is updated to include the new pages. That said, this question is more appropriate on [Unix & Linux](http://unix.stackexchange.com/) ā David C. Rankin Mar 10 '21 at 03:37
-
1You have a good question, but you have posted to the wrong StackEachange site. Iām voting to close this question because your question is not "Programming" related, it is more appropriate for the StackExchange site [Unix & Linux](http://unix.stackexchange.com/). ā David C. Rankin Mar 10 '21 at 03:38
-
1debian likes to keep the documentation packages separated. Try installing libusb-1.0-doc ā William Pursell Mar 10 '21 at 13:22
1 Answers
0
Documentation is (often) in a different package:
sudo aptitude install libusb-1.0-doc

William Pursell
- 204,365
- 48
- 270
- 300