종료하기 전에 자동으로 업데이트를 설치하는 방법은 무엇입니까?


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

파일 10주기 및 20 자동 업그레이드는 어떻습니까? 그들은 존재해야합니까? 어떤 매개 변수를 포함해야합니까? 그것들도 수정해야합니까?
Silicomancer
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.