SystemRescueCd: Difference between revisions
From DWIKI
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
*[http://www.sysresccd.org SystemRescueCd] | *[http://www.sysresccd.org SystemRescueCd] | ||
*http://usefulthings.org.uk/systemrescuecd-network-boot/ | *http://usefulthings.org.uk/systemrescuecd-network-boot/ | ||
=Installing on USB stick= | |||
#!/bin/bash | |||
# | |||
MOUNT=/mnt/usb | |||
STICK=/dev/sdb | |||
# | |||
#mount -o loop ~/systemrescuecd-1.x.iso /mnt/loop | |||
ISO=/mnt/loop | |||
#gentoo | |||
MBR=/usr/share/syslinux/mbr.bin | |||
#MBR=/usr/lib/syslinux/mbr.bin | |||
test -e $MOUNT || mkdir $MOUNT | |||
mount -t vfat ${STICK}1 $MOUNT | |||
if [ ! -e $MBR ];then | |||
echo "$MBR not found" | |||
exit 1 | |||
fi | |||
dd if=$MBR of=$STICK | |||
sync | |||
cp -aruv $ISO/* $MOUNT | |||
rm -rf $MOUNT/syslinux | |||
mv -v $MOUNT/isolinux/isolinux.cfg $MOUNT/isolinux/syslinux.cfg || exit 2 | |||
mv -v $MOUNT/isolinux $MOUNT/syslinux || exit 3 | |||
umount $MOUNT | |||
syslinux ${STICK}1 | |||
sync | |||
echo "DONE!" |
Revision as of 19:53, 24 April 2009
Installing on USB stick
#!/bin/bash # MOUNT=/mnt/usb STICK=/dev/sdb # #mount -o loop ~/systemrescuecd-1.x.iso /mnt/loop ISO=/mnt/loop #gentoo MBR=/usr/share/syslinux/mbr.bin #MBR=/usr/lib/syslinux/mbr.bin test -e $MOUNT || mkdir $MOUNT mount -t vfat ${STICK}1 $MOUNT if [ ! -e $MBR ];then echo "$MBR not found" exit 1 fi dd if=$MBR of=$STICK sync cp -aruv $ISO/* $MOUNT rm -rf $MOUNT/syslinux mv -v $MOUNT/isolinux/isolinux.cfg $MOUNT/isolinux/syslinux.cfg || exit 2 mv -v $MOUNT/isolinux $MOUNT/syslinux || exit 3 umount $MOUNT syslinux ${STICK}1 sync echo "DONE!"