LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-03-2009, 01:38 AM   #1
linux0
LQ Newbie
 
Registered: May 2009
Posts: 4

Rep: Reputation: 0
I have a problem Imagick Installation SSH


Hello everyone,

I've tried the install imagick but i've this error.

Quote:
abcdef@server [~]# wget http://pecl.php.net/get/imagick-2.3.0RC1.tgz
--02:22:19-- http://pecl.php.net/get/imagick-2.3.0RC1.tgz
Resolving pecl.php.net... 216.92.131.66
Connecting to pecl.php.net|216.92.131.66|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 83121 (81K) [application/octet-stream]
Saving to: `imagick-2.3.0RC1.tgz'
100%[=======================================>] 83,121 184K/s in 0.4s
02:22:20 (184 KB/s) - `imagick-2.3.0RC1.tgz' saved [83121/83121]
abcdef@server [~]# tar xvzf imagick-2.3.0RC1.tgz
package.xml
imagick-2.3.0RC1/examples/polygon.php
imagick-2.3.0RC1/examples/captcha.php
imagick-2.3.0RC1/examples/thumbnail.php
imagick-2.3.0RC1/examples/watermark.php
imagick-2.3.0RC1/config.m4
imagick-2.3.0RC1/config.w32
imagick-2.3.0RC1/CREDITS
imagick-2.3.0RC1/imagick.c
imagick-2.3.0RC1/imagick_class.c
imagick-2.3.0RC1/imagickdraw_class.c
imagick-2.3.0RC1/imagickpixel_class.c
imagick-2.3.0RC1/imagickpixeliterator_class.c
imagick-2.3.0RC1/imagick_helpers.c
imagick-2.3.0RC1/php_imagick.h
imagick-2.3.0RC1/php_imagick_defs.h
imagick-2.3.0RC1/php_imagick_macros.h
imagick-2.3.0RC1/TODO
imagick-2.3.0RC1/INSTALL
abcdef@server [~]# cd imagick-2.3.0RC1
abcdef@server [~/imagick-2.3.0RC1]# ./configure
-bash: ./configure: No such file or directory
How can i fix that? Thanks...
 
Old 05-03-2009, 01:58 AM   #2
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
There doesn't seem to be a configure file. Have you read the INSTALL file? What does it tell you?
Any particular reason why you don't just install the imagemagick package?
jdk

Last edited by jdkaye; 05-03-2009 at 02:00 AM.
 
Old 05-03-2009, 02:05 AM   #3
linux0
LQ Newbie
 
Registered: May 2009
Posts: 4

Original Poster
Rep: Reputation: 0
INSTALL file is empty. I've installed imagemagick. But i need Imagick too.
 
Old 05-03-2009, 02:10 AM   #4
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Isn't imagick-2.3.0RC1.tgz a perl package? Don't you need to use the perl installation procedure (whatever that is )
jdk
 
Old 05-03-2009, 02:28 AM   #5
linux0
LQ Newbie
 
Registered: May 2009
Posts: 4

Original Poster
Rep: Reputation: 0
So which procedure do i use for install it?
 
Old 05-03-2009, 02:52 AM   #6
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Google is your friend. At some point you'll need to be able to look things up yourself and not rely on others to do this for you.
http://www.cpan.org/modules/INSTALL.html
As far as I'm concerned, you're on your own now. You should be able to do the rest without further help.
ciao,
jdk
 
Old 05-03-2009, 03:00 AM   #7
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by jdkaye View Post
Google is your friend. At some point you'll need to be able to look things up yourself and not rely on others to do this for you.
Correct. But imagick is not a Perl module, but a PHP extension. The starting point for a search should not be google but the developer's site. linux0, check the documentation here. There are three different methods for installation. The easy way is to install pecl, which takes care of downloading and installing the extension for you.
 
Old 05-03-2009, 03:04 AM   #8
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
Originally Posted by colucix View Post
Correct. But imagick is not a Perl module, but a PHP extension. The starting point for a search should not be google but the developer's site. linux0, check the documentation here. There are three different methods for installation. The easy way is to install pecl, which takes care of downloading and installing the extension for you.
You're quite correct, Colucix. Mea culpa. I misread a "c" as an "r". I found this site:
http://pecl.php.net/package/imagick/download/2.3.0RC1/

Anyway, I think my point was correct.
Ciao,
jdk
 
Old 05-03-2009, 03:16 AM   #9
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by jdkaye View Post
Anyway, I think my point was correct.
Yes, I agree. The problem is that a Linux newbie must learn to find documentation. One of the first things I teach when explaining linux to someone is to read the manual pages, to look for the official documentation and to read carefully the error messages. But I notice that most of them are really annoyed when they have to read something (especially if it is longer than 10 lines of text)!

Ciao.
 
Old 05-03-2009, 03:39 AM   #10
linux0
LQ Newbie
 
Registered: May 2009
Posts: 4

Original Poster
Rep: Reputation: 0
colucix, thank you very much for this documentation. Yes, i am a newbie. Also i'm searching the Google and i found this website by Google. Thanks jdkaye...
 
Old 05-03-2009, 03:55 AM   #11
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
Originally Posted by linux0 View Post
colucix, thank you very much for this documentation. Yes, i am a newbie. Also i'm searching the Google and i found this website by Google. Thanks jdkaye...
You're quite welcome. I hope this solves you're problem.
Ciao,
jdk
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Chroot SSH problem: ssh working, not SFTP & SCP. NaCo Linux - Security 3 02-01-2009 02:23 AM
SSH problem - ssh-add not respond FerkoPica Linux - Security 6 05-07-2006 03:47 PM
php-imagick support for Red Hat 8.0 JLDixon Linux - Software 0 08-10-2004 01:36 PM
RedHat 9 SSH Installation Problem phi_rad Linux - Newbie 6 10-31-2003 03:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration