LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 01-29-2005, 09:41 AM   #1
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Rep: Reputation: 15
/lib/libpthread.so.): version 'GLIBC_2.3.2' not found


How do I get this?

When I run my program from root it says this /lib/libpthread.so.0: version 'GLIBC_2.3.2' not found (required by myprogram)
 
Old 01-29-2005, 09:52 AM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
helps if you tell us what system you're on for a start... we're not psychic. go fill in your user profile please. http://www.linuxquestions.org/questi...on=editprofile

essentially you need to upgrade glibc by whatever means your unknown system might let you do that.
 
Old 01-29-2005, 10:14 AM   #3
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
Hello... Sorry about that... I am using debian.
 
Old 01-29-2005, 12:41 PM   #4
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
when I did where is I can see that the file is in the /usr/lib directory...

Myexefile which needs it is in /usr/bin/usr/bin/myexefile...

How do I tell that the file its looking for is in the /usr/lib? Please help............
 
Old 01-29-2005, 01:14 PM   #5
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
it should find it automatically, if not, try runnign "ldconfig"
 
Old 01-29-2005, 01:28 PM   #6
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
I tried ldconfig and still it doesnt work...

I am not sure if this make a difference but when I run the program it says /lib/libpthread.so.0 version GLIBC_2.3.2 not found

The file which I find using whereis libpthread.so the file is libpthread.so without the .0
 
Old 01-29-2005, 01:35 PM   #7
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
you don't seem to be having much luck with this myexefile thing... (it's a secret what it is i assume..... ) if you're installing random prebuilt binary files, you can't really expect an easy ride... compile whatever it is from source, or find a prebuilt RPM suitable for your distributon of linux.
 
Old 01-29-2005, 01:41 PM   #8
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
naah its not a secret

I am trying to run the HP's itanium ski simulator.

When u sar tar -zxvf it already opens it with /usr/bin and in one of my earlier posts I asked if I needed to use a program to install anything I was told there was no need for it.

I said tar -zxvf ski.tar.gz (put this file in the /usr/bin) when I logged in as root. Then it created another /usr/bin inside the already existing /usr/bin

It was giving the same error.. I thought I didnt place it in the right place because the usr/lib where the missing file is cant be found... I changed a lot of classpaths before again doing a tar -zxvf ski.tar.gz from the /root

Now I have the file in /usr/bin/ski but it still cant find that file...

I googled around and I find posts in different languages... none of which I understood...

I doono what to do....
 
Old 01-29-2005, 01:57 PM   #9
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
The software that I have is looking for a newer version and I have a older version of the libpthread file?

If so then I have to download an older version of the software.


I can do this however how do I remove these files?

Do I just delete them ?
 
Old 01-29-2005, 01:58 PM   #10
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
well if they are distributing a binary only, then you can try some nasty hacks to get it working. try creating a symlink from your real libpthread.so to the file it wants. with those symbols matching there shouldn't be any other incompatabilities.
 
Old 01-29-2005, 02:03 PM   #11
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
Okay I can try that... Do you know how to create the symlink?
 
Old 01-29-2005, 02:14 PM   #12
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
let me try doing ln -s /usr/lib/libpthread.so libpthread.so.0

I searched on google and found this on http://www.debian.org/doc/manuals/de...-advanced.html
 
Old 01-29-2005, 02:21 PM   #13
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by solutionseeker
let me try doing ln -s /usr/lib/libpthread.so libpthread.so.0

I searched on google and found this on http://www.debian.org/doc/manuals/de...-advanced.html
I did a ln -s /usr/lib/libpthread.so /usr/lib/libpthread.so.0

and this didnt work either........
 
Old 01-29-2005, 02:34 PM   #14
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
well it's after /lib/libpthread.so.0 so only that path will do. is there a file there already?

Last edited by acid_kewpie; 01-29-2005 at 02:35 PM.
 
Old 01-29-2005, 02:36 PM   #15
solutionseeker
Member
 
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43

Original Poster
Rep: Reputation: 15
yes it created a libpthread.so.0 file


u mean I shld just say ln -s /lib/libpthread.so /lib/libthread.so.0?
 
  


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
version GLIBC_2.3 not found error when cross compiled executable is run on targert sateeshgalla Programming 3 05-14-2008 10:42 AM
libpthread.so.0(GLIBC_2.3.2) feathersmcgraw Linux - Newbie 4 02-17-2005 02:09 AM
/usr/lib/libstdc++.so.5: version 'GLIBCPP_3.2.2' not found vidi Linux - Software 1 06-10-2004 09:26 AM
xauth: /lib/i686/libc.so.6: version 'GLIBC_2.3.2' not found yigald Linux - Newbie 0 02-20-2004 11:52 PM
version 'GLIBC_2.3' not found BadGuy Linux - Software 2 02-24-2003 07:50 AM

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

All times are GMT -5. The time now is 03:42 PM.

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