I need to configure update settings from the terminal that I would regularly do with the GUI. This includes settings which things are downloadable, which updates to install, how often it checks for updates, automatically installing updates, and notifying me about new versions. I know it’s probably something that I should have figured out on my own, but I can’t find anything.
Asked
Active
Viewed 28 times
-r
flag) to add a repository or ppa. – mchid Nov 30 '20 at 23:40sudo add-apt-repository universe
to remove this repository, you would runsudo add-apt-repository -r universe
. For a ppa, you would use the ppa name withppa:
as described in the answer. – mchid Nov 30 '20 at 23:41