모든 자동 소프트웨어 업데이트를 비활성화하고 싶었기 때문에 gnome 앱 소프트웨어 > 업데이트 기본 설정으로 이동하여 자동 업데이트 토글을 비활성화했습니다. 하지만 여전히 Flatpaks로부터 업데이트를 받습니다. 모든 자동 업데이트를 비활성화하는 방법이 있습니까?
답변1
실행 중인 배포판에 따라 다르며 아래 설명된 대로 Flatpaks의 자동 업데이트 서비스를 구현하는지 확인할 수 있습니다(https://www.jwillikers.com/automate-platpak-updates-with-systemd) 사용하여
ls /etc/systemd/system/* | grep flatpak
그런 다음 flatpak 업그레이드라는 버전을 찾으면 실행하세요.
systemctl disable [service-name]
Debian 기반 배포판을 사용하는 경우 "unattended-upgrades" 패키지가 설치되어 있는지(Ubuntu에 사전 설치되어 있음) 확인하고 제거할 수도 있습니다.
dpkg -l | grep 'unattended-upgrades' # Find out if unattended-upgrades is installed
apt remove unattended-upgrades # Remove Package.