LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-18-2003, 10:03 AM   #1
mykyl
Member
 
Registered: Aug 2003
Posts: 75

Rep: Reputation: 15
Confusion with RPM's - vicious circle


Okay here's the confusion. I'm running Mandrake 9.1 ---- I was running GnomeICU (icq type client) and I noticed a newer version on rpm find (gnomeicu-0.99-4mdk.i586.rpm). Uninstalled the old and went to install the new and it gives me this.

[root@localhost downloads]# rpm -i gnomeicu-0.99-4mdk.i586.rpm
error: failed dependencies:
GConf2 >= 2.3.3 is needed by gnomeicu-0.99-4mdk

so I download GConf2-2.4.0.1 and try to install it...and it gives me this...

[root@localhost downloads]# rpm -i GConf2-2.4.0.1-1mdk.i586.rpm
error: failed dependencies:
libGConf2_4 = 2.4.0.1-1mdk is needed by GConf2-2.4.0.1-1mdk

so I download libGConf2_4-2.4.0.1 and it gives me this...

[root@localhost downloads]# rpm -i libGConf2_4-2.4.0.1-1mdk.i586.rpm
error: failed dependencies:
GConf2 >= 2.4.0.1 is needed by libGConf2_4-2.4.0.1-1mdk

And there is my confusion. I try GGonf2 and it tells me I need libGConf2. I do libGConf2 and it tells me I need Gconf2. I'm not getting this. Any help would be greatly appreiciated.

Just for info...I can install the old version of GnomeICU from the Mandrake install cd's back into linux and it works fine.
 
Old 09-18-2003, 10:06 AM   #2
DrOzz
Senior Member
 
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185

Rep: Reputation: 60
try installing them at the same time and see if that helps with a command such as ::
rpm -ivh package1.rpm package2.rpm
 
Old 09-18-2003, 10:06 AM   #3
fsbooks
Member
 
Registered: Jan 2002
Location: Missoula. Montana, USA
Distribution: Slackware (various)
Posts: 464

Rep: Reputation: 52
Try "rpm -i libGConf2_4-2.4.0.1-1mdk.i586.rpm GConf2-2.4.0.1-1mdk.i586.rpm"
 
Old 09-18-2003, 10:12 AM   #4
rshaw
Senior Member
 
Registered: Apr 2001
Location: Perry, Iowa
Distribution: Mepis , Debian
Posts: 2,692

Rep: Reputation: 45
or put them all in the same dir and do a rpm -ivh *.rpm
 
Old 09-18-2003, 10:22 AM   #5
mykyl
Member
 
Registered: Aug 2003
Posts: 75

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by fsbooks
Try "rpm -i libGConf2_4-2.4.0.1-1mdk.i586.rpm GConf2-2.4.0.1-1mdk.i586.rpm"
It gave me this when I tried it...

[root@localhost downloads]# rpm -i libGConf2_4-2.4.0.1-1mdk.i586.rpm GConf2-2.4.0.1-1mdk.i586.rpm
file /usr/lib/libgconf-2.so.4.1.0 from install of libGConf2_4-2.4.0.1-1mdk conflicts with file from package libGConf2_4-2.2.0-1mdk
 
Old 09-18-2003, 10:24 AM   #6
mykyl
Member
 
Registered: Aug 2003
Posts: 75

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by rshaw
or put them all in the same dir and do a rpm -ivh *.rpm
when I tried this one it gave me this...

[root@localhost downloads]# rpm -ivh *.rpm
Preparing... ########################################### [100%]
file /usr/lib/libgconf-2.so.4.1.0 from install of libGConf2_4-2.4.0.1-1mdk conflicts with file from package libGConf2_4-2.2.0-1mdk


so obviously there is a conflict here...so do I have to uninstall the libGConf2_4-2.2.0-1 first?
 
Old 09-18-2003, 10:28 AM   #7
rshaw
Senior Member
 
Registered: Apr 2001
Location: Perry, Iowa
Distribution: Mepis , Debian
Posts: 2,692

Rep: Reputation: 45
try -Uvh instead of -ivh
 
Old 09-18-2003, 10:29 AM   #8
DrOzz
Senior Member
 
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185

Rep: Reputation: 60
and if that doesn't work, get rid of the conflicting package that is already installed.
 
Old 09-18-2003, 01:53 PM   #9
Xterminator
Member
 
Registered: Sep 2002
Location: São Paulo -Brazil
Posts: 76

Rep: Reputation: 15
This problem occurs for the fact of you to be trying to install a package of the Mandrake Cooker [ unstable ]...
 
Old 09-18-2003, 02:00 PM   #10
mykyl
Member
 
Registered: Aug 2003
Posts: 75

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by Xterminator
This problem occurs for the fact of you to be trying to install a package of the Mandrake Cooker [ unstable ]...
You lost me...I have no idea what Mandrake Cooker is.
 
Old 09-18-2003, 02:23 PM   #11
Xterminator
Member
 
Registered: Sep 2002
Location: São Paulo -Brazil
Posts: 76

Rep: Reputation: 15
Mandrake Cooker is a every development version of Mandrake...
not recommended on produce environments.

we go to see if you understand. Mandrake-Cooker version in development, when it arrives at a steady level starts to be new release of the Mandrake... that thus that is set free for public starts a new phase of development... the Cooker always is being brought up to date daily.
 
Old 09-18-2003, 02:30 PM   #12
kurtjo
LQ Newbie
 
Registered: Aug 2003
Location: Oregon
Distribution: Mandrake 9.1
Posts: 18

Rep: Reputation: 0
to eliminate the file conflicts problem, use the switch
--replacefiles in your rpm command line.
 
Old 09-18-2003, 02:45 PM   #13
mykyl
Member
 
Registered: Aug 2003
Posts: 75

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by kurtjo
to eliminate the file conflicts problem, use the switch
--replacefiles in your rpm command line.
thanks...but it still gives me the failed dependencies on both. One looking for the other.
 
Old 09-18-2003, 02:48 PM   #14
mykyl
Member
 
Registered: Aug 2003
Posts: 75

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by DrOzz
and if that doesn't work, get rid of the conflicting package that is already installed.
I got rid of the file that it was conflicting with and it took away Gnome in the process. Reinstalled it and got everything to where is was before. Sheesh, I'm glad I'm patient and that I like to read. I guess this is why alot of people run away from linux and breaking their will in the process.

Last edited by mykyl; 09-18-2003 at 06:03 PM.
 
  


Reply



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



Similar Threads
Thread Thread Starter Forum Replies Last Post
HAL... the circle. Peingune Linux - Newbie 10 08-16-2005 06:01 AM
Are source RPM's and binary RPM's installed the same way? Simon Adebisi Linux - Software 3 06-28-2005 03:45 AM
RPM - dependencies going round in circle! The_JinJ Linux - Newbie 6 11-23-2004 04:09 AM
NDISWrapper and the circle of Hate ryanroler Linux - Wireless Networking 3 11-06-2004 08:55 PM
Draw Circle Gerardoj Programming 11 08-24-2003 05:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:22 AM.

Main Menu
Advertisement
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
Open Source Consulting | Domain Registration