Làm thế nào để tự động cài đặt bản cập nhật trước khi tắt máy?


15

Windows 7 tự động cài đặt các bản cập nhật trước khi tắt máy. Tôi có thể có được hiệu ứng tương tự trên Xubfox không?

Tôi muốn cài đặt Xubfox trên máy của một người bạn và đảm bảo rằng các bản cập nhật bảo mật đã được cài đặt, nhưng anh ta không biết chữ và tôi không muốn anh ta liên tục bị làm phiền với các thông báo cập nhật.

Câu trả lời:


12

Đảm bảo bạn đã unattended-upgradescài đặt gói , sau đó định cấu hình các tùy chọn sau trong /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";

Thế còn các tập tin nâng cấp 10 kỳ và 20auto thì sao? Họ có cần tồn tại? Họ nên chứa tham số gì? Họ có nên được sửa đổi là tốt?
Silicomancer
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.