网络安装Centos redhat及rhel5.3的ks安装

简介:

网络安装Centos redhatrhel5.3ks安装

一、软件准备
本安装使用用http方式进行所以下载apache并在windows下实现安装
 
Syslinux下载地址:
tftpd下载地址:
 
二、创建一个tftp-install
1)把解压后的tfpd文件复制至tftp-install
解压后的syslinux下的pxelinux.0复制至tftp-install
创建pxelinux.cfg bootload目录
目录结构如下图
2)在pxelinux.cfg目录下创建default list 两文件
Default文件内容如下:
DEFAULT centos5.4
DISPLAY pxelinux.cfg/list
PROMPT 1
 
 
LABEL centos5.4
  kernel /bootload/centos5.4/vmlinuz
  append initrd=/bootload/centos5.4/initrd.img
 
LABEL rhel5.3
  kernel /bootload/redhat5.3/vmlinuz
  append initrd=/bootload/redhat5.3/initrd.img
 
LABEL rhel4
  kernel /bootload/redhat4/vmlinuz
  append initrd=/bootload/redhat4/initrd.img
 
 
list文件内容如下:
Choose one of the following Linux distributions for your installation:
Name           Distribution   Arch.   Installation media
-------------------------------------------------------------------------
centos5.4  32bit i386 
 
rhel5.3  32bit i386
 
rhel4    32bit i386
 
type the targe as centos5.4 or rhel5.3 or rhel4 and next to install the os ,glod bless!
 
 
 
三、bootload目录下创建centos5.4之类的存放引导文件的目录
 
如该目录的centos5.4里面放置的文件是从centos5.4光盘中的isolinux目录文件
 
四、ftp工具设置
1)   开启tftp设置如下图server interface 为本机ip
Ip pool设置与本机ip同一网段
Boot file pxelinux.0
如有多IP点界面的settings设置下bind dhcpbind tftp
 
 
五、apache设置下面是我设置的两个安装目录
Alias   /rhel5.3   "D:/OS/RedHat/rhel-server-5.3-i386-dvd" 
<Directory   "D:/OS/RedHat/rhel-server-5.3-i386-dvd">
        Options   MultiViews
        AllowOverride   None
        Order   allow,deny
        Allow   from   all
</Directory>
Alias /rhel4 "D:/OS/RedHat/RHEL4-U4-i386-AS-disc1"
<Directory   "D:/OS/RedHat/RHEL4-U4-i386-AS-disc1">
        Options   MultiViews
        AllowOverride   None
        Order   allow,deny
        Allow   from   all
</Directory>
六、系统安装
设置需要安装系统的机器网络启动
正在获取ip
获取到ip并进入到引导界面
此时输入前面设置的引导字符即可如上面的rhel5.3centos5.4rhel4三种操作系统标签回车后进入引导安装
进入到下图界面时选择http安装
设置http的路径
 
七、kickstart安装实现
 
1)可以使用已经安装好的系统例如centosrhel我这边是使用已安装好的rhel5.3系统文件/root/anaconda-ks.cfg,下载过来修改修改即可
保存文件名为ks.cfg,内容如下
# Kickstart file automatically generated by anaconda.
 
install
url --url http://192.168.203.1/rhel5.3
key --skip
lang en_US.UTF-8
keyboard us
network --device eth0 --bootproto dhcp
rootpw --iscrypted $1$ogcIyWqR$zM.sgu7CxUCY2NZOjc1460 #密码为123456
firewall --enabled --port=2222:tcp #端口号改变
authconfig --enableshadow --enablemd5
selinux –disabled #selinux关闭
timezone --utc Asia/Shanghai
bootloader --location=mbr --driveorder=sda
# 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 --drives=sda
part /boot --fstype ext3 --size=100 --ondisk=sda
part swap --size=1024
part / --fstype ext3 --size=100 --grow
 
