web-dev-qa-db-ja.com

無人アップグレードが自動的に起動されないようにするにはどうすればよいですか?

最近、Trisquel 7.0で4年間実行していたデスクトップPCにTrisquel 8.0 LTS(Flidas)をインストールしました。システムが非常に遅くなった。 RAMとCPU使用率を確認したところ、CPUがほぼ100%であることがわかりました。topを調整して何が問題なのかを確認し、unattended-upgrがCPU全体を消費します。

enter image description here

Sudo kill 1803を使用してPIDで強制終了しようとしましたが、しばらくすると自動的に再開しました。無人アップグレードは、重要なセキュリティ更新プログラムを自動的にインストールすることを目的としていることを知っていますが、自動起動を無効にする必要があります。

それ、どうやったら出来るの?

9
Pandya

次のように自動アップデーターを停止する必要があります。

次のコマンドを実行します

Sudo dpkg-reconfigure -plow unattended-upgrades

無人アップグレードを構成するためのプロンプトが表示されます。

enter image description here

いいえを選択して、更新の自動ダウンロードとインストールを無効にし、Enterキーを押します。

これは設定ファイルを更新します/etc/apt/apt.conf.d/20auto-upgrades、設定APT::Periodic::Unattended-Upgradeから"0"

  $ Sudo dpkg-reconfigure -plow unattended-upgrades
  Replacing config file /etc/apt/apt.conf.d/20auto-upgrades with new version
  $ cat /etc/apt/apt.conf.d/20auto-upgrades
  APT::Periodic::Update-Package-Lists "0";
  APT::Periodic::Unattended-Upgrade "0";

パッケージの構成の詳細については、 man dpkg-reconfigure を参照してください。

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

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.

--no-reload
           Prevent dpkg-reconfigure from reloading templates. Use with caution; this will prevent
           dpkg-reconfigure from repairing broken templates databases.  However, it may be useful
           in constrained environments where rewriting the templates database is expensive.
16
user88036