#!/bin/sh # # tar the disk image # . ./config if [ ! `whoami` = "root" ] ; then echo "" echo "You need to be root to run this shell script" echo "" exit 1 fi if [ ! -f ${BOOT_IMAGE} ] ; then echo "Could not find boot image: ${BOOT_IMAGE}" exit 1 fi umount ${USB_DEV}1 2>/dev/null 1>/dev/null echo "Reformat USB boot partition" mkfs.vfat -F 16 -n kubuntu8 ${USB_DEV}1 mount ${USB_DEV}1 ${MOUNT_POINT}/kubuntu8 if [ $? -ne 0 ] ; then echo "Mount of USB boot partition failed." exit 1 fi cd ${MOUNT_POINT}/kubuntu8 if [ $? -ne 0 ] ; then echo "Could not cd to USB boot partition" exit 1 fi echo "Detaring boot image ..." tar xfz ${BOOT_IMAGE} cd ${CWD} ls -l ${MOUNT_POINT}/kubuntu8 echo "syncing ..." sync umount ${MOUNT_POINT}/kubuntu8