Re: [newbie] Make command....

2002-11-14 Thread Aaron
A common problem I used to have is not being root when configuring. The
configure script checks your  system etc and if you are not root often
it fails. Also alway read the INSTALL file which will tell you lots of
useful information, what configure does etc. 
lol


On Thu, 2002-11-14 at 01:13, Radosaw Krl wrote:
   
 
   Hello everyone , i don't understand where i have made a mistake , i want 
   to use a new program , downloaded from internet , for example : game called
 
   pacman or something else , it is not an installation version all i have to do  
 
   is give two simple commands in shell first - ./configure and than make 
   when I give make command my shell respond me that no makefiles was found 
 
   but it is impossible i saw them they are in the right directory what to do ?
   
   Could you help me ?
 
 
   Ps: I want to thank all the people who had hellped me with  using console
  
  problem.
 
 
 
  
 Arvo.
 
 
 

 Want to buy your Pack or Services from MandrakeSoft? 
 Go to http://www.mandrakestore.com




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Make command....

2002-11-14 Thread Stephen Kuhn
On Thu, 2002-11-14 at 23:28, Aaron wrote:
 A common problem I used to have is not being root when configuring. The
 configure script checks your  system etc and if you are not root often
 it fails. Also alway read the INSTALL file which will tell you lots of
 useful information, what configure does etc. 
 lol
 

Good points to make - but sometimes, the programmer is lazy and they
use the generic GNU's README, INSTALL, AUTHORS, NEWS and other text
files without bothering to edit them for any specific or extra
information that the end-user might need for their specific
system...which is a problem, but overall, it's a matter of reading
everything and anything...

-- 
Thu Nov 14 22:50:00 EST 2002


|____  |
|   /  \ /| |'-.   |
|  .\__/ || |   |  |
|   _ /  `._ \|_|_.-'  |
|  | /  \__.`=._) (_   |kuhn media australia
|  |/ ._/  || |http://kma.0catch.com
|  |'.  `\ | | |stephen kuhn
|  ;/ / | | |email: [EMAIL PROTECTED]
|  smk  ) /_/| |.---.| |mobile: 0410-728-389
|  '  `-`'   |linux user:267497


e-credibility: the non-guaranteeable likelihood that the electronic data
you're seeing is genuine rather than somebody's made-up crap.
- Karl Lehenbauer


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Make command....

2002-11-13 Thread Radosaw Krl


Hello everyone , i don't understand where i have made a mistake , i want 
to use a new program , downloaded from internet , for example : game called
 
pacman or something else , it is not an installation version all i have to do  
 
is give two simple commands in shell first - ./configure and than make 
when I give make command my shell respond me that no makefiles was found 
 
but it is impossible i saw them they are in the right directory what to do ?

Could you help me ?


Ps: I want to thank all the people who had hellped me with  using console
  
   problem.



   
 Arvo.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Make command....

2002-11-13 Thread Stephen Kuhn
On Fri, 2002-11-15 at 04:43, Gary Armstrong wrote:
 On Wednesday 13 November 2002 09:12 pm, Tony Castro wrote:
  you have to do make install no??
 
 Yes you do, but if Arvo is quoting the error correctly no makefile found,
 then its likely configure failed.
 
 Gary
 
If you want to get gutsy about doing a compilation, you can always try
doing this while in the directory that contains the source code:

rm -rf *.cache
aclocal
automake
autoconf
automake
...then
./configure
make
make install

...sometimes coders are a tad sleepy and they forget things...

-- 
Thu Nov 14 17:00:00 EST 2002


|____  |
|   /  \ /| |'-.   |
|  .\__/ || |   |  |
|   _ /  `._ \|_|_.-'  |
|  | /  \__.`=._) (_   |kuhn media australia
|  |/ ._/  || |http://kma.0catch.com
|  |'.  `\ | | |stephen kuhn
|  ;/ / | | |email: [EMAIL PROTECTED]
|  smk  ) /_/| |.---.| |mobile: 0410-728-389
|  '  `-`'   |linux user:267497


Who loves me will also love my dog.
-- John Donne


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] make: command not found

2001-11-09 Thread Michael

