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 10-14-2022, 09:05 AM   #1
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
efi/boot/boot64.efi and slack uefi install Q


Quote:
userx@slackdog.pen:~
$ ls /boot/efi/EFI/Boot
bootx64.efi fbx64.efi
what is that boot64.efi attached to. I cannot find anything on that file, in what OS it is suppose to be. I trying to figure out How I got this laptop to be on pure UEFI (no Legacy support) for windows, slack, bodhi, and FreeBSD. and apparently with secure boot on in BIOS.

( the other one fbx64.efi may have been for FreeBSD, I don't know, I lost that one too after upgrading it to 13x it got screwed up just like slack did)

having to reinstall Slack after a 3 year hibernation upgrade that ended up in a catastrophically leaving me with having to reinstall slack, and I do remember 14.x grabbing efi and booting then giving me the option of elilo and this time with 15 it didn't so I put it in uefi w/ legacy support and it didn't even suggest anything efi.


so I'm reluctantly trying to get all of my OS's back like it was.

installing slack uefi
Quote:
Installing Older Slackware on UEFI-based hardware

Some modern computers have started to offer motherboards that use Unified Extensible Firmware Interface (UEFI) as a replacement for the traditional BIOS. Slackware is perfectly capable or running on such machines, albeit with the provisos that before Slackware 14.1 the official install media could not be booted via UEFI directly and no UEFI bootloader was provided as part of the official selection of packages.

If you do wish to install Slackware on a UEFI based machine it is strongly recommended that you use Slackware64 14.1 or above, thus allowing you to simply boot the official install media.
that is really vague. should that boot usb stick be created on a system that is already on pure uefi, when using dd?

because this install when I created it using dd it didn't boot, and I have to go back to uefi w/ legacy support, and now I'm starting to repeat umyself.

Last edited by BW-userx; 10-14-2022 at 09:07 AM.
 
Old 10-14-2022, 09:52 AM   #2
Windu
Member
 
Registered: Aug 2021
Distribution: Arch Linux, Debian, Slackware
Posts: 594

Rep: Reputation: Disabled
Quote:
Originally Posted by BW-userx View Post
what is that boot64.efi attached to. I cannot find anything on that file, in what OS it is suppose to be. I trying to figure out How I got this laptop to be on pure UEFI (no Legacy support) for windows, slack, bodhi, and FreeBSD. and apparently with secure boot on in BIOS.

( the other one fbx64.efi may have been for FreeBSD, I don't know, I lost that one too after upgrading it to 13x it got screwed up just like slack did)
That directory, and the files in it, are not installed by Slackware. Probably one of your other OS installations, but if Slackware is to be the only OS on your computer you can delete the complete directory.

Quote:
installing slack uefi

that is really vague. should that boot usb stick be created on a system that is already on pure uefi, when using dd?

because this install when I created it using dd it didn't boot, and I have to go back to uefi w/ legacy support, and now I'm starting to repeat umyself.
You are looking at information (without revealing its source) that mentions Slackware 14.1. Slackware 14.2 was released in 2016 so you are reading 6-year old documentation. Modern Slackware (I assume you will not want to try and install an old OS like 14.1) has no issues with UEFI at all. The official ISOs are hybrid (meaning you can burn them to a DVD but you can also 'dd' or 'cp' them directly to a USB stick) and the Slackware installation medium will detect whether it boots on UEFI or BIOS and proceed accordingly.
Please read the actual documentation that comes with Slackware 15.0.
 
Old 10-14-2022, 10:07 AM   #3
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,373

Rep: Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593
To find out chainload the file with grub and see what boots or doesn’t boot.
 
Old 10-14-2022, 10:07 AM   #4
elcore
Senior Member
 
Registered: Sep 2014
Distribution: Slackware
Posts: 1,754

Rep: Reputation: Disabled
Quote:
Originally Posted by BW-userx View Post
what is that boot64.efi attached to. I cannot find anything on that file, in what OS it is suppose to be.
Did you mean this one:
Code:
slackware64-15.0-install-dvd.iso/EFI/BOOT/bootx64.efi: PE32+ executable (EFI application) x86-64 (stripped to external PDB), for MS Windows
In Slackware 15, that file's usually the output of this script:
Code:
slackware64-15.0-install-dvd.iso/EFI/BOOT/make-grub.sh
Where make-grub.sh does:
Code:
grub-mkimage --format=x86_64-efi --output=bootx64.efi ...
...
cp -a bootx64.efi $MOUNTPOINT/EFI/BOOT
But if we're being realistic it could be anything, from anywhere. Unless you physically detach it from the computer and carry it with you at all times.
 
Old 10-14-2022, 10:13 AM   #5
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by elcore View Post
Did you mean this one:
Code:
slackware64-15.0-install-dvd.iso/EFI/BOOT/bootx64.efi: PE32+ executable (EFI application) x86-64 (stripped to external PDB), for MS Windows
In Slackware 15, that file's usually the output of this script:
Code:
slackware64-15.0-install-dvd.iso/EFI/BOOT/make-grub.sh
Where make-grub.sh does:
Code:
grub-mkimage --format=x86_64-efi --output=bootx64.efi ...
...
cp -a bootx64.efi $MOUNTPOINT/EFI/BOOT
But if we're being realistic it could be anything, from anywhere. Unless you physically detach it from the computer and carry it with you at all times.
thanks for your time, I was just in my BIOS looking around and seen it set back to secure boot, turned it off and uefi only on, then tried a slackstick on it and it booted as it should and grub worked bypassing just windows booting.
gezz
marked solved.
(except bodhi usb telling me i have to load the kernel first for it to boot into it and or install it. but that's a completely different OS / issue)
 
  


Reply



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
EFI System Partition: Using it as /boot versus /boot/efi MirceaKitsune Linux - General 4 04-06-2021 11:07 AM
UEFI Class 3 :: To use UEFI, or not to use UEFI? jheengut Slackware 19 12-30-2020 09:24 AM
[SOLVED] Ooooy. EFI boot mmx64.efi.efi not found bulgin Linux - Newbie 12 12-20-2018 11:03 AM
resize efi question [/boot/efi] with boot flag gparted mtdew3q Fedora 4 03-19-2017 10:02 PM

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

All times are GMT -5. The time now is 12:20 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