0

When I look at what I have installed via apt list --installed, why are there so many entries without manual pages?

I tried info [package name] and package name --help and get the output

bash: package name: command not found 
4
  • 2
    Not all packages are command line utilities. Commented Apr 23, 2019 at 21:54
  • Ok great so, what are they and or where can I find documentation regarding their purpose?\ Commented Apr 24, 2019 at 0:11
  • 1
    dpkg -L package | grep /man | xargs -L 1 basename Commented Apr 24, 2019 at 0:23
  • Online list of binary packages with man pages in Debian stretch. Commented Apr 24, 2019 at 6:37

2 Answers 2

1

People think that you are looking for manual pages, because you erroneously think that you are looking for manual pages. To see descriptions of what the packages in that list actually are, use:

  • aptitude show ${PACKAGE_NAME}
  • apt show ${PACKAGE_NAME}

Further reading

0

man [binary name] is the useful syntax to enter at the command line.

1
  • 2
    It's not the package name but the binary that comes with it provided that it has a man page. The man pages are found in /usr/share/man/man# where man# corresponds to /usr/share/man/man1, /usr/share/man/man2 and so on and so forth. Commented Apr 24, 2019 at 1:57

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.