Glam Prestige Journal

Bright entertainment trends with youth appeal.

I use this command

sudo apt-get install \
linux-image-extra-$(uname -r) \
linux-image-extra-virtual

and get this error Is there anybody can help me to resolve this problem? thanks.

Ubuntu 18.04 Error

2 Answers

linux-image-generic should already install the associated linux-image-extra package, but the name has been changed to linux-modules-extra. Try this to upgrade to the latest kernel:

sudo apt update
sudo apt upgrade
sudo apt install --reinstall linux-image-generic

Then, reboot and try using the following command instead:

sudo apt install linux-modules-extra-$(uname -r) linux-image-extra-virtual 
0

As @mchid said in the comments,

linux-image-extra-*

packages have been renamed

linux-modules-extra-*

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy