শাটডাউন করার আগে স্বয়ংক্রিয়ভাবে আপডেটগুলি কীভাবে ইনস্টল করবেন?


15

উইন্ডোজ 7 স্বয়ংক্রিয়ভাবে শাটডাউন করার আগে আপডেটগুলি ইনস্টল করে। আমি কি জুবুন্টুতে একই প্রভাব পেতে পারি?

আমি বন্ধুর মেশিনে জুবুন্টুকে ইনস্টল করতে চাই এবং সুরক্ষা আপডেটগুলি ইনস্টল করা আছে তা নিশ্চিত করতে চাই, তবে সে কম্পিউটার নিরক্ষর এবং আমি চাই না যে তাকে নিয়মিত আপডেটের বিজ্ঞপ্তি দিয়ে বিরক্ত করা হোক।

উত্তর:


12

আপনার প্যাকেজ unattended-upgradesইনস্টল করা আছে কিনা তা নিশ্চিত করুন , তারপরে নিম্নলিখিত বিকল্পগুলি কনফিগার করুন /etc/apt/apt.conf.d/50unattended-upgrades:

// Automatically upgrade packages from these (origin:archive) pairs
Unattended-Upgrade::Allowed-Origins {
    "${distro_id}:${distro_codename}";
    "${distro_id}:${distro_codename}-security";
    "${distro_id}:${distro_codename}-updates";
    "${distro_id}:${distro_codename}-backports";
    "Canonical:${distro_codename}";
};

// 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 "true";

// 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";

// Do automatic removal of new unused dependencies after the upgrade
// (equivalent to apt-get autoremove)
Unattended-Upgrade::Remove-Unused-Dependencies "true";

ফাইল 10periodic এবং 20auto- আপগ্রেড সম্পর্কে কি? তাদের কি অস্তিত্ব দরকার? তাদের কোন পরামিতি থাকা উচিত? সেগুলিও কি সংশোধন করা উচিত?
সিলিকোম্যান্সার
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.