Differences

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

Link to this comparison view

Next revision Both sides next revision
cpanel:install-imagemagick [2010-05-11 14:45:24]
shaun.reitan created
cpanel:install-imagemagick [2010-10-18 23:04:04]
garrett.plasky Approved
Line 1: Line 1:
 ====== How to install latest version of Image Magick on your cPanel Server ====== ====== How to install latest version of Image Magick on your cPanel Server ======
  
-Although most distributions contain a packaged version of image magick 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> <code console>
-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> </code>
  
 ===== Build and Install ===== ===== Build and Install =====
 <code console> <code console>
-./configure --prefix=/usr --enable-shared=yes +./configure --prefix=/usr --enable-shared=yes 
-make +make 
-make install+make install
 </code> </code>
- 
- 
- 
- 
  
 {{tag>cpanel centos how-to}} {{tag>cpanel centos how-to}}