Quote (aga @ June 02 2008,13:50) |
I remastered the dsl-4.3-initrd.iso and it comes very handy. Maybe you want to use my bootlocal.sh bootlocal.sh is now: if egrep " rboot" /proc/cmdline; then RBOOT=`sed 's/.* rboot=\([^ ]*\).*/\1/' /proc/cmdline` echo booting $RBOOT while ! (wget -O - $RBOOT > /tmp/rboot) do sleep 2; done . /tmp/rboot fi The remote bootlocal.sh is something like: #!/bin/bash mkdir /tmp/wget_remote cd /tmp/wget_remote for i in dsl-dpkg.dsl gnu-utils.unc loopaes-3.1f-2.4.31_x86.dsl \ php-4-monkey-0.9.1.tar.gz pptp-linux_1.1.0-1_i386.deb xampp.unc do wget ${RBOOT%/*}/$i # get everything from remote user done for i in *tar.gz *unc *uci *dsl; do mydsl-load $i; done for i in *.deb; do dpkg -i $i; done pxe_default could contain: APPEND ramdisk_size=100000 init=/etc/init lang=de apm=power-off vga=791 initrd=mini rt24.gz nomce noapic quiet BOOT_IMAGE=knoppix rboot=ftp://user:pwd@172.16.100.250/bootlocal.sh |
Quote |
Can you document the procedure of how to boot it with pxe? I am always wanting to install dsl via pxe, but just cannot find a way. |