N:無効なファイル名拡張子があるため、ディレクトリ「/etc/apt/apt.conf.d/」内のファイル「50unattended-upgrades.ucf-dist」を無視します


84

昨日はディストリビューションをアップグレードしましたが、今日apt-get何かをインストールまたは更新するために使用しているときにエラーが発生します:

N: Ignoring file '50unattended-upgrades.ucf-dist' in directory '/etc/apt/apt.conf.d/' as it has an invalid filename extension

私の知る限り、このエラーはいくつかの新しい構成/設定が古い構成/設定と混在している場合に発生します。だから私はフォルダに移動してデバッグしようとしましたls -l /etc/apt/apt.conf.d/

total 52
-rw-r--r-- 1 root root   82 May 19 07:59 00CDMountPoint
-rw-r--r-- 1 root root   40 May 19 07:59 00trustcdrom
-rw-r--r-- 1 root root  769 Sep  2 23:56 01autoremove
-r--r--r-- 1 root root 1936 Sep 25 11:56 01autoremove-kernels
-rw-r--r-- 1 root root  628 Jan  4  2015 01autoremove-postgresql
-rw-r--r-- 1 root root  202 Sep 13 02:17 20listchanges
-rw-r--r-- 1 root root 1040 Dec  9  2014 20packagekit
-rw-r--r-- 1 root root 1438 Sep 16 16:46 50appstream
-rw-r--r-- 1 root root 3945 Jun 29  2015 50unattended-upgrades
-rw-r--r-- 1 root root 4072 Sep 24 19:57 50unattended-upgrades.ucf-dist
-rw-r--r-- 1 root root  182 Mar 19  2015 70debconf
-rw-r--r-- 1 root root  142 Oct  6  2014 80debtags

ファイル50unattended-upgrades.ucf-distが存在するようです。今、私の質問は、私がそれを使用する場合rm 50unattended-upgrades.ucf-dist、それは先に死を引き起こすでしょうか?拡張子がであるため、ここでrmを使用するのが少し怖いですucf-dist。私はインターネットと公開フォーラムで調査し、人々はの使用について書いgconf-cleanerていましたが、試していませんでした!

更新1:コメントで示唆されているように、私は cat 50unattended-upgrades.ucf-dist

// Unattended-Upgrade::Origins-Pattern controls which packages are
// upgraded.
//
// Lines below have the format format is "keyword=value,...".  A
// package will be upgraded only if the values in its metadata match
// all the supplied keywords in a line.  (In other words, omitted
// keywords are wild cards.) The keywords originate from the Release
// file, but several aliases are accepted.  The accepted keywords are:
//   a,archive,suite (eg, "stable")
//   c,component     (eg, "main", "crontrib", "non-free")
//   l,label         (eg, "Debian", "Debian-Security")
//   o,origin        (eg, "Debian", "Unofficial Multimedia Packages")
//   n,codename      (eg, "jessie", "jessie-updates")
//     site          (eg, "http.debian.net")
// The available values on the system are printed by the command
// "apt-cache policy", and can be debugged by running
// "unattended-upgrades -d" and looking at the log file.
//
// Within lines unattended-upgrades allows 2 macros whose values are
// derived from /etc/debian_version:
//   ${distro_id}            Installed origin.
//   ${distro_codename}      Installed codename (eg, "jessie")
Unattended-Upgrade::Origins-Pattern {
        // Codename based matching:
        // This will follow the migration of a release through different
        // archives (e.g. from testing to stable and later oldstable).
//      "o=Debian,n=jessie";
//      "o=Debian,n=jessie-updates";
//      "o=Debian,n=jessie-proposed-updates";
//      "o=Debian,n=jessie,l=Debian-Security";

        // Archive or Suite based matching:
        // Note that this will silently match a different release after
        // migration to the specified archive (e.g. testing becomes the
        // new stable).
//      "o=Debian,a=stable";
//      "o=Debian,a=stable-updates";
//      "o=Debian,a=proposed-updates";
        "origin=Debian,codename=${distro_codename},label=Debian-Security";
};

// List of packages to not update (regexp are supported)
Unattended-Upgrade::Package-Blacklist {
//  "vim";
//  "libc6";
//  "libc6-dev";
//  "libc6-i686";
};

// This option allows you to control if on a unclean dpkg exit
// unattended-upgrades will automatically run 
//   dpkg --force-confold --configure -a
// The default is true, to ensure updates keep getting installed
//Unattended-Upgrade::AutoFixInterruptedDpkg "false";

// Split the upgrade into the smallest possible chunks so that
// they can be interrupted with SIGUSR1. This makes the upgrade
// a bit slower but it has the benefit that shutdown while a upgrade
// is running is possible (with a small delay)
//Unattended-Upgrade::MinimalSteps "true";

