Custom Query (684 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (46 - 48 of 684)

Ticket Resolution Summary Owner Reporter
#88 fixed Install problem with mindi-busybox-1.2.1-2.rhel4.i586 Bruno Cornec Maurizio.De_Ponti@…
Description

On my system: [root@tlvhmu ~]# uname -a

Linux tlvhmu 2.6.9-22.ELsmp #1 SMP Mon Sep 19 18:32:14 EDT 2005 i686 athlon i386 GNU/Linux

I try to install mindi busybox with command:

[root@tlvhmu ~]# rpm -iv /tmp/rpm/mindi-busybox-1.2.1-2.rhel4.i586.rpm error: Failed dependencies:

busybox conflicts with mindi-busybox-1.2.1-2.rhel4.i586

On my system I have already installed the package:

[root@tlvhmu ~]# rpm -q busybox busybox-1.00.rc1-5

but there is not a file conflict. Now I force installation with command:

[root@tlvhmu ~]# rpm -iv --nodeps /tmp/rpm/mindi-busybox-1.2.1-2.rhel4.i586.rpm Preparing packages for installation... mindi-busybox-1.2.1-2.rhel4

Regards Maurizio De Ponti

#89 fixed no imgname variable in environment Bruno Cornec frederic.bourlet@…
Description

I dont know what to do, i've create isos of a RHEL4u2 computer and burn a CD. When i want to restore the image on an another computer (the same model) i've the mondo rescue ihm and an error message: FATAL ERROR

no imgname variable in environment

#90 fixed mondoarchive fails when using space in the prefix Bruno Cornec caogdin@…
Description

I intentionally introduced a space into the filename of the destination of the image being written to disk. The command accepted by mondoarchive is

    mondoarchive -OViFNK0 -s 4200m -S /backup/scratch -T /backup/temp -d
/backup -l LILO -f /dev/hdc \
          -p Mondo- (test) -Birch-061025@2031 -E /backup

As the following information shows, "Mondo- (test) -Birch-061025@2031" is accepted as a whole and proper file name, because it's quoted in the invocation of mondoarchive.

When it comes time for mondoarchive to write the first ISO out, it invokes mkisofs, but the file name is not properly single-quoted, resulting the following error reported on the console:

sh: -c: line 0: syntax error near unexpected token `('
sh: -c: line 0: `mkisofs -no-emul-boot -b isolinux.bin -boot-load-size 4
-boot-info-table -c boot.cat -o /backup//Mondo- (test)
-Birch-061025@2031-1.iso -J -r -p MondoRescue -publisher www.mondorescue.org
-A Mondo_Rescue_GPL -V 1 . >> /var/log/mondo-archive.log 2>>
/var/log/mondo-archive.log'
Call to mkisofs to make ISO (ISO #1) ...failed
---promptdialogYN---1--- Failed to burn ISO #1. Retry?

Because the parameter to the -o option is not single-quoted to treat it as a unit, the spaces in the filename break the paramter after ...Mondo-, and the rest of the filename, (test... is attempted to be interpreted as another option.

That command could more robustly be coded as

        mkisofs -no-emul-boot -b isolinux.bin -boot-load-size 4
-boot-info-table -c boot.cat -o '/backup//Mondo- (test)
-Birch-061025@2031-1.iso' \
            -J -r -p MondoRescue -publisher www.mondorescue.org -A
Mondo_Rescue_GPL -V 1 . >> /var/log/mondo-archive.log 2>>
/var/log/mondo-archive.log

(I quoted the argument to -o)

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