O.S: Ubuntu 19.04 (disco)
Running sudo do-release-upgrade
i got the following message:
Checking for a new Ubuntu release Your Ubuntu release is not supported anymore. For upgrade information, please visit: http://www.ubuntu.com/releaseendoflife
Please install all available updates for your release before upgrading.
Doing an apt upgrade
i got this one:
The following packages have been kept back:
libsnmp30
That package couldn't be updated because it required libsensors5
but existing packages were using libsensors4
.
So i ran multiple commands from internet that manually installed libsensors5
and removed libsensors4
.
Now i'm stuck on this error:
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
libgl1-mesa-dri :
Depends: libsensors4 (>= 1:3.0.0) but it is not installable
libsnmp30 :
Depends: libsensors4 (>= 1:3.0.0) but it is not installable
E: Unmet dependencies.
Try 'apt --fix-broken install' with no packages (or specify a solution).
I've tried doing apt install libsensors4
but it doesn't let me as now i have v5.
How can i fix this mess so i can finally upgrade?
sudo apt --fix-broken install
– B. du Garay Jun 22 '20 at 15:14apt search libgl1-mesa-dri
)). This package isn't uptodate (since mine in 20.04 depends on libsensors5 > 1.3.5 ). – B. du Garay Jun 23 '20 at 13:44--reinstall
flag just before the package name – B. du Garay Jun 23 '20 at 14:00apt install libsensors4
in your first post) – B. du Garay Jun 23 '20 at 14:01