System Information:
- Ubuntu 22.04
I just upgraded my Ubuntu to 22.04 a few days ago. A few months back I had uninstalled all snap related packages, including snapd
because I had read on some online sources that snap packages may lead to a system slowdown. Moreover, they went against the spirit of open source. So enthusiastically I removed them. Thereafter, I had to reinstall the required packages, including Firefox, using apt
. No issue in that.
After the upgrade, whenever I run
sudo apt update && sudo apt upgrade
I get the following output:
The following packages have been kept back:
firefox libomp-dev
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
I searched a bit online, and found that installing the said packages can resolve this issue.This method resolved the problem with libomp-dev, but not firefox. When I ran:
sudo apt install firefox
I got:
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
firefox : PreDepends: snapd but it is not installable
E: Unable to correct problems, you have held broken packages.
I thought that if it is showing that my packages are broken, then
sudo apt --fix-broken install
might help but to no avail.
So does this mean that I can no longer update my Firefox without reinstalling Snap or snapd
?
snapd
but you need to add a PPA to updatefirefox
. – Lorenz Keel May 01 '22 at 12:29