World of *Nix

by S. M. Ibrahim (lavluda)
ফেব্রুয়ারি 2nd, 2008

install imagemagick support to your debian/ubuntu server

imagemagick is one of the best library to work with image. recently i have to install it to our production server. here is what i did:

$ apt-get install imagemagick

it downloads the package and all it’s dependences from debian/ubuntu repository, and installed. now i have to install the support of php (as our product running on php)

$ apt-get install php5-imagick

then i restarted the apache server to take effect this new package installation. if your using php4 then the package name should be php4-imagick

$ /etc/init.d/apache2 restart

that’s all :)

if you need imagemagick for your ruby , you can install the librmagick-ruby package.

Share/Save/Bookmark

Related posts:

  1. how to move your php development environment to linux (Debian/Ubuntu) Nowadays, lots of php developers are thinking to move their...
  2. how to enable mod_rewrite in apache2.2 (debian/ubuntu) Here i am going to describe how to enable mod_rewrite...
  3. Website Optimization 01: disable ETag in apache (debian/ubuntu) From last few months i am working to optimize our...
  4. Installing ttf fonts on Debian or Ubuntu Linux Here is the simple step to install ttf font on...
  5. Website optimization 02: enable deflate /output compression (debian/ubuntu) On the first post of this series we learned how...

Related posts brought to you by Yet Another Related Posts Plugin.

One Response to “install imagemagick support to your debian/ubuntu server”

  1. The newer versions of imagemagick depend on a whole bunch of non-server type packages - a lot of which are X related. I don’t really want this extra baggage on my headless server so I have had to forbid the new version…

Leave a Reply