Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
cpanel:install-imagemagick [2010-10-18 23:04:04]
garrett.plasky Approved
cpanel:install-imagemagick [2011-11-23 22:34:32]
garrett.plasky Approved
Line 1: Line 1:
-====== How to install latest version of Image Magick on your cPanel Server ======+====== How to install the latest version of Image Magick on your cPanel Server ======
  
 Although most distributions contain a packaged version of ImageMagick it's often a old version lacking new features. This article will show you how to compile ImageMagick from source and have it's installed in the same location it would normally be in. Although most distributions contain a packaged version of ImageMagick it's often a old version lacking new features. This article will show you how to compile ImageMagick from source and have it's installed in the same location it would normally be in.
  
 ===== Download and extract latest version ===== ===== Download and extract latest version =====
-<code console+<sxh bash
-cd /usr/src +cd /usr/src 
-wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz +wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz 
-tar zxvf ImageMagick.tar.gz +tar zxvf ImageMagick.tar.gz 
-cd ImageMagick-X.X.X ### Replace the X's with the version that just extracted +cd ImageMagick-X.X.X ### Replace the X's with the version that just extracted 
-</code>+</sxh>
  
 ===== Build and Install ===== ===== Build and Install =====
-<code console+<sxh bash
-./configure --prefix=/usr --enable-shared=yes +./configure --prefix=/usr --enable-shared=yes 
-make +make 
-make install +make install 
-</code>+</sxh>
  
 {{tag>cpanel centos how-to}} {{tag>cpanel centos how-to}}