83

I have just installed Debian and I was just installing some packages using apt-get instal when I saw this message:

debconf: delaying package configuration, since apt-utils is not installed

What does this mean? And once I have installed apt-utils how can configure the packages?

030
  • 6,085
David
  • 1,077

1 Answers1

64

apt-utils contains the /usr/bin/apt-extracttemplates program which is used when packages need to ask you questions about how to be configured. This package being Priority: important, means it should really be installed except in rare circumstances.

If there is configuration pending, dpkg-reconfigure [package] will perform it. If you missed configuring a number of packages and don't know which, run dpkg-reconfigure -au to go through (a)ll (u)nseen configuration questions.

stew
  • 9,588