kernel参数含义是什么

来源:百度知道 编辑:UC知道 时间:2024/06/01 11:25:23
我使用老毛桃制作的WinPE专用安装工具,以Grub方式安装
此命令出现在PE安装盘根目录文件MENU.LST中,命令行内容:
kernel (hd0,0)/boot/memdisk.gz c=80 h=2 s=18 floppy
initrd (hd0,0)/boot/dos.img

附:MENU.LST全文

find --set-root /abcde.txt
splashimage /boot/grub/bj2008.xpm.gz
fontfile /boot/grub/fonts

timeout 10
default 0

title 启动微型WIN-PE
chainloader /LDRXPE
boot

title 启动超强英文 DOS
kernel (hd0,0)/boot/memdisk.gz c=80 h=2 s=18 floppy
initrd (hd0,0)/boot/dos.img

title 金海硕效率源硬盘坏道修复程序2004成都国际电脑节版
kernel (hd0,0)/boot/memdisk.gz c=80 h=2 s=18 cd-rom
initrd (hd0,0)/boot/xly2004(HddREG).iso

title 重新启动计算机
reboot

title 关闭计算机
halt
我希望能通过此命令实现加载带引导的iso光盘镜像文件,从而进行引导启动。
所以,我需要了解kernel命令的全部参数,及其含义。

Kernel 操作系统内核 Kernel
Kernel 操作系统内核 操作系统内核是指大多数操作系统的核心部分。它由操作系统中用于管理存储器、文件、外设和系统资源的那些部分组成。操作系统内核通常运行进程,并提供进程间的通信。下面列出了它的一些核心功能:
事件的调度和同步。
进程间的通信(消息传递)。
存储器管理。
进程管理。
输入输出例程的管理。
Carnegie-Mellon大学开发的Mach操作系统采用客户机/服务器体系结构,它包含一个实现最少功能的、而且相对而言较小的微内核。它管理设备驱动程序、消息、线程和虚拟存储器。其他功能被模块化,通过使用进程间通信机制与操作系统内核通信。远程过程调用(RPC)用于与其他系统上运行的进程进行通信。
在DOS操作系统,操作系统内核被认为是界于基本输入输出系统(BIOS)和应用软件之间的那部分。应用命令通过操作系统内核传递到BIOS,然后再传送到相关硬件。
相关条目:Mach,Carnegie-Mellon Microkernel Carnegie-Mellon的微内核Mach;Microkernel 微内核。
【英】The kernel is the heart of the operating system and performs the functions that are most crucial for keeping everything running. It manages memory, decides which task to run next, and handles the various types of interrupts that can occur. The kernel must stay resident in RAM at all times, and because of its special nature, it must run without some of the protection mechanisms that guard against faulty instructions or illegal memory accesses. Ther