dpkg-reconfigureとは何ですか?dpkg --configureとはどう違いますか?


18

最近、別の質問への回答がありました。ヘルプ:「aptd」はCPUを使い果たしていますか?コマンドの実行を含みました

sudo dpkg-reconfigure -phigh -a 

そして

sudo dpkg --configure -a

それはすべて理にかなっているように思えますが、いくつかのことに興味がありました。

何でdpkg-reconfigure、何をか-phigh -aのフラグの意味は?

とはどう違いdpkg --configureますか?

回答:


16

から 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.

から 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.

ここでdpkg --configure -aは、すべての未パッケージの未構成パッケージを構成します。一方、高い優先度dpkg-reconfigure -phigh -aで使用するすべてのインストール済みパッケージを再構成しますdebconf


3
「-a」「-all」オプションは、16.04で使用しようとしているため、15.10リリース以降では使用できないことに注意してください。 askubuntu.com/questions/775328/...
linux64kb

1
しかし、私はまだ少し混乱しています。それで、dpkg-reconfigureはパッケージを「再構成」するときに正確に何をしますか?このサイトでdpkg-reconfigureと書かれている最初の答えを見ました:superuser.com/questions/1153203/…。resolvconfを再構成するとどうなりますか?
サミュエルL.
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.