N: निर्देशिका में फ़ाइल '50unattended-upgrade.ucf-dist' को अनदेखा करना '/etc/apt/apt.conf.d/' के रूप में इसका अमान्य फ़ाइल नाम एक्सटेंशन है


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 ने काम किया, इसे स्थानांतरित करने के बाद त्रुटि नहीं दिखती है, लेकिन मुझे आशा है कि रिबूट करने के बाद, मेरा पीसी खुल जाएगा। अगली कोशिश करेंगे। डिस्ट्रो अपग्रेड करने से पहले मेरी एक और चिंता यह है कि मेरे बूट अप की गति काफी तेज थी, अब इसमें लगभग 2-3 मिनट लगते हैं। इस बारे में पता है
गेरोर्ज टिम्बर

रिबूट के बाद हमें बताएं। आप अपने प्रश्न का उत्तर पोस्ट कर सकते हैं :) यह देखने के लिए कि बूट में इतना समय क्या लग रहा है, दौड़ें systemd-analyze blame, लेकिन यह एक नया प्रश्न है।
Zanna

यकीन है कि बात है, मैं एक बार मैं रिबूट .. जवाब अद्यतन करेगा चीयर्स!
जेरगौब टिम्बर

जवाबों:


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 ओटिस है और एप्ट की किसी भी कार्रवाई को अपडेट करने और अपग्रेड करने से रोकता नहीं है।
डेविड फ़ॉस्टर

जब तक मैं फ़ाइल को नहीं हटाता, मैं कोई भी सॉफ़्टवेयर स्थापित नहीं कर सकता। धन्यवाद @Rashedul
इसुरु

4
क्या आपको पुरानी फ़ाइल के बजाय हटाने का मतलब नहीं था ? यानीsudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old
युवल एटजमन

मेरे मामले में, फ़ाइल "50unattended-upgrade.ucf-old" है, उन्हें इन अप्रचलित फ़ाइलों को रखने के लिए कुछ सम्मेलन बनाने चाहिए, जबकि अभी भी कोई लॉग संदेश उत्पन्न नहीं कर रहे हैं, इसलिए हम फ़ाइल को नहीं खोएंगे और न ही चिंतित होंगे :)
कुंभ राशि

1
Ubuntu 18.04 में @AquariusPower .ucf-*अब फ़ाइल नाम एक्सटेंशन वाली फ़ाइलों के बारे में अलार्म नहीं देता है।
जर्नो

18

यह मेरे साथ भी हुआ जब मैंने 14.04 से 16.04 तक अपग्रेड किया, अपग्रेड इंस्टॉलेशन के दौरान मुझे मूल (मेरे द्वारा संशोधित) 50unattended- अपग्रेड फ़ाइल या पैकेज अपडेट में निहित मूल के बीच चयन करने के लिए प्रेरित किया गया था , मैंने निश्चित रूप से रखने के लिए चुना। पूर्व।

स्थापना के बाद फ़ाइल 50unattended-upgrade.ucf-dist के लिए बिना रुके , मेरे सिस्टम में मौजूद था, जब मैंने यह देखने के लिए एक त्वरित नज़र रखी कि क्या फ़ाइल के पुराने संस्करण के साथ कोई महत्वपूर्ण परिवर्तन हुआ था, यह स्पष्ट था कि कोई स्पष्ट नहीं था अंतर है, तो मैं बस इसे हटा दिया।

नीचे की रेखा, यदि आप अपने 50unattended- उन्नयन के वर्तमान संस्करण से खुश हैं तो आप इससे छुटकारा पा सकते हैं ।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.