এন: ডিরেক্টরিতে '/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এটি ব্যবহার করি তবে তা কি সামনে কোনও হতাহতের কারণ হবে? এক্সটেনশন হওয়ায় আমি এখানে আরএম ব্যবহার করতে কিছুটা ভয় পাচ্ছি 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

এটি @ জান্নার কাজ করেছে, এটি সরানোর পরে ত্রুটিটি দেখায় না তবে আমি আশা করি রিবুট করার পরে, আমার পিসি খুলবে। পরের চেষ্টা করা হবে। আমার আরও উদ্বেগ হ'ল ডিস্ট্রো আপগ্রেড করার আগে আমার বুটের আপ গতি যথেষ্ট দ্রুত ছিল, এখন এটি প্রায় ২-৩ মিনিট সময় নেয়। এটি সম্পর্কে
অজ্ঞান

হেবু আমাদের রিবুট পরে জানাবেন। আপনি আপনার নিজের প্রশ্নের একটি উত্তর পোস্ট করতে পারেন :) বুট এ এত বেশি সময় নিচ্ছে তা দেখার জন্য, চালান systemd-analyze blame, তবে এটি একটি নতুন প্রশ্ন।
জান্না

নিশ্চিত বিষয়, আমি পুনরায় বুট করার পরে উত্তরটি আপডেট করব .. চিয়ার্স!
জর্জি টিম্বার

উত্তর:


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:অর্থ এটি নিছক একটি এন ওটিস এবং আপডেটের আপগ্রেড করার মতো অ্যাপের কোনও ক্রিয়াকলাপ অবরুদ্ধ করে না।
ডেভিড ফোস্টার

আমি ফাইলটি সরিয়ে না দেওয়া পর্যন্ত আমি কোনও সফ্টওয়্যার ইনস্টল করতে পারিনি। ধন্যবাদ @ রাশেদুল।
ইসুরু

4
আপনি কি পুরানো ফাইলটির পরিবর্তে মুছতে চাননি ? যেমনsudo rm /etc/apt/apt.conf.d/50unattended-upgrades.ucf-dist-old
যুবাল আতজমন

আমার ক্ষেত্রে, ফাইলটি "50unattended-upgrades.ucf-old", তাদের কোনও লগ বার্তা উত্পন্ন না করার সময় এই অপ্রচলিত ফাইলগুলি রাখার জন্য কিছু কনভেনশন তৈরি করা উচিত, যাতে আমরা ফাইলটি হারাতে পারি না এবং আশঙ্কাও করি না :)
কুম্ভ রাশি

1
উবুন্টুতে অ্যাকোয়ারিয়াস পাওয়ারটি ১৮.০৪ এপিটি ফাইলের নাম এক্সটেনশন সহ ফাইলগুলি সম্পর্কে .ucf-*আর ভীতি প্রকাশ করে না।
জার্নো

18

এটি আমার ক্ষেত্রেও হয়েছিল যখন আমি 14.04 থেকে 16.04 এ আপগ্রেড করেছি, আপগ্রেড ইনস্টলেশনের সময় আমাকে মূল (আমার দ্বারা সংশোধিত) 50 টির জন্য উন্নত-আপগ্রেড ফাইল বা প্যাকেজ আপডেটে থাকা মূলটির মধ্যে একটি বেছে নেওয়ার জন্য অনুরোধ করা হয়েছিল, অবশ্যই আমি তা রাখার জন্য বেছে নিয়েছিলাম সাবেক।

আমার সিস্টেমে ইনস্টল করার পরে 50unattended-upgrades.ucf-dist উপস্থিত ছিল না, ফাইলটির পুরানো সংস্করণে কোনও উল্লেখযোগ্য পরিবর্তন হয়েছে কিনা তা খতিয়ে দেখার জন্য আমি তাত্ক্ষণিকভাবে নজর রেখেছি, এটি স্পষ্টতই স্পষ্ট ছিল যে সেখানে কিছুই ছিল না। পার্থক্য, তাই আমি কেবল এটি মুছে ফেলেছি।

নীচের লাইনটি, আপনি যদি আপনার বর্তমান 50 সংস্করণযুক্ত আপগ্রেডগুলির সাথে খুশি হন তবে আপনি এ থেকে মুক্তি পেতে পারেন ।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.