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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
03-08-2006, 09:31 AM
|
#1
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Rep:
|
apache2.0.55 installation problem
hey guys, hope someone can help me out, i can provide screenshots if you like?
i'm currently installing apache2.0.55....
i have gone as far as "configure" which brings me onto "make".. however when i type in "make" i get:
[laptop@linuxbox httpd-2.0.55]$ make
bash: make: command not found
im a complete newbie please someone help us out
thank you
|
|
|
03-08-2006, 09:52 AM
|
#2
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
guys i know this is a really simple problem i just need someone to have a look for me
|
|
|
03-08-2006, 09:56 AM
|
#3
|
Member
Registered: Feb 2004
Distribution: Fedora 9
Posts: 226
Rep:
|
try /bin/make or /sbin/make
|
|
|
03-08-2006, 09:56 AM
|
#4
|
Member
Registered: Feb 2004
Distribution: Fedora 9
Posts: 226
Rep:
|
try /bin/make or /sbin/make
|
|
|
03-08-2006, 09:59 AM
|
#5
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
[laptop@linuxbox httpd-2.0.55]$ /bin/make
bash: /bin/make: No such file or directory
[laptop@linuxbox httpd-2.0.55]$ /sbin/make
bash: /sbin/make: No such file or directory
thanks for your reply mate.. still nothing tho
|
|
|
03-08-2006, 10:10 AM
|
#6
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
anyone got any more ideas?
|
|
|
03-08-2006, 03:25 PM
|
#7
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
anyone?... please?
|
|
|
03-08-2006, 04:25 PM
|
#8
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
If make is missing, then install it using the software module in the Mandriva Control Center.
|
|
|
03-08-2006, 04:34 PM
|
#9
|
Member
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595
Rep:
|
If make isn't there, chances are the development environment for your distro isn't there. So, install the development environment first and then try to build Apache. What distro are you using?
In the meantime, aren't there Apache binaries you can download and install?
Peace...
|
|
|
03-08-2006, 05:32 PM
|
#10
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
cheers guys, im running mandriva linux 2006, i was kinda confused if MAKE a program in the OS than puts together the code or just a command inside the code to make itself.. if that makes any sense...
anyway i'll have a look around the system tomorrow and see what i can find
thanks guys
|
|
|
03-08-2006, 05:37 PM
|
#11
|
Member
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595
Rep:
|
Quote:
Originally Posted by linux-idiot
cheers guys, im running mandriva linux 2006, i was kinda confused if MAKE a program in the OS than puts together the code or just a command inside the code to make itself.. if that makes any sense...
|
make is a tool used to help ease building large programs. It will figure out what needs to be compiled and compile only that. It can do other stuff too, based on rules written in a makefile.
The configure script will build the makefile, which will tell make how to 'make', or build, the program.
So, if you don't have make installed chances are you don't have gcc and the other development tools installed. I'm just guessing, though.
Peace...
|
|
|
03-08-2006, 05:40 PM
|
#12
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
yea i didnt have gcc at first.. but i realised i needed that for ./configure so i installed it
i found a make-*.*.tar.gz in the rpmdrake so i'm installing that now along with some other development files i found
cheers for your help, i'll pick this stuff up soon, might take 10 goes but it will get into my head sooner or later :P
|
|
|
03-08-2006, 05:43 PM
|
#13
|
Member
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595
Rep:
|
Quote:
Originally Posted by linux-idiot
i found a make-*.*.tar.gz in the rpmdrake so i'm installing that now along with some other development files i found
|
Make sure you get binutils, which will include the linker, assembler, and other tools, so you can link the Apache executable you will "make".
Peace...
|
|
|
03-08-2006, 05:45 PM
|
#14
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
Quote:
Originally Posted by tomdkat
Make sure you get binutils, which will include the linker, assembler, and other tools, so you can link the Apache executable you will "make".
Peace...
|
ok will do.. cheers once again
|
|
|
03-08-2006, 05:51 PM
|
#15
|
Member
Registered: Mar 2006
Distribution: Mandriva Linux 2006
Posts: 44
Original Poster
Rep:
|
ok its now up and running perfectly.. thanks alot guys!
|
|
|
All times are GMT -5. The time now is 06:10 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|