Anuerin G. Diaz wrote:
 
 you have either of the following scenarios:
 
 1) you dont have the make utility. try to look for it in the following
 directories
 
/usr/bin  /usr/local/bin
 
if its not still there then install the package (if you dont have the
 installation cd then go to rpmfind.net adn search for 'make').
 
 2) you have it and dont have execute permissions. if this is the case then
 change the file attrributes by using the chmod command (i think you have to be
 root).
 
chmod 766 /location/of/the/file/make

This gives read-write permission, read-execute is 0755 i beleive.

 
 3) make exists in your system with the appropriate permission but isnt in your
 path. try adding the following in your .bashrc file:
 
 export PATH=$PATH:insert directory containing make here
 
 or if make is (usually ) installed in /usr/bin , reverse the order of $PATH
 and the directory containing make.
 
 HTH.
 
 g.sanders wrote:
 
  while trying to compile a program, I ran into this:
 
  theano@localhost pari]$ make gp
  bash: make: command not found
 
  how do I fix this?
 
 
 --
 
 Programming, an artform that fights back.
 
 =
 Anuerin G. Diaz
 Design Engineer
 Millennium Software, Incorporated
 25/F Equitable-PCI Tower
 ADB Avenue cor. Poveda St.
 Ortigas Center, Pasig City
 
 Tel# 638-3070 loc. 72
 Fax# 638-3079
 =
 
   
 Want to buy your Pack or Services from MandrakeSoft?
 Go to http://www.mandrakestore.com



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] make: command not found

2001-11-08 Thread Anuerin G. Diaz


you have either of the following scenarios:

1) you dont have the make utility. try to look for it in the following
directories

   /usr/bin  /usr/local/bin

   if its not still there then install the package (if you dont have the
installation cd then go to rpmfind.net adn search for 'make').

2) you have it and dont have execute permissions. if this is the case then
change the file attrributes by using the chmod command (i think you have to be
root).

   chmod 766 /location/of/the/file/make

3) make exists in your system with the appropriate permission but isnt in your
path. try adding the following in your .bashrc file:

export PATH=$PATH:insert directory containing make here

or if make is (usually ) installed in /usr/bin , reverse the order of $PATH
and the directory containing make.

HTH.




g.sanders wrote:

 while trying to compile a program, I ran into this:

 theano@localhost pari]$ make gp
 bash: make: command not found

 how do I fix this?


--

Programming, an artform that fights back.

=
Anuerin G. Diaz
Design Engineer
Millennium Software, Incorporated
25/F Equitable-PCI Tower
ADB Avenue cor. Poveda St.
Ortigas Center, Pasig City

Tel# 638-3070 loc. 72
Fax# 638-3079
=





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] make command not found - where is it?

2001-07-28 Thread Michael D. Viron

This means that you haven't installed the make-*.i586.rpm, which should
be included on your CD(s).

Michael

--
Michael Viron
Registered Linux User #81978
Senior Systems  Administration Consultant
Web Spinners, University of West Florida

At 04:42 PM 07/28/2001 +0200, [EMAIL PROTECTED] wrote:
I installed Linux Mandrake 7.0 Complete on my PC, it works so far.

I now wanted to install a new application I got from the internet as tar
file. After untaring it I followed the installation instruction. The first
step was to type 'make'. And what happened? I got the error message:

 'bash: make: command not found'

I issued a find to look for the make command, but there is no make command.
I tried the same on a RedHat installation I have and it worked there and by
the way the make command there is under /usr/bin.

But under Mandrake there is nothing.

I think I must be doing somethin wrong, I don't believe, that it is not
possible to install applications using make under Mandrake Linux complete.

Can somebody help?

-- 
GMXler aufgepasst - jetzt viele 11 New WebHosting Pakete ohne
Setupfee + 1 Monat Grundgebuehrbefreiung!
http://puretec.de/index.html?ac=OM.PU.PU003K00717T0492a






Re: [newbie] make command not found - where is it?

2001-07-28 Thread etharp

as I remember it, in 7.0 unless you did the developer (as opposed to server 
or desktop/workstation) you might not have gotten all the packages. I believe 
you can upgrade from the cds. 

