Custom Query (684 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (250 - 252 of 684)

Ticket Owner Reporter Resolution Summary
#145 Bruno Cornec Louis Bouchard fixed Cannot install Mindi on RHEL4/U4/IA64
Description

When trying to install mindi on RHEL4/U4/IA64, I get the following error :

== [root@linux01 mondo]# tar xzf mindi-1.0.9.tar.gz [root@linux01 mondo]# ./install.sh -bash: ./install.sh: No such file or directory [root@linux01 mondo]# cd mindi-1.0.9 [root@linux01 mindi-1.0.9]# ./install.sh mindi 1.0.9-r780 will be installed under /usr/local Creating target directories ... Copying files ... Installing busybox ... perlcc parted2fdisk.pl -c -o parted2fdisk.c cc -O -static -s -I/usr/lib/perl5/5.8.5/ia64-linux-thread-multi/CORE -o parted2fdisk parted2fdisk.c -L/usr/lib/perl5/5.8.5/ia64-linux-thread-multi/CORE -lperl -lm -lcrypt /usr/lib/perl5/5.8.5/ia64-linux-thread-multi/auto/DynaLoader/DynaLoader.a -lpthread -ldl

/usr/bin/ld: cannot find -lperl

collect2: ld returned 1 exit status make: * [parted2fdisk] Error 1 WARNING: no parted2fdisk found, mindi will not work on this arch (ia64) ==

Looks like it cannot locate the libperl.so which is located at the right place : [root@linux01 mindi-1.0.9]# ls /usr/lib/perl5/5.8.5/ia64-linux-thread-multi/CORE/libperl.so /usr/lib/perl5/5.8.5/ia64-linux-thread-multi/CORE/libperl.so

#147 Bruno Cornec Bruno Cornec invalid mondorestore doesn't ask for DVD 2
Description

mondorestore doesn't ask for DVD 2 when it should.

#148 Bruno Cornec Bruno Cornec fixed parity issue with mdadm in mondorestore
Description

mondorestore is unable to re-create a SW Raid5 with mdadm on RHEL 4 due to the call to mdadm which contains the -p option. Even if that option is documented, there seems to be no way to make it accept the parity option, and thus mondorestore fails. There is a need for a workaround in that case.

The one applied by the person reporting the bug to me was extreme, but kept for reference:

--- mondo-2.2.1/src/mondorestore/mondo-prep.c.ori       2006-08-05 12:00:51.000000000 +0200
+++ mondo-2.2.1/src/mondorestore/mondo-prep.c   2007-03-02 08:00:29.000000000 +0100
@@ -762,7 +762,8 @@
           "mdadm --create --force --run --auto=yes %s --level=%s --raid-devices=%d",
           raidlist->el[i].raid_device, level,
           raidlist->el[i].data_disks.entries);
-  if (raidlist->el[i].parity != -1) {
+/* RBN 02/03/2007 : bug parite / rhel4 => option mal interprete, suppression */
+/*  if (raidlist->el[i].parity != -1) {
     asprintf(&strtmp, "%s", program);
     paranoid_free(program);
     switch(raidlist->el[i].parity) {
@@ -783,7 +784,7 @@
       break;
     }
     paranoid_free(strtmp);
-  }
+  } */
   if (raidlist->el[i].chunk_size != -1) {
     asprintf(&strtmp, "%s", program);
     paranoid_free(program);

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.