Changeset 489 in MondoRescue for trunk


Ignore:
Timestamp:
Apr 19, 2006, 11:02:43 AM (18 years ago)
Author:
bcornec
Message:

svn merge -r 463:482 $SVN_M/branches/stable
svn merge -r 485:488 $SVN_M/branches/stable

Location:
trunk
Files:
13 edited
4 copied

Legend:

Unmodified
Added
Removed
  • trunk/documentation/mondorescue-howto.sgml

    r432 r489  
    24542454</qandaentry>
    24552455<qandaentry>
    2456 <question><para>Q: Where is my CD burner, in SCSI
    2457                 terms?</para></question>
     2456<question><para>Q: Where is my CD burner, in SCSI terms?</para></question>
    24582457<answer>
    24592458<para>A: Type:</para>
     
    24812480long as your kernel and modules support it, Mindi will support it
    24822481and therefore so will Mondo.</para>
     2482</answer>
     2483</qandaentry>
     2484<qandaentry>
     2485        <question><para>Q: Why doesn't cdrecord -scanbus work ?</para></question>
     2486        <answer>
     2487                <para>A: If you have a 2.4.x kernel (typical example are fedora legacy kernels for redhat 7.X/8/9) and an IDE CDRW device, and the drive is not
     2488listed when you run
     2489
     2490<informaltable><tgroup cols="1"><tbody>
     2491<row>
     2492<entry>
     2493bash# cdrecord -scanbus
     2494</entry>
     2495</row>
     2496</tbody></tgroup></informaltable>
     2497
     2498try adding the following kernel option to your boot script to enable
     2499SCSI emulation: hdx=ide-scsi, where "hdx" should be replaced with the
     2500appropriate drive letter of the CDRW device, e.g., "hdc".
     2501(Answer provided by Christopher Moriarity cdm7_at_cdc.gov)
     2502</para>
    24832503</answer>
    24842504</qandaentry>
  • trunk/mindi/distributions/conf/mindi.conf

    r449 r489  
    66# Changing some values may render mindi instable
    77# or cause failures. Use with care.
    8 
    9 #
    10 # Default log level
    11 #
    12 mindi_log_level=4
    138
    149#
     
    4035# Write mindi CD (yes|no) ?
    4136#
    42 mindi_write_mindi_cd="no"
    43 
    44 #
    45 # Kernel to use (NATIVE|FAILSAFE|PATH TO THE KERNEL)
    46 #
    47 mindi_kernel="NATIVE"
    48 #mondorescue_kernel="/boot/vmlinuz.special"
    49 
    50 #
    51 # Additinal modules to support
    52 # (white space separated list of modules)
    53 #
    54 mindi_additional_modules=""
    55 
    56 #
    57 # Boot loader to use
    58 # (GRUB|ELILO|LILO|RAW|NATIVE)
    59 #
    60 mindi_boot_loader="NATIVE"
     37mindi_write_cd="no"
    6138
    6239#
     
    7451#
    7552mindi_fd_device="/dev/fd0"
     53
     54#
     55# Additional Boot Parameters
     56#
     57mindi_boot_params="acpi=off apm=off devfs=nomount exec-shield=0 noresume selinux=0 barrier=off"
     58
     59# TBC
     60
     61# Kernel to use (NATIVE|FAILSAFE|PATH TO THE KERNEL)
     62#
     63mindi_kernel="NATIVE"
     64#mindi_kernel="/boot/vmlinuz.special"
     65
     66#
     67# Additinal modules to support
     68# (white space separated list of modules)
     69#
     70mindi_additional_modules=""
     71
     72#
     73# Boot loader to use
     74# (GRUB|ELILO|LILO|RAW|NATIVE)
     75#
     76mindi_boot_loader="NATIVE"
     77
     78
  • trunk/mindi/install.sh

    r461 r489  
    6161fi
    6262chmod 755 $local/sbin/mindi
    63 install -m 755 analyze-my-lvm parted2fdisk.pl $local/sbin
     63install -m 755 parted2fdisk.pl $local/sbin
     64install -m 755 analyze-my-lvm $locallib/mindi
    6465
    6566install -m 644 mindi.8 $MANDIR
     
    106107if [ "$RPMBUILDMINDI" != "true" ]; then
    107108    chown -R root:root $locallib/mindi $conf $DOCDIR
    108     chown root:root $local/sbin/mindi $MANDIR/mindi.8 $local/sbin/analyze-my-lvm $local/sbin/parted2fdisk.pl
     109    chown root:root $local/sbin/mindi $MANDIR/mindi.8 $locallib/mindi/analyze-my-lvm $local/sbin/parted2fdisk.pl
    109110    if [ "$ARCH" = "ia64" ] ; then
    110111        chown root:root $local/sbin/parted2fdisk
     
    112113fi
    113114
    114 # Special case for SuSE family wher doc is put elsewhere in the RPM
    115 if [ _"$dfam" != _"suse" ] then;
     115# Special case for SuSE family where doc is put elsewhere in the RPM
     116if [ _"$dfam" = _"suse" ]; then
    116117    rm -rf $DOCDIR
    117118fi
  • trunk/mindi/mindi

    r463 r489  
    1515### Which arch are we on (useful for ia64 port)
    1616export ARCH=`/bin/arch`
    17 
    18 ADDITIONAL_BOOT_PARAMS="acpi=off apm=off devfs=nomount exec-shield=0 noresume selinux=0 barrier=off"
    1917
    2018RUN_AFTER_INITIAL_BOOT_PHASE="echo \"Who lives in a pineapple under the sea?\" > /tmp/spongebob.squarepants.txt"
     
    6260    IA64_BOOT_SIZE=$mindi_ia64_boot_size
    6361fi
    64 
    6562if [ "$mindi_deplist_dir" == "" ]; then
    6663    DEPLIST_DIR="$MINDI_CONF/deplist.d"
     
    6865    DEPLIST_DIR="$mindi_deplist_dir"
    6966fi
     67# TBC
    7068if [ "$mindi_write_boot_floppy" == "" ]; then
    7169    WRITE_BOOT_FLOPPIES="yes"
     
    7371    WRITE_BOOT_FLOPPIES="$mindi_write_boot_floppy"
    7472fi
    75 if [ "$mindi_write_mindi_cd" == "" ]; then
    76     WRITE_BOOT_FLOPPIES="yes"
     73# TBC
     74if [ "$mindi_write_cd" == "" ]; then
     75    WRITE_MINDI_CD="yes"
    7776else
    78     WRITE_BOOT_FLOPPIES="$mindi_write_boot_floppy"
     77    WRITE_MINDI_CD="$mindi_write_cd"
    7978fi
     79# TBC
    8080if [ "$mindi_images_dir" == "" ]; then
    8181    CACHE_LOC="/var/cache/mindi"
     
    9898    FDDEVICE="$mindi_fd_device"
    9999fi
     100if [ "mindi_boot_params" == "" ]; then
     101    ADDITIONAL_BOOT_PARAMS="acpi=off apm=off devfs=nomount exec-shield=0 noresume selinux=0 barrier=off"
     102else
     103    ADDITIONAL_BOOT_PARAMS="$mindi_boot_params"
     104fi
     105
    100106
    101107# Other parameters
     
    13611367    if [ -d "/proc/lvm" ] || [ -d "/dev/mapper" ]; then
    13621368    echo -en "\rAnalyzing LVM...\r"
    1363     all_partitions=`$MINDI_SBIN/analyze-my-lvm | fgrep ">>>" | cut -d' ' -f2-32`
     1369    all_partitions=`$MINDI_LIB/analyze-my-lvm | fgrep ">>>" | cut -d' ' -f2-32`
    13641370    fi
    13651371    all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`"
     
    17841790    return $res
    17851791
    1786 # --- the kernel-only method NO LONGER WORKS. Not since Apr 2002.
    1787 # It should work, according to the Boot Disk HOWTO, but it doesn't.
    1788 # It works for my failsafe kernel & for RH7.2 but not RH7.3, 8.0, etc.
    1789 # -Hugo, Apr 19th 2004
    1790 #   dd if=$1 of=$2 bs=1k &> /dev/null || Die "Cannot dd blank file"
    1791 #   dd if=/dev/zero bs=1k count=$3 >> $2 2> /dev/null || Die "Cannot dd blank file"
    1792 #   mv -f $2 $2.old
    1793 #   dd if=$2.old bs=1k count=$3 of=$2 &> /dev/null || Die "Cannot dd blank file"
    1794 #   rm -f $2.old
    1795 #   if [ "$3" = "1440" ] ; then
    1796 #       rdev $2 "/dev/fd0H"$3
    1797 #   else
    1798 #       rdev $2 "/dev/fd0u"$3
    1799 #   fi
    1800 #   rdev -R $2 0
    1801 #   rdev -r $2 49152
    18021792}
    18031793
     
    22572247    noof_disks=$?
    22582248    [ "$noof_disks" -eq "0" ] && Die "Too much stuff!"
    2259 #    if [ "$noof_disks" -ge "8" ] ; then
    2260 #        LogIt "You are putting a ludicrously large amount of data on these disks."
    2261 #        LogIt "I shall therefore double EXTRA_SPACE, just in case your ramdisk is too small."
    2262 #        EXTRA_SPACE=$(($EXTRA_SPACE*2))
    2263 #    fi
    22642249    MakeMountlist $TMP_ROOT/mountlist.txt
    22652250    mkdir -p $minidir_root/$noof_disks/tmp
     
    22672252    cp -f $TMP_ROOT/mountlist.txt $CACHE_LOC
    22682253    [ "`DidMondoCallMe`" ] && cp -f $minidir_root/$noof_disks/tmp/mountlist.txt $MONDO_TMP/.
    2269     [ -d "/proc/lvm" ] && $MINDI_SBIN/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
    2270     [ -d "/dev/mapper" ] && $MINDI_SBIN/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
     2254    [ -d "/proc/lvm" ] && $MINDI_LIB/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
     2255    [ -d "/dev/mapper" ] && $MINDI_LIB/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
    22712256    cat $minidir_root/$noof_disks/tmp/mountlist.txt >> $LOGFILE
    22722257    ZipMinidirsIntoTarballs $minidir_root $tardir $noof_disks
     
    25852570       root="/"
    25862571    fi
    2587     for fname in `find $root -maxdepth 2 -type f | fgrep lin | fgrep -v /proc/` ; do
     2572    for fname in `find $root -maxdepth 2 -type f | fgrep lin | egrep -v '^/proc/|^/net/'` ; do
    25882573    [ ! -e "$fname" ] && continue
    25892574        [ "$fname" = "/boot/vmlinuz.shipped" ] && [ -f "/boot/vmlinuz" ] && continue; # ignore SuSE's extra kernel
     
    32343219    else
    32353220        if ! PrepareBootDiskImage_LILO $imagesdir 1722 $kernelpath $ramdisk_size ; then
    3236         LogIt "Warning - failed to create 1.72MB boot image. Please reduce your kernel's size\n"
    3237         LogIt "if you want to make a 1.72MB floppy disk.\n"
    3238         fi
    3239         PrepareBootDiskImage_LILO $imagesdir 2880 $kernelpath $ramdisk_size || Die "Failed to create 2.88MB floppy disk image."
     3221            LogIt "Warning - failed to create 1.72MB boot image. Please reduce your kernel's size\n"
     3222            LogIt "if you want to make a 1.72MB floppy disk.\n"
     3223        fi
     3224        if ! PrepareBootDiskImage_LILO $imagesdir 2880 $kernelpath $ramdisk_size ;  then
     3225            LogIt "Warning - failed to create 2.88MB floppy disk image.\n"
     3226            LogIt "Please reduce your kernel's size\n"
     3227            LogIt "if you want to make a 2.88MB floppy disk.\n"
     3228            PrepareBootDiskImage_LILO $imagesdir 5760 $kernelpath $ramdisk_size || Die "Failed to create 2.88MB floppy disk image."
     3229        fi
    32403230    fi
    32413231else
  • trunk/mondo/configure.in

    r426 r489  
    7272        AC_CHECK_LIB(pthread, pthread_create, true, [echo "*** Cannot find -lpthread."; echo "*** Please make sure you have the linuxthreads glibc add-on installed."; exit 1])
    7373        PTHREAD="-lpthread"
    74         CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"
     74        CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT"
    7575        ;;
    7676    *)
  • trunk/mondo/distributions/mandriva/spec.m4

    r461 r489  
    88define(`GRP', `Archiving/Backup')dnl
    99dnl OBS is replaced vy what is being obsoleted
    10 define(`OBS', Obsoletes:    libmondo <= 2.04)dnl
     10define(`OBS', `Obsoletes:   libmondo <= 2.04
     11Provides:   libmondo')dnl
  • trunk/mondo/mondo/mondoarchive/mondo-cli.c

    r300 r489  
    217217    char *tmp;
    218218    char *tmp2;
     219    char *tmp1;
    219220    char *psz;
    220221
     
    300301            strcat(bkpinfo->include_paths, " ");
    301302        }
    302         if (stat(flag_val['I'], &buf) != 0) {
    303             log_msg("ERROR ! %s doesn't exist", flag_val['I']);
    304             fatal_error("ERROR ! You specified a directory to include which doesn't exist");
    305         }
     303        asprintf(&tmp1, flag_val['I']);
     304        char *p = tmp1;
     305        char *q = tmp1;
     306
     307        /* Cut the flag_val['I'] in parts containing all paths to test them */
     308        while (p != NULL) {
     309            q = strchr(p, ' ');
     310            if (q != NULL) {
     311                *q = '\0';
     312                p = q+1 ;
     313                if (stat(p, &buf) != 0) {
     314                    log_msg(1, "ERROR ! %s doesn't exist", p);
     315                    fatal_error("ERROR ! You specified a directory to include which doesn't exist");
     316                }
     317            } else {
     318                if (stat(p, &buf) != 0) {
     319                    log_msg(1, "ERROR ! %s doesn't exist", p);
     320                    fatal_error("ERROR ! You specified a directory to include which doesn't exist");
     321                }
     322                p = NULL;
     323            }
     324        }
     325        paranoid_free(tmp1);
     326
    306327        strncpy(bkpinfo->include_paths + strlen(bkpinfo->include_paths),
    307328                flag_val['I'],
     
    516537            strcat(bkpinfo->exclude_paths, " ");
    517538        }
    518         if (stat(flag_val['E'], &buf) != 0) {
    519             log_msg(1, "WARNING ! %s doesn't exist", flag_val['E']);
    520         }
     539        asprintf(&tmp1, flag_val['E']);
     540        char *p = tmp1;
     541        char *q = tmp1;
     542
     543        /* Cut the flag_val['E'] in parts containing all paths to test them */
     544        while (p != NULL) {
     545            q = strchr(p, ' ');
     546            if (q != NULL) {
     547                *q = '\0';
     548                p = q+1 ;
     549                if (stat(p, &buf) != 0) {
     550                    log_msg(1, "WARNING ! %s doesn't exist", p);
     551                }
     552            } else {
     553                if (stat(p, &buf) != 0) {
     554                    log_msg(1, "WARNING ! %s doesn't exist", p);
     555                }
     556                p = NULL;
     557            }
     558        }
     559        paranoid_free(tmp1);
     560
    521561        strncpy(bkpinfo->exclude_paths + strlen(bkpinfo->exclude_paths),
    522562                flag_val['E'],
     
    763803        &&
    764804        !run_program_and_log_output
    765         ("grep -i suse /etc/issue.net | grep 64", TRUE)) {
     805        ("egrep -i suse /etc/issue.net | egrep '9.0' | grep 64", TRUE)) {
    766806        bkpinfo->make_cd_use_lilo = TRUE;
    767807        log_to_screen
  • trunk/mondo/mondo/mondorestore/mondo-restore.c

    r434 r489  
    19801980                filelist_name);
    19811981        log_msg(2,
    1982                 "This is a bit silly (ask Hugo to fix mondo-makefilelist, please)");
     1982                "This is a bit silly (ask dev-team to fix mondo-makefilelist, please)");
    19831983        log_msg(2,
    19841984                "but it's non-critical. It's cosmetic. Don't worry about it.");
     
    20572057            if (filelist_subset_fname[0] != '\0') {
    20582058                sprintf(command,
    2059                         "afio -i -M 8m -b %ld -c %ld %s -w %s %s",
     2059                        "afio -i -M 8m -b %ld -c %ld %s -w '%s' %s",
    20602060                        TAPE_BLOCK_SIZE,
    20612061                        BUFSIZE, executable, filelist_subset_fname,
  • trunk/tools/mkdeb

    r320 r489  
    2828    cd ${BASE}/svn
    2929    mkdir -p ${TOPDIR}/SOURCES
    30     sed "s/^%define mrel..*RRR/%define mrel ${REVISION}${suf}/" mindi-kernel-${MINDI_VER}/mindi-kernel.spec > ${TOPDIR}/SPECS/mindi-kernel.spec
    31     pkg="$pkg ${TOPDIR}/RPMS/${ARCH}/mindi-kernel-${MINDI_VER}-${REVISION}${suf}.${ARCH}.rpm"
     30    $TOOLHOME/mkspec ${MINDI_VER} mindi-kernel-${MINDI_VER}/mindi-kernel.spec > ${TOPDIR}/SPECS/mindi-kernel.spec
     31    chmod 644 ${TOPDIR}/SPECS/mindi-kernel.spec
     32    pkg1="${TOPDIR}/RPMS/${ARCH}/mindi-kernel-${MINDI_VER}-${REVISION}${suf}.${ARCH}.rpm"
     33    pkg="$pkg $pkg1"
     34    rm -f $pkg1
    3235fi
    3336if [ "`echo $c | grep -v kernel | grep mindi`" != "" ]; then
    3437    cd ${BASE}/svn
    35     if [ -f mindi-${MINDI_VER}/distributions/${ddir}/mindi.spec ]; then
    36         specfile=mindi-${MINDI_VER}/distributions/${ddir}/mindi.spec
    37     else
    38         specfile=mindi-${MINDI_VER}/distributions/common/mindi.spec
    39     fi
    40     sed -e "s/^%define mrel..*RRR/%define mrel  ${REVISION}${suf}/" -e "s/VVV/${MINDI_VER}/" $specfile > ${TOPDIR}/SPECS/mindi.spec
     38    $TOOLHOME/mkspec ${MINDI_VER} mindi-${MINDI_VER}/distributions/rpm/mindi.spec > ${TOPDIR}/SPECS/mindi.spec
     39    cat mindi-${MINDI_VER}/distributions/$dfam/changelog >> ${TOPDIR}/SPECS/mindi.spec
     40    chmod 644 ${TOPDIR}/SPECS/mindi.spec
    4141    rm -rf mindi-${MINDI_VER}/distributions
    4242    mkdir -p ${TOPDIR}/SOURCES
    4343
    44     pkg="$pkg ${TOPDIR}/RPMS/${ARCH}/mindi-${MINDI_VER}-${REVISION}${suf}.${ARCH}.rpm"
    45     # ATTENTION: This could be dangerous for your setup
    46     opt="rm -rf /usr/lib/mindi ;"
     44    pkg1="${TOPDIR}/RPMS/${ARCH}/mindi-${MINDI_VER}-${REVISION}${suf}.${ARCH}.rpm"
     45    pkg="$pkg $pkg1"
     46    rm -f $pkg1
    4747fi
    4848if [ "`echo $c | grep  mondo`" != "" ]; then
    4949    cd ${BASE}/svn
    50     if [ -f mondo-${MONDO_VER}/distributions/${ddir}/mondo.spec ]; then
    51         specfile=mondo-${MONDO_VER}/distributions/${ddir}/mondo.spec
    52     else
    53         specfile=mondo-${MONDO_VER}/distributions/common/mondo.spec
    54     fi
    55     sed -e "s/^%define mrel..*RRR/%define mrel  ${REVISION}${suf}/" -e "s/VVV/${MONDO_VER}/" $specfile > ${TOPDIR}/SPECS/mondo.spec
     50    $TOOLHOME/mkspec ${MONDO_VER} mondo-${MONDO_VER}/distributions/rpm/mondo.spec > ${TOPDIR}/SPECS/mondo.spec
     51    cat mondo-${MONDO_VER}/distributions/$dfam/changelog >> ${TOPDIR}/SPECS/mondo.spec
     52    chmod 644 ${TOPDIR}/SPECS/mondo.spec
    5653    rm -rf mondo-${MONDO_VER}/distributions
    5754
    58     pkg="$pkg ${TOPDIR}/RPMS/${ARCH}/mondo-${MONDO_VER}-${REVISION}${suf}.${ARCH}.rpm"
     55    pkg1="${TOPDIR}/RPMS/${ARCH}/mondo-${MONDO_VER}-${REVISION}${suf}.${ARCH}.rpm"
     56    pkg="$pkg $pkg1"
     57    rm -f $pkg1
    5958fi
    6059
  • trunk/tools/mkqemu

    r461 r489  
    1212
    1313if [ _"$2" == _"" ]; then
    14     export SVN_VM="mdk101 mdk102 mdv2006 rhel3 rhel4 rh73 fc4 sles9"
     14    export SVN_VM="mdk101 mdk102 mdv2006 rh73 rh9 fc4 fc5 rhel3 rhel4 suse10 sles9 debian31"
    1515else
    1616    export SVN_VM="$2"
     
    4343    fi
    4444fi
    45 \$SVN_HOME/$1/tools/mkrpm < /dev/null
     45echo \$SVN_VM | grep -q "debian"
     46if [ \$? -eq 0 ]; then
     47    \$SVN_HOME/$1/tools/mkdeb < /dev/null
     48else
     49    \$SVN_HOME/$1/tools/mkrpm < /dev/null
     50fi
    4651\$SVN_HOME/$1/tools/mkdeliv
    4752EOF
    4853
    4954ipvm=10.0.2.15
     55
    5056
    5157for m in $SVN_VM; do
     
    6066        # Virtual machine alreday started
    6167        vmp=1
    62         qemu -m 256 -redir tcp:${sp}:${ipvm}:22 /users/vmplayer/$m.qemu &
    63         sleep 240
     68        qemu -m 256 $QEMUOPT -redir tcp:${sp}:${ipvm}:22 /users/vmplayer/$m.qemu &
     69        sleep 300
    6470    fi
    6571    scp -P $sp /tmp/mkmondo bruno@localhost:
     
    6773    if [ $vmp -eq 1 ]; then
    6874        ssh -p $sp root@localhost "halt -p"
     75        sleep 300
     76        proces=`ps auxww | grep qemu | grep -v grep | grep -q /users/vmplayer/$m.qemu | awk '{print $2}'`
     77        if [ "$proces" != "" ]; then
     78            kill $proces
     79        fi
    6980    fi
    7081done
  • trunk/tools/qemu-vm.txt

    r464 r489  
    3434
    3535Créer compte bruno avec répertoires nécéssaires + env necessaire
    36 adduser bruno
     36useradd bruno
    3737passwd bruno
    3838
  • trunk/website/downloads.shtml

    r426 r489  
    6363<p>Most of the time, you'll be able to download directly the packages suited for your distribution. Currently we provide packages for :
    6464<ul>
    65         <li>RedHat <a href="ftp://ftp.mondorescue.org/redhat/7.3">7.3</a>.</li>
    66         <li>Fedora <a href="ftp://ftp.mondorescue.org/fedora/4">Core 4</a>.</li>
     65        <li>RedHat <a href="ftp://ftp.mondorescue.org/redhat/7.3">7.3</a> and <a href="ftp://ftp.mondorescue.org/redhat/9">9</a>.</li>
     66        <li>Fedora <a href="ftp://ftp.mondorescue.org/fedora/4">Core 4</a> and <a href="ftp://ftp.mondorescue.org/fedora/5">Core 5</a>.</li>
    6767        <li>RedHat Enterprise Linux <!--<a href="ftp://ftp.mondorescue.org/rhel/2.1">2.1</a>, --><a href="ftp://ftp.mondorescue.org/rhel/3">3</a>, <a href="ftp://ftp.mondorescue.org/rhel/4">4</a>.</li>
    6868        <li>OpenSuSE <a href="ftp://ftp.mondorescue.org/suse/9.3">9.3</a>, <a href="ftp://ftp.mondorescue.org/suse/10.0">10.0</a>. Look also at <a href="http://www.mikenjane.net/~mike/">this</a> web page for SuSE details.
     
    7676<h3>Mondo Rescue CD</h3>
    7777
    78 <p>In order to make it as easy as possible for you to use Mondo Rescue, you may want to download the latest <a href="ftp://ftp.mondorescue.org/iso/mondorescue.iso">Mondo Rescue CD</a> which contains all the packages with its dependancies available on the ftp site. It is updated daily.
    79 
     78<p>In order to make it as easy as possible for you to use Mondo Rescue, you may want to download the latest <a href="ftp://ftp.mondorescue.org/iso/mondorescue.iso">Mondo Rescue CD</a> which contains all the packages with its dependancies available on the ftp site. It is updated daily (Currently un-available for bandwidth issues)
    8079<!--
    8180    <div class="h2-5">
  • trunk/website/latest-news.html

    r461 r489  
     1<p><B>2006-04-08 </B>Mondo 2.0.7 / Mindi 1.0.7 updated to r460</p>
     2<p>
     3I'm happy to announce the availability of a newest version of
     4mondo 2.0.7 / mindi 1.0.7 aka r460
     5</p>
     6
     7<p>
     8Now available at ftp://ftp.mondorescue.org/
     9</p>
     10
     11<p>
     12fedora/4/mindi-1.0.7-460.fc4.i386.rpm
     13fedora/4/mondo-2.0.7-460.fc4.i386.rpm
     14fedora/5/mindi-1.0.7-460.fc5.i386.rpm
     15fedora/5/mondo-2.0.7-460.fc5.i386.rpm
     16mandrake/10.1/mindi-1.0.7-460.101mdk.i386.rpm
     17mandrake/10.1/mondo-2.0.7-460.101mdk.i386.rpm
     18mandrake/10.2/mindi-1.0.7-460.102mdk.i386.rpm
     19mandrake/10.2/mondo-2.0.7-460.102mdk.i386.rpm
     20mandriva/2006.0/mindi-1.0.7-460.20060mdk.i586.rpm
     21mandriva/2006.0/mondo-2.0.7-460.20060mdk.i586.rpm
     22redhat/73/mindi-1.0.7-460.rh73.i386.rpm
     23redhat/73/mondo-2.0.7-460.rh73.i386.rpm
     24redhat/9/mindi-1.0.7-460.rh9.i386.rpm
     25redhat/9/mondo-2.0.7-460.rh9.i386.rpm
     26rhel/3/mindi-1.0.7-460.rhel3.i386.rpm
     27rhel/3/mondo-2.0.7-460.rhel3.i386.rpm
     28rhel/4/mindi-1.0.7-460.rhel4.i386.rpm
     29rhel/4/mondo-2.0.7-460.rhel4.i386.rpm
     30sles/9/mindi-1.0.7-460.sles9.i386.rpm
     31sles/9/mondo-2.0.7-460.sles9.i386.rpm
     32suse/10.0/mindi-1.0.7-464.suse10.0.i386.rpm
     33suse/10.0/mondo-2.0.7-464.suse10.0.i386.rpm
     34</p>
     35
     36
     37<p>
     38Changes are few:
     39</p>
     40
     41<p>
     42MONDO:
     43</p>
     44
     45<p>
     46Remove speed=1 for growisofs (better version expected for 2.0.8)
     47Usage of Epoch for RPMs to ease update
     48</p>
     49
     50<p>
     51MINDI:
     52</p>
     53
     54<p>
     55analyze-my-lvm is under $MINDI_SBIN (not _LIB)
     56Usage of Epoch for RPMs to ease update
     57</p>
     58
    159<p><B>2006-03-20 </B>Mondo 2.0.7 / Mindi 1.0.7 are out</p>
    260<p>
     
    90148<p>Mondorescue has been officially referenced by the HP OpenSource Portal:
    91149<a href="http://opensource.hp.com/index.php">http://opensource.hp.com/index.php</a> (look in the "Recently released" area)</p>
    92 <p><B>2006-02-02 </B>Mondo Rescue rsync server available</p>
    93 <p>In our always increasing set of services :-) I'd like to announce the
    94 availability of an rsync mirror service for mondo-rescue.
    95150
    96 Try rsync rsync.mondorescue.org::</p>
    97 
  • trunk/website/news.shtml

    r461 r489  
    1414  </div>
    1515  <!--#include virtual="/latest-news.html" -->
     16<p><B>2006-02-02 </B>Mondo Rescue rsync server available</p>
     17<p>In our always increasing set of services :-) I'd like to announce the
     18availability of an rsync mirror service for mondo-rescue.
     19
     20Try rsync rsync.mondorescue.org::</p>
     21
    1622<p><B>2006-02-01 </B>Mondo Rescue ftp server available</p>
    1723<p>Things are progressing. I've gathered all the packages that were originally on <a href="http://www.mondorescue.org">http://www.mondorescue.org</a> and also added Mike's SuSE RPMs
Note: See TracChangeset for help on using the changeset viewer.