I'm on Ubuntu server 22.04 (Jammy).
I'm still a bit of an Ubuntu newbie and I wanted to apt upgrade
a package that I have previously installed via apt
and the relevant PPA. Turns out I can't, apt can't see the latest version. The reason is that the team behind the PPA failed some builds for the latest version, and apt
, logically, thinks I have the latest version since the newer version has failed builds.
The update is pretty important so instead, I wanted to manually install/upgrade the package via the project Github's provided binary. By that, I mean downloading a .tar.gz
provided by the project team.
What happens to the package afterwards? Will apt keep tracking a separate version? Will apt refuse to update something that I upgraded manually? Will I shoot myself in the foot and end up with two instances of the same package?
Any info would be appreciated.