博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kickstart+tftp部署redhat系统
阅读量:6110 次
发布时间:2019-06-21

本文共 2913 字,大约阅读时间需要 9 分钟。

kickstart+tftp部署redhat系统:

kickstart+tftp安装、配置略

mkdir /root/isorhel66

mount -t iso9660 -i -o ro,loop rhel-server-6.6-x86_64-dvd.iso /root/isorhel66/

mkdir /var/lib/tftpboot/RHEL66/

rsync -av --progress /root/isorhel66/isolinux/initrd.img /var/lib/tftpboot/RHEL66/

mkdir /var/www/html/ks/RHEL66

rsync -av --progress /root/isorhel66/* /var/www/html/ks/RHEL66/

redhat所需ks.cfg文件需先在1台redhat系统上生成(yum install system-config-kickstart,然后vnc下执行system-config-kickstart命令)

vi /var/lib/tftpboot/pxelinux.cfg/default

label 3. Install RHEL 6.6 x86_64

kernel RHEL66/vmlinuzappend ks=http://10.0.0.2/ks/ksrhel66.cfg initrd=RHEL66/initrd.img

:wq

cp -rv ksrhel66.cfg /var/www/html/ks/

vi /var/www/html/ks/ksrhel66.cfg (url、时区、selinux调整下,把软件选择部分手动加进来)

url --url=""

timezone Asia/Shanghai

selinux --disabled

clearpart --drives=sda --all

ignoredisk --only-use=sda

%packages

reboot

:wq

cat /var/www/html/ks/ksrhel66.cfg

#platform=x86, AMD64, or Intel EM64T

#version=DEVEL
#Firewall configuration
firewall --disabled
#Install OS instead of upgrade
install
#Use network installation
url --url=""
#Root password
rootpw --iscrypted $1$lU3654aL$oT0PwZrSEbmsCBFyQHJ5M1
#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 Asia/Shanghai
#Network information
network --onboot=on --device=eth0 --bootproto=dhcp
#System bootloader configuration
bootloader --location=mbr
#Partition clearing information
#clearpart --linux
clearpart --drives=sda --all
ignoredisk --only-use=sda
#Disk partitioning information
part / --asprimary --fstype="ext4" --ondisk=sda --size=100000
part swap --fstype="swap" --ondisk=sda --size=10000

%packages

reboot

附:

CentOS 6.5的ks.cfg(主要在桌面部分比redhat多个basic-desktop):

#platform=x86, AMD64, or Intel EM64T

#version=DEVEL
#Firewall configuration
firewall --disabled
#Install OS instead of upgrade
install
#Use network installation
url --url=""
#Root password
rootpw --iscrypted $1$lU3654aL$oT0PwZrSEbmsCBFyQHJ5M1
#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 Asia/Shanghai
#Network information
network --onboot=on --device=eth0 --bootproto=dhcp
#System bootloader configuration
bootloader --location=partition
#Partition clearing information
#clearpart --linux
clearpart --drives=sda --all
ignoredisk --only-use=sda
#Disk partitioning information
part / --asprimary --fstype="ext4" --ondisk=sda --size=100000
part swap --fstype="swap" --ondisk=sda --size=10000 --grow

%packages

reboot

转载于:https://blog.51cto.com/yangzhiming/2047226

你可能感兴趣的文章
Vivado增量式编译
查看>>
一个很好的幻灯片效果的jquery插件--kinMaxShow
查看>>
微信支付签名配置正确,但返回-1,调不出支付界面(有的手机能调起,有的不能)...
查看>>
第二周例行报告
查看>>
Spring学习(16)--- 基于Java类的配置Bean 之 基于泛型的自动装配(spring4新增)...
查看>>
实验八 sqlite数据库操作
查看>>
四种简单的排序算法(转)
查看>>
Quartz2D之着色器使用初步
查看>>
多线程条件
查看>>
Git [remote rejected] xxxx->xxxx <no such ref>修复了推送分支的错误
查看>>
Porter/Duff,图片加遮罩setColorFilter
查看>>
黄聪:VMware安装Ubuntu10.10【图解】转
查看>>
Centos 6.x 升级openssh版本
查看>>
公式推♂倒题
查看>>
vue实现点击展开,点击收起
查看>>
如何使frame能居中显示
查看>>
第k小数
查看>>
构建之法阅读笔记三
查看>>
Python/PHP 远程文件/图片 下载
查看>>
【原创】一文彻底搞懂安卓WebView白名单校验
查看>>