erro de validação de gem de clipe de papel - 'filename' não é reconhecido pelo comando 'identify'

Estou tentando fazer com que a gem do clipe de papel carregue imagens no meu servidor de produção (Ubuntu 12.0.4, Apache2, Phusion Passenger e RVM) e para cada anexo recebo três lotes desse erro de validação:

Img one /tmp/villa-0520121006-4333-hdo9wv.jpeg não é reconhecido pelo comando 'identify'.

O ImageMagick está instalado corretamente, assim como o pacote libmagickwand-dev, Rmagick e paperclip. E eu configurei o caminho de comando correto para onde identificar e converter estão localizados no meu arquivo de configuração production.rb.

aqui está o meu modelo, se ajudar:

class Property < ActiveRecord::Base
    attr_accessible :img_one, :img_two, :img_three, :img_four, :img_five, :img_six, :price, :title, :description, :location, :beds, :property_type, :agreement_type, :featured  
    has_attached_file :img_one, :styles => { :medium => "420x280>", :mobile => "300x220", :thumb => "100x80>" }
    has_attached_file :img_two, :styles => { :medium => "420x280>", :mobile => "300x220", :thumb => "100x80>" }
    has_attached_file :img_three, :styles => { :medium => "420x280>", :mobile => "300x220", :thumb => "100x80>" }
    has_attached_file :img_four, :styles => { :medium => "420x280>", :mobile => "300x220", :thumb => "100x80>" }
    has_attached_file :img_five, :styles => { :medium => "420x280>", :mobile => "300x220", :thumb => "100x80>" }
    has_attached_file :img_six, :styles => { :medium => "420x280>", :mobile => "300x220", :thumb => "100x80>" }


    validates_presence_of :title, :description, :location, :beds, :property_type, :agreement_type, :price
    validates :price, :numericality => { :greater_than => 0 }
    validates :beds, :numericality => { :only_integer => true, :greater_than => 0 }
end

Estou realmente coçando a cabeça com este e qualquer ajuda ou conselho seria muito apreciado, obrigado

questionAnswers(1)

yourAnswerToTheQuestion