Ask HN: Where can I find a primer on how computers boot?
31–40 of 96 posts
Re: Ask HN: Where can I find a primer on how computers boot?
#32https://docs.freebsd.org/en/books/handbook/boot/
Re: Ask HN: Where can I find a primer on how computers boot?
#33Re: Ask HN: Where can I find a primer on how computers boot?
#34Plenty of good links here already. I'll just add that booting is enormously complex, and starts well before any of the dozen comments so far. I skimmed many of them (not all) and they all tell pretty much the same story whether on real hardware or virtual. But modern real hardware first boots a Management Engine (or BMC, or T2, or similar), which prepares things and starts subsystems like hardware controllers, before…
Re: Ask HN: Where can I find a primer on how computers boot?
#35And since no one's mentioned let me say that TLDP is a comprehensive, understandable, and the authoritative source on all things Linux.
That said, here's two documents from TLDP.
1. [Boot process, Init and shutdown] https://tldp.org/LDP/intro-linux/html/sect_04_02.html
2. [The boot process in closer look] https://tldp.org/LDP/sag/html/boot-process.html
Re: Ask HN: Where can I find a primer on how computers boot?
#36Arch wiki is a really good place i learned this stuff from: https://wiki.archlinux.org/title/Arch_boot_process P.S I use Arch btw. ;)
Re: Ask HN: Where can I find a primer on how computers boot?
#37Arch wiki is a really good place i learned this stuff from: https://wiki.archlinux.org/title/Arch_boot_process P.S I use Arch btw. ;)
Re: Ask HN: Where can I find a primer on how computers boot?
#38Re: Ask HN: Where can I find a primer on how computers boot?
#39https://en.wikipedia.org/wiki/GNU_GRUB
Incidentally I discovered you can learn a fair amount about the boot process by making bad edits to your /etc/fstab file on a Linux system :) e.g.
https://unix.stackexchange.com/questions/107828/how-is-etc-f...
Also this central page for different bootloaders for a variety of systems, is kind of interesting, there's many different approaches.