The title is sufficient I think. How can I stop Fedora to automatically download and install system and software updates on restart?
Asked
Active
Viewed 1.3k times
1 Answers
14
dnf is a background service that updates the repository metadata automatically. dnf makecache is scheduled to run after every reboot
To disable dnf-makecache.service:
systemctl disable dnf-makecache.service
Also disable the dnf-makecache.timer or the service will be restarted:
systemctl disable dnf-makecache.timer
Regards
stefzeer
- 309