On Mon, Feb 16, 2004 at 03:26:48PM -0700, Nathan Cooprider wrote:
> I have set up my new installation of Fedora to read my windows partition
> and I am now trying to play my mp3s from it.  However, I need to make it
> so Xmms can play mp3s.  I have upgraded to version Xmms version 1.2.9,
> but I can't get the mp3 things to work.  The only rpm to download that I
> can find is below, but when I run it I get an error message.  What am I
> doing wrong?
> 
> Also, is there an apt-get for Fedora?  If so, where can I get it?  A lot
> of the links I find point to a non-existent page.  
> 
> Nathan
> 
> Here is the output when I try to install the rpm I downloaded:
> 
> # rpm -i xmms-mp3-1.2.9-1.1.fr.i386.rpm
> warning: xmms-mp3-1.2.9-1.1.fr.i386.rpm: V3 DSA signature: NOKEY, key ID
> e42d547b
>         file /usr/lib/xmms/Input/libmpg123.so from install of
> xmms-mp3-1.2.9-1.1.fr conflicts with file from package xmms-1.2.9-2

Congratulations, you have just gotten your first taste of the RPM dependency riddle 
(although complex interdependencies are invariant for any package manager).

The Best Thing(TM) to do is find a good apt repository, and not touch the rpms 
directly.  If that doesn't work out, then here is about the limit of my RPM knowledge 
(-:

It looks like your conflicting RPM's are from different (incompatible in this point) 
repositories.  What I would probably do is get the source RPM, 
xmms-<something>.src.rpm, either from the xmms people or the fedora people, then:

# rpm -ivh xmms-<something>.src.rpm
# rpmbuild --clean -bb /usr/src/redhat/SPECS/xmms[-<something>].spec
# ls -lshF /usr/src/redhat/RPMS/i386/*xmms*.rpm
# rpm -Uvh /usr/src/redhat/RPMS/i386/*xmms*.rpm
If this doesn't work, then you may have to directly remove all older xmms rpms, be 
VERY CAREFUL here:
# rpm -qa | grep xmms                 # verify this is what you want to remove...
# rpm -qa | grep xmms | xargs rpm -ev # ...and remove it
now
# rpm -Uvh /usr/src/redhat/RPMS/i386/*xmms*.rpm


Justin

_______________________________________________
newbies mailing list
[EMAIL PROTECTED]
http://phantom.byu.edu/cgi-bin/mailman/listinfo/newbies

Reply via email to