网站首页 语言 会计 电脑 医学 资格证 职场 文艺体育 范文
当前位置:书香门第 > 计算机 > 操作系统

Linux全自动安装操作实例及原理

栏目: 操作系统 / 发布于: / 人气:1.02W

手动安装Linux系统费时费力,需要操作的步骤非常多,使用kickstart等工具就能实现Linux系统的全自动安装,下面小编就给大家介绍下Linux全自动安装操作实例,一起来学习下吧。

Linux全自动安装操作实例及原理

原理:

  使用光盘安装linux系统过程:

第一步,POST自检

第二步,MBR引导,这里使用的GRUB是CDROM中isolinux/文件夹中的。

第三步,启动带有安装、升级、修复等选项的选择菜单,这是由启动的。

第四步,vmlinuz(initrd)挂载根文件系统。

第五步,启动anaconda安装界面。而anaconda

详细解析

第二步中,菜单中定义了第三步中的引导内容。

所以这里的`显示内容可以自定义

[root@CentOS6 cdrom]# cat isolinux/

#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@

第三步,进入启动界面,这里定义了启动界面的各种显示内容,

由执行,由提供配置文件。

display

引用,其配置文件为

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=

label vesa

menu label Install system with ^basic video driver

kernel vmlinuz

append initrd= xdriver=vesa nomodeset

label rescue

menu label ^Rescue installed system

kernel vmlinuz

append initrd= rescue

label local

menu label Boot from ^local drive

localboot 0xffff

label memtest86

menu label ^Memory test

kernel memtest

append -

第五步,真正进入安装时,需要加载Packages/文件

anaconda程序可以实现图形、字符方式的安装,而在这两种方式下,

也可以选择交互式安装或自问自答的自动安装。

anaconda安装详解:

其自动安装的配置文件是口kickstart。kickstart可以手动编写,可以文本方式生成,也可以

图形方式生成。(文件在安装完成后会在root家目录下生成详细配置)

下面是图形生成的步骤:

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使用交互式模式,不勾。

Install Method:安装源

HTTP Server:安装源的IP

HTTP Directory:目录

Boot Loader Options:引导选项

Install new boot loader安装新的bootloader,下面是使用旧的。

Use GRUB password:GRUB要不要加密。

Install boot loader on Master Boot Record(MBR)

将bootloader装入MBR中

Install boot loasder on first sector of the boot partition

将bootloader装入某一个分区中引导。

kernel parameters:crashkernel=auto rhgb quiet使用静默模式。

Partition Information定义分区

Network Configuration网络配置

Authentication认证,默认sha512就可以

pre

post这里不用指定#!/bin/bash

4,保存kickstart配置文件。

文件默认保存名字为

5,检查配置文件的错误。

# ksvalidator

kscfg配置文件详解:

命令段:

#platform=x86, AMD64, 或 Intel EM64T

#version=DEVEL

# Firewall configuration

firewall --disabled禁用防火墙

# Install OS instead of upgrade

install默认动作是安装

# Use network installation

url --url=“”使用FTP安装源

repo --name=“CentOS” --baseurl=“”

# Root password

rootpw --iscrypted $1$dpCtQEn6$pC3UGFPZEJJ5nVftiaScq0

# System authorization information

auth --useshadow --passalgo=sha512

# Use text mode install

text使用文本安装方式

# System keyboard

keyboard us使用美式英语键盘

# System language

lang zh_CN设置默认语言

# SELinux configuration

selinux --disabled禁用SELINUX

# Do not configure the X Window System

skipx

# Installation logging level

logging --level=info

# Reboot after installation

reboot安装完成时的动作

# System timezone

timezone Asia/Shanghai

# Network information

network --bootproto=static --device=eth0 --ip= --netmask= --onboot=on

# System bootloader configuration

bootloader --append=“crashkernel=auto rhgb quiet” --location=mbr --driveorder=“sda”

# Clear the Master Boot Record

zerombr

# Partition clearing information

clearpart --all --initlabel清空磁盘分区

# Disk partitioning information磁盘分区

part /boot --asprimary --fstype=“ext4” --ondisk=sda --size=100

part / --asprimary --fstype=“ext4” --ondisk=sda --size=20480

part swap --asprimary --fstype=“swap” --ondisk=sda --size=500

脚本段:

%post

touch /tmp/

%end

软件包段:

%packages

@base

@basic-desktop

@chinese-support

@core

@debugging

@desktop-debugging

@desktop-platform

@desktop-platform-devel

@development

@directory-client

@fonts

使用引导光盘引导后的选择:

点击两次“ESC”键,进入命令行模式,然后

linux ip= netmask= ks=

ftp安装源自动安装linux详细步骤:

1,制作引导光盘:

# mount /dev/cdrom /media/cdrom/

# mkdir /root/myboot

# cp /media/cdrom/isolinux/ /root/myboot/isolinux

# cd /root/myboot/isolinux

# chmod +w 。/*

# chmod +x vmlinuz

# mkisofs -R -J -T -v -no-emul-boot -boot-load-size 4 -boot-info-table -V “MageEdu Testing Image” (-V跟光盘标签) -b isolinux/ (明确指定的存放位置) -c isolinux/ (指定的位置) -o /tmp/ (指定输出位置) /root/myboot/ (指定输入源)

2,制作ftp安装源

# yum install vsfptd

# service vsftpd start

# mkdir /var/ftp/CentOS

# mount /media/cdrom /var/ftp/CentOS,

3,将制作好的文件放到ftp目录

# cp /root/ /var/ftp/pub

4,将前面的挂载到目标主机的光驱,启动后两次“ESC”键,然后就输入:

linux ip= netmask= ks=

5,自动安装启动

上面就是Linux全自动安装的方法介绍了,本文通过编译脚本实现Linux系统全自动化安装,需要安装anaconda,编译完anaconda后启动即可。