On Saturday 28 July 2001 10:42, [EMAIL PROTECTED] wrote:
 I installed Linux Mandrake 7.0 Complete on my PC, it works so far.

 I now wanted to install a new application I got from the internet as tar
 file. After untaring it I followed the installation instruction. The first
 step was to type 'make'. And what happened? I got the error message:

  'bash: make: command not found'

 I issued a find to look for the make command, but there is no make command.
 I tried the same on a RedHat installation I have and it worked there and by
 the way the make command there is under /usr/bin.

 But under Mandrake there is nothing.

 I think I must be doing somethin wrong, I don't believe, that it is not
 possible to install applications using make under Mandrake Linux complete.

 Can somebody help?




[newbie] make command not found

2001-06-11 Thread Oren Magid

Hi everyone,

I just recently installed 7.1.  I'm trying to install a program that 
requires me to run make  make install but I'm told that the make 
command is not found.  I think this might be because I couldn't insert the 
second cd, installation sources cd, during installation.  My cdrom just 
wouldn't open!!  What can I do about this now?  I will obviously need this 
command and whatever else I'm missing.  Any help would be appreciated.  
Thanks,

Oren
_
Get your FREE download of MSN Explorer at http://explorer.msn.com





Re: [newbie] make command not found

2001-06-11 Thread Sridhar Dhanapalan

For some silly reason Mandrake 8's installation doesn't install the 
packages needed for compiling. Go to rpmfind.net and look for a 
Mandrake package called make.

On Tue, 12 Jun 2001 01:39, Oren Magid wrote:
 Hi everyone,

 I just recently installed 7.1.  I'm trying to install a program that
 requires me to run make  make install but I'm told that the
 make command is not found.  I think this might be because I
 couldn't insert the second cd, installation sources cd, during
 installation.  My cdrom just wouldn't open!!  What can I do about
 this now?  I will obviously need this command and whatever else I'm
 missing.  Any help would be appreciated. Thanks,

 Oren

-- 
Sridhar Dhanapalan.
There are two major products that come from Berkeley:
LSD and UNIX. We don't believe this to be a coincidence.
-- Jeremy S. Anderson





Re: [newbie] make - command not found

2001-01-28 Thread s

Yep, and a make too.  Get 'em both.
-s

On Sunday 28 January 2001 08:16 pm, you wrote:
 Someone please correct me if I'm out of sync, but
 I believe there is an app to install called automake,
 one can do a search for the rpm on

 http://rpmfind.net

 On Sunday 28 January 2001 02:08 pm, so spoke lionel dausab:
  I am in Moscow and running linux mandrake 7.1.  I
  downloaded dozen programs but failed to make/compile
  them.  the system is saying make not found.  there is
  makeg but even that reports make not found.
 
  __
  Do You Yahoo!?
  Yahoo! Auctions - Buy the things you want at great prices.
  http://auctions.yahoo.com/




Re: [newbie] make - command not found

2001-01-28 Thread dausab

 I notice that automake is for mandrake 7.2.  How should I install the
 program in mandrake 7,1





Re: [newbie] make - command not found

2001-01-28 Thread Tom Brinkman

On Sunday 28 January 2001 02:08 pm, lionel dausab wrote:
 I am in Moscow and running linux mandrake 7.1.  I
 downloaded dozen programs but failed to make/compile
 them.  the system is saying make not found.  there is
 makeg but even that reports make not found.

  http://mandrakeuser.org/  is your best friend.  Take a look at 
http://mandrakeuser.org/basics/bsource.html  and pay particular attention 
to  "Needed Packages"

-- 
Tom Brinkman[EMAIL PROTECTED]Galveston Bay




Re: [newbie] make command not found in Bash

2000-07-09 Thread Hellmut

When I try to execute the make command as normal user, I get an error message
saying, that only root is allowed to run this command.


 Any user should be able to use make, not just root.
  Hi Kenny!
 
  You have to be root to run the make command...
 
 
 
   I'm trying to compile and install a new kernel, and when I go to the
   "make xconfig" command, Bash doesn't recognize make.  Also, the command is
   not located in /bin.  Do I need to update Bash?  Any suggestions?
  
   Kenny
 
  --
  ,
 
  (o o)
  +--oOOO--(_)---+
  |  |
  |H E L L M U T |
  |  |
  | www.fegefeuer-webzine.de |
  |  |
  +-0OOO-+
