शटडाउन से पहले अपडेट को स्वचालित रूप से कैसे स्थापित करें?


15

विंडोज 7 शटडाउन से पहले अपडेट को स्वचालित रूप से इंस्टॉल करता है। क्या मुझे Xubuntu पर समान प्रभाव मिल सकता है?

मैं एक मित्र की मशीन पर Xubuntu स्थापित करना चाहता हूं और यह सुनिश्चित करना चाहता हूं कि सुरक्षा अपडेट स्थापित हैं, लेकिन वह कंप्यूटर अनपढ़ है, और मैं नहीं चाहता कि उसे अपडेट सूचनाओं के साथ लगातार परेशान किया जाए।

जवाबों:


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-उन्नयन? क्या उन्हें अस्तित्व की आवश्यकता है? उन्हें क्या पैरामीटर होना चाहिए? क्या उन्हें भी संशोधित किया जाना चाहिए?
सिलीकोमैंसर
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.