在目录'/etc/apt/apt.conf.d/'中忽略文件'50unattended-upgrades.ucf-dist',因为它的文件名扩展名无效。

昨天我升级了发行版,今天当我使用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
@Zanna,那个方法起作用了。移动后不再显示错误,但我希望重启后我的电脑能够开机。下一步会尝试这个。我还有一个问题是,在升级发行版之前,我的启动速度足够快,现在需要大约2-3分钟。对此毫无头绪。 - Gerorge Timber
重启后记得告诉我们。你可以自己回答你的问题 :) 如果想知道启动时为什么要花这么长时间,运行 systemd-analyze blame 命令,不过这是一个新问题。 - Zanna
好的,我会重新启动后更新答案。谢谢! - Gerorge Timber
2个回答

请参阅这个关于.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: 表示它仅仅是一个通知,并没有阻止 Apt 进行任何操作,如更新和升级。 - David Foerster
但是在删除该文件之前,我无法安装任何软件。谢谢@Rashedul。 - Isuru
4你是不是想删除的是文件?即 sudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old - Yuval Atzmon
在我的情况下,文件名是"50unattended-upgrades.ucf-old"。他们应该制定一些规范来保留这些过时的文件,同时又不生成任何日志消息,这样我们就不会丢失文件,也不会引起警报 :) - Aquarius Power
1在Ubuntu 18.04中,apt不再对文件名扩展为.ucf-*的文件发出警告。 - jarno

这也发生在我从14.04升级到16.04的时候,升级安装过程中我被提示选择原始(由我修改过的)50unattended-upgrades文件还是包更新中的原始文件,当然我选择保留前者。
安装后,我发现系统中多了一个不必要的文件50unattended-upgrades.ucf-dist,我快速浏览了一下以检查新旧版本之间是否有任何重大变化,显然并没有任何区别,所以我直接删除了它。
总之,如果你对当前版本的50unattended-upgrades满意,你可以将其删除。