LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 03-23-2019, 03:07 PM   #1
hmazuji
LQ Newbie
 
Registered: Dec 2005
Posts: 17

Rep: Reputation: 1
is it me, or is it the whole industry standard - booting


i've noticed that my bios is asking me which device do i want to boot. boot options, f11, is the very first question my computer wants to know when it is first powered on
so, why is microsoft wanting to install a boot loader on my drive ? i don't want a boot loader on my drive when my bios is doing this. if i could or wanted to disable the boot options in bios, then maybe i would need one installed on my drive
so now this applied to grub as well. i do not want to and do not care to configure grub for boot options when my bios is doing this for me
how do i install linux without using grub, but only the boot sequence i tell it in bios
 
Old 03-23-2019, 03:16 PM   #2
freemedia2018
Member
 
Registered: Mar 2019
Distribution: various automated remasters
Posts: 216

Rep: Reputation: 208Reputation: 208Reputation: 208
The bios only selects a device. It then loads the bootloader on that device.

If you have two bootloaders, and two devices, the bios lets you select which bootloader-- it isn't a substitute.

For example, you may have a bootloader on a DVD and on your HDD. If your bios selects the DVD, you get the bootloader on the DVD. If you select the HDD, you get the bootloader installed there.

If you have run isohybrid on the file used to make the DVD, you can dd the DVD (with its bootloader) onto the HDD, though you will still need the bios to select the drive. You will also need the bootloader that you just put onto the HDD when you ran dd.

Note that dd erases everything on the HDD-- it is not the best way to make a bootable HDD. It doesn't really avoid there being a bootloader either-- there still is one. You can change the settings so that your bootloader automatically selects one option-- with or without a delay. That's probably what you want.

Last edited by freemedia2018; 03-23-2019 at 03:18 PM.
 
1 members found this post helpful.
Old 03-23-2019, 03:48 PM   #3
hmazuji
LQ Newbie
 
Registered: Dec 2005
Posts: 17

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by freemedia2018 View Post
The bios only selects a device. It then loads the bootloader on that device

If you have two bootloaders on two devices, the bios lets you select which bootloader
it is the industry standard (both linus & m.s.) to hijack the entire device, preventing another operating system from being able to use it, and the bootloader is the crux of their machinations

why will the operating systems not install without a bootloader, which is now a vestige of useless things from the past

as far as i see it, the only purpose of a bootloader is to prevent another o.s. installation
 
Old 03-23-2019, 03:52 PM   #4
Tonus
Senior Member
 
Registered: Jan 2007
Location: Paris, France
Distribution: Slackware-15.0
Posts: 1,405
Blog Entries: 3

Rep: Reputation: 514Reputation: 514Reputation: 514Reputation: 514Reputation: 514Reputation: 514
is it me, or is it the whole industry standard - booting

You can run multiple OS with grub, including MS Windows.

Good to have the choice of the device.

Good to have the choice (to load any distro or OS) with grub.
 
Old 03-23-2019, 05:09 PM   #5
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,501

Rep: Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489
Quote:
why will the operating systems not install without a bootloader, which is now a vestige of useless things from the past
Well, you can install without a bootloader. If you have another OS installed, you can use that bootloader to boot the system. If you have no bootloader installed then obviously it will not boot and it is certainly not "a vestige of useless things from the past'. All you get in the BIOS is code pointing to files on the computer/partition whether it is UEFI or a Legacy install. Time to do some serious reading.
 
Old 03-23-2019, 07:02 PM   #6
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,699

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
That's how the PC works. The BIOS has always had a boot order where you selected which device is the first, second and so on i.e DVD, USB, first HDD. Modern BIOS/EUFI mother boards also have a menu where you can manually select the boot device without the need to modify its configuration. There might be a configuration that always shows the menu which should be some setting to disable it from being displayed all the time.

This is not the bootloader. Most devices, operating systems need a bootloader. Once the BIOS passes control to the boot device it just executes the code at it's starting sector or whatever which is typically a bootloader like grub.

Last edited by michaelk; 03-23-2019 at 07:09 PM.
 
Old 03-25-2019, 03:29 PM   #7
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,978

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
"it is the industry standard (both linus & m.s.) to hijack the entire device"

It may indeed seem that this is the case. Yes, one will have to understand how an OS installer works (or doesn't work) to provide what you may wish.
 
Old 04-01-2019, 06:31 PM   #8
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,805
Blog Entries: 1

Rep: Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066
Quote:
Originally Posted by yancek View Post
All you get in the BIOS is code pointing to files on the computer/partition whether it is UEFI or a Legacy install.
With pre-UEFI BIOS, what files? Did you mean to write sectors? Not counting PXE, or the F11 menu of which OP writes, all a Legacy/MBR era BIOS does following POST is choose a device and load the bootstrap code on that device's first sector.

Quote:
Time to do some serious reading.
Indeed! OP expects too much from his BIOS.
 
  


Reply

Tags
boot from hd, boot loader, boot order, grub 2, grub boot menu



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
LXer: Members Of Congress: India's Pharma Industry 'Protectionism' Is Harming US Pharma Industry's A LXer Syndicated Linux News 0 07-04-2013 10:42 PM
LXer: Industry Organizations Standardizing the Telecom Industry Showcase ... LXer Syndicated Linux News 0 05-25-2006 06:21 PM
Industry standard performance metrics for Linux bkrueger Linux - General 1 03-20-2006 12:55 PM
linux industry standard distro sycamorex Linux - Newbie 7 02-08-2006 10:28 PM
LPI or Linux+ ... which is THE "industry standard" C.B. Linux - Certification 3 06-29-2005 07:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

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