无人值守网络安装Linux系统
选的话就在加上,例如
8)创建并且编辑系统list文件 [root@tomcat1 tftpboot]# vi pxelinux.cfg/list(内容如下) Choose one of the following Linux distributions for your installation: Name Distribution Arch. Installation media centos-5.3.i386 centos-5.3 i386 192.168.10.197:/instsvr/i386/centos-5.3-i386 注意:如果还有别的可选系统,可以按如下格式继续安添加
此处的centos-5.3-i386要和default文件的LABEL内容相同 9)检查一下文件和目录的结果 [root@tomcat1 /]# tree /tftpboot
10)启动服务 [root@tomcat1 tftpboot]# /etc/init.d/xinetd restart 二. 配置安装服务器 1. 安装配置NFS服务器 1)把iso文件都放在指定的目录 [root@tomcat1 tftpboot]# mkdir /instsvr/i386/ [root@tomcat1 tftpboot]#cd /instsvr/i386/ [root@tomcat1 i386]# mkdir centos-5.3.i386/ [root@tomcat1 tftpboot]# mv /srv/CentOS-5.3-i386-bin-DVD.iso /instsvr/i386/centos-5.3.i386/ 2)[root@tomcat1 tftpboot]# yum -y install nfs 3)设置输出目录 [root@tomcat1 tftpboot]# vi /etc/exports(内容如下) /instsvr/i386/centos-5.3.i386/ *(ro,no_root_squash,sync) /instsvr/ks/ *(ro,no_root_squash,sync) 4)重启服务 [root@tomcat1 tftpboot]# /etc/init.d/nfs restart 5)验证输出 [root@tomcat1 tftpboot]# showmount -e localhost Export list for localhost: /instsvr/ks * /instsvr/i386/centos-5.3.i386 * 三. 安装和配置kickstart 1. 安装服务 [root@tomcat1 tftpboot]# yum -y install system-config-kickstart 2, 编辑配置文件 [root@tomcat1 tftpboot]# mkdir /instsvr/ks/ [root@tomcat1 tftpboot]# cd /instsvr/ks/ [root@tomcat1 ks]# vi ks.cfg(内容如下) install text lang en_US keyboard us
skipx network --device eth0 --bootproto dhcp rootpw --iscrypted $1$LsW3tY7b$CpK4Hvc8A.pD.tm91T.oE/ firewall --enabled --port=22:tcp #firewall --disabled authconfig --enableshadow --enablemd5 selinux --disabled timezone --utc Asia/Chongqing nfs --server=192.168.10.197 --dir=/instsvr/i386/centos-5.3.i386/ # 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 bootloader --location=mbr --driveorder=sda clearpart --linux --initlabel part /boot --fstype ext3 --size=100 --ondrive=hda part / --fstype ext3 --size=6000 --ondrive=hda part swap --size=2000 --ondrive=hda reboot %packages @base @core @gnome-desktop @development-libs @development-tools @editors keyutils trousers fipscheck device-mapper-multipath imake lrzsz 3. 重新修改default文件 [root@tomcat1 ks]# vi /tftpboot/pxelinux.cfg/default(修改如下) 4. 把所有的服务重启 [root@tomcat1 ks]#/etc/init.d/nfs restart;/etc/init.d/dhcpd restart;/etc/init.d/xinetd restart
这样在启动安装程序的时候,参数ks=nfs:192.168.138.1:/instsvr/ks/ks.cfg会被传递给它,告诉它使用这个文件作为kickstart配置文件来进行kickstart安装 至此服务器端的配置就完成了,下面要做的就是安装客户机,叫其从网卡启动
|
|||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |