N: Ignorando el archivo '50unattended-upgrades.ucf-dist' en el directorio '/etc/apt/apt.conf.d/' ya que tiene una extensión de nombre de archivo no válida


84

Ayer actualicé la distribución y hoy cuando uso apt-getpara instalar cualquier cosa o para actualizar, recibo un error:

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

Hasta donde sé, este error ocurre cuando algunas configuraciones / configuraciones nuevas se mezclan con las antiguas. Así que intenté depurarlo moviéndome a la carpetals -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

Parece que el archivo 50unattended-upgrades.ucf-distestá presente. Ahora mi pregunta es si la uso rm 50unattended-upgrades.ucf-dist, ¿causaría alguna muerte en el futuro? Tengo un poco de miedo de usar rm aquí, ya que la extensión es ucf-dist. Investigué en Internet y en foros públicos y la gente escribía sobre el uso gconf-cleaner, ¡pero no lo he intentado!

Actualización 1: como se sugiere en el comentario, estoy poniendo la salida de 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
Ese archivo no está haciendo nada, creo, ¿todo está comentado? Y de todos modos se ignora, por lo que su sistema aparentemente se está gestionando sin él. Lo diría mven algún lugar donde no se leerá, como en su casa, entonces, ¿podría presumiblemente corregir el nombre del archivo y volver a colocarlo en caso de que lo necesite?
Zanna

Eso funcionó @Zanna, después de moverlo no muestra el error, pero espero que después de reiniciar, mi PC se abra. Lo intentaría después. Mi otra preocupación es que antes de actualizar la distribución mi velocidad de arranque fue lo suficientemente rápida, ahora toma alrededor de 2-3 minutos.
Ni

Je, háganos saber después de reiniciar. podría publicar una respuesta a su propia pregunta :) Para ver qué demora tanto en el arranque, ejecute systemd-analyze blame, pero esa es una nueva pregunta.
Zanna

Claro, actualizaré la respuesta una vez que reinicie ... ¡salud!
Gerorge Timber

Respuestas:


76

Consulte esta explicación del origen y el propósito de los archivos .ucf-dist . Esto significa que puede ignorar el aviso (eso es lo que significa el N:prefijo) o eliminar dicho archivo.

Antes de eliminar el archivo, asegúrese de que no contenga ningún paquete que aún pueda necesitar. Compárelo con el que está actualmente activo en su sistema:

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

Si está seguro de que ya no necesita nada, puede ignorar este archivo o eliminarlo. Para eliminar el archivo, ejecute:

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

77
No es necesario actualizar y actualizar después de la eliminación de ese archivo. El prefijo N:significa que es más que un n Otice y no bloquear cualquier acción de Apt como la actualización y modernización.
David Foerster el

Pero no pude instalar ningún software hasta que eliminé el archivo. Gracias @Rashedul.
Isuru

44
¿No querías eliminar el archivo antiguo ? es decirsudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old
Yuval Atzmon

en mi caso, el archivo es "50unattended-updatesdes.ucf-old", deberían crear una convención para mantener estos archivos obsoletos sin generar mensajes de registro, por lo que no perderíamos el archivo y tampoco nos alarmaríamos :)
Acuario Poder

1
@AquariusPower en Ubuntu 18.04 apt ya no alarma sobre archivos con extensión de nombre de archivo .ucf-*.
jarno

18

Esto también me sucedió cuando actualicé de 14.04 a 16.04, durante la instalación de la actualización se me solicitó elegir entre el archivo original (modificado por mí) 50 actualizaciones desatendidas o el original contenido en la actualización del paquete, por supuesto, elegí mantener el ex.

Después de la instalación, el archivo no solicitado 50unattended-upgrades.ucf-dist estaba presente en mi sistema, después de echar un rápido vistazo para verificar si había algún cambio significativo con la versión anterior del archivo, era obvio que no había diferencia, así que simplemente lo eliminé.

En pocas palabras , puede deshacerse de él si está satisfecho con su versión actual de 50 actualizaciones desatendidas .

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.