I use this command
sudo apt-get install \
linux-image-extra-$(uname -r) \
linux-image-extra-virtualand get this error Is there anybody can help me to resolve this problem? thanks.
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-genericThen, 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