After years on Windows 95, 7,8,10 and now 11. I cannot stand the new Win11, frankly. I dont want their Office 365 but they are pushing it every day down my throat. I did manage to install Mint and Lubuntu on 2 different laptop (Win10). But I run into a problem on my HP TouchSmart desktop (Win7). I did install Mint on it, but after seeing Lubuntu on my other laptop, i decided to install it also on my desktop so to not have to alternate when working on one or the other. I had to burn a CD to install it. Everything seems fine, but when I open it I get this message. I would like some help, please. Thank You in advance.
I prepared a post, and then saw post #2 by
@KGIII which I agree is the "simplest and quickest" way to go. Just re-install.
Below is the post I prepared, which may be of interest
The appearance of the grub prompt: grub>, means that the grub bootloader has not installed itself fully and cannot find its configuration file. There are commands that you can use to fix the problem described online, one site showing the process here:
https://www.linux.com/tutorials/how-rescue-non-booting-grub-2-linux/.
As a relatively new user of linux, that process may not be viable.
Usually, during installation, the installer asks the user whether or not to install the bootloader, and where to install it. If linux is the only installation for the disk, then grub should be installed on that disk, not on a partition.
The problem with grub could be caused by a number of missteps: failure to set the bootloader's location during installation; the installation .iso file used to burn to the cd was corrupted; the burning process itself was faulty; a problem with the hardware, for example the drive itself. There are other less common issues too.
Possible solutions to the problem are:
1. Follow the instructions from the link above, and then when the linux system is up and running, update grub immediately with a command like:
update-grub or
grub-mkconfig -o /boot/grub/grub.cfg which will create the evidently missing grub config file. Rebooting the system then should work
2. Re-install the distro with particular attention to the section which references the bootloader. Ensure grub is installed to the disk.
3. Start over with a new installation .iso file which has been checked with the checksum provided by the distro's website. When certain that the .iso file is verified, at least that particular variable in the problem is eliminated. Burning to a cd needs a reliable burning program or command. It's a while since I burnt a cd but one check that was useful was comparing the sizes of the original .iso on the hard drive, and the burnt .iso file on the cd. They need to be the same. From my notes, the burning command on a linux system was:
Code:
wodim -v dev=/dev/sr0 -dao </path/to/installation.iso>
That could be run from a live disk, but wodim might have to be downloaded if it's not present.
For burning from a non-linux distro I can't say.