2

I'd like to disable/remove autoupdate for the certain packages in a repository. In particular, I want this package to stop autoupdating:

enter image description here

I just don't want to install it. Is it possible to prevent it from appearing each time I boot my comp?

Incerteza
  • 1,470

1 Answers1

1

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:

Clay Hill
  • 104