I was originally trying to install Ubuntu on a USB drive, but then I decided just to dual-boot it. Ubuntu told me to disable Intel RST, so I followed the steps in this guide until I got to the commands.
Basically, none of the commands work other than listing volumes and selecting volumes. It doesn't detect the C:\
drive as a Windows boot drive. At this point in time, I have no installation of Ubuntu and an unbootable Windows installation.
Please help. I don’t want to lose my Windows installation, even if I have a backup. What steps should I take next?
sudo apt install linux-image-5.11.0-N-generic
whereN
is any distribution of the kernel that you do not already have. Preferably a newer version, but older works as well. The newest is automatically loaded when you boot. What you need is just the installation process, not the kernel. As part of the process, apt digs around the boot drive for additional kernel versions. If the windows boot option is missing, apt will find it and automatically put back the boot menu entry. You can find out your version, once installed, with the commanduname -a
– Nate T Oct 06 '21 at 02:49sudo update-grub
. But Windows fast start up must be off & Windows turns it back on with updates: https://askubuntu.com/questions/843153/unable-to-mount-windows-10-partition-it-is-in-an-unsafe-state & https://askubuntu.com/questions/145902/unable-to-mount-windows-ntfs-filesystem-due-to-hibernation – oldfred Oct 06 '21 at 13:48