Forums | Admin

Discussion Forums: help

Start New Thread Start New Thread

 

By: Craig Boardman
RE: seg fault on exit [ reply ]  
2010-08-29 23:07
I followed this process, and my installation is no longer seg-faulting - thanks Ali!

FYI: I used ImageMagick 6.6.1-10, and RMagick 2.13.1.


By: Ali Jelveh
RE: seg fault on exit [ reply ]  
2010-08-27 14:21
I've found a way to get rid of it:

- removed all traces of prior imagemagick versions
- installed ImageMagick 6.6.1-0 by hand (see http://rmagick.rubyforge.org/install2-linux.html#step2)
- removed all traces of prior rmagick gems
and installed the rmagick gem (2.12.2 but 2.13.1 also seemed to work).

BAM! no more segfaults!

By: Craig Boardman
RE: seg fault on exit [ reply ]  
2010-08-04 23:19
Is there any update on this problem?
I am seeing it with ruby 1.8.5 on Centos-5
I can repeat the problem using the irb session below.

Thanks,
Craig.

By: Ali Jelveh
RE: seg fault on exit [ reply ]  
2010-06-13 21:11
Hi Omer,

will check and get back to you on monday :)

ali

By: Omer Bar-or
RE: seg fault on exit [ reply ]  
2010-06-10 15:37
Woops. I let this fall through the cracks.

Which versions of RMagick and ImageMagick are you using, Ali?

By: Ali Jelveh
RE: seg fault on exit [ reply ]  
2010-06-09 15:52
this is what I get
jelveh@Ubuntu-904-jaunty-64-minimal:~$ irb
irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'RMagick'
=> true
irb(main):003:0> exit
/usr/local/bin/irb:13: [BUG] Segmentation fault
ruby 1.8.7 (2009-04-08 patchlevel 160) [x86_64-linux]

Aborted

By: Ali Jelveh
RE: seg fault on exit [ reply ]  
2010-06-09 13:09
I get the exact same problem on ubuntu 9.04... anyone knows what's going on?

By: Alexander Farley
RE: seg fault on exit [ reply ]  
2010-05-26 23:37
Using ImageMagick 6.6.0-10, Linux 2.6.18, Red Hat CentOS 5.4

Here's the code:

require 'RMagick'
include Magick
exit

This gives a seg fault using both irb and ruby, on exit (the require & include work fine). Also I've been able to successfully generate images, so it's partially working.




By: Omer Bar-or
RE: seg fault on exit [ reply ]  
2010-05-25 16:02
Hi, Alex -

Interesting...

Does this happen with a script that just has the require 'RMagick' line and nothing else?

Also, which ImageMagick and Linux distribution are you using?

By: Alexander Farley
seg fault on exit [ reply ]  
2010-05-25 10:00
Hi, I'm getting a seg fault on exit when I require 'RMagick'. This happens in irb & running scripts.

I'm using rmagick 2.13.1, ruby 1.8.6 on linux.

RMagick appears to be working; commands do what they're supposed to using irb, it just crashes on exit. Any ideas?