I installed a locally compiled version of OpenSSL and I forgot to skip the man pages. Now I can't access the man page for the OS's passwd(1).
- OS: Raspberry's Debian Stretch (with GUI)
- OpenSSL: 1.1.1g
Using apropos gave me a hint that there are also extensions to be browsed with -e flag (man man):
passwd(1) - change user password passwd(1ssl) - compute password hashes However, none of the following worked for me
man passwdman 1 passwd(from answer but still doesn't work)man -s 1 passwdman -s 1 -e '' passwdman -s 1 -e posix passwd
It seems that man will default to the ssl extension, which makes me wonder... How can I look at the original passwd(1) man page?
Note: no uninstalling allowed.
man -f passwd(which should listpasswd(1)andpasswd(1ssl), as you already posted) andman -aw passwd? (Hoping yourmanversion supports these options). I suspect you have two files namedpasswd.1.gz(actually, more than onepasswd.1, with an optional extension) in distinct directories and that your question has been misread.manimplementation you may be interested in Why man -k or Apropos cannot find some pages while man -a can?