LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 01-07-2005, 05:40 AM   #31
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374

Alright, the script is looking for glib-config (similar to pkg-config). Try executing this:
glib-config --libs --cflags
 
Old 01-07-2005, 05:43 AM   #32
jhartney
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.0
Posts: 26

Original Poster
Rep: Reputation: 15
linux:~ # glib-config --libs --cflags
bash: glib-config: command not found

Is this one of the things that might be in the devel packages?
 
Old 01-07-2005, 05:48 AM   #33
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
Yeah, and that's why things are choking on you. You can run another find command to look for glib-config, but I don't think it'll be found. One thing to try is removing the devel, and reinstalling it. It's solely a development program, and I doubt it would be in the core/base package. If that doesn't fix it, then we can try to "fake it" with a small shell script (not ideal).
 
Old 01-07-2005, 05:52 AM   #34
jhartney
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.0
Posts: 26

Original Poster
Rep: Reputation: 15
i'm gonna try to install the glib-devel 1.2.10 first. I don't have that installed on my system yet for some reason
 
Old 01-07-2005, 05:56 AM   #35
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
Ok. There was a reply you made on the first page that led me to believe it was already installed. I guess I misunderstood, or Suse was wrong when it told you what packages were installed. Once it's installed, that should fix the problem.
 
Old 01-07-2005, 06:00 AM   #36
jhartney
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.0
Posts: 26

Original Poster
Rep: Reputation: 15
OK...i found glib-config:

linux:/home/jhartney # find / -name "glib-config"
/opt/gnome/bin/glib-config
/usr/local/bin/glib-config
/home/jhartney/Desktop/Trash/glib-1.2.2/glib-config
/home/jhartney/Desktop/Trash/glib-1.2.9/glib-config
find: /proc/18757/fd: No such file or directory
find: /proc/12356/fd: No such file or directory


But i'm getting the same exact error when i run ./configure from that last tarball you sent me
 
Old 01-07-2005, 06:03 AM   #37
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
Ok, now, execute echo $PATH
 
Old 01-07-2005, 06:06 AM   #38
jhartney
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.0
Posts: 26

Original Poster
Rep: Reputation: 15
linux:~ # echo $PATH
/usr/sbin:/bin:/usr/bin:/sbin:/usr/X11R6/bin
 
Old 01-07-2005, 06:09 AM   #39
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
Bingo! Type this, and then give it another try:
PATH=$PATH:/usr/local/bin:/opt/gnome/bin
 
Old 01-07-2005, 06:13 AM   #40
jhartney
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.0
Posts: 26

Original Poster
Rep: Reputation: 15
you are a badass....I owe you one...it looks like it works....just in time for the sun to come up


Thanks a lot for the help. You rule.
 
Old 01-07-2005, 06:13 AM   #41
jhartney
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.0
Posts: 26

Original Poster
Rep: Reputation: 15
now i just gotta figure out how/why all that crap works..haha...any good online resources?
 
Old 01-07-2005, 06:24 AM   #42
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
Alright, glad I could help, but there's still one other thing left to do.

That change will only stay until you log out of that shell. In fact, it wouldn't be present if you switched to another shell right now. So, we need to make it permanent. You'll need to modify one of two files.

If you are the only user of the system, open ~/.bash_profile in a text editor
If you're not the only person using the system, open /etc/profile in a text editor (you'll have to be root to modify the file in this case)

Look for a line similar to the one I told you to type. If you find one, just tack on the :/usr/local/bin:/opt/gnome/bin to the end. If you don't find a similar line, scroll to the bottom of the file and add this:
export PATH=$PATH:/usr/local/bin:/opt/gnome/bin

Save, exit, and then the change will be automatic next time you log in.

As for an intro to linux in general, I've heard lots of people like the Rute User's Tutorial. You can find a copy of it here:
http://burks.brighton.ac.uk/burks/linux/rute/

It looks like it covers just about everything. Otherwise, a Linux admin book or something similar at the bookstore can get you going. O'Reilly books tend to be good.
 
Old 01-07-2005, 06:32 AM   #43
jhartney
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.0
Posts: 26

Original Poster
Rep: Reputation: 15
all righty....thanks again...take care
 
  


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
glib-2.0 problems. Sjonnie48 Mandriva 5 11-26-2005 12:34 AM
glib problems njjk DamnSmallLinux 2 04-22-2005 03:18 PM
glib problems migu Mandriva 3 02-26-2005 05:02 PM
[GLIB] Problems Installing GLIB ThA_eLMo_GoD Linux - Newbie 2 09-04-2004 05:27 PM
Problems relating to glib 1.2.10 and glib 1.2.9 p3ngu!n Mandriva 10 05-23-2004 09:03 PM

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

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