| _ | _ |
 | | | |
 | | | |
 ooO Ooo

--
,

(o o)
+--oOOO--(_)---+
|  |
|H E L L M U T |
|  |
| www.fegefeuer-webzine.de |
|  |
+-0OOO-+
  | _ | _ |
   | | | |
   | | | |
   ooO Ooo






Re: [newbie] make command not found in Bash

2000-07-09 Thread Paul

On Sun, 9 Jul 2000, Hellmut wrote:

When I try to execute the make command as normal user, I get an error message
saying, that only root is allowed to run this command.

This is not what I have experienced. I can run make as user without a
problem. There must be something wrong with your permissions on it.

Make here is in /usr/bin/make

As root try this one:

chmod a+x /usr/bin/make

and then see if you can "make" it work.

Paul

-- 
In every loss there is gain,
as there is gain in every loss...

)0([[EMAIL PROTECTED]])0(
http://nlpagan.net -  ICQ 147208
Registered  Linux  User   174403




Re: [newbie] make command not found in Bash

2000-07-08 Thread Hellmut

Hi Kenny!

You have to be root to run the make command...



 I'm trying to compile and install a new kernel, and when I go to the
 "make xconfig" command, Bash doesn't recognize make.  Also, the command is
 not located in /bin.  Do I need to update Bash?  Any suggestions?

 Kenny

--
,

(o o)
+--oOOO--(_)---+
|  |
|H E L L M U T |
|  |
| www.fegefeuer-webzine.de |
|  |
+-0OOO-+
  | _ | _ |
   | | | |
   | | | |
   ooO Ooo








Re: [newbie] make command not found in Bash

2000-07-08 Thread A V Flinsch

On Sat, 08 Jul 2000, you wrote:
 I'm trying to compile and install a new kernel, and when I go to the 
 "make xconfig" command, Bash doesn't recognize make.  Also, the command is 
 not located in /bin.  Do I need to update Bash?  Any suggestions?

What type of install did you do? You might need to install make from the cd, as
it should be in /usr/bin/

-- 
Alex
(Go easy on me, I'm a COBOL programmer in real life)




Re: [newbie] make command not found in Bash

2000-07-08 Thread kdm

Any user should be able to use make, not just root.
 Hi Kenny!
 
 You have to be root to run the make command...
 
 
 
  I'm trying to compile and install a new kernel, and when I go to the
  "make xconfig" command, Bash doesn't recognize make.  Also, the command is
  not located in /bin.  Do I need to update Bash?  Any suggestions?
 
  Kenny
 
 --
 ,
 
 (o o)
 +--oOOO--(_)---+
 |  |
 |H E L L M U T |
 |  |
 | www.fegefeuer-webzine.de |
 |  |
 +-0OOO-+
   | _ | _ |
| | | |
| | | |
ooO Ooo




[newbie] make command recompiling kernel...

2000-03-05 Thread -- XE --

I  have  Yamaha YMF-724 PCI sound card. The only way to make that card
work in linux is using OSS driver from Open Sound System.
But i have a problem when I try to install that driver:

1. I  have  an error message during install about kernel incompatibility,
   and  refer  to  OSS  documentation,  I  must recompiling my kernel and
   enable  "CONFIG_MODVERSIONS"  using  "make" command. But when I try to
   type that command, linux said that make comand is not available. And I
   was confuse too about how to enable CONFIG_MODVERSIONS in Mandrake.

2. Still from the OSS documentation, I must do the following step:
 rm /usr/src/linux/include/linux/modversions.h
 rm. bla... bla... bla...
   And I can't find the "/usr/src/linux" directory on my hardisk.

Is  there  someone  can help me why "make" command and "usr/src/linux"
directory   isn't  available..???  or  maybe  I  forget  something  in
installation procedure...??

Thanks in advance.

 -- XE --