系统相关
首页 > 系统相关> > linux – 什么是bootstrapping?

linux – 什么是bootstrapping?

作者:互联网

我正在阅读有关自举的内容并且感到困惑,因为该术语在技术中被广泛使用(特别是作为CSS框架的引导本身).

但据我所知,Linux机器的引导是这样的:
http://www.tldp.org/LDP/LG/issue70/ghosh.html
– 介绍启动计算机的方法.它是否正确?

如果是这样,那么bootstrapping是引导加载吗?

解决方法:

在一般意义上,“引导”是使用更简单的系统建立复杂系统的过程.引导系统(更简单的系统)本身就是不完整的.

引导OS(“引导它”)包括让BIOS(或等效的)运行一个简单的程序,该程序有时位于磁盘上的固定位置,从而启动更复杂的初始化程序(参见first and second stage bootloaders).

引导编译器是通过编译一个简单的编译器来完成的,该编译器可以处理编写完整编译器的语言的子集,可能在几个连续的步骤中.

该术语还用于商业和其他领域,以描述启动后期增加复杂性和/或规模所需的投资/开发中间阶段的使用.

the Wikipedia article on Bootstrapping开始:

Tall boots may have a tab, loop or handle at the top known as a bootstrap, allowing one to use fingers or a boot hook tool to help pulling the boots on. The saying “to pull oneself up by one’s bootstraps” was already in use during the 19th century as an example of an impossible task.

相关问题:

> Which man page describes the process of a computer turning on?

标签:linux,startup,grub,boot,boot-loader
来源: https://codeday.me/bug/20190816/1666494.html