I have this repository https://apache.jfrog.io/artifactory/couchdb-deb that is preventing me to update the system, what is the easiest way to remove it? I have tried using PPA purge but not being a PPA repo I can't remove it by using those recommendations.
Doing grep -r 'apache\.jfrog' /etc/apt/sources.list*
I get:
/etc/apt/sources.list.d/couchdb.list.distUpgrade:deb [signed-by=/usr/share/keyrings/couchdb-archive-keyring.gpg] https://apache.jfrog.io/artifactory/couchdb-deb/ groovy main
/etc/apt/sources.list.d/couchdb.list:deb [signed-by=/usr/share/keyrings/couchdb-archive-keyring.gpg] https://apache.jfrog.io/artifactory/couchdb-deb/ groovy main
/etc/apt/sources.list.d/couchdb.list.save:deb [signed-by=/usr/share/keyrings/couchdb-archive-keyring.gpg] https://apache.jfrog.io/artifactory/couchdb-deb/ groovy main
Software and Updates
and look in the 'Other Software` tab - you will find it in the list somewhere. Uncheck the box next to it, to disable it. – Charles Green Sep 15 '21 at 14:37grep -rn 'apache\.jfrog' /etc/apt/sources.list*
– pLumo Sep 15 '21 at 14:44sudo rm /etc/apt/sources.list.d/couchdb.list
thensudo apt update
,sudo apt upgrade
, then you can follow this -> https://askubuntu.com/questions/91815/how-to-install-software-or-upgrade-from-an-old-unsupported-release – pLumo Sep 15 '21 at 14:49