#选择需要安装的软件包
%packages
@development-libs
@text-internet
@core
@base
@admin-tools
@development-tools
kexec-tools
fipscheck
device-mapper-multipath
imake
#安装后的一些处理,把ssh的端口号改变,及相关不需要的服务关闭,如果有其它要求自己也可以添加下
%post
/bin/sed -i 's/#Port 22/Port 2222/' /etc/ssh/sshd_config
/sbin/chkconfig yum-updatesd off
/sbin/chkconfig sendmail off
/sbin/chkconfig rpcidmapd off
/sbin/chkconfig rpcgssd off
/sbin/chkconfig portmap off
/sbin/chkconfig nfslock off
/sbin/chkconfig ip6tables off
/sbin/chkconfig bluetooth off
/sbin/chkconfig autofs off
 
2)   脚本已经准备OK了下面对网络安装的default文件进行修改
把原来的
append initrd=/bootload/redhat5.3/initrd.img
改成:
append ks=http://192.168.203.1/rhel5.3/ks.cfg initrd=/bootload/redhat5.3/initrd.img
公司网络限制上传文件了,回头补个附件


本文转自 qwjhq 51CTO博客,原文链接:http://blog.51cto.com/bingdian/351255
相关文章
|
1月前
|
Linux 网络安全 数据安全/隐私保护
如何在 VM 虚拟机中安装 CentOS Linux 9 操作系统保姆级教程(附链接)
如何在 VM 虚拟机中安装 CentOS Linux 9 操作系统保姆级教程(附链接)
170 0
|
2月前
|
关系型数据库 MySQL Linux
centos7.0环境下安装MySql_8.0.12
centos7.0环境下安装MySql_8.0.12
|
1月前
|
存储 JavaScript Linux
Linux环境下安装nmp(Centos环境)保姆级教学 一步到位
Linux环境下安装nmp(Centos环境)保姆级教学 一步到位
|
2天前
|
Linux
centos 6.5安装yum
centos 6.5安装yum
20 0
|
2天前
|
运维 网络协议 Linux
【运维系列】Centos7安装并配置PXE服务
PXE是Intel开发的预启动执行环境,允许工作站通过网络从远程服务器启动操作系统。它依赖DHCP分配IP,DNS服务分配主机名,TFTP提供引导程序,HTTP/FTP/NFS提供安装源。要部署PXE服务器,需关闭selinux和防火墙,安装dhcpd、httpd、tftp、xinetd及相关服务,配置引导文件和Centos7安装源。最后,通过syslinux安装引导文件,并创建pxelinux.cfg/default配置文件来定义启动参数。
15 0
|
2天前
|
运维 网络协议 Linux
【运维系列】Centos7安装并配置postfix服务
安装CentOS7的Postfix和Dovecot,配置Postfix的`main.cf`文件,包括修改完全域名、允许所有IP、启用邮箱等。然后,配置Dovecot的多个配置文件以启用auth服务和调整相关设置。重启Postfix和Dovecot,设置开机自启,并关闭防火墙进行测试。最后,创建邮箱账户并在Windows邮箱客户端中添加账户设置。
10 0
|
3天前
|
Linux 网络安全
Centos6.5安装并配置NFS服务
该内容描述了在Linux系统中设置NFS服务的步骤。首先挂载yum源,然后安装NFS服务,并编辑配置文件。接着,重启rpcbind和NFS服务,可能需要重复此过程以解决初始可能出现的问题。此外,关闭防火墙策略,并再次重启服务。最终,根目录被共享,特定IP网段被允许访问。
9 0
|
4天前
|
存储 Linux 网络安全
centos7使用yum网络安装
这些是使用Yum进行网络安装的基本步骤。根据你的需求,你可以重复步骤3和4来安装其他软件包。请注意,执行Yum操作需要root或具有sudo权限的用户。
16 1
|
10天前
|
关系型数据库 MySQL Linux
centos7安装mysql-带网盘安装包
centos7安装mysql-带网盘安装包
60 2

热门文章

最新文章