No live mode after update?

i did a “sudo apt upgrade” and now there is no live mode

KVM version

Please move this to the KVM subforum.

This seems to occur when updating the kernel from a previous version. This is because /etc/grub.d/10_linux was changed to /etc/grub.d/10_00_linux_dist .

It can be fixed by changing the following lines at the bottom of /etc/grub.d/11_linux_live :

sudo nano /etc/grub.d/11_linux_live

Change:

if test -x /etc/grub.d/10_linux ; then
 /etc/grub.d/10_linux
fi

to:

if test -x /etc/grub.d/10_00_linux_dist ; then
 /etc/grub.d/10_00_linux_dist
fi

Then, you can update your grub configuration file:

sudo grub-mkconfig -o /boot/grub/grub.cfg

Your live mode option should be restored.

1 Like

No need. Unspecific to KVM.