9

Is apt-file part of apt? I have apt installed by default, but no apt-file.

How about apt-cache? I don't remember whether mine was installed by default or me.

Kalle Richter
  • 6,180
  • 21
  • 70
  • 103
Tim
  • 25,177

1 Answers1

18

apt-file is its own separate program that is not part of apt, but has interactions with apt components, more specifically it pulls a list of 'files' known in packages and then searches the data in those lists of files to find certain searched-for terms and parameters. It has apt-like functions but it's its own package in the Universe (non-main, community-contributed and supported) repositories.

apt-cache however is part of the apt packages/suite, and is a 'standard' apt utility/program that is installed with every Ubuntu installation.

Thomas Ward
  • 74,764