จะติดตั้งการอัพเดทอัตโนมัติก่อนปิดเครื่องได้อย่างไร


15

Windows 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-upgrade คืออะไร? พวกเขาจำเป็นต้องมีอยู่หรือไม่? พารามิเตอร์ใดที่ควรมี? พวกเขาควรจะแก้ไขเช่นกัน?
Silicomancer
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.