Changeset 2592 in MondoRescue
- Timestamp:
- Mar 11, 2010, 2:56:03 AM (15 years ago)
- Location:
- branches/2.2.10
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.10/mindi/deplist.d/minimal.conf
r2591 r2592 90 90 /sbin/MAKEDEV 91 91 /etc/init.d/functions 92 /etc/services 92 93 /sbin/devfsd 93 94 /etc/udev … … 102 103 /sbin/udevstart 103 104 /sbin/create_static_dev_nodes 104 /etc/init.d/functions105 105 /etc/sysconfig/udev 106 106 /sbin/consoletype -
branches/2.2.10/mindi/rootfs/sbin/init
r2591 r2592 618 618 echo "********************************************************************" 619 619 echo "MINDI-LINUX by Mondo Dev Team - web site: http://www.mondorescue.org" 620 echo "Boot disk based on AlfaLinux & Trinux. BusyBox by Erik Andersen."621 620 which petris > /dev/null 2> /dev/null && echo "Petris was written by Peter Seidler <p.seidler@mail1.stofanet.dk>." 622 621 echo "Executables and source code are covered by the GNU GPL. No warranty." … … 792 791 ExtractDataDisksAndLoadModules 793 792 else 794 HandleCDROM 793 if [ -f "$MINDI_CACHE/mondorestore.cfg" ] ; then 794 HandleCDROM 795 fi 795 796 ExtractDataDisksAndLoadModules 796 797 # We need to get here exported variables from start-netfs … … 827 828 [ "$res" != "1" ] && [ "$res" != "" ] && Die "This is CD #$res in the series. Please insert CD #1." 828 829 [ -e "/cdrom.lnk" ] && mv -f /cdrom.lnk /dev/cdrom && mount /dev/cdrom /mnt/cdrom && CD_MOUNTED_OK=yes 829 [ "$CD_MOUNTED_OK" != "yes" ] && TryAgainToFindCD 830 #mount | grep cdrom > /dev/null 2> /dev/null || mount /dev/cdrom /mnt/cdrom >> $LOGFILE 2>> $LOGFILE 830 [ "$CD_MOUNTED_OK" != "yes" ] && [ -f $MINDI_CACHE/mondorestore.cfg ] && TryAgainToFindCD 831 831 fi 832 832 hack-cfg-if-necessary || LogIt "Cannot find hack-cfg-if-necessary" -
branches/2.2.10/mindi/rootfs/sbin/install-additional-tools
r2508 r2592 49 49 cd $mountdir 50 50 counter=0 51 for fname in `tar -zxvf $tarball` ; do 52 counter=$(($counter+1)) 53 [ "$(($counter % 4))" -eq "0" ] && echo -en "\r\t\t\t\t\t\t\t\\" 54 [ "$(($counter % 4))" -eq "1" ] && echo -en "\r\t\t\t\t\t\t\t|" 55 [ "$(($counter % 4))" -eq "2" ] && echo -en "\r\t\t\t\t\t\t\t/" 56 [ "$(($counter % 4))" -eq "3" ] && echo -en "\r\t\t\t\t\t\t\t-" 57 done 51 if [ -f $tarball ]; then 52 for fname in `tar -zxvf $tarball` ; do 53 counter=$(($counter+1)) 54 [ "$(($counter % 4))" -eq "0" ] && echo -en "\r\t\t\t\t\t\t\t\\" 55 [ "$(($counter % 4))" -eq "1" ] && echo -en "\r\t\t\t\t\t\t\t|" 56 [ "$(($counter % 4))" -eq "2" ] && echo -en "\r\t\t\t\t\t\t\t/" 57 [ "$(($counter % 4))" -eq "3" ] && echo -en "\r\t\t\t\t\t\t\t-" 58 done 59 fi 58 60 cd $old_pwd 59 61 echo -e -n "\r" -
branches/2.2.10/website/downloads.shtml
r2569 r2592 83 83 <li><b><a href="">gzip</a></b>: the most standard compressor used by Mondo Rescue</li> 84 84 <li><b><a href="">mkisofs</a></b>: the tool to create ISO images</li> 85 <li><b><a href="ftp://ftp.mondorescue.org/src">mindi-busybox</a></b>: the swiss army knife <a href="http://www.busybox.net">busybox</a> configured for mindi: a full set of commands in a single binary (embedded)</li>86 85 <li><b><a href="ftp://ftp.mondorescue.org/src">mindi</a></b>: the mini-distro builder part of the project</li> 87 86 <li><b><a href="ftp://ftp.mondorescue.org/src">mondo</a></b>: the disaster recovery tool itself</li>
Note:
See TracChangeset
for help on using the changeset viewer.