Code Sample |
#!/bin/bash UCINAME=$1 if [ -n "$UCINAME" ]; then if [ -d "$UCINAME" ]; then mkisofs -R -hide-rr-moved -cache-inodes -pad $UCINAME | create_compressed_fs - 65536 > $UCINAME.uci else echo "There is no directory named \"$UCINAME\"" exit 1 fi else echo "Usage: `basename $0` directory_name" exit 1 fi |
Quote (roberts @ Dec. 08 2005,10:09) |
If your apps are stored on /mnt/hda7 then the boot time option of mydsl=hda7 will load the at boot time. If you are using a frugal grub installed system then you can edit your boot time options by editing the file /cdrom/boot/grub/menu.lst You will have to edit that file as root. Or if you don't want them loaded automatically then you can use the file manager emelfm to mount /mnt/hda7 and the mydsl load button to load each one. |