1&1 ImageMagick Install Procedure
I ran across a few people asking how to get ImageMagick installed on their 1&1 account, so I thought I would follow up my post about my own success, with the instructions on how to do it.
Keep in mind, I have the Developer Package, which grants me shell access, and you’ll need this to install imagemagick.
To install ImageMagick, first log in to your server with SSH. From the command line first download and unzip the source:
$> wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
$> tar -xzvf ImageMagic.tar.gz
Change into the ImageMagick source directory (this represents the version number as of this writing):
$> cd ImageMagick-6.2.6
The following commands will install ImageMagik into your home directory. –without-perl and –without-ttf will disable perl and TrueType support; without these switches the install will fail. /path/to/your/htdocs/im should be replaced with the actual path to your home directory, and the last part, im, can be changed to anything. The command “pwd” will tell you the present working directory.
$> ./configure –prefix=/path/to/your/htdocs/im –without-perl –without-ttf
$> make
$> make install
When these steps are completed ImageMagick will be installed in your home directory. Please note that since this is a non-standard location, you may have to modify the configuration of other programs that use it so that they can find it. Any executables will also not be on the default executable search path.
No Responses to “1&1 ImageMagick Install Procedure”
Leave a Reply

Aseret on May 1st, 2006
Thanks so much for posting this… I was worried I would never get it installed on my 1&1 account!
Paul Siebels on August 1st, 2006
If you need to add/manipulate text via -annotate or -draw (for example) you should install ghostscript before ImageMagick, then when you configure ImageMagick, it will find ghostscript.
(customize the following to your install)
$> wget http://mesh.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.15.tar.bz2
$> tar -xjvf ghostscript-8.15.tar.bz2
$> cd ghostscript-8.15
$> ./configure –prefix=$HOME/tools
$> make
$> make install
$> cd ~/temp
$> wget http://mesh.dl.sourceforge.net/sourceforge/gs-fonts/ghostscript-fonts-std-8.11.tar.gz
$> cd ~/tools/share/ghostscript
$> tar -xzvf ~/temp/ghostscript-fonts-std-8.11.tar.gz
-[From http://wiki.splitbrain.org/imagemagick-