LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General > LinuxAnswers Discussion
User Name
Password
LinuxAnswers Discussion This forum is to discuss articles posted to LinuxAnswers.

Notices


Reply
  Search this Thread
Old 07-29-2003, 09:33 AM   #16
asktoby
Member
 
Registered: Jul 2003
Location: Cardiff, England ;)
Distribution: Mandrake 9.1
Posts: 94

Rep: Reputation: 15

I'll often boot into root to install an app, because if I try to install it as a user with no success, I find myself thinking "maybe it's because I lack privelages". I suppose this is only the case on a new system when you're trying to configure lots of hardware/behavior. Once everything's running properly I imagine I'll almost never use root.
 
Old 08-26-2003, 10:03 PM   #17
Bullzeye
Member
 
Registered: Aug 2003
Location: Florida
Distribution: DEBIAN 3.x
Posts: 34

Rep: Reputation: 15
Article IS VERY informative, but does anyone have a list of packages needed for development? I must be missing some from my install and havent found a spot that actually lists everything needed to install packages whether tar or run etc.
 
Old 08-26-2003, 11:17 PM   #18
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
that depends on what is used in it. The bin utils, found in the /bin folder are certainly used a lot.
 
Old 08-27-2003, 12:01 AM   #19
Bullzeye
Member
 
Registered: Aug 2003
Location: Florida
Distribution: DEBIAN 3.x
Posts: 34

Rep: Reputation: 15
but what else? once I finish the install everything i d/l for drivers gives me errors for example the run file for mygforce2mx card say something about no(or missing) kernel headers

The nforce chip which controls my net,sound etc gives me some error with nvnet.o

I have tried this at least 20 times including full re-installs of debian
 
Old 08-27-2003, 07:30 PM   #20
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
you need the kernel-source files to build kernel modules

it is normally in /usr/src/linux-2.4?????? with a link to it named /usr/src/linux or /usr/src/linux-2.4
 
Old 09-01-2003, 12:51 PM   #21
Scruff
Member
 
Registered: Oct 2002
Location: Stoughton, MA
Distribution: Gentoo x86_64 & PPC
Posts: 949

Rep: Reputation: 30
Quote:
Originally posted by asktoby
I'll often boot into root to install an app...
To install an app as root you only need to open a terminal, type "su" (w/out quotes) and enter your password. No need to boot into that account. When you are done, type "exit" and you will become user again.
 
Old 11-12-2003, 10:26 AM   #22
today53
Member
 
Registered: Oct 2003
Location: sydney
Posts: 70

Rep: Reputation: 15
i wish id read the article a bit earlier, but then, i usually able to find answers from this board anyway.
 
Old 07-03-2004, 12:49 PM   #23
sercoe
LQ Newbie
 
Registered: Apr 2004
Posts: 1

Rep: Reputation: 0
Quote:
It needs to be run as root as this step will copy the compiled programs to your system. If you made it this far you should be able to run the program just as any other program installed on your system.
is the step he talking about make install?
 
Old 12-19-2004, 05:44 PM   #24
nextone
LQ Newbie
 
Registered: Aug 2004
Distribution: RED HAT 9
Posts: 6

Rep: Reputation: 0
Question Where are they installed?

Hi

Thank you for your help, so Where those commands placed the compiled files?
So how to uninstall (without doubts) a compiled program from source ?
It"s the same question with rpm''s.
It's a Big mysterioius stuff for me.

Thank you once again for your help.
 
Old 02-26-2005, 02:53 PM   #25
Fiddlerontheroo
LQ Newbie
 
Registered: Feb 2005
Posts: 3

Rep: Reputation: 0
installing from sources

I am having a lot of problems with installing from sources
some work some dont .
I can get past the untar and ./compile stages
The make gives +++ hasseles
getting error messages ++
Tried to install the MTL library
get the error message :

