Software :: "ubuntu 10.10" And Dependencies With The Library "libstdc++-libc6.1-1.so.2"

Nov 16, 2010

I have installed Ubuntu 10.10 and I need to run an old Mathematical SW called ADIFOR 3.0. My problem is that this SW is giving problems because has dependencies with the library ""libstdc++-libc6.1-1.so.2". I followed a million of possible ways to fix this problem...but no one works properly. What can I do? I have been 3 days trying to fix this problem and I do not know what I can do.

Alberto Jorr�n Rodr�guez
Departamento de Ingenieria de Sistemas y Automatica
Dpt. of Systems Engineering and Automatic Control
Universidad de Valladolid / University of Valladolid
Address: Facultad de Ciencias, c/ Real de Burgos s/n
47011 Valladolid, Spain
Tel: +34 647 670 581, Fax: +34 983 423161

View 4 Replies


ADVERTISEMENT

Red Hat :: Libstdc++-libc6.2-2.so.3 => Not Found?

Jul 29, 2010

I can't run a program on Centos 5.5 64 bit, ldd said "libstdc++-libc6.2-2.so.3 => not found". Is it missing standard c++ lib, and where I can download the package

View 4 Replies View Related

Software :: Missing Libstdc++-libc6.2-2.so.3: On Ubuntu?

Mar 16, 2011

i have ubuntu 10.04 LTS installed on dell laptop. Architecture is i686 . i want to install a software that requires above mentioned libraries. the software gives following error upon installation:-./decoder.i686-linux.public: error while loading shared libraries:libstdc++-libc6.2-2.so.3: cannot open shared object file: No such file or directory

View 2 Replies View Related

Fedora :: Unable To Install Libstdc++-libc6.2-2.so.3?

Feb 8, 2010

I am unable to find any resource pack for libstdc++-libc6.2-2.so.3. Does any body have exact URL for requird library file.

View 5 Replies View Related

OpenSUSE :: Suse 11: Libstdc++-libc6.2-2.so.3 Needed By Vnc-4.1.3-1.i386?

Dec 2, 2008

I am trying to install real vnc for linux in open suse 11 and get next error:

libstdc++-libc6.2-2.so.3 needed by vnc-4.1.3-1.i386

I have tried to install the compat packages for libstdc that appears in "install software" but it does not work. tell me the exact package I need to run this application ?

View 5 Replies View Related

Hardware :: Get Libstdc++.so.5 Library File - Install In RHEL5?

Feb 24, 2011

im trying to install db2 software in my RHEL5 which is running in my VmWare. im getting an error as : how to get libstdc++.so.5 library fthe required library file libstdc++.so.5 is not found on the system.so how to resolve this issue?

View 3 Replies View Related

General :: Where To Get Compat-libstdc++-33 And Libstdc++.so.5 Files For Symantec Backup Agent

Sep 9, 2010

I've just install RALUS (linux backup agent) from BE 2010 R2 by manually uploading it to the server and then extracting it followed by executing the install script.

After the install i deleted the extracted directory, when i go to my Media Server i cannot browse for this server eventhough i already put the IP address of this server.

Here's my diagnostic regarding this error:

Code:

file: No such file or directory

Where can i download that file so that i can SCP to the proper directory in my Fedora COre 5 x86 Linux server ?

View 4 Replies View Related

Programming :: Library Dependencies And G++

Apr 18, 2010

How to make simple games (snake, pong... nothing too fancy). I have completed making snake and now want to be able to distribute it. I built it using C++ and wxWidgets so it would be multi-platform. I'm able to compile it and run it in both Windows and Ubuntu using g++. In windows, I was able to distribute it by putting a *.dll file in the same folder as the executable. However in Linux, I don't understand what I need to do so that it would run on any installation of Ubuntu out of the "box". When I build it and try to run it in a different installation of Ubuntu (which has g++) it gives me an error saying that a particular library file was not found and Getlibs fails to find that library file.

Is there a way to build a project with G++ so that all the dependencies are either packaged in the executables or copied into the folder....?

View 3 Replies View Related

Fedora :: Library Access - Command Rpm -Uvh *.rpm This Fails Due To Many Dependencies

Nov 18, 2009

I installed FC 12, 64 bit yesterday. I downloaded open office and unpacked it. I then issued the command rpm -Uvh *.rpm this fails due to many dependencies Some of these are:

[Code]...

how to "link" or make these and presumably other libraries searchable.

