O que é o dpkg-reconfigure e como é diferente do dpkg --configure?

18

Recentemente, recebi uma resposta para outra pergunta Ajuda: "aptd" está atingindo o limite máximo da minha CPU? que incluiu a execução dos comandos

sudo dpkg-reconfigure -phigh -a 

e

sudo dpkg --configure -a

Tudo isso parece razoável, mas eu estava curioso sobre algumas coisas.

O que é dpkg-reconfiguree o que -phigh -asignificam as bandeiras?

Qual é a diferença dpkg --configure?

Matthew Brown tcp Lord Matt
fonte

Respostas:

16

A partir 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.

A partir 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.

Aqui dpkg --configure -airá configurar todos os pacotes descompactados, mas não configurados. enquanto dpkg-reconfigure -phigh -areconfigurará todos os pacotes instalados que são usados debconfcom alta prioridade.

souravc
fonte
3
Por favor, esteja avisado que as opções "-a" "--all" não estão disponíveis desde a versão 15.10 e posterior, como eu achei tentando usá-la na 16.04. askubuntu.com/questions/775328/...
linux64kb
11
Ainda estou um pouco confuso. Então, o que exatamente o dpkg-reconfigure faz no pacote quando o "reconfigura"? Eu vi a primeira resposta onde diz dpkg-reconfigure neste site: superuser.com/questions/1153203/… . O que acontece com o resolvconf quando é reconfigurado?
Samuel L.