make[2]: Leaving directory `/home/my_name/mtl/
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/my_name/mtl/
make: *** [all-recursive] Error 1
[root@localhost mtl]#
same happens when i try to install 'freetype'

Any suggestions / help
Thanks
 
Old 03-04-2005, 08:40 AM   #26
trixx09
LQ Newbie
 
Registered: Mar 2005
Posts: 4

Rep: Reputation: 0
Angry Ubuntu?!?!?!?!

I have just installed UBUNTU LINUX over windowsXP, its realy nice and all... BUT!!! i cant play my mp3 files. HEPL!!
 
Old 03-25-2005, 11:00 AM   #27
rexdp
LQ Newbie
 
Registered: Mar 2005
Location: Boston
Distribution: Fedora 2
Posts: 3

Rep: Reputation: 0
My problems come at the ./configure stage. It would help to give some guidance about what happens when the config script fails. I find them forever asking for something I don't have, or worse, something that is installed, but the confiure script cannot find it. Half the time it is because there is an associated -devel rpm or file that is needed, but other times it insists that something that my system tells me is there is not there. What are some reasonable steps to solve that sort of problem.

I have not tried yum because my computer is not normally connected to the net, and, in fact, I got on this site to find out how to make it work on a house lan. So I have to fall back on days of chasing stuff, and usually give up.

slight change in direction:

Currently I am trying to install kdevelop, but it is hung up on parts of the qt system, and each time I try to fix something, I get a bigger list of missing requirements. Does anyone have a better choice of a working development IDE that I might be able to install without going crazy?

Thank you,

Rex
 
Old 05-03-2005, 05:27 AM   #28
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Rep: Reputation: Disabled
Though I posted it elsewhere I'll repeat some advice for SuSE/Novell users here as this is the more appropriate thread:

Do NOT use "make install".

Use
Code:
su
<password>
yast -i <package-name>
instead. This will run SuSEconfig and some or other local linker to keep your system coherent (it is RPM-based after all). You'll also be able to use Yast for further maintenance of your installed software and see your compiled program(s) there.

See also
http://forums.suselinuxsupport.de/in...&hl=suseconfig
http://forums.suselinuxsupport.de/in...showtopic=4343

Last edited by JZL240I-U; 05-03-2005 at 05:31 AM.
 
Old 05-03-2005, 06:13 AM   #29
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,121

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
Arrrrhhh .... how to put this politely.
Users of RPM-based systems might need to be little careful using this advice - as suggested by the previous poster.
Last time I looked at RH, it didn't install the kernel headers (by default), and it installed the (optional) sources to a not expected (i.e. "non-standard") location. This was my first Linux distro, and I needed to compile linmodem support.
What an intro... lots of "fun" that was.

Eventually took my medicine, and said good-bye to RPM-based systems forever.
Now a Gentoo user, and well used to source installs, this article seems fine for users that have a system that contains the expected system tool-chain.
Pretty hard to make an "all things to all people" article.
 
Old 05-06-2005, 10:59 AM   #30
rabig
LQ Newbie
 
Registered: May 2005
Location: st. louis
Posts: 1

Rep: Reputation: 0
Install from source

I read the article about how to install a new package. Iam sorry but Iam very new to Linux. I installed suse9.3 from a DVD. Everything runs pretty nice on the workstation. I am trying to install Apache2 webserver and I cannot do it. I downloaded instruction from several sources and cant do it. YAST cannot find Apache. I download the tar and unzip it as per the article if I do ./configure it works. But after I type Make it comes up with a message "No makefile found". It i do LS i can see a makefile there.

Is there any place i can get some specific instructions to install APACHE2 on a new SUSE9.3 install?

Thanks
 
  


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
compiling programs from source Frank Leone Linux - Newbie 3 10-30-2005 01:47 AM
why is compiling source programs under linux such a headache? guy24x Linux - Software 21 07-28-2005 06:04 AM
Compiling Programs from Source-help orisma Linux - Newbie 6 03-03-2005 07:57 AM
Compiling programs from source rpms coolfrog Linux - General 1 09-10-2004 03:17 PM
Compiling programs from source in Mandrake 10 AMD64 RC1 hydroxy Linux - Software 7 05-12-2004 03:55 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General > LinuxAnswers Discussion

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