자동 업데이트가 마음에 들지 않으므로 항상 비활성화하고 싶습니다. 나는 Gnome 데스크탑 환경과 함께 Ubuntu 14.04 를 사용 합니다. Unity에서 gsettings를 사용할 수 있는지 모르겠습니다.
인터넷 연결 속도가 느리면 apt-xapian-index를 비활성화하면 자동 패키지 다운로드가 방지되어 모든 대역폭이 필요합니다 (때로는 256kb / s의 모바일이 있습니다).
sudo chmod a-x /etc/cron.daily/update-notifier-common
sudo chmod a-x /etc/cron.weekly/apt-xapian-index
sudo chmod a-x /etc/cron.weekly/update-notifier-common
gsettings set com.ubuntu.update-notifier regular-auto-launch-interval 3650
gsettings set com.ubuntu.update-manager launch-time 1900000000
나를 위해 속임수를 쓰는 것 같았습니다. 3650은 일을 의미합니다 ... 1900000000은 업데이트 관리자가 2030 년에 마지막으로 실행되었음을 나타냅니다. :)
업데이트 : Ubuntu 16.04 에서는 다음 명령과 두 파일을 편집하여 자동 업데이트를 비활성화 할 수 있습니다.
sudo mv /etc/xdg/autostart/update-notifier.desktop /etc/xdg/autostart/update-notifier.desktop.old
sudo mv /etc/xdg/autostart/gnome-software-service.desktop /etc/xdg/autostart/gnome-software-service.desktop.old
확장명이 .desktop 이외의 경우 이러한 명령은 시스템 시작시 실행되지 않습니다.
/etc/apt/apt.conf.d/10주기 편집
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::AutocleanInterval "0";
/etc/apt/apt.conf.d/20 자동 업그레이드 편집
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Unattended-Upgrade "0";
ONCE조차도 Update Manager를 시작한 경우이 파일에는 네 줄이 포함됩니다.
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::AutocleanInterval "0";
APT::Periodic::Unattended-Upgrade "0";
모든 값을 "0"으로 변경하십시오.