Einige Programme unter GNU/ Linux benötigen in ihrer neusten Version des Öfteren unstable packages, welche man nur über kleine Umwege auf das eigene System bekommt. Wie auch der aktuelle Spotify Client für Debian. Das Installieren von unstable Paketen ist nicht immer der beste Weg, aber bei Libc6 kein Risiko.
Folgender Fehler wird geworfen:
abacus@lnxwks:~$ spotify spotify: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by spotify) spotify: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by /opt/spotify/spotify-client/Data/libcef.so) spotify: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.15' not found (required by /opt/spotify/spotify-client/Data/libcef.so)
Um diesen zu beheben sind i.d.R. folgende Schritte nötig:
1. Sources öffnen
abacus@lnxwks:~$ sudo nano /etc/apt/sources.list
2. Experimental sources hinzufügen
deb http://ftp.debian.org/debian experimental main deb http://ftp.debian.org/debian sid main
3. Ein Update durchführen und die fehlende Libc6 in der unstable Version nachinstallieren
abacus@lnxwks:~$ sudo apt-get update abacus@lnxwks:~$ sudo apt-get -t experimental install libc6-dev
4. Die Version überprüfen
abacus@lnxwks:~$ /lib/x86_64-linux-gnu/libc.so.6
5. Folgender Output beweist die neue Version:
GNU C Library (Debian GLIBC 2.19-4) stable release version 2.19, by Roland McGrath et al. Copyright (C) 2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Compiled by GNU CC version 4.8.3. Compiled on a Linux 3.14.5 system on 2014-06-23. Available extensions: crypt add-on version 2.1 by Michael Glad and others GNU Libidn by Simon Josefsson Native POSIX Threads Library by Ulrich Drepper et al BIND-8.2.3-T5B libc ABIs: UNIQUE IFUNC For bug reporting instructions, please see: <http://www.debian.org/Bugs/>.
Sorry, the comment form is closed at this time.