devroom.io/drafts/2008-04-10-debian-etch-rmagick-loaderror.md
Ariejan de Vroom dbae98c4c0 Moar updates
2013-03-24 14:27:51 +01:00

1.2 KiB

title kind slug created_at tags
Debian Etch: RMagick LoadError article debian-etch-rmagick-loaderror 2008-04-10
General
RubyOnRails
Ruby
Ruby on Rails
Rails
imagemagick
libMagickWand
magick
rmagick

If you're on Debian Etch, you may encounter the following error

libMagickWand.so.1: cannot open shared object file: No such file or directory - /usr/lib/ruby/gems/1.8/gems/rmagick-2.3.0/lib/RMagick2.so

This basically means that the libMagickWand.so.1 file cannot be found. However, it is available on your system. All you need to do to fix it, is tell your box to look in the right place for the file.

To fix this issue once and for all, open up /etc/ld.so.conf.d/whatever_file_is_here. The whatever_file_is_here is named after the kernel you have installed.

In this file, add the following line at the bottom

/usr/local/lib

Save the file and next run the 'ldconfig' command. This will reread the configuration file you just edited. Now, restart your Rails app and you'll notice the error is gone and all is good again.

ldconfig

This change will be kept after you reboot, so you won't encounter this error any time soon again.