LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 05-26-2015, 07:48 PM   #1
chexmix
Member
 
Registered: Apr 2002
Location: Arlington, MA
Distribution: Slackware, Debian, OpenBSD
Posts: 246
Blog Entries: 16

Rep: Reputation: 25
disabling secure boot when secure boot is not an option in BIOS?


Hi all -

I'm trying to 'rehabilitate' a laptop I purchased from the ZaReason folks a couple of years ago. Initially I was seized by some sort of madness and tried Debian 8 on it -- but I bounced my hard head off systemd. Ow! So I decided to return (I always do) to Slackware.

But ... I can't get the 64bit side of the Slackware 14.1 DVD to boot correctly. 32bit works swell. But when I use the 64bit side I get a 'Welcome to GRUB' prompt that hangs for a bit (where, please, is it FINDING GRUB?) ... whatever boot options I am ultimately presented with all end with kernel panic.

I've done enough Googling to have found that this is a sign that Secure Boot needed to be disabled and Legacy Boot enabled ... however, when I F2 into the BIOS/Setup screens, there is no Secure Boot to be disabled. Legacy Boot is enabled already.

Is there another place I should look? I'm sort of baffled.

I tried installing 32bit Slackware, installing good old LILO to the MBR, then flipping the DVD to install 64bit Slackware over this, but ... "Welcome to GRUB." Where the heck is this coming from?

/Glenn
 
Old 05-26-2015, 07:55 PM   #2
kmhuntly
Member
 
Registered: Mar 2015
Location: Cheektowaga, NY
Distribution: ArchLinux
Posts: 34

Rep: Reputation: 7
This really sounds more like its a 32 bit box and not 64. Secure boot may also be listed as uefi in the bios, but if legacy is already on then its unlikely this is an issue. Additionally, if it was secure boot, the 32 bit build shouldn't work either because the keys would be missing for both
 
Old 05-26-2015, 07:58 PM   #3
genss
Member
 
Registered: Nov 2013
Posts: 741

Rep: Reputation: Disabled
""Welcome to GRUB." Where the heck is this coming from?"
from GRUB, probably

are you sure you are booting the right drive ?
that lilo was installed correctly to MBR from the 64bit installer ?
 
Old 05-26-2015, 08:52 PM   #4
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Most probably your machine's firmware, as my laptop, is hybrid (has ability to boot either in UEFI or BIOS aka legacy mode) and set to boot either in BIOS or UEFI mode, but but with priority to UEFI. Slackware 64 uses GRUB to boot if on an UEFI firmware, ISOLINUX if on BIOS. So, just check the boot settings in the firmware's menu.

This has nothing to do with secure boot, that is an optional feature of UEFI. To know more the current specification is available (but not all firmware fully comply to it).

PS And as already stated by kmhuntly, a Slackware installer can't boot at all when secure boot is enabled, thus it is is certainly not enabled.

Last edited by Didier Spaier; 05-26-2015 at 09:16 PM. Reason: PS added.
 
Old 05-26-2015, 09:07 PM   #5
chexmix
Member
 
Registered: Apr 2002
Location: Arlington, MA
Distribution: Slackware, Debian, OpenBSD
Posts: 246

Original Poster
Blog Entries: 16

Rep: Reputation: 25
deleted

Last edited by chexmix; 05-26-2015 at 09:46 PM. Reason: it was not worth it
 
Old 05-27-2015, 03:50 AM   #6
arsivci0
Member
 
Registered: Nov 2013
Location: Antalya
Distribution: Slackware64 current
Posts: 119

Rep: Reputation: 23
Erase everything, i.e. all partitions with something like gnuparted and start over.
 
Old 05-27-2015, 04:10 AM   #7
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Quote:
Originally Posted by arsivci0 View Post
Erase everything, i.e. all partitions with something like gnuparted and start over.
That won't solve the OP's problem as it's a firmware issue, not a hard disk issue.
 
Old 05-27-2015, 04:23 AM   #8
arsivci0
Member
 
Registered: Nov 2013
Location: Antalya
Distribution: Slackware64 current
Posts: 119

Rep: Reputation: 23
I thought he succesfully installed Debian 8 on it but somehow annoyed with systemd.Since Slack 32 worked, maybe the partition table is screwed.

I have had problems similar to OP's and got rid of them clearing all partitions and switching to good ol' MBR.
 
Old 05-27-2015, 04:49 AM   #9
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
I think that your problem was not actually similar: probably you had GRUB installed on the hard disk (in which case yes, wiping the whole hard disk would wipe it), but the GRUB menu shown in OP's case comes from Slackware's installer on the DVD instead.

To elaborate a bit this is what happens when you boot a Slackware installer version 14.1:
  • If the firmware is set to boot only in EFI mode, or in either EFI or Legacy but with priority for EFI, at startup it first looks for an EFI image in /EFI/BOOT in a removable media. In OP's case using the 64-bit side of the DVD there is an EFI image in this directory: bootx64.efi. The firmware loads it, and that EFI image displays the GRUB menu according to grub.cfg
  • Else the firmware don't look for an EFI image, but uses the isolinux loader isolinux.bin in this other directory that reads the file isolinux.cfg and displays message.txt.

On the 64-bit side of the DVD there is an /EFI/BOOT directory, so the GRUB menu is shown. But on the 32-bit side there is none, so the firmware can't find an EFI image thus falls back to Legacy mode and the ISOLINUX menu is shown instead.

@chexmix: see README_UEFI.TXT.

Last edited by Didier Spaier; 05-28-2015 at 03:17 PM. Reason: s/But in the/But on the/
 
1 members found this post helpful.
Old 05-28-2015, 07:46 AM   #10
chexmix
Member
 
Registered: Apr 2002
Location: Arlington, MA
Distribution: Slackware, Debian, OpenBSD
Posts: 246

Original Poster
Blog Entries: 16

Rep: Reputation: 25
Didier, thanks a ton for telling me where in heck GRUB was coming from!

It was a bad brain-itch. I suppose I didn't think it'd be on the Slack DVD since I've always yoked Slackware and LILO in my head. I need to do some updating of the crap in my head.
 
Old 05-28-2015, 06:13 PM   #11
chexmix
Member
 
Registered: Apr 2002
Location: Arlington, MA
Distribution: Slackware, Debian, OpenBSD
Posts: 246

Original Poster
Blog Entries: 16

Rep: Reputation: 25
... that said, if it's GRUB from the install DVD, shouldn't it work correctly?

Because it sure doesn't work for me. I'll try again, but I've tried a few times and it always ends with a kernel panic.
 
  


Reply

Tags
booting, dvd, installation, problem



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
dual boot error (UEFI secure boot restricting installing centos7 over windows8) praduman1417 Linux - Newbie 3 12-24-2015 08:55 AM
Boot Ubuntu 14.04 64bit with greyed out Secure Boot disable option in BIOS? hanspeterii Linux - Newbie 9 05-04-2014 02:32 PM
Disabling Windows 8 Secure Boot. Does it allow Dual Booting or not. Ace Blackwell Linux - Laptop and Netbook 13 01-04-2013 03:04 AM
LXer: Now You Can Boot Any Linux Distro On UEFI Secure Boot PCs LXer Syndicated Linux News 2 12-16-2012 06:47 AM
LXer: Microsoft Says No to Disabling UEFI Secure Boot on ARM LXer Syndicated Linux News 0 01-16-2012 06:40 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:53 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration