1

I am trying to install google talk plugin for an old Ubuntu 7.10. It shows an error dependency is not satisfiable libcairo2.

Is it possible to install google talk plugin for Ubuntu 7.10? This is an old system that needs this version for compatibility with old binaries.

Jorge Castro
  • 73,717
719016
  • 6,467

1 Answers1

3

The reason libcairo2 is unavailable is because 7.10 doesn't include it in its package list. You could manually install this package from Ubuntu's package search tool, but there is probably a really good reason why libcairo2 isn't in your version's package list. And that really good reason is probably that you'd have to upgrade half of your system manually in order to install it. For example, (in the worst case) it might depend on a later version of glibc or libx11 than you have. You will almost certainly have to upgrade several non-critical packages that it relies on, as well.

Upgrading your whole system via the update-manager (in a controlled, automated way) is much better than upgrading a large portion in an ad-hoc, manual fashion.

jpaugh
  • 552