View 1 Replies View Related

Fedora :: Install The Mysqltcl Library - Failing Due To Missing Dependencies

Oct 14, 2010

I'm running FC11 on an Intel 686 server and would like to solicit some help. I'm writing an Expect script to discover our lab network and would like to insert the results into a mySQL database. I've installed Apache/PHP/mySQL via the LAMPP distribution. I've hit a brick wall, however, in trying to install the mysqltcl library. how to install the library. I have downloaded an RPM, but installatiojn is failing due to missing dependencies: libmysqlclient.so.10 and libmysqlclient_r.so.10. And I have no luck in locating and installing those.

View 1 Replies View Related

Software :: ./configure Problem For Libsf Library Due To Apparently Missing Libdb Library ?

Aug 4, 2011

./configure script fails to configure libsf. Please check the following last few lines of configure script error.

But find command shows the following;

It seems the file libdb does exist. man dbopen displays man page for dbopen. I also tried to ln -s /usr/lib/libdb.a and libdb.so /lib dir but all were in vain.

View 6 Replies View Related

Programming :: SDL Static Library - Shared Library ?

Apr 7, 2009

I'm reading about shared, static, and dynamic libraries. What is SDL? Is it static, shared, or dynamic?

I always thought a library would be a lot of .h and .cpp files compiled separately into .o files and then if you compiled your own program you could use the -l parameter to link the library and it was all compiled together. Now I'm not so sure.

I don't even see any SDL .cpp files in my system anywhere. All I have are lots of SDL .h files in /usr/include/SDL and I don't really understand the code in them.

I'm making a wild guess here: SDL is a shared library. SDL itself is NOT compiled into my program, therefore SDL must be on any system my program tries to run on. When I compile and link SDL all it needs is the header files to know what SDL function and objects it can use. And then on every system it uses an already compiled SDL shared library thingy somewhere.

So... where is that part of SDL? All I can find are header files.

I'm thinking the advantage of shared libraries is that someone could say update SDL on their own system and take advantage of the new features without having to download new executables with the new version of SDL compiled into them for every program that uses SDL.

So if I'm making an editor and a game engine and they both use a lot of the same .cpp and .h files that I wrote and I'm tired of updating one and then the other and I need to turn them into a library, then a shared library might be kind of a silly solution. I could just make a static library. Right? Because it's not SDL. Nobody else is ever going to use this library.

View 6 Replies View Related

Ubuntu :: Lost Of Libstdc++.so.6?

Mar 17, 2010

I'm using Ubuntu Karmic on Lenovo S10-2 and unintentionally I've lost libstdc++.so.6. How can I recover it

View 4 Replies View Related

Ubuntu :: Cannot Install Libc6 Package

Aug 7, 2010

I was trying to install libc6_2.11.1-0ubuntu7.1_i386.deb but it is giving following errors:

Code: root anchit-desktop:/home/anchit/Desktop# dpkg -i libc6_2.11.1-0ubuntu7.1_i386.deb
dpkg: considering removing belocs-locales-bin in favour of libc6 ...
dpkg: no, cannot proceed with removal of belocs-locales-bin (--auto-deconfigure will help):

[Code]....

View 1 Replies View Related

Ubuntu :: Libstdc++.so.5 Compatibility In 9.10 And 10.4 Missing

Aug 19, 2010

I have software that requires libstdc++.so.5 and 9.10 and 10.04 both only come with libstdc++.so.6. I've searched for a compat-libstdc++-5 to no avail. Does anyone have an suggestion on how to find/install this package?

View 2 Replies View Related

Ubuntu :: Can't Install - Downgrading Packet (libc6)

Feb 17, 2010

I installed wrong version from this package (I didn't knew that libc6 was very important package) so now i get a lot of errors. I tracked the original version and downloaded it. I have it on my PC as .deb package but i can't install it because it's older version then the installed one. Normally, I would first remove the old package and then install new. But now I'm not sure because I don't know will my edubuntu work without the libc6 package. Version of my edbuntu is 7.04 installed on asus eee 900HA. I only have internet on my desktop PC.

View 2 Replies View Related

Ubuntu :: Error: Dependency Is Not Satisfiable: Libstdc++5

Feb 12, 2010

[URL].. when i try to install the .deb (cndrvcups-capt_1.90-1_i386.deb) i get Error: Dependency is not satisfiable: libstdc++5 i guess because we are now on ++6 how do i tell the install that, i looked in the control part of the .deb and can see where it is set but don't know how to change it and then build the .deb again (plus i don't know of that would work) or is there a way to fool the package into thinking ++5 is still installed?

