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 |
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.
|
 |
|
01-29-2005, 10:41 AM
|
#1
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Rep:
|
/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)
|
|
|
01-29-2005, 10:52 AM
|
#2
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
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.
|
|
|
01-29-2005, 11:14 AM
|
#3
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
Hello... Sorry about that... I am using debian.
|
|
|
01-29-2005, 01:41 PM
|
#4
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
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............
|
|
|
01-29-2005, 02:14 PM
|
#5
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
it should find it automatically, if not, try runnign "ldconfig"
|
|
|
01-29-2005, 02:28 PM
|
#6
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
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
|
|
|
01-29-2005, 02:35 PM
|
#7
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
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.
|
|
|
01-29-2005, 02:41 PM
|
#8
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
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....
|
|
|
01-29-2005, 02:57 PM
|
#9
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
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 ?
|
|
|
01-29-2005, 02:58 PM
|
#10
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
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.
|
|
|
01-29-2005, 03:03 PM
|
#11
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
Okay I can try that... Do you know how to create the symlink?
|
|
|
01-29-2005, 03:14 PM
|
#12
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
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
|
|
|
01-29-2005, 03:21 PM
|
#13
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
I did a ln -s /usr/lib/libpthread.so /usr/lib/libpthread.so.0
and this didnt work either........
|
|
|
01-29-2005, 03:34 PM
|
#14
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
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 03:35 PM.
|
|
|
01-29-2005, 03:36 PM
|
#15
|
Member
Registered: Jan 2005
Location: US
Distribution: Debian for now
Posts: 43
Original Poster
Rep:
|
yes it created a libpthread.so.0 file
u mean I shld just say ln -s /lib/libpthread.so /lib/libthread.so.0?
|
|
|
All times are GMT -5. The time now is 06:28 PM.
|
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
|
|