Fix “No manual entry found for ..” in 3 easy steps

A lot of users have come across this issue where manual entries cannot be found for the commands. The errors are like the one shown below.

$ man chmod
No manual entry for chmod
See 'man 7 undocumented' for help when manual pages are not available.

This error occurs when the MANPATH for the manual entries go missing or have been replaced with something else. And this happens to users who already have manual files installed.
If you are a victim of this annoying error, try the following steps.

1. $ echo $MANPATH.
2. $ sudo vim /etc/environment
3. Add this to the file. MANPATH="/usr/share/man"

Explanation of the above steps
1. This is to check what the default manual path for Ubuntu is set to. By default it is blank. If the $MANPATH throws up any other path, then you need to add the path for the manual pages.
2. You can use gedit or nano . Command for gedit is gksudo gedit /etc/environment
3. This is for setting the manual entry path. If you have any other path set in the MANPATH, then just add /usr/share/man in the file path. For example, if you have MANPATH already set like this

MANPATH="/usr/local/texlive/2009/texmf/doc/man"

then you need to add the /usr/share/man at the end after adding a ‘:’ so that the final entry looks like this

MANPATH="/usr/local/texlive/2009/texmf/doc/man:/usr/share/man"

Thats it. Enjoy your manuals.

Leave a Reply

tuxtrixmod
Scroll to Top