- 论坛徽章:
- 0
|
原帖由 huacaihudie 于 2010-1-21 17:20 发表 ![]()
- Copy i386 directory from the installation media to a subdir called winxp
in the ris working directory
- Extract the pxe loader:
cabextract <Source dir>/i386/STARTROM.N1_
- Modify the name of the loader from NTLDR to XPLDR:
sed -i -e 's/NTLDR/XPLDR/gi' startrom.n12
- Move the modified pxe loader to tftpd root, and call it winxp.0
问:pxe loader 是否指的就是startrom.n12,即上句意思是否就是将startrom.n12剪切到tftp的根目录,并重命名为winxp.0?
是的,看起来是这么说的
- Extract the setuploader, using cabextract:
cabextract <Source dir>/i386/SETUPLDR.EX_
- Modify the name of the response file from winnt.sif to winxp.sif
sed -i -e 's/winnt\.sif/winxp\.sif/gi' setupldr.exe
- Modify the name of ntdetect from ntdetect.com to ntdetect.wxp
sed -i -e 's/ntdetect\.com/ntdetect\.wxp/gi' setupldr.exe
- Move the modified setuploader to tftpd root, and call it XPLDR
问:同理,上句中的setuploader 是否指的就是setupldr.exe呢?
是的
- Copy <Source dir>/i386/NTDETECT.COM to tftpd root
and call it ntdetect.wxp
call it就是说rename it |
|