“debconf:延迟包配置,因为没有安装 apt-utils”是什么意思?

Dav*_*vid 77 linux debian apt

我刚刚安装了 Debian,当我看到这条消息时,我只是在使用 apt-get instal 安装一些软件包:

debconf: delaying package configuration, since apt-utils is not installed
Run Code Online (Sandbox Code Playgroud)

这是什么意思?一旦我安装了 apt-utils,如何配置软件包?

ste*_*tew 61

apt-utils 包含/usr/bin/apt-extracttemplates当软件包需要询问您有关如何配置的问题时使用的程序。这个包是 Priority: important ,意味着它应该真的被安装,除非在极少数情况下。

如果有配置挂起,dpkg-reconfigure [package]将执行它。如果您错过了配置多个软件包并且不知道是哪个,请运行dpkg-reconfigure -au以完成 (a)ll (u)nseen 配置问题。

  • 如果我只需要以非交互方式安装软件包,是否需要此实用程序?我遇到了 [一个问题](https://github.com/tianon/docker-brew-ubuntu-core/issues/59)。 (17认同)