使用kickstart、dchp、tftp、http,实现RHEL 5.5操作系统的无人值守自动化安装

//
//使用kickstart、dchp、tftp、http,实现RHEL 5.5操作系统的无人值守自动化安装
//Server IP:192.168.10.178 操作系统:Red Hat Enterprise Linux Server release 5.5
//
//具体步骤如下:

1. 安装、配置DHCP服务
1.1 使用如下命令检查dhcp是否安装,rhel5系统默认安装dhcp-3.0.5-23.el5
[[email protected] ~]# rpm -qa | grep dhcp
若系统没有安装dhcp服务,先安装下面的rpm包:
dhcp-3.0.5-23.el5.i386.rpm

1.2 配置dhcp,修改/etc/dhcpd.conf
[[email protected] ~]# vi /etc/dhcpd.conf

#dhcpd.conf配置文件的例子:
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
#
ddns-update-style interim;
ignore client-updates;
allow booting;
allow bootp;

filename "pxelinux.0"; #pxelinux loader文件位置
next-server 192.168.10.178; #tftp所在服务器ip,我的serverip

subnet 192.168.10.0 netmask 255.255.255.0
{
option routers 192.168.10.1;
option subnet-mask 255.255.255.0;
range dynamic-bootp 192.168.10.100 192.168.10.110; #dhcp动态提供的ip地址范围
default-lease-time 21600;
max-lease-time 43200;
}
1.3 修改配置后,重启该服务
[[email protected] ~]# /etc/init.d/dhcpd start #启动
[[email protected] ~]# /etc/init.d/dhcpd restart #重启

2. 安装、启用tftp服务
2.1 确认tftp服务是否已安装,若无,请先安装。
[[email protected] ~]# rpm -qa | grep tftp
若tftp没有安装,先安装下面两个rpm包:
tftp-0.49-2.i386.rpm
tftp-server-0.49-2.i386.rpm

2.2 安装tftp后,修改配置文件,启用该服务
[[email protected] ~]# vi /etc/xinetd.d/tftp

#例子:
# default: off
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol is often used to boot diskless \
# workstations, download configuration files to network-aware printers, \
# and to start the installation process for some operating systems.
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
disable = no #默认为yes,这里改为no
per_source = 11
cps = 100 2
flags = IPv4
}

2.3 修改配置后,重启该服务
[[email protected] ~]# /etc/init.d/xinetd start #启动
[[email protected] ~]# /etc/init.d/xinetd restart #重启

3. 安装、启动http服务
3.1 确认http服务是否已安装,若无,请先安装该服务。
[[email protected] ~]# rpm -qa | grep http

若返回结果中,没有http包,则安装下列rpm包:
httpd-2.2.3-43.el5.i386.rpm

3.2 安装完成后,重启服务
[[email protected] ~]# /etc/init.d/httpd start #启动
[[email protected] ~]# /etc/init.d/httpd restart #重启

4. 挂载系统镜像
4.1 将RHEL5.5的光盘镜像rhel-server-5.5-i386-dvd.iso放置到服务器中,比如/home目录下。

4.2 挂载iso镜像到某个目录,比如/media/rhel5_iso目录中
[[email protected] ~]# mkdir /media/rhel5_iso #创建挂载目录
[[email protected] ~]# mount -t iso9660 -o loop /home/rhel-server-5.5-i386-dvd.iso /media/rhel5_iso

4.3 使用http方式提供安装源文件
在http目录/var/www/html/下创建链接到挂在目录/media/rhel5_iso
[[email protected] ~]# ln -s /media/rhel5_iso /var/www/html/rhel5 #创建链接
或者
在http目录/var/www/html/下创建文件夹,并将镜像挂载到该文件夹中
[[email protected] ~]# mkdir /var/www/html/rhel5.5
[[email protected] ~]# mount -t iso9660 -o loop /home/rhel-server-5.5-i386-dvd.iso /var/www/html/rhel5.5/

5. 配置系统引导文件
5.1 RHEL5是默认安装syslinux的,将/usr/lib/syslinux/pxelinux.0拷贝到/tftpboot/目录
[[email protected] ~]# cp /usr/lib/syslinux/pxelinux.0 /tftpboot/

5.2 将系统安装镜像/media/rhel5_iso/isolinux目录下的initrd.img,vmlinuz,isolinux.cfg文件拷贝到/tftpboot/目录下
#在/media/rhel5_iso/images/pxeboot目录下也存在上述文件中的initrd.img,vmlinuz
[[email protected] ~]# cp /media/rhel5_iso/isolinux/initrd.img /tftpboot/
[[email protected] ~]# cp /media/rhel5_iso/isolinux/vmlinuz /tftpboot/
[[email protected] ~]# cp /media/rhel5_iso/isolinux/isolinux.cfg /tftpboot/

5.3 在/tftpboot/目录下创建文件夹pxelinux.cfg,将isolinux.cfg移入pxelinux.cfg目录下并重命名为default
[[email protected] ~]# mkdir /tftpboot/pxelinux.cfg
[[email protected] ~]# mv /tftpboot/isolinux.cfg /tftpboot/pxelinux.cfg/default
[[email protected] ~]# chmod 777 /tftpboot/pxelinux.cfg/default

5.4 编辑修改/tftpboot/pxelinux.cfg/default文件
[[email protected] pxelinux.cfg]# vi /tftpboot/pxelinux.cfg/default

#文件内容修改如下:其中关于ks.cfg,接下来会讲到

default linux
prompt 1
timeout 100
display boot.msg
F1 boot.msg
F2 options.msg
F3 general.msg
F4 param.msg
F5 rescue.msg
label linux
kernel vmlinuz
append ks=http://192.168.10.178/ks.cfg initrd=initrd.img
label text
kernel vmlinuz
append initrd=initrd.img text
label ks
kernel vmlinuz
append ks initrd=initrd.img
label local
localboot 1
label memtest86
kernel memtest
append -

6. kickstart配置,配置文件是ks.cfg
#kickstart是Red Hat 提供的一种安装方法,能够让你自动化大部分 Red Hat Linux 的安装任务。
#kickstart的配置文件ks.cfg是一个文本文件,可以使用kickstart 配置器来创建它;或者手工写一个;或者使用/root/anaconda-ks.cfg文件,做些修改即可
#关于kickstart选项可参照:http://man.ddvip.com/os/redhat9.0cut/s1-kickstart2-options.html
#
#将ks.cfg文件放置到http的跟目录下
[[email protected] ~]# mv ks.cfg /var/www/html/

#ks.cfg文件的一个例子如下,安装rhel5.5时使用的ks.cfg文件
# Kickstart file automatically generated by anaconda.

install #指定系统是全新安装,而不是升级或其他
url --url=http://192.168.10.178/rhel5 #通过HTTP 从远程服务器上的安装树中安装
key --skip #跳过输入安装序列号
lang en_US.UTF-8 #语言选择
keyboard us #键盘选择
xconfig --startxonboot --defaultdesktop=GNOME #选择桌面系统
network --device eth0 --bootproto static --ip 192.168.10.70 --netmask 255.255.255.0 --gateway 192.168.10.1 --nameserver 10.90.0.5 #设置网络
rootpw --iscrypted $1$ixSPtHFc$0mq4QoL1B2BE6lY1yVEht/ #设置root密码,此处设置的密码是hzalcatel,经过md5加密
#firewall --enabled --port=22:tcp
firewall --disabled #放火墙关闭
authconfig --enableshadow --enablemd5
#selinux --enforcing
selinux --disabled #selinux关闭
timezone --utc Asia/Shanghai #时区设置
bootloader --location=mbr #--driveorder=sda --append="rhgb quiet"
zerombr yes
# The following is the partition information you requested
# Note that any partitions you deleted are not expressed
# here so unless you clear all partitions first, this is
# not guaranteed to work
#以下为分区设置,可根据实际情况作相应修改
clearpart --linux #清除所有linux分区
part /boot --fstype ext3 --size=100
part / --fstype ext3 --size=20000 #创建根分区,ext3格式,大小20000M
part swap --size=512
part /home --fstype ext3 --size=100 --grow #剩余磁盘空间分配给/home
reboot #安装完成后,重启计算机

#以下为定制的,需要安装的包
%packages
@admin-tools
@base
@chinese-support
@core
@dns-server
@development-libs
@development-tools
@dialup
@editors
@engineering-and-scientific
@ftp-server
@gnome-desktop
@gnome-software-development
@graphical-internet
@java
@java-development
@legacy-network-server
@legacy-software-development
@legacy-software-support
@mysql
@network-server
@openfabrics-enterprise-distribution
@sql-server
@printing
@ruby
@server-cfg
@system-tools
@text-internet
@web-server
@smb-server
@x-software-development
@base-x
system-config-kickstart
tunctl
libhbaapi
kexec-tools
bridge-utils
authd
fipscheck
device-mapper-multipath
fuse-libs
sgpio
systemtap-sdt-devel
perl-XML-SAX
pth
perl-XML-Twig
perl-XML-Dumper
perl-TimeDate
perl-libxml-perl
tog-pegasus-devel
perl-Convert-ASN1
libstdc++44-devel
libassuan-devel
perl-XML-NamespaceSupport
perl-DateManip
libksba-devel
fipscheck-devel
sblim-cmpi-dhcp-devel
perl-Crypt-SSLeay
perl-Mozilla-LDAP
pth-devel
log4cpp-devel
perl-LDAP
perl-XML-Grove
libpciaccess-devel
python-imaging
libhbaapi-devel
python-dmidecode
fuse-devel
libksba
perl-Archive-Zip
gsl
gcc44-c++
gcc44-gfortran
pexpect
dejagnu
imake
java-1.6.0-openjdk-devel
gcc-objc
ElectricFence
memtest86+
gcc-gnat
libgfortran44
gcc44
expect
java-1.6.0-openjdk
unifdef
python-docs
nasm
emacs-nox
emacs
vim-X11
gnuplot-emacs
nedit
lapack
lam
pvm
xferstats
libgnome-java
libgtk-java
libglade-java
libgconf-java
bsh-demo
tftp-server
gtk+
compat-db
openssl097a
qt4
compat-readline43
compat-openldap
compat-slang
openmotif22
mod_auth_mysql
mysql-devel
qt-MySQL
mysql-bench
php-mysql
vnc-server
dnsmasq
dhcp
postgresql-tcl
unixODBC-kde
qt-ODBC
postgresql-contrib
postgresql-pl
postgresql-test
libdbi-dbd-pgsql
postgresql-jdbc
postgresql-odbc
postgresql-docs
eruby
ruby-ri
system-config-bind
system-switch-mail-gnome
system-config-boot
rdesktop
tog-pegasus
festival
tsclient
audit
sysstat
tftp
php-odbc
php-pear
mod_auth_kerb
mod_nss
mod_auth_pgsql
mod_auth_mysql
mod_authz_ldap
php-mysql
php-pgsql
xorg-x11-xbitmaps
mesa-libGLw-devel
openmotif-devel
mesa-libGLU-devel
xorg-x11-server-sdk
libXp-devel
xorg-x11-utils
libpciaccess
xorg-x11-server-Xnest
xorg-x11-server-Xvfb

时间: 2024-10-29 19:05:42

使用kickstart、dchp、tftp、http,实现RHEL 5.5操作系统的无人值守自动化安装的相关文章

kickstart自动化安装--tftp+nfs+dhcp

使用kickstart实现Centos 自动化安装 Kickstart自动化安装简介: 规模化:同时装配多台 服务器 自动化 :安装系统,配置各种服务 远程实现:不需要光盘,U盘等安装介质 优势: (1)流线自动化的安装 (2)快速大量的裸机部署 (3)强制建立的一致性(软件包,分区,配置,监控,安全性) (4)减少人为的部署失误 使用Kickstart方法安装的过程: (1). 创建一个kickstart文件 (2). 创建有kickstart文件的引导介质或者使这个文件在网络上可用: (3)

Kickstart+NFS+DHCP+PXE+TFTP全自动化安装linux

首先不敢说是原创,是经过网络搜索总结出的比较可靠稳定的设置方法及内容. 安装过程中需要注意的事项,这在其他教程中涉及很少,给初学者造成一定困难. 本教程中的ks.cfg文件严格来说是修改系统中存在的anaconda.cfg文件. 本文中所用系统为RHEL6.4,64位操作系统. 本文中所有操作均在虚拟机中实现,为了达到更好的效果,虚拟机网络采用内部网络.主要是为了避免系统直接给它windows系统服务给它自动分配地址,我们要用linux主机的dhcp服务分配地址. 请关闭防火墙.未关闭会连接超时

