PXE && Kictstart網(wǎng)絡(luò)自動安裝OS(rhel 6.2) |
發(fā)布時間: 2012/9/15 18:09:49 |
PXE && Kictstart網(wǎng)絡(luò)自動安裝OS(rhel 6.2)
// 實現(xiàn)過程
客戶端通過網(wǎng)卡PXE啟動-->連接到DHCP服務(wù)器-->獲得IP地址-->客戶端從TFTP服務(wù)器下載pxelinux.0,根據(jù)配置文件(default)下載指定的vmlinuz,initrd-->啟動系統(tǒng)內(nèi)核,加載初始化鏡像文件(加載參數(shù)是否有ks)-->安裝初始化完成-->到指定的位置(NFS|FTP|HTTP服務(wù)器上)下載軟件包進行安裝
// 組建功能簡介
DHCP用于向客戶端分配IP
tftp用于傳輸bootloader文件pxelinux.0
ks.cfg用于初始化安裝
ftp負責(zé)傳輸安裝鏡像文件install.img
// 安裝所需軟件包【本試驗在192.168.0.254主機中配置所有服務(wù)】
[root@localhost~]# yum install dhcp tftp vsftp syslinux kickstart –y
// DHCP 部分
[root@localhost~]# vi /etc/dhcp/dhcpd.conf
ddns-update-style interim;
ignore client-updates;
next-server 192.168.0.254; #tftp服務(wù)器IP
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.10 192.168.0.20; #地址池
}
filename="pxelinux.0";
[root@localhost~]# service dhcpd start
// TFTP部分
[root@localhost~]# service xinetd start
[root@localhost~]# cp /cdrom/images/pxeboot/initrd.img /var/lib/tftpboot
[root@localhost~]# cp /cdrom/images/pxeboot/vmlinuz /var/lib/tftpboot
[root@localhost~]# cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/
[root@localhost~]# mkdir /var/lib/tftpboot/pxelinux.cfg
[root@localhost~]# vi /var/lib/tftpboot/pxelinux.cfg/default
default linux
label linux
menu label ^Install rhel 62 with PXE
menu default
kernel vmlinuz
append initrd=initrd.img ks=ftp://192.168.0.254/pub/ks.cfg
完成后,目錄樹如下:
[root@localhost ~]# tree /var/lib/tftpboot
/var/lib/tftpboot
├── initrd.img
├── pxelinux.0
├── pxelinux.cfg
│ └── default
└── vmlinuz
1 directory, 4 files
// Kickstart 部分
[root@localhost~]# system-config-kickstart
Save : /var/ftp/pub/ks.cfg
ks.cfg樣例見文末
// FTP 部分
[root@localhost~]# service vsftpd start
[root@localhost~]# mkdir /cdrom
[root@localhost~]# mount /dev/cdrom /cdrom
[root@localhost~]# cp -Rf /cdrom/* /var/ftp/pub/
[root@localhost~]# chown -R ftp:ftp /var/ftp/pub
ks.cfg樣例
#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use network installation
url --url="ftp://192.168.0.254/pub"
# Root password
rootpw --iscrypted $1$3xdVJxOa$3gsZHWJn403WYmNhlMYOl.
# System authorization information
auth --useshadow --passalgo=sha512
# Use graphical install
graphical
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# SELinux configuration
selinux --disabled
# Installation logging level
logging --level=info
# System timezone
timezone Africa/Abidjan
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part /boot --fstype="ext4" --size=200
part swap --fstype="swap" --size=1024
part / --fstype="ext4" --grow --size=1
%packages
@base
@basic-desktop
@chinese-support
@compat-libraries
@console-internet
@development
@fonts
@input-methods
@internet-browser
@remote-desktop-clients
@system-admin-tools
@system-management
@x11
%end 本文出自:億恩科技【mszdt.com】 服務(wù)器租用/服務(wù)器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM] |