Linux - SoftwareThis 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
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
# perl -e 'use Image::Magick; print $Image::Magick::VERSION."\n"'
Can't load '/usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/Image/Magick/Magick.so' for module Image::Magick: libMagickCore.so.1: cannot open shared object file: No such file or directory at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm line 230.
at -e line 1
Compilation failed in require at -e line 1.
BEGIN failed--compilation aborted at -e line 1.
Then I tried manual installation of ImageMagick (ImageMagick-6.4.4, which includes module for perl also) and its compilation/installation goes okay but same error afterwards.
Some more input:
Code:
# ldd /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/Image/Magick/Magick.so
linux-gate.so.1 => (0xbfffe000)
libMagickCore.so.1 => not found
libMagickWand.so.1 => not found
libc.so.6 => /lib/libc.so.6 (0xb7d75000)
/lib/ld-linux.so.2 (0x80000000)
# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
/usr/local/lib
/usr/lib
Well vital is going to depend on you. But to install the updates of whatever you already have installed run "yum update" as root. I will warn you that if you have not done so in a while (and it looks that way) you are going to have a lot of updates.
1st be careful mixing 3rd party repos, you can get in a world of hurt that way.
Try "yum update yum" first and then try 'yum update' again(a good place to start anytime you are behind on updates). This may or may not help.
One possible problem is that you have mixed two third party repos that are not compatible(not as common as it used to be, but it still happens). Another is that you are so far behind that yum is lost. You can try yum updating a few of the apps you listed first, just to give yum a running start.
One thing to keep in mind when running a packaged distro is that there is no such thing as just a few packages you need. Packages have dependencies, and those dependencies often have dependencies. Also there may be system critical components that rely on some of those same dependencies. So changing one package may seem simple but one may have to update half the system just to update that one package (extreme example). Think of it as replacing just one line in a fishing net. This is why yum (generally) is superior to rpm(the tool not the package). It is also why it is such a pita when yum is being pissy.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.