View 2 Replies View Related

Ubuntu Installation :: Circular Dependency Between G++-4.4 And Libstdc++6-4.4-dev?

Jun 22, 2011

I want to install RTAI in UBUNTU Lucid 10.04 in my PC which has not direct Internet connection. I download all packages for installing build-essential with another PC. I have installed all of them. But when I want to install g++-4.4, it depends to libstdc++6-4.4-dev and vice versa.

View 1 Replies View Related

Fedora :: In Search Of Libstdc++6?

Feb 23, 2010

I'm using fedora 12 and I would like to install komodo editor, whose documentation specify there is a prerequisite : libstdc++6.but accordingly to the siteit seems that libstdc++ is part of the gcc project.and g++ is in the version 4.4.3, not in the version 6

View 3 Replies View Related

CentOS 5 :: Install New Libstdc++ >= 4.2 And GCC On 5.6?

May 10, 2011

1 - Is there a source of newer GNU gcc and g++ RPMs compatible with Centos 5.6? Fedora Core?

2 - Perhaps a more important questions is, for developing software for CentOs 5.x customers, should I stick with the gcc it came with? Or at least build the release with same gcc as target? I encountered the following error when trying to install latest Qt SDK:

./Qt_SDK_Lin64_offline_v1_1_en.run: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by ./Qt_SDK_Lin64_offline_v1_1_en.run)

To install the latest Qt SDK I need to upgrade libstdc++ package to 4.2 and probably GCC as well. I tried building gcc from source but quickly ran into dependency hell with GMP, MPFR, etc. The main reason I wanted to update to the latest version of Qt is Qt Creator is the best Linux IDE I have yet found ( coming from Visual Studio 2008 ).

CentOs 5.6 64-bit

rpm -qa |grep glibc
glibc-devel-2.5-58
glibc-2.5-58

[code]....

View 1 Replies View Related

Ubuntu Installation :: Can't Install Wine / Libc6-i386?

Mar 2, 2011

im trying to install wine1.3 and i need to upgrade libc6-i386 so i let apt-get try to do it, but it hangs at unpacking the deb, normally it has no problem no error occurs just sits there like its a huge deb but its only 3mbs. ive tryed using synaptic and doing the following.

sudo rm /var/lib/dpkg/lock
sudo dpkg --configure -a
sudo rm /var/cache/apt/archives/lock
sudo apt-get check
sudo apt-get clean

[Code]..

View 1 Replies View Related

Ubuntu Installation :: 10.10 To 11.04 - Upgrades Hangs At Configuring Libc6

May 18, 2011

I can not perform the upgrade. Installing upgrades hangs at configuring libc6 xscreensaver and xlockmore must be restarted before upgrading One or more running instances of xscreensaver or xscreensaver have been detected on this system. Because of incompatible library changes, the upgrade of the GNU libc library will leave you unable to authenticate to these programs. You should arrange for these programs to be restarted or stopped before continuing this upgrade, to avoid locking your users out of their current sessions. I've stopped xscreensaver it is the only session running. I will reboot and stop xscreensaver and then run the upgrade.

View 1 Replies View Related

Debian :: Installing Libc6 On 500-i386?

Sep 5, 2010

when I try to install cpp4.3 it says : cpp-4.3 depends on libc6 (>= 2.11); however version of libc6 on system is 2.7-18

when I try to install libc6 2.11.2-5_i386.deb it says : installing libc6 would break locales, and deconfigoration is not permitted

View 9 Replies View Related

Debian :: Updating Libc6 W/o Upgrading?

May 17, 2010

I run Etch. Yes, it's oldstable, but Lenny and Squeeze annoy the heck out of me. However, I'm trying to install the latest version (5.1) of Google Earth, but it requires >=glibc-2.4. Etch only offers 2.3.something. The earlier version of GE I have (4.3) does work, but is apparently no longer supported by Google as it fails to connect every time I fire it up. I found Lenny does have the required libc6 version. Can I update the libc6 packages by installing them directly (separately downloaded packages) or do I get the dependency hell that I want to avoid?

View 4 Replies View Related

General :: Updating Libc6 Lead To So Many?

Apr 18, 2011

Every time I try updating my system to the new Debian stable, I end up with a system that no longer recognizes my burner and even though autofs was not updated, it is restarted and all of a sudden there's no map for it. This usually takes nothing more than updating Amarok to "stable", because libc6 must be updated. I've tried updating different programs and this is the one factor that remained the same when the autofs no maps issue cropped up. I am considering trying again. But testing the system upgrade on another partition, so I can get it right before using it on my "real" system.

Last time I made an attempt, I was able to make my burner and floppy drives visible under "computer" by adding both to the fstab file, and was even able play DVDs, CDs and floppies but the K3B burner would not recognize the burner and said hal was used to detect, but HAL was not updated -- I'm absolutely sure of this. The other burner program (Gnome Baker) would at least recognize and even named my burner, but could not burn a disk. I did update HAL afterwards, hoping to help the situation, but it improved nothing and may have made things worse. When I rebooted the next day I had no disk access whatever.

As I mentioned in the title, I believe upgrading to libc6 led to the trouble. Don't understand why. When I upgraded from old oldstable to the new old stable last year nothing bad happened. Would skipping over new "stable" libc6 and going for the new unstable work? If I could just solve this one problem, I could easily upgrade Dreamlinux 3.5 from Debian 5.0 to 6.0.1. That's where it was when I upgraded most of the system, before recognizing there was a disk recognition and mounting problem.

View 4 Replies View Related

Ubuntu Installation :: Package Installer Closes When Trying To Install Libc6?

Jul 22, 2010

I have a laptop which has Xubuntu on a Wubi install. I have no way to connect my laptop to the internet, as I have dial-up on my desktop and my laptop doesn't have a dial-up modem. I need to install "libc6" as a dependency for libc6-dev, but when I double click the .deb (which I transferred using an sd card using my desktop, which has Vista) It shows the window for a couple seconds, and then closes. I already have libc6 installed, but it is an older version.

View 2 Replies View Related

Debian :: Installing Compat-libstdc++ In 4.0

Aug 20, 2010

How can I install compat-libstdc++ in Debian 4.0? I have extracted the libstdc++-libc6.2-2.so.3 file from compat-libstdc++-296-2.96-143.i686.rpm but while the libstdc++-libc6.2-2.so.3 is being used, it is giving an error as below:

Code:
/lib/tls/i686/cmov/libc.so.6: version `GLIBC_2.4' not found (required by /usr/lib/libstdc++-libc6.2-2.so.3)

View 5 Replies View Related

Software :: What Is Libstdc++-devel Rpm In Rhel 5

Jun 10, 2010

My query is I am not able to find the library libstdc++-devel in rpm -qa | grep compat what is the rpm of libstdc++-devel in RHEL 5.3 as I need for oracle 10g installation.

View 4 Replies View Related

Debian :: Setup Error - Libc6 Not Detected

Mar 9, 2016

I'm having another issue when trying to install a particular software package.

I'm trying to install a CityEngine 2015.2 trial and when I run the setup script using ./Setup, I get the following error:

Code: Select all[CityEngine 2015.2 Setup Error]
libc6 not detected

I tried reinstalling libc6 to no avail and searching the net for answers but couldn't find any solutions.

I parsed the script for that exception and found the following code:

Code: Select allelif [ "x` which dpkg-query 2>/dev/null `x" != "xx" ]
      then
         DetectedLibcVersion=` dpkg-query -s libc6 2>/dev/null | grep ^Provides: | cut -f2 -d'-' `
         if [ "x${DetectedLibcVersion}" = "x" ]
         then
            error_header
            echo "libc6 not detected" >&2
            exit 1
         fi

View 4 Replies View Related

Software :: Libc6 Debian Build Fails?

Feb 18, 2010

I am using my athlon64 machine running Debian squeeze i386 to build some packages optimized for a K6-2 machine. I decided to start with libc6 since most packages depend on it.

I installed the build dependencies via

Code:
apt-get build-dep eglibc

Then, as an unprivileged user, I downloaded the debianized source via

Code:
apt-get source eglibc

I changed to the source directory and ran

Code:
dpkg-buildpackage -rfakeroot -us -us
About 6 hours later, the build failed: [URL]

There were four config.log files:

Code:
./build-tree/i386-xen/config.log
./build-tree/i386-i686/config.log
./build-tree/i386-libc/config.log
./build-tree/i386-amd64/config.log

All of which end with exit status 0. They are also about 1600 lines each so I haven't read them entirely. If someone can tell me which one/ones is/are relevant, I will post it/them to a pastebin.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved