Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

not boot at all

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
Rita G.
Posts: 303
Joined: 2007-06-13 23:41
Been thanked: 1 time

not boot at all

#1 Post by Rita G. »

Debian 10 cinnamon

After powering on computer, debian will not boot at all. The only text I get is:

“Reboot and Select proper Boot device or Insert Boot Media in selected Boot device and press a key_”

Can someone please help me fix this?

Bulkley
Posts: 6387
Joined: 2006-02-11 18:35
Has thanked: 2 times
Been thanked: 39 times

Re: not boot at all

#2 Post by Bulkley »

Does it get to the Grub boot menu? If it doesn't you might have an hardware issue such as a harddrive that isn't working. I'd stick in a live-CD or live-USB of just about any OS and see if it boots.

Give us more details. When you push the power on button do you get the usual noises, etc?

arochester
Emeritus
Emeritus
Posts: 2435
Joined: 2010-12-07 19:55
Has thanked: 14 times
Been thanked: 54 times

Re: not boot at all

#3 Post by arochester »

Is it set in the BIOS to boot from the HDD first?

Rita G.
Posts: 303
Joined: 2007-06-13 23:41
Been thanked: 1 time

Re: not boot at all

#4 Post by Rita G. »

After putzing around a while, I am able to boot the drive with the help of the “super grub2 disk” but I don’t know how to fix the problem.
If I remove the “super grub2 disk”, It will not boot; no grub menu; just the
“Reboot and Select proper Boot device or Insert Boot Media in selected Boot device and press a key_”
text.

Bulkley
Posts: 6387
Joined: 2006-02-11 18:35
Has thanked: 2 times
Been thanked: 39 times

Re: not boot at all

#5 Post by Bulkley »

It looks like your Grub is messed up. Unfortunately, it has been a long time since I used that super grub2 disk you mentioned so I can't give you expert advice. I'm sure there are instructions. Try these: Wizard – Restore Grub with Super Grub2 Disk. Before doing anything, read these instructions all the way through so you know what to expect.

cuckooflew
Posts: 677
Joined: 2018-05-10 19:34
Location: Some where out west
Been thanked: 1 time

Re: not boot at all

#6 Post by cuckooflew »

Need better details, maybe :
https://wiki.debian.org/systemd
With systemd console(tty1) is handled differently and if you used to check it to see how did your boot go now you'll see only couple of non-informative lines.

To be able to get full transcript of the system boot on your console you need to perform two steps.

1. Add to the kernel options systemd.show_status=1, for example via /etc/default/grub: ----snip---
There is some code, and more instructions, so read it all, get some better details, and then you will get better help.
From: https://www.tecmint.com/find-and-fix-linux-boot-issues/How to Find Out Linux Boot Issues or Error Messages

As we mentioned before, the Linux boot processes happens rapidly that we can’t even clearly read most of the output sent to the console.

So taking note of boot issues/errors calls for a system administrator to look into certain important files in conjunction with particular commands. And these include:

Code: Select all

/var/log/boot.log – Logs System Boot Messages 
----snip----
Again, you need to read it all, yourself, there are to many details to post the pages here.
Please Read What we expect you have already Done
Search Engines know a lot, and
"If God had wanted computers to work all the time, He wouldn't have invented RESET buttons"
and
Just say NO to help vampires!

p.H
Global Moderator
Global Moderator
Posts: 3049
Joined: 2017-09-17 07:12
Has thanked: 5 times
Been thanked: 132 times

Re: not boot at all

#7 Post by p.H »

Is the Debian system set up for EFI/UEFI or BIOS/legacy boot ?
If you don't know, once booted, check the contents of /boot/grub in the root filesystem (or /grub in the /boot filesystem if separate).
- if x86_64-efi or ia32-efi is present = EFI boot setup
- if i386-pc is present = BIOS boot setup

If setup for EFI boot, check the EFI boot variables with

Code: Select all

efibootmgr -v
Check that the EFI system partition is mounted on /boot/efi and check the contents of /boot/efi/EFI/debian. Files such as shim*.efi and grub*.efi should be present.
If a "debian" EFI boot variable does not show or files are missing in the EFI partition, reinstall GRUB with

Code: Select all

grub-install --force-extra-removable
(the option should allow to boot even without an EFI boot variable)

If setup for BIOS boot, check that the boot flag is set on a partition in the boot disk MBR, some firmwares require it.

Code: Select all

fdisk -l -t dos

Post Reply