基于CentOS5.3平台PXE网络分发安装Linux步骤记录
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-16
] Starting NFS mountd: [ OK ] Starting RPC idmapd: [ OK ] [root@PXES CentOS]# showmount -e localhost Export list for localhost: /mnt/install * 8.configure kickstart [root@PXES install]# cp /root/anaconda-ks.cfg /mnt/install/ks.cfg ##如果没有KS范本,可以从本地COPY [root@PXES install]# chmod a r /mnt/install/ks.cfg ##如果从光盘COPY的记得加权限 [root@PXES install]# vi /mnt/install/ks.cfg ##本例是直接创建KS.cfg内容如下 # Kickstart file automatically generated by Weihu.Yan_2010-07-26 install
nfs --server=192.168.195.1 --dir=/mnt/install lang en_US.UTF-8 keyboard us network --device eth0 --bootproto dhcp rootpw --iscrypted $1$EKusTGl7$qBEycMbZx.KR54NXKk2bN0 firewall --enabled --port=22:tcp authconfig --enableshadow --enablemd5 selinux --disabled timezone --utc Asia/Chongqing bootloader --location=mbr --driveorder=sda --md5pass=$1$XWZYl8jJ$cooP5EMD/KZaHNRKQN0dz0 # 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 --initlabel part /boot --fstype ext3 --size=100 part /var --fstype ext3 --size=10240 part /home --fstype ext3 --size=10240 part / --fstype ext3 --size=10240 part /tmp --fstype ext3 --size=1024 part swap --size=1024 part /data --fstype ext3 --size=1 --grow %packages @development-libs @core @legacy-software-development @legacy-software-support @admin-tools @development-tools imake 9.close iptables and start dhcpd [root@PXES install]# service iptables stop Flushing firewall rules: [ OK ] Setting chains to policy ACCEPT: filter [ OK ] Unloading iptables modules: [ OK ] [root@PXES install]# service dhcpd start Starting dhcpd: [ OK ] 10.other config [root@PXES install]# chkconfig nfs on [root@PXES install]# chkconfig portmap on [root@PXES install]# chkconfig dhcpd on [root@PXES install]# chkconfig xinetd on [root@PXES install]# chkconfig iptables off 11.troubleshooting Q:引导到boot位置时,停止,不会自动往下执行. A:请确保default文件prompt 有设为0 Q:发现没法mount ks.cfg文件? A:确保是手工执建一个ks.cfg文件,并非直接COPY过来的.
|
|||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 第 5 章 深入理解函数下一篇: linux文本界面和图形界面的转换
关于基于CentOS5.3平台PXE网络分发安装Linux步骤记录的所有评论