Was ist dpkg-reconfigure und wie unterscheidet es sich von dpkg --configure?

18

Ich habe kürzlich eine Antwort auf eine andere Frage erhalten . was das Ausführen der Befehle beinhaltete

sudo dpkg-reconfigure -phigh -a 

und

sudo dpkg --configure -a

Das alles scheint vernünftig, aber ich war neugierig auf ein paar Dinge.

Was ist dpkg-reconfigureund was bedeuten die -phigh -aFahnen?

Wie unterscheidet es sich von dpkg --configure?

Matthew Brown alias Lord Matt
quelle

Antworten:

16

Von 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.

Von 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.

Hier dpkg --configure -awerden alle entpackten, aber nicht konfigurierten Pakete konfiguriert. während dpkg-reconfigure -phigh -aalle installierten Pakete , die Verwendung neu konfiguriert debconfmit hohen Priorität.

souravc
quelle
3
Bitte beachten Sie, dass die "-a" "--all" -Optionen seit Version 15.10 und höher nicht mehr verfügbar sind, da ich festgestellt habe, dass ich versucht habe, sie am 16.04 zu verwenden. askubuntu.com/questions/775328/…
linux64kb
1
Ich bin immer noch ein bisschen verwirrt. Was genau macht dpkg-reconfigure mit dem Paket, wenn es es "neu konfiguriert"? Ich habe die erste Antwort mit der Aufschrift dpkg-reconfigure auf dieser Site gesehen: superuser.com/questions/1153203/… . Was passiert mit resolvconf, wenn es neu konfiguriert wird?
Samuel L.