// Install all unattended-upgrades when the machine is shuting down
// instead of doing it in the background while the machine is running
// This will (obviously) make shutdown slower
//Unattended-Upgrade::InstallOnShutdown "true";

// Send email to this address for problems or packages upgrades
// If empty or unset then no email is sent, make sure that you
// have a working mail setup on your system. A package that provides
// 'mailx' must be installed. E.g. "user@example.com"
//Unattended-Upgrade::Mail "root";

// Set this value to "true" to get emails only on errors. Default
// is to always send a mail if Unattended-Upgrade::Mail is set
//Unattended-Upgrade::MailOnlyOnError "true";

// Do automatic removal of new unused dependencies after the upgrade
// (equivalent to apt-get autoremove)
//Unattended-Upgrade::Remove-Unused-Dependencies "false";

// Automatically reboot *WITHOUT CONFIRMATION* if
//  the file /var/run/reboot-required is found after the upgrade 
//Unattended-Upgrade::Automatic-Reboot "false";

// Automatically reboot even if there are users currently logged in.
//Unattended-Upgrade::Automatic-Reboot-WithUsers "true";

// If automatic reboot is enabled and needed, reboot at the specific
// time instead of immediately
//  Default: "now"
//Unattended-Upgrade::Automatic-Reboot-Time "02:00";

// Use apt bandwidth limit feature, this example limits the download
// speed to 70kb/sec
//Acquire::http::Dl-Limit "70";

1
そのファイルは私が思うに何もしていません-すべてがコメントされていますか?とにかく無視されているので、システムは明らかにそれなしで管理しています。私はちょうどmvあなたの家のように、それが読まれないどこかで、それからあなたはおそらくあなたがそれを必要とするならファイル名を修正して元に戻すことができますか?
ザンナ

これは@Zannaで機能しました。移動後はエラーが表示されませんが、再起動後にPCが開くことを願っています。次に試してみます。私のもう1つの懸念は、ディストリビューションをアップグレードする前に、起動速度が十分に速かったということです。今では約2〜3分かかります。そのことについて無知
Gerorge木材

再起動後にお知らせください。自分の質問への回答を投稿することができます:)起動時にこれほど時間がかかっているものを確認するには、を実行しますがsystemd-analyze blame、これは新しい質問です。
ザンナ

確かに、再起動したら答えを更新します。
Gerorge Timber

回答:


76

.ucf-distファイルの起源と目的に関するこの説明を参照してください。これは、通知を無視するか(N:接頭辞が表すもの)、そのファイルを削除できることを意味します。

ファイルを削除する前に、必要なパッケージが含まれていないことを確認してください。システムで現在アクティブになっているものと比較します。

diff /etc/apt/apt.conf.d/50unattended-upgrades.ucf-old /etc/apt/apt.conf.d/50unattended-upgrades

これ以上何も必要ないことが確実な場合は、このファイルを無視するか削除してください。ファイルを削除するには、次を実行します。

sudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist

7
そのファイルの削除後に更新およびアップグレードする必要はありません。プレフィックスはN:、それは単にだということを意味し、n個の oticeと更新とアップグレードなどのアプトのいずれかの作用をブロックしませんでした。
デビッドフォースター

しかし、ファイルを削除するまでソフトウェアをインストールできませんでした。ありがとう@Rashedul。
いする

4
古いファイルを代わりに削除するつもりはありませんか?すなわちsudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old
ユヴァルAtzmon

私の場合、ファイルは「50unattended-upgrades.ucf古い」されて、まだすべてのログメッセージを生成しないが、彼らはこれらの時代遅れのファイルを維持するために、いくつかの規則を作成する必要がありますので、私たちは、ファイルを失うことなく、どちらもアラームの発生した:)を得ないだろう
アクエリアスパワー

1
Ubuntu 18.04 aptの@AquariusPowerは、ファイル名拡張子を持つファイルについて警告しなくなりました.ucf-*
ジャーノ

18

これは、14.04から16.04にアップグレードしたときにも起こりました。アップグレードインストール中に、元の(自分が変更した)50無人アップグレードファイルまたはパッケージアップデートに含まれる元のファイルを選択するように求められました。前者。

インストール後、ファイル50unattended-upgrades.ucf-distの不要なファイルがシステムに存在し、古いバージョンのファイルに重大な変更があったかどうかを簡単に確認した後、何もなかったことは明らかでした違いなので、単純に削除しました。

要するに、現在のバージョンの50無人アップグレードに満足しているのであれば、それを取り除くことができます

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.