当前位置:K88软件开发文章中心电脑基础基础应用04 → 文章内容

Linux全自动安装操作实例

减小字体 增大字体 作者:华军  来源:华军资讯  发布时间:2019-1-31 0:05:35

  手动安装Linux系统费时费力,使用kickstart等工具就能实现Linux系统的全自动安装,下面为大家介绍下原理,需要的朋友可以看看。  原理:  使用光盘安装linux系统过程:  第一步,POST自检  第二步,MBR引导,这里使用的GRUB是CDROM中isolinux/文件夹中的grub.conf。  第三步,启动带有安装、升级、修复等选项的选择菜单,这是由isolinux.bin启动的。  第四步,vmlinuz(initrd)挂载根文件系统。  第五步,启动anaconda安装界面。而anaconda  详细解析:  第二步中,grub.conf菜单中定义了第三步中的引导内容。  所以这里的显示内容可以自定义  [root@CentOS6 cdrom]# cat isolinux/grub.conf  #debug --graphics  default=0  splashimage=@SPLASHPATH@  timeout 5  hiddenmenu  title @PRODUCT@ @VERSION@  kernel @KERNELPATH@  initrd @INITRDPATH@  title Install system with basic video driver  kernel @KERNELPATH@ xdriver=vesa nomodeset askmethod  initrd @INITRDPATH@  title rescue  kernel @KERNELPATH@ rescue askmethod  initrd @INITRDPATH@  第三步,进入启动界面,这里定义了启动界面的各种显示内容,  由isolinux.bin执行,由isolinux.cfg提供配置文件。  display boot.msg  引用boot.msg,其配置文件为boot.cfg  menu background splash.jpg  menu title Welcome to CentOS 6.4!最上面显示的内容  menu color border 0 #ffffffff #00000000定义界面的颜色显示  menu color sel 7 #ffffffff #ff000000  定义选项  label linux  menu label ^Install or upgrade an existing system  menu default  kernel vmlinuz  append initrd=initrd.img  label vesa  menu label Install system with ^basic video driver  kernel vmlinuz  append initrd=initrd.img xdriver=vesa nomodeset  label rescue  menu label ^Rescue installed system  kernel vmlinuz  append initrd=initrd.img rescue  label local  menu label Boot from ^local drive  localboot 0xffff  label memtest86  menu label ^Memory test  kernel memtest  append -  第五步,真正进入安装时,需要加载Packages/anaconda-VERSION.rpm文件  anaconda程序可以实现图形、字符方式的安装,而在这两种方式下,  也可以选择交互式安装或自问自答的自动安装。  anaconda安装详解:  其自动安装的配置文件是口kickstart。kickstart可以手动编写,可以文本方式生成,也可以  图形方式生成。(ks.cfg文件在安装完成后会在root家目录下生成anaconda.cfg详细配置)  下面是图形生成的步骤:  1,安装system-config-kickstart  yum install system-config-kickstart  2,启动system-config-kickstart  system-config-kickstart &  3,配置kickstart  Basic Configuration:  Encrypt root password表示加密root的密码串  Target Architecture:表示平台  Reboot system after installation安装后的动作是重启,需要勾上。  Perform installation in text text mode (grphical is default)  安装界面默认使用图形界面,所以这个需要勾上。  Perform installlation in interactive mode使用交互式模式,不勾。 

Linux全自动安装操作实例