kickstart的driverdisk没效果,难道不支持国产服务器??
有人会的可以指教一下。
有工程师说append dd行,试了:
Normal
0
7.8 磅
0
2
false
false
false
EN-US
ZH-CN
X-NONE
MicrosoftInternetExplorer4
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:普通表格;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.5pt;
mso-bidi-font-size:11.0pt;
font-family:"Calibri","sans-serif";
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:宋体;
mso-fareast-theme-font:minor-fareast;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-font-kerning:1.0pt;}
append放在ks.cfg中提示不识别的命令.
append放在pxelinux.default中:
label redhat32_langchao
append dd
kernel redhat32/vmlinuz
append initrd=redhat32/initrd.img
ks=nfs:192.168.160.200:/tftpboot/redhat32/langchao/ks.cfg ksdevice=eth0
这样无效。
这样写:
label redhat32_langchao
kernel redhat32/vmlinuz
append
initrd=nfs:192.168.160.200:/tftpboot/yourimg.img
ks=nfs:192.168.160.200:/tftpboot/redhat32/langchao/ks.cfg ksdevice=eth0
PXE的话是只识别原装的img文件,
yourimg.img文件不行。
这样写的话
label redhat32_langchao
kernel redhat32/vmlinuz
append initrd=redhat32/initrd.img
dd=nfs:192.168.160.200:/tftpboot/yourimg.img
ks=nfs:192.168.160.200:/tftpboot/redhat32/langchao/ks.cfg ksdevice=eth0
会先加载原装的img,dhcp获取ip后再加载yourimg.img,后面网就断了,好像加载完yourimg.img后,网卡驱动重新加载了,ip信息没有,不能获取ks.cfg文件。
阅读(1144) | 评论(0) | 转发(0) |