LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-14-2008, 05:56 PM   #1
Smittles
LQ Newbie
 
Registered: May 2008
Posts: 19

Rep: Reputation: 0
./configure doesn't do anything useful


Sorry for such a newbie question, but I can't get a package to compile at all. I opened a terminal on the directory (Using Kubuntu) where I have software I want to install. From everything I've read online, I'm doing this right. I type ./configure, and I get this response:
user@itubuntu:~/Desktop/gd-rppng-0.9$ ./configure
bash: ./configure: No such file or directory


Can anybody point me in the right direction?

Thanks
\smittles
 
Old 05-14-2008, 06:18 PM   #2
Smittles
LQ Newbie
 
Registered: May 2008
Posts: 19

Original Poster
Rep: Reputation: 0
I should mention I'm trying to install pre-requisits for Big Sister, which include SpeedyCGI, URI, SNMP_Session, libnet, rrdtool, libwww-perl, and gd-rppng.

As far as I know, they should be simple enough to install. There were no special instructions that came with them. I don't know about installing .pm files(or what Makefile.PL is), or if this stuff requires special attention or instruction.

Any and all help is appreciated.

Oh, and I'm attempting to do all this through the Kubuntu GUI, with the terminal window.

Thanks.
 
Old 05-14-2008, 06:22 PM   #3
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,302
Blog Entries: 61

Rep: Reputation: Disabled
Kubuntu doesn't have any compilers, etc, installed by default. You can get them using this command in the terminal:
Code:
sudo apt-get install autoconf automake build-essential
 
Old 05-14-2008, 06:28 PM   #4
AceofSpades19
Senior Member
 
Registered: Feb 2007
Location: Chilliwack,BC.Canada
Distribution: Slackware64 -current
Posts: 2,079

Rep: Reputation: 58
You should install stuff through your package manager as much as possible
 
Old 05-14-2008, 06:28 PM   #5
Smittles
LQ Newbie
 
Registered: May 2008
Posts: 19

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by brianL View Post
Kubuntu doesn't have any compilers, etc, installed by default. You can get them using this command in the terminal:
Code:
sudo apt-get install autoconf automake build-essential
Thanks, but these are already set to their most recent versions... I tried to install them, and I get this:

autoconf is already the newest version.
autoconf set to manually installed.
automake is already the newest version.
build-essential is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
 
Old 05-14-2008, 06:36 PM   #6
Smittles
LQ Newbie
 
Registered: May 2008
Posts: 19

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by AceofSpades19 View Post
You should install stuff through your package manager as much as possible
I would if I could, but I can't find definitive answers for these packages

All of the instructions I see for package manager require a repository to be set up. I can't do that to my desktop, can I?
 
Old 05-14-2008, 06:39 PM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,369

Rep: Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753Reputation: 2753
The repositories are already setup on the web. There should be a file somewhere that tells you which ones you are setup for.
 
Old 05-14-2008, 06:39 PM   #8
AceofSpades19
Senior Member
 
Registered: Feb 2007
Location: Chilliwack,BC.Canada
Distribution: Slackware64 -current
Posts: 2,079

Rep: Reputation: 58
Quote:
Originally Posted by Smittles View Post
I would if I could, but I can't find definitive answers for these packages

All of the instructions I see for package manager require a repository to be set up. I can't do that to my desktop, can I?
Go to Applications > Add/Remove Programs, that is the package manager, or at least one of the interfaces for it.
 
Old 05-14-2008, 06:43 PM   #9
Smittles
LQ Newbie
 
Registered: May 2008
Posts: 19

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by AceofSpades19 View Post
Go to Applications > Add/Remove Programs, that is the package manager, or at least one of the interfaces for it.
Yes, I've done that, but I can't point to the folders on my desktop, and I wouldn't know which files to point to, either.
 
Old 05-14-2008, 06:45 PM   #10
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 Smittles View Post
I don't know about installing .pm files(or what Makefile.PL is), or if this stuff requires special attention or instruction.
Makefile.PL is a little perl program which generates a Makefile to build a perl module. The .pm extension stats for perl module. Generale installation instructions in this case are:
Code:
perl Makefile.PL
make
make test
make install
Anyway, as suggested, you can try to install binary packages. On the Big Sister site, debian packages and RPMs are available.
 
Old 05-14-2008, 06:57 PM   #11
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,302
Blog Entries: 61

Rep: Reputation: Disabled
Ah! I didn't see your second post, mentioning it was perl stuff you were trying to install.
 
Old 05-14-2008, 07:42 PM   #12
AceofSpades19
Senior Member
 
Registered: Feb 2007
Location: Chilliwack,BC.Canada
Distribution: Slackware64 -current
Posts: 2,079

Rep: Reputation: 58
Quote:
Originally Posted by Smittles View Post
Yes, I've done that, but I can't point to the folders on my desktop, and I wouldn't know which files to point to, either.
No, you use it to install stuff from the internet. In Linux you usually use the package manager to download and install stuff for you
 
Old 05-14-2008, 08:15 PM   #13
eggixyz
Member
 
Registered: Apr 2008
Posts: 310

Rep: Reputation: 30
Hey There,

A lot of GNU and FSF software source use the standard configure script, but it's not a good idea to assume that it exists. If the source code you're downloading is decently maintained, it should contain a README file, INSTALL file and/or both. Basically, if there's not documentation available online for the build, you'll need to investigate the directory you unpack you source code into. If there's no script or file named configure in there, it's impossible to run.

Just best practice always read the README

, Mike
 
Old 05-14-2008, 09:06 PM   #14
Smittles
LQ Newbie
 
Registered: May 2008
Posts: 19

Original Poster
Rep: Reputation: 0
Thanks all, for the helpful comments. I will have to investigate this more fully. I was hoping to also find somebody who has used Big Sister before... anybody... anybody?

Anyway, I'm out for the day, but I'll bump this thread tomorrow if I run into troubles.

Thanks again.

-Smittles
 
Old 05-14-2008, 09:21 PM   #15
eggixyz
Member
 
Registered: Apr 2008
Posts: 310

Rep: Reputation: 30
Hey There,

I've installed it and used it. Maybe I can help you out if you have issues.

Best wishes and keep on chuggin' - what seems alien to you now will be old hat sooner than later

, Mike
 
  


Reply



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
./configure fails with: libz... configure: error: not found. erpe Linux - Software 17 10-11-2006 05:56 PM
[root@Linuxboy magicolor2430DL-1.1.0]# ./configure ./configure: No such file or ... anseK Mandriva 7 01-02-2006 04:21 PM
Configure dhcpd (Configure DHCP Server) hanserver2004 General 1 08-16-2004 01:39 PM
How to use GNU autoconf to generate a new configure from configure.in ?? vanhelsing Programming 5 08-05-2004 10:02 AM
configure: error: when trying to install / configure new software ? met tomfer007 Linux - Software 1 07-25-2004 03:52 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:06 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