You are not logged in.
Pages: 1
So I had a bad mishap because of an auto update timer I had set. I'd like to disable it or get rid of it altogether. This is what I've tried.
systemctl disable update.timer
and sudo systemctl disable update.timer
Both say that the authentication has been complete but the timer is still active when I view the timer list with systemctl list-timers. How do I get rid of this timer?
Last edited by Phydoux (2024-09-11 15:39:25)
Offline
Last edited by Trilby (2020-04-21 00:33:19)
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
Disable prevents it from starting at boot. You also need to stop it:
systemctl stop update.timer
You can do both in one step:
systemctl disable --now update.timer
Offline
Uninstall the dangerous package pacman-auto-update the install script that auto enables the timer will stop the timer
https://aur.archlinux.org/cgit/aur.git/ … uto-update
Offline
Oh dear god. That package is horrible in so many ways.
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
systemctl disable --now update.timer
That worked! Thanks!
Offline
Please mark as [SOLVED] by editing the thread title.
Not a packaging/pacman issue, moving to NC
Offline
Pages: 1