N: ignorando o arquivo '50unattended-upgrades.ucf-dist' no diretório '/etc/apt/apt.aptf.d/', pois possui uma extensão de nome de arquivo inválida


84

Ontem atualizei a distribuição e hoje, quando estou usando apt-getpara instalar qualquer coisa ou atualizar, recebo um erro:

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

Até onde eu sei, esse erro ocorre quando algumas novas configurações são misturadas com as antigas. Então, eu tentei depurar, movendo para a pastals -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 o arquivo 50unattended-upgrades.ucf-distestá presente. Agora, minha pergunta é: se eu usar rm 50unattended-upgrades.ucf-dist, isso causaria fatalidades pela frente? Estou com um pouco de medo de usar rm aqui, como é a extensão ucf-dist. Eu pesquisei na internet e em fóruns públicos e as pessoas estavam escrevendo sobre o uso gconf-cleaner, mas ainda não tentaram!

Atualização 1: Como sugerido no comentário, estou colocando a saída 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";

11
Esse arquivo não está fazendo nada que eu penso - tudo está comentado? E ele está sendo ignorado de qualquer maneira, então seu sistema aparentemente está gerenciando sem ele. Eu simplesmente mvcolocava em algum lugar que não seria lido, como na sua casa, então você poderia presumivelmente corrigir o nome do arquivo e colocá-lo de volta no lugar, se você precisar?
Zanna

Isso funcionou @Zanna, depois de movê-lo não mostra o erro, mas espero que após a reinicialização, meu PC seja aberto. Tentaria isso em seguida. Minha única preocupação é antes de atualizar a distro, minha velocidade de inicialização foi rápida o suficiente, agora leva cerca de 2-3 minutos. Sem
noção

Heh nos avise após a reinicialização. você pode postar uma resposta para sua própria pergunta :) Para ver o que está demorando tanto na inicialização, execute systemd-analyze blame, mas essa é uma nova pergunta.
Zanna

Claro, vou atualizar a resposta assim que eu reiniciar .. Saúde!
Gerorge Timber

Respostas:


76

Veja esta explicação da origem e finalidade dos arquivos .ucf-dist . Isso significa que você pode ignorar o aviso (é o N:prefixo) ou remover o arquivo.

Antes de remover o arquivo, verifique se ele não contém nenhum pacote que ainda seja necessário. Compare com o que está atualmente ativo no seu sistema:

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

Se você tiver certeza de que não precisa mais de nada, poderá ignorar ou remover esse arquivo. Para remover o arquivo, execute:

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

7
Não é necessário atualizar e atualizar após a remoção desse arquivo. O prefixo N:significa que é apenas um n Otice e não bloquear qualquer ação do Apt como atualizar e modernização.
David Foerster

Mas não consegui instalar nenhum software até remover o arquivo. Obrigado @Rashedul.
Isuru

4
Você não quis excluir o arquivo antigo ? iesudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old
Yuval Atzmon

no meu caso, o arquivo é "50unattended-upgrades.ucf-old", eles devem criar alguma convenção para manter esses arquivos obsoletos enquanto ainda não geram nenhuma mensagem de log, para não perdermos o arquivo e nem ficarmos alarmados :)
Aquarius Poder

11
O @AquariusPower no Ubuntu 18.04 apt não alarma mais sobre arquivos com extensão de nome de arquivo .ucf-*.
jarno 7/04

18

Isso também aconteceu comigo quando eu atualizei do 14.04 para o 16.04, durante a instalação da atualização, fui solicitado a escolher entre o arquivo original (modificado por mim) de 50 atualizações automáticas ou o original contido na atualização do pacote. antigo.

Após a instalação, o arquivo 50unattended-upgrades.ucf-dist estava presente no meu sistema, depois de uma rápida olhada para verificar se havia alguma alteração significativa na versão antiga do arquivo, era óbvio que não havia nenhuma diferença, então eu simplesmente apaguei.

Resumindo, você pode se livrar dele se estiver satisfeito com a versão atual de 50 atualizações automáticas .

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.