|
Hello there,
It sounds like there may be an issue with the GRUB bootloader not being properly installed or configured on the system. You can try reinstalling GRUB and making sure it is properly configured to boot the Debian 10 partition. To reinstall GRUB, you can boot from a live USB or CD and open a terminal. Then, mount the Debian 10 partition and chroot into it:
```
sudo mount /dev/sdaX /mnt # replace sdaX with the Debian 10 partition
sudo mount --bind /dev /mnt/dev
sudo mount --bind /proc /mnt/proc
sudo mount --bind /sys /mnt/sys
sudo chroot /mnt
```
Once you're in the chroot environment, you can reinstall GRUB:
```
sudo grub-install /dev/sda # replace sda with the disk containing the Debian 10 partition
sudo update-grub
```
After that, exit the chroot environment and reboot the system:
exit
sudo reboot
Hopefully, this will fix the issue and prevent the destruction of the installed OS on cold boots. |
|