LinuxQuestions.org
LinuxAnswers - the LQ Linux tutorial section.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat
User Name
Password
Red Hat This forum is for the discussion of Red Hat Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 04-26-2009, 05:56 PM   #1
bmayhem
LQ Newbie
 
Registered: Apr 2009
Posts: 8

Rep: Reputation: 0
RHEL 5.3 Fresh Install ImageMagick Transaction Check Error


Freshly installed rhel 5.3, I ran yum update and then ran yum install ImageMagick and get this:


Transaction Check Error:
package dbus-1.1.2-12.el5.x86_64 (which is newer than dbus-1.0.0-7.el5_2.1.i386) is already installed
file /etc/dbus-1/session.conf from install of dbus-1.0.0-7.el5_2.1.i386 conflicts with file from package dbus-1.1.2-12.el5.x86_64
file /etc/dbus-1/system.conf from install of dbus-1.0.0-7.el5_2.1.i386 conflicts with file from package dbus-1.1.2-12.el5.x86_64
file /usr/share/man/man1/dbus-daemon.1.gz from install of dbus-1.0.0-7.el5_2.1.i386 conflicts with file from package dbus-1.1.2-12.el5.x86_64
file /usr/share/man/man1/dbus-uuidgen.1.gz from install of dbus-1.0.0-7.el5_2.1.i386 conflicts with file from package dbus-1.1.2-12.el5.x86_64


Wondering if anyone is getting this message.
 
Old 04-26-2009, 06:40 PM   #2
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,362

Rep: Reputation: 169Reputation: 169
What version of ImageMagick are you trying to install?

The version of ImageMagick you are trying to install requires an older version of dbus than the version of dbus already on the system. It also looks like you are trying to install the 32bit version of ImageMagick rather than the 64bit version.
 
Old 04-26-2009, 06:41 PM   #3
bmayhem
LQ Newbie
 
Registered: Apr 2009
Posts: 8

Original Poster
Rep: Reputation: 0
Sorry Im running rhel 64 bit but im only trying to install the one on the repo imagemagik 6.2

Quote:
Originally Posted by lazlow View Post
What version of ImageMagick are you trying to install?

The version of ImageMagick you are trying to install requires an older version of dbus than the version of dbus already on the system. It also looks like you are trying to install the 32bit version of ImageMagick rather than the 64bit version.
 
Old 04-26-2009, 06:52 PM   #4
FragInHell
Member
 
Registered: Sep 2003
Location: Sydney Australia
Distribution: Redhat, Centos, Ubuntu
Posts: 277

Rep: Reputation: 45
Trying upgrading dbus first, then install ImageMagick
 
Old 04-26-2009, 07:26 PM   #5
bmayhem
LQ Newbie
 
Registered: Apr 2009
Posts: 8

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by FragInHell View Post
Trying upgrading dbus first, then install ImageMagick

I tried yum install dbus and got:

Transaction Check Error:
file /etc/dbus-1/system.conf from install of dbus-1.1.2-12.el5.i386 conflicts with file from package dbus-1.1.2-12.el5.x86_64
 
Old 04-26-2009, 07:29 PM   #6
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,362

Rep: Reputation: 169Reputation: 169
And again, you are trying to install the 32bit (the .i386 in the package name) version and not the 64 bit version.

The current version (in the repos) of imagmagick is 6.2.8.0-4.el5_1.1.

When you want to update a package use yum update package not yum install package.

Last edited by lazlow; 04-26-2009 at 07:33 PM.
 
Old 04-26-2009, 08:09 PM   #7
bmayhem
LQ Newbie
 
Registered: Apr 2009
Posts: 8

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lazlow View Post
And again, you are trying to install the 32bit (the .i386 in the package name) version and not the 64 bit version.

The current version (in the repos) of imagmagick is 6.2.8.0-4.el5_1.1.

When you want to update a package use yum update package not yum install package.
yum update dbus
Loaded plugins: rhnplugin, security
Skipping security plugin, no data
Setting up Update Process
No Packages marked for Update

Why is it trying to install a i386 package instead of a x64 package?
 
Old 04-26-2009, 08:54 PM   #8
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,362

Rep: Reputation: 169Reputation: 169
You told it to install dbus, since the 64bit version was already installed, it assumed the operator understood what he was doing and complied by attempting to install the 32bit version. As to why it tried to in the first place, best guess would be that you were trying to install the 32bit version of Imagemagick. Did you check to see if you already had the 64bit of imagemagick installed? A lot of packages have it as a dependency.
 
Old 04-26-2009, 09:24 PM   #9
bmayhem
LQ Newbie
 
Registered: Apr 2009
Posts: 8

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lazlow View Post
You told it to install dbus, since the 64bit version was already installed, it assumed the operator understood what he was doing and complied by attempting to install the 32bit version. As to why it tried to in the first place, best guess would be that you were trying to install the 32bit version of Imagemagick. Did you check to see if you already had the 64bit of imagemagick installed? A lot of packages have it as a dependency.
#rpm -qa | grep ImageMagick
#

So i dont think its installed.

Just to check:
rpm -qa | grep dbus
dbus-1.1.2-12.el5
dbus-glib-0.73-8.el5
dbus-python-0.70-7.el5
dbus-libs-1.1.2-12.el5
 
Old 04-26-2009, 09:26 PM   #10
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,362

Rep: Reputation: 169Reputation: 169
Try installing using the full name rather than just imagemagic.

ImageMagick-6.2.8.0-4.el5_1.1.x86_64

Last edited by lazlow; 04-26-2009 at 09:37 PM.
 
Old 04-26-2009, 10:04 PM   #11
bmayhem
LQ Newbie
 
Registered: Apr 2009
Posts: 8

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lazlow View Post
Try installing using the full name rather than just imagemagic.

ImageMagick-6.2.8.0-4.el5_1.1.x86_64
Well ill be darn worked like a charm i typed:

yum install ImageMagick-6.2.8.0-4.el5_1.1.x86_64

Problem Solved... Owe you a beer that for sure.


Why was it trying to install the 32bit version instead of the 64bit?
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
An error ocurred during the root filesystem check after a fresh install guedellas Slackware - Installation 4 04-21-2009 08:33 PM
yum update Transaction Check Error JonBL Linux - Software 21 08-10-2007 10:33 PM
nvidia drivers - transaction check - error? bjs Fedora 2 07-30-2006 11:16 AM
Yum Error: Transaction Check Error package x(which is newer than package y)... godsk Linux - Newbie 0 06-05-2006 07:13 AM
How to install ImageMagick after installing RHEL? Swakoo Linux - Newbie 2 04-27-2005 10:51 PM


All times are GMT -5. The time now is 07:02 PM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration