web-dev-qa-db-ja.com

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

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

Sudo dpkg-reconfigure -phigh -a 

そして

Sudo dpkg --configure -a

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

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

dpkg --configureとどう違うのですか?

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を使用するすべてのインストール済みパッケージを高い優先度で再構成します。

16
souravc