devroom.io/drafts/2008-04-10-debian-etch-rmagick-loaderror.md

34 lines
1.2 KiB
Markdown
Raw Normal View History

2013-03-22 22:53:57 +00:00
---
title: "Debian Etch: RMagick LoadError"
kind: article
slug: debian-etch-rmagick-loaderror
created_at: 2008-04-10
tags:
- General
- RubyOnRails
- Ruby
- Ruby on Rails
- Rails
- imagemagick
- libMagickWand
- magick
- rmagick
---
If you're on Debian Etch, you may encounter the following error
<pre lang="text">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</pre>
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
<pre lang="text">/usr/local/lib</pre>
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.
<pre lang="sh">ldconfig</pre>
This change will be kept after you reboot, so you won't encounter this error any time soon again.