Upgrade ImageMagick on Red Hat 5.8/ CentOS

Redhat Enterprise Linux 5.8 provides ImageMagick v 6.2.8. But you may require to upgrade it to higher version. I was looking for RPM of ImageMagick for RHEL 5.8 and I found it from ImageMagick Website. Just downloading and Installing RPM will not work, it took so much time to find its dependency packages and install it. So I have shared this post, I hope if you have this requirement, it will solve your purpose.

Operating System: Red Hat Enterprise Linux 5.8
Architecture: x86_64
ImageMagick: 6.2.8 (new version will be 6.8.5-8)


  • To check current version of ImageMagick use below command.


  • Download ImageMagick RPM using below link.
http://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-6.8.5-10.x86_64.rpm

Now when you will try to install it on RHEL 5.8, you will get below error message for dependency packages.

It was not easy to find dependency packages for ImageMagick, I have gone through different commands, googleing, etc. So finally I have all those dependency RPMs. You can download them using given below links.


ImageMagick-6.8.5-8.x86_64.rpm
OpenEXR-1.4.0a-5.el5.x86_64.rpm
fftw3-3.2.2-3.el5.x86_64.rpm
fltk-1.1.9-4.el5.i386.rpm
fltk-1.1.9-4.el5.x86_64.rpm
jasper-libs-1.900.1-14.el5.x86_64.rpm
libwebp4-0.3.0-31.2.x86_64.rpm
xz-libs-4.999.9-0.3.beta.20091007git.el5.x86_64.rpm
libtool-ltdl-1.5.22-7.el5_4.x86_64.rpm

6 comments:

  1. Hi,

    Thanks. It's working perfectly.

    Best,
    M

    ReplyDelete
  2. Thank you for this! Worked well on RHEL 5.9 with latest ImageMagick version 6.8.6-1.

    ReplyDelete
  3. Hi,

    I am using centOS 6.2 (Final) & i have downloaded latest ImageMagick RPM (ImageMagick-6.8.6-6.x86_64.rpm) from below link:

    http://www.imagemagick.net/script/binary-releases.php#unix

    Now when i try to install it, i will get below error message for dependency packages.

    [root@localhost ~]# rpm -ivh ImageMagick-6.8.6-6.x86_64.rpm
    error: Failed dependencies:
    libltdl.so.3()(64bit) is needed by ImageMagick-6.8.6-6.x86_64
    libwmflite-0.2.so.7()(64bit) is needed by ImageMagick-6.8.6-6.x86_64

    I have installed all those dependency RPMs which you have mentioned.

    It's urgent for me.

    Any help would be appreciated.

    Thanks.

    ReplyDelete
    Replies
    1. Please try creating symbolic link of libltdl.so.3 to /usr/lib64/ location using below command.

      ln -s /usr/lib/libltdl.so.3 /usr/lib64/libltdl.so.3

      Delete
  4. Thanks a lot :x

    ReplyDelete