0

when I ever I want to make most of the things in terminal I faced this problem ,even when I try to run sudo apt upgrade , it also appear I try to reinstall it by using sudo apt install --reinstall linux-headers-5.4.0-56 linux-headers-5.4.0-56-generic and it appear also

SH EB
  • 1

1 Answers1

1

This package was removed from the repositories a few weeks ago. You can resolve the issue by doing this:

  1. Open Terminal (if it's not already open)

  2. Run this command:

    sudo apt remove linux-modules-5.4.0-56-generic
    

From here you can clean apt a little bit with:

$ sudo apt autoremove && sudo apt clean
$ sudo apt update

This should resolve the problem