In the course of trying to install VirtualBox, I managed to break the Software Updater package system. I did follow this how to fix post in the course of doing that but I'm not sure what I did along the way. At this point my goal is to restore the software updater. Virtual box is another battle.
This is my machine profile:
NAME="Ubuntu"
VERSION="20.04.1 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.1 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
$ uname -a
Linux ubu0850 5.4.0-59-generic #65-Ubuntu SMP Thu Dec 10 12:01:51 UTC 2020 x86_64 x86_64 x86_64 >GNU/Linux
This is what happens when I run software updater.
Additionally, when I run
$ sudo apt autoremove --purge
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
linux-modules-extra-5.8.0-34-generic : Depends: linux-image-5.8.0-34-generic but it is not installed or
linux-image-unsigned-5.8.0-34-generic but it is not installed
linux-modules-extra-5.8.0-40-generic : Depends: linux-image-5.8.0-40-generic but it is not installed or
linux-image-unsigned-5.8.0-40-generic but it is not installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
Any Help is greatly appreciated.
sudo apt install -f
? – Jos Jan 27 '21 at 14:43sudo apt update
– user535733 Jan 27 '21 at 15:04sudo dpkg -P linux-modules-extra-5.8.0-34-generic linux-modules-extra-5.8.0-40-generic
– nobody Jan 27 '21 at 15:35