¿Qué es dpkg-reconfigure y en qué se diferencia de dpkg --configure?

18

Recientemente recibí una respuesta a otra pregunta Ayuda: "aptd" está maximizando mi CPU? que incluía ejecutar los comandos

sudo dpkg-reconfigure -phigh -a 

y

sudo dpkg --configure -a

Todo eso parece razonable, pero tenía curiosidad por algunas cosas.

¿Qué es dpkg-reconfigurey qué significan las -phigh -abanderas?

¿Cómo es diferente de dpkg --configure?

Matthew Brown, también conocido como Lord Matt
fuente

Respuestas:

16

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

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

Aquí dpkg --configure -aconfigurará todos los paquetes desempaquetados pero no configurados. mientras dpkg-reconfigure -phigh -aque reconfigurará todos los paquetes instalados que se usan debconfcon alta prioridad.

souravc
fuente
3
Tenga en cuenta que las opciones "-a" "--todas" no están disponibles desde la versión 15.10 y posteriores, ya que descubrí que intentaba usarlo en 16.04. askubuntu.com/questions/775328/…
linux64kb
1
Sin embargo, todavía estoy un poco confundido. Entonces, ¿qué hace exactamente dpkg-reconfigure al paquete cuando lo "reconfigura"? Vi la primera respuesta donde dice dpkg-reconfigure en este sitio: superuser.com/questions/1153203/… . ¿Qué le sucede a resolvconf cuando se reconfigura?
Samuel L.