N: Ignorowanie pliku „50unattended-upgrades.ucf-dist” w katalogu /etc/apt/apt.conf.d/ ”, ponieważ ma nieprawidłowe rozszerzenie nazwy pliku


84

Wczoraj zaktualizowałem dystrybucję, a dziś, gdy używam apt-getdo zainstalowania czegokolwiek lub aktualizacji, pojawia się błąd:

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

O ile mi wiadomo, ten błąd występuje, gdy niektóre nowe konfiguracje / ustawienia są mieszane ze starymi. Próbowałem więc debugować, przenosząc się do folderuls -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

Wygląda na to, że plik 50unattended-upgrades.ucf-distjest obecny. Teraz moje pytanie brzmi: czy rm 50unattended-upgrades.ucf-distużyję, czy spowodowałoby to jakieś ofiary śmiertelne? Trochę boję się użyć rm tutaj, ponieważ jest to rozszerzenie ucf-dist. Badałem w Internecie i na forach publicznych, a ludzie pisali o używaniu gconf-cleaner, ale nie próbowali!

Aktualizacja 1: Jak zasugerowano w komentarzu, umieszczam dane wyjściowe 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
Myślę, że ten plik nic nie robi - wszystko jest komentowane? I tak jest ignorowane, więc twój system najwyraźniej radzi sobie bez niego. Chciałbym tylko mv, żeby gdzieś nie było czytane, tak jak w twoim domu, to prawdopodobnie możesz poprawić nazwę pliku i umieścić go z powrotem na miejscu, jeśli kiedykolwiek będziesz go potrzebować?
Zanna,

To działało @Zanna, po przeniesieniu nie wyświetla błędu, ale mam nadzieję, że po ponownym uruchomieniu komputera mój komputer się otworzy. Spróbuję to później. Jeszcze jedną kwestią jest to, że przed uaktualnieniem dystrybucji prędkość uruchamiania była wystarczająco szybka, teraz zajmuje to około 2-3 minut.
Nieświadomy

Daj nam znać po ponownym uruchomieniu. możesz opublikować odpowiedź na swoje pytanie :) Aby zobaczyć, co trwa tak długo przy starcie, uruchom systemd-analyze blame, ale to jest nowe pytanie.
Zanna,

Jasne, zaktualizuję odpowiedź po ponownym uruchomieniu .. Pozdrawiam!
Gerorge Timber,

Odpowiedzi:


76

Zobacz to wyjaśnienie pochodzenia i celu plików .ucf-dist . Oznacza to, że możesz albo zignorować powiadomienie (to N:oznacza przedrostek), albo usunąć wspomniany plik.

Przed usunięciem pliku upewnij się, że nie zawiera on żadnych pakietów, których mógłbyś potrzebować. Porównaj go z tym, który jest obecnie aktywny w twoim systemie:

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

Jeśli masz pewność, że już niczego nie potrzebujesz, możesz zignorować ten plik lub usunąć go. Aby usunąć uruchomienie pliku:

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

7
Po usunięciu tego pliku aktualizacja i aktualizacja nie są konieczne. Przedrostek N:oznacza, że jest to jedynie n otice i nie blokować działanie Apt jak aktualizacja i modernizacja.
David Foerster,

Ale nie mogłem zainstalować żadnego oprogramowania, dopóki nie usunę pliku. Dzięki @Rashedul.
Isuru

4
Czy nie chciałeś usunąć starego pliku? tj.sudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old
Yuval Atzmon

w moim przypadku plik ma postać „50unattended-updates.ucf-old”, powinni stworzyć pewną konwencję, aby zachować te przestarzałe pliki, a jednocześnie nie generować żadnych komunikatów w dzienniku, abyśmy nie stracili pliku i nie zostaliby zaniepokojeni :)
Aquarius Power

1
@AquariusPower w Ubuntu 18.04 apt już nie alarmuje o plikach z rozszerzeniem nazwy pliku .ucf-*.
jarno

18

Zdarzyło mi się to również podczas aktualizacji z 14.04 do 16.04, podczas instalacji uaktualnienia zostałem poproszony o wybranie między oryginalnym (zmodyfikowanym przeze mnie) plikiem 50 nieobsługiwanych aktualizacji lub oryginalnym zawartym w aktualizacji pakietu, oczywiście zdecydowałem się zachować były.

Po instalacji w moim systemie pojawił się niesprawdzony plik 50unattended-upgrade.ucf-dist , po czym szybko rzuciłem okiem, aby sprawdzić, czy nastąpiła znacząca zmiana w starej wersji pliku, było oczywiste, że nie było żadnych różnica, więc po prostu ją usunąłem.

Podsumowując, możesz się go pozbyć, jeśli jesteś zadowolony z obecnej wersji 50 nieobsługiwanych ulepszeń .

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.