U盘量产网

专题:金士顿U盘安卓系统工具精品工具

您所在的位置: 首页 > U盘教程 > U盘装系统 > 详解Linux的ISO镜像安装是如何开始进行的
推荐内容

详解Linux的ISO镜像安装是如何开始进行的

2012-11-03 来源:本站整理 作者:U盘量产网 浏览量:9330次
详解Linux的ISO镜像安装是如何开始进行的

1.   首先光盘镜像也就是iso文件采用的是“ISO 9660 ”文件系统 。

       cd上的文件都存在这个简单的iso文件系统里,linux可以用mount  -o loop 直接把*.iso文件mount到一个目录查看。

2.  CD ROM 另支持一个叫做“El Torito Bootable CD Specification”     的标准允许用户在cd上指定启动的引导程序。

    电脑开机启动时候,BIOS就会去检查cd/dvd上是否有这个启动标志,然后加载引导程序。

  在Linux系统,使用mkisofs命令一个iso文件时,可以指定引导程序,例如

        mkisofs -o <isoimage>                -b isolinux/isolinux.bin -c isolinux/boot.cat                 -no-emul-boot -boot-load-size 4 -boot-info-table                <root-of-iso-tree>        更多的iso文件相关选项可以参考mkisofs的help  

3. Linux的光盘安装的话,使用的一般是ISOLINUX 引导程序,也就是用这个ISOLINUX是被写到上面那个EI Torito扩展里面去的。 系统启动时就自动加载ISOLINUX引导程序了。

    ISOLINUX是  SYSLINUX项目的一系列引导程序中的一个,简单的说就是类似GRUB的一个东西,就是启动然后引导内核。ISOLINUX的特点如其名,区别于 GRUB LILO等的地方,就是他可以认出iso9660文件系统,所以可以读出cd上的内核镜像和inird 镜像,然后引导。

    ISOLINUX启动后,默认会去读出cd光盘根目录的一个isolinux.cfg 文件,isolinux.cfg 类似grub的menu.lst,指定的内核镜像位置等。这个isolinux.cfg的语法可以参考syslinux的文档。 这里有一个

比如  指定显示终端可以使用这个选项

---------------------------------------------

SERIAL port [[baudrate] flowcontrol]

        Enables a serial port to act as the console.  "port" is a         number (0 = /dev/ttyS0 = COM1, etc.) or an I/O port address         (e.g. 0x3F8); if "baudrate" is omitted, the baud rate defaults         to 9600 bps.  The serial parameters are hardcoded to be 8         bits, no parity, 1 stop bit.         "flowcontrol" is a combination of the following bits:         0x001 - Assert DTR         0x002 - Assert RTS         0x008 - Enable interrupts         0x010 - Wait for CTS assertion         0x020 - Wait for DSR assertion         0x040 - Wait for RI assertion         0x080 - Wait for DCD assertion         0x100 - Ignore input unless CTS asserted         0x200 - Ignore input unless DSR asserted         0x400 - Ignore input unless RI asserted         0x800 - Ignore input unless DCD asserted         All other bits are reserved.         Typical values are:             0 - No flow control (default)         0x303 - Null modem cable detect         0x013 - RTS/CTS flow control         0x813 - RTS/CTS flow control, modem input         0x023 - DTR/DSR flow control         0x083 - DTR/DCD flow control         For the SERIAL directive to be guaranteed to work properly, it         should be the first directive in the configuration file.         NOTE: "port" values from 0 to 3 means the first four serial         ports detected by the BIOS.  They may or may not correspond to         the legacy port values 0x3F8, 0x2F8, 0x3E8, 0x2E8.         Enabling interrupts (setting the 0x008 bit) may give better         responsiveness without setting the NOHALT option, but could         potentially cause problems with buggy BIOSes. NOHALT flag_val         If flag_val is 1, don't halt the processor while idle.         Halting the processor while idle significantly reduces the         power consumption, but can cause poor responsiveness to the         serial console, especially when using scripts to drive the         serial console, as opposed to human interaction. CONSOLE flag_val         If flag_val is 0, disable output to the normal video console.         If flag_val is 1, enable output to the video console (this is         the default.)         Some BIOSes try to forward this to the serial console and         sometimes make a total mess thereof, so this option lets you         disable the video console on these systems.

-----------------------------------------------------------------

SYSLINUX不知道是被封了还是怎么样,主页打不开,这里有个源码目录

可以在里面找到些简单的文档和看看代码什么的,SYSLINUX包括了用于网络引导PXELINUX等程序,可以自己去看一下。

4.  isolinux引导加载Linux内核遵循一个叫做 “Multiboot Specification ” 的标准

这个Multiboot 定义了isoLinux如何去按照指定格式被内核文件加载到内存里面来,还有可以指定模块怎么加载等。

     isolinux先去加载自己的mboot.c32模块 以支持multiboot模式,然后mboot32.c32在去根据配置加载内核和模块。

比如一个 isolinux.cfg 是这样的

LABEL Xen   KERNEL mboot.c32   APPEND xen.gz dom0_mem=15000 nosmp noacpi --- linux.gz console=tty0 root=/dev/hda1 --- initrd.img

 mboot的代码

在get_modules 函数中就会解析各个模块和参数,然后加载。APPEND 后面的字符串传给mboot.c32  后, mboot.c32 以 “---” 作为分界线, xen.gz dom0_mem=15000 nosmp noacpi   就是把 “dom0_mem=15000 nosmp noacpi   ” 传给 xen.gz模块作为参数。 “console=tty0 root=/dev/hda1 ”传给 linux.gz 模块作为参数。 linux.gz这些就是位于 cd 镜像里面的位置了,一般跟目录下吧。

linux.gz这些加载运行后,自然可以根据multiboo格式,读到 console=tty0 这些参数了。

至此系统引导成功,切换到linux环境,比如指定inird.img 文件系统的某个python程序,然后开始显示界面,提示用户安装。


详解Linux的ISO镜像安装是如何开始进行的手机版:https://m.upantool.com/jiaocheng/qidong/2012/2201.html

软件评论

育龙高手破解版微微一笑很倾城正版手游城堡战争破解版无限金币无限钻石天天爱闯关2破解版小花仙守护天使无限钻石版创造与魔法破解版千年风华无限钻石版第7装甲师破解版无法触碰的掌心破解版城堡战争电视版破解版口袋进化破解版火柴人联盟2无限火柴破解版第7装甲师无限金条安卓变形金刚:地球之战破解版我的帝国无限元宝内购破解版乱世神将bt版蜀山战纪手游坦克大决战新版王者守卫内购无限钻石金币明星梦工厂游戏塔防西游记无限内购版汉家江湖福利版封仙之怒手机版萌菌大作战2变态版三国杀OL互通版最新点点西游最新破解版航海王启航满v版牧羊人之心内购版格斗之皇破解版无限钻石超神三国志正版

声明:U盘量产网为非赢利类网站