Mailing List Archive

Problems with installing apt [off topic?]
Hi, again.

I am not sure if this would be off topic; sorry if it is.

I got over the sound problem, thanks again, but now have run into a new
problem. While following the How-To Guild by Wilson, I installed apt
(Section 8) but while doing so, several errors appeared in the Terminal
Window. (I copied them from the Terminal Windows and they are at the bottom
of this e-mail.) Being new to Linux, I have no idea as to what these mean.
Any help would be appreciated. Sorry again if this is off the topic.

Robert

(Text copied from Terminal Window)

W: There are multiple versions of "bash" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^bash$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "mysql" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^mysql$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "kdelibs" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^kdelibs$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "glibc" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^glibc$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "krb5-libs" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^krb5-libs$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "cups-libs" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^cups-libs$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "httpd" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^httpd$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "foomatic" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^foomatic$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "gtkhtml" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^gtkhtml$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "samba-common" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^samba-common$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "ghostscript" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^ghostscript$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "glibc-common" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^glibc-common$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "openssl" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^openssl$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "kdebase" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^kdebase$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: There are multiple versions of "php" in your system.

This package won't be cleanly updated, unless you leave
only one version. To leave multiple versions installed,
you may remove that warning by setting the following
option in your configuration file:

RPM::Allow-Duplicated { "^php$"; };

To disable these warnings completely set:

RPM::Allow-Duplicated-Warning "false";

W: You may want to run apt-get update to correct these problems

_________________________________________________________________
Add photos to your e-mail with MSN 8. Get 2 months FREE*.
http://join.msn.com/?page=features/featuredemail

_______________________________________________
mythtv-users mailing list
mythtv-users@snowman.net
http://lists.snowman.net/cgi-bin/mailman/listinfo/mythtv-users
RE: Problems with installing apt [off topic?] [ In reply to ]
Probably is off-topic, but as I had the same problem when installing the MythTV suite, not as off-topic as it sounds.

Basically apt-get doesn't like duplicate versions of packages on your system because part of its job is to keep you updated and it can't do that properly if you've got old stuff lying around that you want to keep; it doesn't know what to do with it. So either you need to clean that stuff up or you need to tell it you want to keep it with the instructions it's giving you.

In most cases there's no reason why you'd want to keep both an old and a new version of a package (especially on a myth box), so you'll probably just want to delete the old packages.

Do this command from a bash prompt:

rpm -qa|sort

Go through the list and any packages you see duplicated with different version numbers, remove the old one with

rpm -e packagename

where packagename is exactly what's listed in your rpm list, including version #. Easiest just to copy and paste directly from the list.

It'll take you a while to do this and there may be a faster way that somebody can detail out for you but I did it all manually on my system (most of the old packages will probably not be listed in any graphical tool that you have on your system - they weren't on my Red Hat system). Afterwards, you can run apt-get update to get yourself up to date.


> -----Original Message-----
> From: Robert Empfield [mailto:oldwizeman85@hotmail.com]
> Sent: Wednesday, July 16, 2003 3:25 PM
> To: mythtv-users@snowman.net
> Subject: [mythtv-users] Problems with installing apt [off topic?]
>
>
> Hi, again.
>
> I am not sure if this would be off topic; sorry if it is.
>
> I got over the sound problem, thanks again, but now have run
> into a new
> problem. While following the How-To Guild by Wilson, I installed apt
> (Section 8) but while doing so, several errors appeared in
> the Terminal
> Window. (I copied them from the Terminal Windows and they
> are at the bottom
> of this e-mail.) Being new to Linux, I have no idea as to
> what these mean.
> Any help would be appreciated. Sorry again if this is off the topic.
>
> Robert
>
> (Text copied from Terminal Window)
>
> W: There are multiple versions of "bash" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^bash$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "mysql" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^mysql$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "kdelibs" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^kdelibs$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "glibc" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^glibc$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "krb5-libs" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^krb5-libs$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "cups-libs" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^cups-libs$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "httpd" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^httpd$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "foomatic" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^foomatic$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "gtkhtml" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^gtkhtml$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "samba-common" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^samba-common$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "ghostscript" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^ghostscript$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "glibc-common" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^glibc-common$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "openssl" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^openssl$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "kdebase" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^kdebase$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: There are multiple versions of "php" in your system.
>
> This package won't be cleanly updated, unless you leave
> only one version. To leave multiple versions installed,
> you may remove that warning by setting the following
> option in your configuration file:
>
> RPM::Allow-Duplicated { "^php$"; };
>
> To disable these warnings completely set:
>
> RPM::Allow-Duplicated-Warning "false";
>
> W: You may want to run apt-get update to correct these problems
>
> _________________________________________________________________
> Add photos to your e-mail with MSN 8. Get 2 months FREE*.
> http://join.msn.com/?page=features/featuredemail
>
> _______________________________________________
> mythtv-users mailing list
> mythtv-users@snowman.net
> http://lists.snowman.net/cgi-bin/mailman/listinfo/mythtv-users
>
>


_______________________________________________
mythtv-users mailing list
mythtv-users@snowman.net
http://lists.snowman.net/cgi-bin/mailman/listinfo/mythtv-users
RE: Problems with installing apt [off topic?] [ In reply to ]
> It'll take you a while to do this and there may be a faster way that
> somebody can detail out for you but I did it all manually on my system
> (most of the old packages will probably not be listed in any graphical
> tool that you have on your system - they weren't on my Red Hat
> system). Afterwards, you can run apt-get update to get yourself up to
> date.

try: apt-get -f install

Not sure if this will delete duplicate packages, but this is the command
to use when you need to resolve broken dependencies.

-Chris

_______________________________________________
mythtv-users mailing list
mythtv-users@snowman.net
http://lists.snowman.net/cgi-bin/mailman/listinfo/mythtv-users
RE:Problems with installing apt [off topic?] [ In reply to ]
you may want to make sure you are doing it as root.

_________________________________________________________________
MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*.
http://join.msn.com/?page=features/virus

_______________________________________________
mythtv-users mailing list
mythtv-users@snowman.net
http://lists.snowman.net/cgi-bin/mailman/listinfo/mythtv-users