I run the update manager from the terminal and I click the "Upgrade" button in its popup window, this is what happens in the terminal
update-manager -c
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.
The Ubuntu isntallation I'm running is set to Italian though
– user1632812 Jan 30 '22 at 06:48LANG=en_US.UTF-8 bash
before the command to translate it to English! – Error404 Jan 30 '22 at 06:51sudo apt update
to ensure software lists are updated (no errors or warnings were given) thensudo apt full-upgrade
to ensure all available upgrades are applied. Assuming no error messages or warnings exist there; I'd try again (if you get warnings of holds* existing on any packages in messages; you'll need to revert/remove those holds). Do note there are cases whereapt upgrade
cannot apply all upgrades! which is why you need to usefull-upgrade
– guiverc Jan 30 '22 at 07:13