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가 열리기를 바랍니다. 다음에 시도해보십시오. 나의 또 하나의 관심사는 배포판을 업그레이드하기 전에 부팅 속도가 충분히 빠르기 때문에 이제 약 2-3 분이 소요됩니다.
그에

재부팅 후 알려주세요. 당신은 당신의 자신의 질문에 대한 답변을 게시 할 수 있습니다 :) 부팅하는 데 시간이 오래 걸리는 것을 보려면을 실행하십시오 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 개의 귀신이며 업데이트 및 업그레이드와 같은 Apt의 작업을 차단하지 않았다는 것을 의미합니다 .
David Foerster

그러나 파일을 제거 할 때까지 소프트웨어를 설치할 수 없었습니다. 감사합니다 @Rashedul.
Isuru

4
이전 파일을 대신 삭제 하시겠습니까 ? 즉sudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old
유발 아츠 몬

내 경우에는 파일이 "50unattended-upgrades.ucf-old"이므로 로그 메시지를 생성하지 않으면 서 더 이상 사용되지 않는 파일을 유지하는 규칙을 만들어야합니다. 따라서 파일을 잃지 않고 경보를받지 않습니다.
Aquarius 전원

1
Ubuntu 18.04 apt의 @AquariusPower는 .ucf-*더 이상 파일 이름 확장자를 가진 파일에 대해 경고하지 않습니다 .
jarno

18

이것은 14.04에서 16.04로 업그레이드 할 때 나에게도 발생했습니다. 업그레이드 설치 중에 원본 (나에 의해 수정 된) 50unttended-upgrades 파일 또는 패키지 업데이트에 포함 된 원본 파일 중에서 선택하라는 메시지가 표시되었습니다. 물론 전자.

설치 후 호출되지 않은 파일 50unattended-upgrades.ucf-dist 가 시스템에 존재했는데, 이전 버전의 파일에 중대한 변화가 있는지 확인하기 위해 한 눈에 확인한 후, 파일이 없다는 것이 명백했습니다. 차이점 때문에 간단히 삭제했습니다.

결론적으로, 현재 버전의 무인 업그레이드 버전에 만족하면 제거 할 수 있습니다 .

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.