The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
PXE Network Windows Installation
Howto use your Funtoo machine to serve a MS Windows installation over the network In this guide we will assume that you have followed the PXE network boot server Wiki article and have a working network/pxe boot setup. As of now this guide will cover Windows XP. Soon it will be expanded to also cover Windows 7.
Prerequisites
- A working Funtoo installation
- A working PXE Setup (DHCP, TFTP, PXELinux)
- app-arch/cabextract
- A legitimate copy of Microsoft Windows
- Driver for your NIC - Suggested to use a complete driver pack with all major supported NIC hardware for the version of Windows to be installed.
- RIS Linux toolkit >=0.4
- A working Samba server setup
Creating the Windows XP Image
- In the previous guide, PXE Network Boot Server, we used /tftproot as the working directory so we will also use it in this guide for convenience. If you chose to use a different working directory then please apply it where needed in place of the /tftproot we will be going by here.
First you will need to create an ISO from your Windows XP installation disc. If you already have the ISO image you may skip this step.
root # dd if=/dev/sr0 of=/tftproot/winxp.iso
If your cdrom device isn't /dev/sr0
please use the appropriate device in this command.
Mount the ISO and Prepare Installation Sources
Mount the image to /tftproot/cdrom
:
root # mkdir /tftproot/cdrom; mount -o loop /tftproot/winxp.iso /tftproot/cdrom
Create the new directory for the network installation files and copy the needed files to it:
root # mkdir /tftproot/winxp; cp -R /tftproot/cdrom/i386 /tftproot/winxp/i386
Depending on your CD/DVD copy of windows the directory name may be I386 as opposed to i386, if that is the case you will just need to change the first part of the command, keeping the new directory name i386 - this is going to be very important later on when creating the remap file! Check the contents of your newly created i386 directory to see if the filenames are in all CAPS or if they are already in lowercase.
root # ls /tftproot/winxp/i386
If you happen to have all UPPERCASE filenames, lets go ahead and run a script to convert it to all lowercase:
root # cd /tftproot/winxp/i386;ls | awk '$0!=tolower($0){printf "mv \"%s\" \"%s\"\n",$0,tolower($0)}' | sh
Extracting and Modifying the Required Boot Files
Install No results
root # emerge app-arch/cabextract
Extract the prepackaged drivers:
root # cd /tftproot/winxp/i386;cabextract driver.cab
Install support for a large list of network cards:
root # cd /tftproot/;wget http://downloads.sourceforge.net/project/bootfloppy/pxefiles.tar.gz root # tar zxvf pxefiles.tar.gz; cp pxefiles/drivers/* winxp/i386/
Copy the BINLSRV /INFParser tools to /tftproot:
root # cp pxefiles/script/* /tftproot/
Extract the netboot startrom:
root # cd /tftproot; cabextract winxp/i386/startrom.n1_
Fix the startrom for netbooting xp:
root # sed -i -e 's/NTLDR/XPLDR/gi' startrom.n12 root # mv startrom.n12 winxp.0
Fix XPLDR:
root # cabextract winxp/i386/setupldr.ex_ root # sed -i -e 's/winnt\.sif/winxp\.sif/gi' setupldr.exe root # sed -i -e 's/ntdetect\.com/ntdetect\.wxp/gi' setupldr.exe root # mv setupldr.exe xpldr root # cp winxp/i386/ntdetect.com ntdetect.wxp
Creating a remapping file
Create the file /tftproot/tftpd.remap
and add the following to it:
{{{body}}}
Install/Configure Samba
If you don't already have net-fs/samba installed, then:
root # emerge -av net-fs/samba
Create a Samba share for your tftp server in /etc/samba/smb.conf
{{{1}}}
Be sure you have the other required samba settings configured in the file
{{{body}}}
Start Samba:
root # /etc/init.d/samba start
or if samba has already been started:
root # /etc/init.d/samba restart
Creating a Setup Instruction File
Create the file /tftproot/winxp.sif
and add the following, replacing SAMBA_SERVER_IP with the local IP address of your samba server:
{{{body}}}
Edit your boot menu so that it contains the following entry:
LABEL WinXP MENU LABEL Install MS Windows XP KERNEL winxp.0
Re-Start all required daemons
If the daemon isn't already running use start instead or restart in the following commands
root # /etc/init.d/dnsmasq restart root # /etc/init.d/in.tftpd restart
Modify Binlsrv, update driver cache, and start driver hosting service
Change the BASEPATH= variable at or around line #62 of binlsrv.py
so that it is:
{{{body}}}
Generate driver cache:
root # cd /tftproot;./infparser.py winxp/i386/
Start binlservice:
root # ./binlsrv.py
Booting the client
If all is well, you should be able to boot the client choosing to boot from network in the boot options, you should get to your PXELinux bootloader, and see the Install Windows XP option after pressing enter you *should* kick off your XP installation via network!! Congratulations!