I'd like to disable/remove autoupdate for the certain packages in a repository. In particular, I want this package to stop autoupdating:
I just don't want to install it. Is it possible to prevent it from appearing each time I boot my comp?
I'd like to disable/remove autoupdate for the certain packages in a repository. In particular, I want this package to stop autoupdating:
I just don't want to install it. Is it possible to prevent it from appearing each time I boot my comp?
You can disable it via terminal with apt-mark
sudo apt-mark hold onboard
to allow updating again use "unhold"
sudo apt-mark unhold onboard
Extra information:
man apt-mark