真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

linux安裝配置kickstart

1、安裝配置kickstart


要使用kickstrt安裝平臺,包括的完整架構(gòu)為:Kickstart + DHCP+ NFS+TFTP+PXE,從架構(gòu)可以看出
大致需要安裝的服務(wù),例如dbcp、tftp、nfs、kickstart/pxe等


掛在鏡像


mount /dev/cdrom /mnt
df -h




1)DHCP、Tftp安裝


yum install -y dhcp* tftp* syslinux


首先配置tftp服務(wù):


vi /etc/xinetd.d/tftp


disable                 = no


只需要把disable=yes 改成disbale=no即可




2)TFTP +PXE配置


要實現(xiàn)遠程安裝系統(tǒng),首先需要在TFTpboot目錄指定相關(guān)PXE內(nèi)核模塊以及相關(guān)參數(shù),
配置步驟如下:


#如果系統(tǒng)是5.X,默認tftpboot目錄已經(jīng)自動創(chuàng)建到/根目錄下
#如果系統(tǒng)是6.X,默認tftpboot目錄在/var/lib/下,所以linux 6.x需要做軟鏈接/根目錄下。
查看/根下是否有/tftpboot目錄,如果沒有需要做軟鏈接
ln -s /var/lib/tftpboot/ /
cd /tftpboot/
find / -name pxelinux.0
cp /usr/share/syslinux/pxelinux.0 ./
cp /mnt/images/pxeboot/{initrd.img,vmlinuz} ./
將所有內(nèi)容拷貝內(nèi)核到/tftpboot目錄下


mkdir -p /tftpboot/pxelinux.cfg 
cd /tftpboot/pxelinux.cfg
cp /mnt/isolinux/isolinux.cfg default
chmod 777 /tftpboot/pxelinux.cfg/default
vi /tftpboot/pxelinux.cfg/default
添加如下:
label Rehel6.5
kernel vmlinuz
append ks=nfs:192.168.56.77:/centosinstall/ks.cfg ksdevice=eth0 initrd=initrd.img




安裝nfs服務(wù)


yum install -y nfs*


用NFs或者httpd把鏡像文件共享出來


mkdir -p /centosinstall
nohup cp -rf /mnt/* /centosinstall &
echo "/centosinstall  *(rw,sync)" >>/etc/exports




cd /centosinstall
vi ks.cfg
[root@localhost ~]# cat ks.cfg 
#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
key --skip
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use NFS installation media
nfs --server=192.168.56.77 --dir=/centosinstall
# Root password
rootpw --iscrypted $1$9g6qXfWW$b3ofuFBbrusMKae5R5d6Z.
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use text mode install
text
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# SELinux configuration
selinux --disabled
# Installation logging level
logging --level=info
# Reboot after installation
reboot
# System timezone
timezone  Asia/Shanghai
# Network information
network  --bootproto=dhcp --device=eth0 --onboot=on
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all  
# Disk partitioning information
part swap --fstype="swap" --size=4096
part /boot --fstype="ext4" --size=200
part / --fstype="ext4" --grow --size=1
%packages
@admin-tools
@base
@core
@development-libs
@development-tools
@x11
%end




chmod 777 ks.cfg




或者使用yum install system-config-kickstart.noarch   終端中運行system-config-kickstart命令 圖像界面生成ks.cfg文件






啟動nfs、tftp服務(wù)
service nfs restart
service xinetd restart




配置dhcp服務(wù)


yum install -y dbcp*


vi /etc/dhcp/dhcpd.conf


dDNS-update-style interim;
ignore client-updates;
subnet 192.168.56.0 netmask 255.255.255.0 {
option routers 192.168.56.1;
option subnet-mask 255.255.255.0;
range dynamic-bootp  192.168.56.88 192.168.56.200;
next-server 192.168.56.77;
filename "pxelinux.0";
allow booting;
allow bootp;
}




service dhcpd restart








創(chuàng)建客戶端client
輸入標簽
Rehel6.5























標題名稱:linux安裝配置kickstart
轉(zhuǎn)載來源:http://weahome.cn/article/pgosis.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部