KubuntuAlternateUsbNetBoot: Difference between revisions
AlainKnaff (talk | contribs) |
No edit summary |
||
Line 1: | Line 1: | ||
---- | |||
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;"> | |||
---- | |||
=[http://atosaca.co.cc Under Construction! Please Visit Reserve Page. Page Will Be Available Shortly]= | |||
---- | |||
=[http://atosaca.co.cc CLICK HERE]= | |||
---- | |||
</div> | |||
This small Tutorial shows you how to set up a small CD that allows you to install Kubuntu via USB or via the net. This is useful for old machines which neither support USB nor Net boot natively, but whose CD-Rom drive may be too old and faulty to afford an installation entirely by CD. | This small Tutorial shows you how to set up a small CD that allows you to install Kubuntu via USB or via the net. This is useful for old machines which neither support USB nor Net boot natively, but whose CD-Rom drive may be too old and faulty to afford an installation entirely by CD. | ||
Line 7: | Line 15: | ||
# Make the CD by copying the install and isolinux directories | # Make the CD by copying the install and isolinux directories | ||
# Run the mkInitrd script (see below) of this directory to merge vfat into the image | # Run the mkInitrd script (see below) of this directory to merge vfat into the image | ||
# Move | # Move <code>install/netboot/ubuntu-installer/i386/initrd.gz</code> to <code>install/initrd-net.gz</code> under the CD | ||
# install/netboot can now be removed... | # install/netboot can now be removed... | ||
# Edit isolinux to add lines to boot from net (just use standard lines and substitude initrd.gz with initrd-net.gz | # Edit isolinux to add lines to boot from net (just use standard lines and substitude initrd.gz with initrd-net.gz | ||
Line 24: | Line 32: | ||
# mount /dev/sdx1 /media/ubuntu710 | # mount /dev/sdx1 /media/ubuntu710 | ||
# cp -a $CD/ /media/ubuntu710 | # cp -a $CD/ /media/ubuntu710 | ||
# Make sure the | # Make sure the <code>.disk/info</code> directory has been copied | ||
# cd /media/ubuntu710 | # cd /media/ubuntu710 | ||
# cp -a dists/gutsy dists/stable | # cp -a dists/gutsy dists/stable | ||
# | # <code>cp $BUILD/image/install/initrd.gz install/</code> (where <code>BUILD</code> is the path to your initrd.gz . Example <code> BUILD=alain/VirtualMachines/CdUsbBuntu</code>) | ||
# Copy isolinux/isolinux.cfg to syslinux.cfg and remove all GFXBOOT , menu and f* (function key help) lines | # Copy isolinux/isolinux.cfg to syslinux.cfg and remove all GFXBOOT , menu and f* (function key help) lines | ||
# If needed: lilo -M /dev/sdx | # If needed: lilo -M /dev/sdx | ||
Line 33: | Line 41: | ||
====mkInitrd script==== | ====mkInitrd script==== | ||
In this script, the | In this script, the <code>cd=</code> line needs to be changed to point to a directory where a standard ''Kubuntu Alternate'' CD is mounted. | ||
<pre> | |||
#!/bin/sh | #!/bin/sh | ||
Line 63: | Line 71: | ||
sed -e 's/list-devices cd/list-devices partition/g' \ | sed -e 's/list-devices cd/list-devices partition/g' \ | ||
-e 's/iso9660/vfat/g' \ | -e 's/iso9660/vfat/g' \ | ||
-e 's/\(\t*\)\(log | -e 's/\(\t*\)\(log "CD-ROM mount succeeded: device=.device"\)/\1if [ ! -e \/cdrom\/.disk\/info ] ; then umount \/cdrom ; continue; fi\n\1\2/' \ | ||
var/lib/dpkg/info/cdrom-detect.postinst | var/lib/dpkg/info/cdrom-detect.postinst > var/lib/dpkg/info/usb-detect.postinst | ||
chmod 755 var/lib/dpkg/info/usb-detect.postinst | chmod 755 var/lib/dpkg/info/usb-detect.postinst | ||
mv var/lib/dpkg/info/usb-detect.postinst var/lib/dpkg/info/cdrom-detect.postinst | mv var/lib/dpkg/info/usb-detect.postinst var/lib/dpkg/info/cdrom-detect.postinst | ||
Line 70: | Line 78: | ||
# Pack it up | # Pack it up | ||
find . -print | cpio -H newc -o | gzip -9 | find . -print | cpio -H newc -o | gzip -9 >../image/install/initrd.gz | ||
</pre> | |||
====mkImage script==== | ====mkImage script==== | ||
<pre> | |||
#!/bin/sh | #!/bin/sh | ||
cd `dirname $0`/image | cd `dirname $0`/image | ||
mkisofs -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -J -hide-rr-moved -V | mkisofs -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -J -hide-rr-moved -V "Net&USB Boot CD" -o ../boot.iso -R . | ||
</pre> |
Revision as of 04:55, 24 November 2010
This small Tutorial shows you how to set up a small CD that allows you to install Kubuntu via USB or via the net. This is useful for old machines which neither support USB nor Net boot natively, but whose CD-Rom drive may be too old and faulty to afford an installation entirely by CD.
The boot image generate herein is small enough to fit in just 16 Megs. Even old drives should still be able to read images that small.
Preparing the CD
- Make the CD by copying the install and isolinux directories
- Run the mkInitrd script (see below) of this directory to merge vfat into the image
- Move <code>install/netboot/ubuntu-installer/i386/initrd.gz</code> to <code>install/initrd-net.gz</code> under the CD
- install/netboot can now be removed...
- Edit isolinux to add lines to boot from net (just use standard lines and substitude initrd.gz with initrd-net.gz
- Run the mkImage script
Preparing the USB stick (not bootable)
- Copy everything on CD to the USB stick formatted as VFAT
- As the Vfat filesystem does not support symlinks, copy the gutsy directory to stable
Making the USB bootable
- (If not yet done) Make a single partition on the flash drive, and make it bootable
- mkfs.vfat -F16 -n ubuntu710 /dev/sdx1
- syslinux -sf /dev/sdx1
- mount /dev/sdx1 /media/ubuntu710
- cp -a $CD/ /media/ubuntu710
- Make sure the <code>.disk/info</code> directory has been copied
- cd /media/ubuntu710
- cp -a dists/gutsy dists/stable
- <code>cp $BUILD/image/install/initrd.gz install/</code> (where <code>BUILD</code> is the path to your initrd.gz . Example <code> BUILD=alain/VirtualMachines/CdUsbBuntu</code>)
- Copy isolinux/isolinux.cfg to syslinux.cfg and remove all GFXBOOT , menu and f* (function key help) lines
- If needed: lilo -M /dev/sdx
mkInitrd script
In this script, the <code>cd=</code> line needs to be changed to point to a directory where a standard Kubuntu Alternate CD is mounted.
<pre>
- !/bin/sh
cd=$HOME/Download/7.10
DIR=`dirname $0` cd $DIR
if [ -d initrd ] ; then
rm -rf initrd
fi
mkdir initrd cd initrd
- As root, uncpio initrd
zcat ../image/install/initrd.gz | cpio -i --make-directories
- Unpack vfat:
kernel=`ls lib/modules`
ar p $cd/pool/main/l/linux-source-*/fat-modules-$kernel-di_*_i386.udeb data.tar.gz | tar xfzv -
- Re-run depmod to include new module
depmod -b .
- Patch cdrom-detect script to detect USB sticks instead
sed -e 's/list-devices cd/list-devices partition/g' \
-e 's/iso9660/vfat/g' \ -e 's/\(\t*\)\(log "CD-ROM mount succeeded: device=.device"\)/\1if [ ! -e \/cdrom\/.disk\/info ] ; then umount \/cdrom ; continue; fi\n\1\2/' \ var/lib/dpkg/info/cdrom-detect.postinst > var/lib/dpkg/info/usb-detect.postinst
chmod 755 var/lib/dpkg/info/usb-detect.postinst mv var/lib/dpkg/info/usb-detect.postinst var/lib/dpkg/info/cdrom-detect.postinst
- Pack it up
find . -print | cpio -H newc -o | gzip -9 >../image/install/initrd.gz
</pre>
mkImage script
<pre>
- !/bin/sh
cd `dirname $0`/image
mkisofs -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -J -hide-rr-moved -V "Net&USB Boot CD" -o ../boot.iso -R . </pre>