#!/bin/bash # # Download the files needed for a standalong boot with USB Stick # # # Original File # ------------- # http://Linux-Boot.net/Bootable/ # # # 30-Aug-05 amo Date-of-Birth # 30-Sep-05 amo Modified for SBM-2005-0930 # # TOP="Bootable.2005" # if [ ! -d "$TOP" ]; then echo "#" echo "# WARNING: Creating dir=$TOP" echo "#" # mkdir $TOP # fi # cd $TOP # # # Download the Standalone Boot files # ---------------------------------- wget -c http://Linux-Boot.net/Bootable/Downloads/SBM-2005-0930.p4.tgz # # # Customize the ip#, hostname and password # ---------------------------------------- # cd /root/Customize # # # To Save your Customization Changes # ---------------------------------- # mount /dev/sda6 /mnt/Customize # copy your changes to /mnt/Customize # umount /mnt/Customize # # # End of file