9down vote BOINC 7.2.33 requires GLIBC v2.15. That's a problem as only v2.13 exists even with the latest Debian install. Here's what I've found as the "solution" which means to me that BOINC should be downgraded to v2.13 IMO as I do not believe BOINC should be using any "experimental" version and expecting everyone to use it. Or is this a stability issue where Debian won't run it whereas Ubuntu is always an experiment?
============================ Q: How do I upgrade from GLIBC 2.13 to v2.15 with Debian 7? A: In fact you cannot do it easily right now (at the time I am writing this message). I will try to explain why. First of all, the glibc is no more <http://lwn.net/Articles/488778/>, it has been subsumed by the eglibc project <http://www.eglibc.org/home>. And, the Debian distribution switched to eglibc some time ago (see here<http://blog.aurel32.net/47>and there <http://lwn.net/Articles/332000/> and even on the glibc source package page <http://packages.qa.debian.org/g/glibc.html>). So, you should consider installing the eglibc package<http://packages.qa.debian.org/e/eglibc.html>through this kind of command: apt-get install libc6-amd64 libc6-dev libc6-dbg Replace amd64 by the kind of architecture you want (look at the package list here <http://packages.qa.debian.org/e/eglibc.html>). Unfortunately, the eglibc package version is only up to 2.13 in unstableand testing. Only the experimental is providing a 2.17 version of this library. So, if you really want to have it in 2.15 or more, you need to install the package from the experimental version (which is not recommended). Here are the steps to achieve as root: 1. Add the following line to the file /etc/apt/sources.list: deb http://ftp.debian.org/debian experimental main 2. Update your package database: apt-get update 3. Install the eglibc package: apt-get -t experimental install libc6-amd64 libc6-dev libc6-dbg 4. Pray... Well, that's all folks. =================== souce: http://stackoverflow.com/questions/10863613/how-to-upgrade-glibc-from-version-2-13-to-2-15-on-debian Jon Sonntag _______________________________________________ boinc_dev mailing list [email protected] http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev To unsubscribe, visit the above URL and (near bottom of page) enter your email address.
