web-dev-qa-db-fra.com

Qu'est-ce que dpkg-reconfigure et en quoi est-il différent de dpkg --configure?

On m'a récemment donné une réponse à une autre question Aide: "aptd" est au maximum de mon processeur? qui incluait l'exécution des commandes

Sudo dpkg-reconfigure -phigh -a 

et

Sudo dpkg --configure -a

Tout cela semble raisonnable, mais j'étais curieux de savoir quelques points.

Qu'est-ce que dpkg-reconfigure et que signifient les drapeaux -phigh -a?

En quoi est-ce différent de dpkg --configure?

18

De man dpkg

   --configure package...|-a|--pending
          Configure a package which has been unpacked but not yet  config‐
          ured.   If  -a  or  --pending  is  given instead of package, all
          unpacked but unconfigured packages are configured.

          Configuring consists of the following steps:

          1.  Unpack  the  conffiles, and at the same time back up the old
          conffiles, so that they can be restored if something goes wrong.

          2. Run postinst script, if provided by the package.

De man dpkg-reconfigure

   dpkg-reconfigure - reconfigure an already installed package

   -pvalue, --priority=value
       Specify the minimum priority of question that will be displayed.
       dpkg-reconfigure normally shows low priority questions no matter
       what your default priority is. See debconf(7) for a list.

   -a, --all
       Reconfigure all installed packages that use debconf. Warning: this
       may take a long time.

Ici, dpkg --configure -a configurera tous les paquets non compressés mais non configurés. alors que dpkg-reconfigure -phigh -a reconfigurera tous les packages installés qui utilisent debconf avec une priorité élevée.

15
souravc