- Timestamp:
- Apr 19, 2006, 11:02:43 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/documentation/mondorescue-howto.sgml
r432 r489 2454 2454 </qandaentry> 2455 2455 <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> 2458 2457 <answer> 2459 2458 <para>A: Type:</para> … … 2481 2480 long as your kernel and modules support it, Mindi will support it 2482 2481 and 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 2488 listed when you run 2489 2490 <informaltable><tgroup cols="1"><tbody> 2491 <row> 2492 <entry> 2493 bash# cdrecord -scanbus 2494 </entry> 2495 </row> 2496 </tbody></tgroup></informaltable> 2497 2498 try adding the following kernel option to your boot script to enable 2499 SCSI emulation: hdx=ide-scsi, where "hdx" should be replaced with the 2500 appropriate drive letter of the CDRW device, e.g., "hdc". 2501 (Answer provided by Christopher Moriarity cdm7_at_cdc.gov) 2502 </para> 2483 2503 </answer> 2484 2504 </qandaentry> -
trunk/mindi/distributions/conf/mindi.conf
r449 r489 6 6 # Changing some values may render mindi instable 7 7 # or cause failures. Use with care. 8 9 #10 # Default log level11 #12 mindi_log_level=413 8 14 9 # … … 40 35 # Write mindi CD (yes|no) ? 41 36 # 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" 37 mindi_write_cd="no" 61 38 62 39 # … … 74 51 # 75 52 mindi_fd_device="/dev/fd0" 53 54 # 55 # Additional Boot Parameters 56 # 57 mindi_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 # 63 mindi_kernel="NATIVE" 64 #mindi_kernel="/boot/vmlinuz.special" 65 66 # 67 # Additinal modules to support 68 # (white space separated list of modules) 69 # 70 mindi_additional_modules="" 71 72 # 73 # Boot loader to use 74 # (GRUB|ELILO|LILO|RAW|NATIVE) 75 # 76 mindi_boot_loader="NATIVE" 77 78 -
trunk/mindi/install.sh
r461 r489 61 61 fi 62 62 chmod 755 $local/sbin/mindi 63 install -m 755 analyze-my-lvm parted2fdisk.pl $local/sbin 63 install -m 755 parted2fdisk.pl $local/sbin 64 install -m 755 analyze-my-lvm $locallib/mindi 64 65 65 66 install -m 644 mindi.8 $MANDIR … … 106 107 if [ "$RPMBUILDMINDI" != "true" ]; then 107 108 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.pl109 chown root:root $local/sbin/mindi $MANDIR/mindi.8 $locallib/mindi/analyze-my-lvm $local/sbin/parted2fdisk.pl 109 110 if [ "$ARCH" = "ia64" ] ; then 110 111 chown root:root $local/sbin/parted2fdisk … … 112 113 fi 113 114 114 # Special case for SuSE family wher doc is put elsewhere in the RPM115 if [ _"$dfam" != _"suse" ] then;115 # Special case for SuSE family where doc is put elsewhere in the RPM 116 if [ _"$dfam" = _"suse" ]; then 116 117 rm -rf $DOCDIR 117 118 fi -
trunk/mindi/mindi
r463 r489 15 15 ### Which arch are we on (useful for ia64 port) 16 16 export ARCH=`/bin/arch` 17 18 ADDITIONAL_BOOT_PARAMS="acpi=off apm=off devfs=nomount exec-shield=0 noresume selinux=0 barrier=off"19 17 20 18 RUN_AFTER_INITIAL_BOOT_PHASE="echo \"Who lives in a pineapple under the sea?\" > /tmp/spongebob.squarepants.txt" … … 62 60 IA64_BOOT_SIZE=$mindi_ia64_boot_size 63 61 fi 64 65 62 if [ "$mindi_deplist_dir" == "" ]; then 66 63 DEPLIST_DIR="$MINDI_CONF/deplist.d" … … 68 65 DEPLIST_DIR="$mindi_deplist_dir" 69 66 fi 67 # TBC 70 68 if [ "$mindi_write_boot_floppy" == "" ]; then 71 69 WRITE_BOOT_FLOPPIES="yes" … … 73 71 WRITE_BOOT_FLOPPIES="$mindi_write_boot_floppy" 74 72 fi 75 if [ "$mindi_write_mindi_cd" == "" ]; then 76 WRITE_BOOT_FLOPPIES="yes" 73 # TBC 74 if [ "$mindi_write_cd" == "" ]; then 75 WRITE_MINDI_CD="yes" 77 76 else 78 WRITE_ BOOT_FLOPPIES="$mindi_write_boot_floppy"77 WRITE_MINDI_CD="$mindi_write_cd" 79 78 fi 79 # TBC 80 80 if [ "$mindi_images_dir" == "" ]; then 81 81 CACHE_LOC="/var/cache/mindi" … … 98 98 FDDEVICE="$mindi_fd_device" 99 99 fi 100 if [ "mindi_boot_params" == "" ]; then 101 ADDITIONAL_BOOT_PARAMS="acpi=off apm=off devfs=nomount exec-shield=0 noresume selinux=0 barrier=off" 102 else 103 ADDITIONAL_BOOT_PARAMS="$mindi_boot_params" 104 fi 105 100 106 101 107 # Other parameters … … 1361 1367 if [ -d "/proc/lvm" ] || [ -d "/dev/mapper" ]; then 1362 1368 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` 1364 1370 fi 1365 1371 all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`" … … 1784 1790 return $res 1785 1791 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 20041790 # 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.old1793 # dd if=$2.old bs=1k count=$3 of=$2 &> /dev/null || Die "Cannot dd blank file"1794 # rm -f $2.old1795 # if [ "$3" = "1440" ] ; then1796 # rdev $2 "/dev/fd0H"$31797 # else1798 # rdev $2 "/dev/fd0u"$31799 # fi1800 # rdev -R $2 01801 # rdev -r $2 491521802 1792 } 1803 1793 … … 2257 2247 noof_disks=$? 2258 2248 [ "$noof_disks" -eq "0" ] && Die "Too much stuff!" 2259 # if [ "$noof_disks" -ge "8" ] ; then2260 # 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 # fi2264 2249 MakeMountlist $TMP_ROOT/mountlist.txt 2265 2250 mkdir -p $minidir_root/$noof_disks/tmp … … 2267 2252 cp -f $TMP_ROOT/mountlist.txt $CACHE_LOC 2268 2253 [ "`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-lvm2270 [ -d "/dev/mapper" ] && $MINDI_ SBIN/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm2254 [ -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 2271 2256 cat $minidir_root/$noof_disks/tmp/mountlist.txt >> $LOGFILE 2272 2257 ZipMinidirsIntoTarballs $minidir_root $tardir $noof_disks … … 2585 2570 root="/" 2586 2571 fi 2587 for fname in `find $root -maxdepth 2 -type f | fgrep lin | fgrep -v /proc/` ; do2572 for fname in `find $root -maxdepth 2 -type f | fgrep lin | egrep -v '^/proc/|^/net/'` ; do 2588 2573 [ ! -e "$fname" ] && continue 2589 2574 [ "$fname" = "/boot/vmlinuz.shipped" ] && [ -f "/boot/vmlinuz" ] && continue; # ignore SuSE's extra kernel … … 3234 3219 else 3235 3220 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 3240 3230 fi 3241 3231 else -
trunk/mondo/configure.in
r426 r489 72 72 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]) 73 73 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" 75 75 ;; 76 76 *) -
trunk/mondo/distributions/mandriva/spec.m4
r461 r489 8 8 define(`GRP', `Archiving/Backup')dnl 9 9 dnl OBS is replaced vy what is being obsoleted 10 define(`OBS', Obsoletes: libmondo <= 2.04)dnl 10 define(`OBS', `Obsoletes: libmondo <= 2.04 11 Provides: libmondo')dnl -
trunk/mondo/mondo/mondoarchive/mondo-cli.c
r300 r489 217 217 char *tmp; 218 218 char *tmp2; 219 char *tmp1; 219 220 char *psz; 220 221 … … 300 301 strcat(bkpinfo->include_paths, " "); 301 302 } 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 306 327 strncpy(bkpinfo->include_paths + strlen(bkpinfo->include_paths), 307 328 flag_val['I'], … … 516 537 strcat(bkpinfo->exclude_paths, " "); 517 538 } 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 521 561 strncpy(bkpinfo->exclude_paths + strlen(bkpinfo->exclude_paths), 522 562 flag_val['E'], … … 763 803 && 764 804 !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)) { 766 806 bkpinfo->make_cd_use_lilo = TRUE; 767 807 log_to_screen -
trunk/mondo/mondo/mondorestore/mondo-restore.c
r434 r489 1980 1980 filelist_name); 1981 1981 log_msg(2, 1982 "This is a bit silly (ask Hugoto fix mondo-makefilelist, please)");1982 "This is a bit silly (ask dev-team to fix mondo-makefilelist, please)"); 1983 1983 log_msg(2, 1984 1984 "but it's non-critical. It's cosmetic. Don't worry about it."); … … 2057 2057 if (filelist_subset_fname[0] != '\0') { 2058 2058 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", 2060 2060 TAPE_BLOCK_SIZE, 2061 2061 BUFSIZE, executable, filelist_subset_fname, -
trunk/tools/mkdeb
r320 r489 28 28 cd ${BASE}/svn 29 29 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 32 35 fi 33 36 if [ "`echo $c | grep -v kernel | grep mindi`" != "" ]; then 34 37 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 41 41 rm -rf mindi-${MINDI_VER}/distributions 42 42 mkdir -p ${TOPDIR}/SOURCES 43 43 44 pkg ="$pkg${TOPDIR}/RPMS/${ARCH}/mindi-${MINDI_VER}-${REVISION}${suf}.${ARCH}.rpm"45 # ATTENTION: This could be dangerous for your setup46 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 47 47 fi 48 48 if [ "`echo $c | grep mondo`" != "" ]; then 49 49 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 56 53 rm -rf mondo-${MONDO_VER}/distributions 57 54 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 59 58 fi 60 59 -
trunk/tools/mkqemu
r461 r489 12 12 13 13 if [ _"$2" == _"" ]; then 14 export SVN_VM="mdk101 mdk102 mdv2006 rh el3 rhel4 rh73 fc4 sles9"14 export SVN_VM="mdk101 mdk102 mdv2006 rh73 rh9 fc4 fc5 rhel3 rhel4 suse10 sles9 debian31" 15 15 else 16 16 export SVN_VM="$2" … … 43 43 fi 44 44 fi 45 \$SVN_HOME/$1/tools/mkrpm < /dev/null 45 echo \$SVN_VM | grep -q "debian" 46 if [ \$? -eq 0 ]; then 47 \$SVN_HOME/$1/tools/mkdeb < /dev/null 48 else 49 \$SVN_HOME/$1/tools/mkrpm < /dev/null 50 fi 46 51 \$SVN_HOME/$1/tools/mkdeliv 47 52 EOF 48 53 49 54 ipvm=10.0.2.15 55 50 56 51 57 for m in $SVN_VM; do … … 60 66 # Virtual machine alreday started 61 67 vmp=1 62 qemu -m 256 -redir tcp:${sp}:${ipvm}:22 /users/vmplayer/$m.qemu &63 sleep 24068 qemu -m 256 $QEMUOPT -redir tcp:${sp}:${ipvm}:22 /users/vmplayer/$m.qemu & 69 sleep 300 64 70 fi 65 71 scp -P $sp /tmp/mkmondo bruno@localhost: … … 67 73 if [ $vmp -eq 1 ]; then 68 74 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 69 80 fi 70 81 done -
trunk/tools/qemu-vm.txt
r464 r489 34 34 35 35 Créer compte bruno avec répertoires nécéssaires + env necessaire 36 adduserbruno36 useradd bruno 37 37 passwd bruno 38 38 -
trunk/website/downloads.shtml
r426 r489 63 63 <p>Most of the time, you'll be able to download directly the packages suited for your distribution. Currently we provide packages for : 64 64 <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> 67 67 <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> 68 68 <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. … … 76 76 <h3>Mondo Rescue CD</h3> 77 77 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) 80 79 <!-- 81 80 <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> 3 I'm happy to announce the availability of a newest version of 4 mondo 2.0.7 / mindi 1.0.7 aka r460 5 </p> 6 7 <p> 8 Now available at ftp://ftp.mondorescue.org/ 9 </p> 10 11 <p> 12 fedora/4/mindi-1.0.7-460.fc4.i386.rpm 13 fedora/4/mondo-2.0.7-460.fc4.i386.rpm 14 fedora/5/mindi-1.0.7-460.fc5.i386.rpm 15 fedora/5/mondo-2.0.7-460.fc5.i386.rpm 16 mandrake/10.1/mindi-1.0.7-460.101mdk.i386.rpm 17 mandrake/10.1/mondo-2.0.7-460.101mdk.i386.rpm 18 mandrake/10.2/mindi-1.0.7-460.102mdk.i386.rpm 19 mandrake/10.2/mondo-2.0.7-460.102mdk.i386.rpm 20 mandriva/2006.0/mindi-1.0.7-460.20060mdk.i586.rpm 21 mandriva/2006.0/mondo-2.0.7-460.20060mdk.i586.rpm 22 redhat/73/mindi-1.0.7-460.rh73.i386.rpm 23 redhat/73/mondo-2.0.7-460.rh73.i386.rpm 24 redhat/9/mindi-1.0.7-460.rh9.i386.rpm 25 redhat/9/mondo-2.0.7-460.rh9.i386.rpm 26 rhel/3/mindi-1.0.7-460.rhel3.i386.rpm 27 rhel/3/mondo-2.0.7-460.rhel3.i386.rpm 28 rhel/4/mindi-1.0.7-460.rhel4.i386.rpm 29 rhel/4/mondo-2.0.7-460.rhel4.i386.rpm 30 sles/9/mindi-1.0.7-460.sles9.i386.rpm 31 sles/9/mondo-2.0.7-460.sles9.i386.rpm 32 suse/10.0/mindi-1.0.7-464.suse10.0.i386.rpm 33 suse/10.0/mondo-2.0.7-464.suse10.0.i386.rpm 34 </p> 35 36 37 <p> 38 Changes are few: 39 </p> 40 41 <p> 42 MONDO: 43 </p> 44 45 <p> 46 Remove speed=1 for growisofs (better version expected for 2.0.8) 47 Usage of Epoch for RPMs to ease update 48 </p> 49 50 <p> 51 MINDI: 52 </p> 53 54 <p> 55 analyze-my-lvm is under $MINDI_SBIN (not _LIB) 56 Usage of Epoch for RPMs to ease update 57 </p> 58 1 59 <p><B>2006-03-20 </B>Mondo 2.0.7 / Mindi 1.0.7 are out</p> 2 60 <p> … … 90 148 <p>Mondorescue has been officially referenced by the HP OpenSource Portal: 91 149 <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 the94 availability of an rsync mirror service for mondo-rescue.95 150 96 Try rsync rsync.mondorescue.org::</p>97 -
trunk/website/news.shtml
r461 r489 14 14 </div> 15 15 <!--#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 18 availability of an rsync mirror service for mondo-rescue. 19 20 Try rsync rsync.mondorescue.org::</p> 21 16 22 <p><B>2006-02-01 </B>Mondo Rescue ftp server available</p> 17 23 <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.