PXE+Kickstart+DHCP+TFTP实现无人值守安装操作系统

Kickstart是一种无人值守的安装方式,工作原理就是预先把原本需要运维人员手工填写的参数保存成一个ks.cfg文件,当安装过程中出现需要填写参数时则自动匹配Kickstart生成的文件,所以只要Kickstart文件包含了安装过程中所有需要人工填写的参数,那么运维人员就完全不需要干预,等待安装完毕即可. #系统环境 [[email protected] ~]# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) [[ema

PXE+HTTP+tftp+kickstart 网络自动化安装centos6.5

基本流程: 1.网卡作为可引导的启动设备 2.BIOS找到引导设置网卡,激活网卡的PXE功能 3.客户端通过PXE的内置dhcp客户端尝试DHCP广播请求,从DHCP服务器获取IP地址.掩码.网关.网络属性 4.DHCP服务器告知客户端tftp服务器地址(next-server),将 "filename "pxelinux.0";" 参数中指定的文件(pxelinux.0)推送给客户端: 5.PXE的内置tftp客户端到指定tftp服务器下载启动镜像文件pxelin

KICKSTART+DHCP+TFTP+HTTP基于PXE完成全自动安装系统

pxe PXE工作于Client/Server的网络模式,支持工作站通过网络从远端服务器下载映像,并由此支持通过网络启动操作系统,在启动过程中,终端要求服务器分配IP地址,再用TFTP或MTFTP(multicast trivial file transfer protocol)协议下载一个启动软件包到本机内存中执行,由这个启动软件包完成终端(客户)基本软件设置,从而引导预先安装在服务器中的终端操作系统.PXE可以引导多种操作系统,如:Windows95/98/2000/windows2003/

rhel 5 搭建pxe&无人值守

本教程server 软件包安装为默认选择 关闭 iptables selinux为Permissive 光盘镜像自动挂载到/var/ftp/rhel_5.9 Client 为空白机 Rhel 5 搭建 pxe &kickstart无人值守 用途: 服务器的批量部署 用于远程安装构建无盘工作站 PXE&kickstart 系统构成 Pxe_server 需要的服务 DNS 为客户机分配主机名(可选) DHCP 分配IP地址/定位引导程序 TFTP 提供引导程序下载 FTP(HTTP/NFS)

Kickstart自动化安装部署Centos系统平台的搭建

先上拓扑图吧 0.使用虚拟机做实验的规划 1.ip地址的规划,模板练习机器1对应10.0.0.11,依次类推 2.所有的服务器配置好epel源 3.所有的服务器都要做内核优化(基本) 4.每个实验都要有详细的文档 5.模拟实验故障,并做记录 6.所用系统均为centos6.5for 64bit 内核版本号为2.6.32-431 一.部署Kickstart自动化安装系统平台 第一部分:基本准备篇 实验环境为centos6.5for 64bit 经验:建议安装kickstart-server为min

使用Kickstart自动化安装CentOS6.5

使用Kickstart自动化安装CentOS6.5 作者:Todd Liu       时间:2018年5月28日 本文介绍PXE方式引导自动化安装CentOS6.5系统,主要用到的系统服务有DHCP.TFTP.Vsftpd和Kickstart.通过配置Kickstart自动化应答脚本,实现客户端批量.无人值守安装系统. 1. PXE介绍 PXE(Preboot Execution Environment,预启动执行环境)由Intel公司开发,工作于Client/Server的网络模式,支持客户

pxe结合kickstart文件实现全自动化安装

PXE是什么? PXE(preboot execute environment,预启动执行环境)是由Intel公司开发的最新技术,工作于Client/Server的网络模式,支持工作站通过网络从远端服务器下载映像,并由此支持通过网络启动操作系统,在启动过程中,终端要求服务器分配IP地址,再用tftp(trivial file transfer protocol)或mtftpmulticast trivial file transfer protocol)协议下载一个启动软件包到本机内存中执行,由