This is a discussion on Debian glibc package within the Debian Linux Users forum forums, part of the Debian Linux category; --> Hi, I am using linux-2.6-glibc23-i686 in FC6 box to compile audio and video application, what is the equivelant glibc ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, I am using linux-2.6-glibc23-i686 in FC6 box to compile audio and video application, what is the equivelant glibc I can use in Debian? I searched following result, could not find similar glibc23 package. $ apt-cache search glibc abicheck - binary compatibility checking tool glibc-doc - GNU C Library: Documentation ja-trans - Japanese gettext message files kmtrace - a KDE memory leak tracer libc6 - GNU C Library: Shared libraries libc6-pic - GNU C Library: PIC archive library libdb1-compat - The Berkeley database routines [glibc 2.0/2.1 compatibility] libg++2.8.1.3-glibc2.2 - The GNU C++ extension library - runtime version libgetopt-java - GNU getopt - Java port libggz-dev - GGZ Gaming Zone: common utilities library - development files libggz2 - GGZ Gaming Zone: common utilities library libnss-ldap - NSS module for using LDAP as a naming service libnss-mdns - NSS module for Multicast DNS name resolution libnss-pgsql1 - name service switch module using PostgreSQL libstdc++2.10-glibc2.2 - The GNU stdc++ library linux-kernel-headers - Linux Kernel Headers for development linuxinfo - Displays extended system information manpages-dev - Manual pages about using GNU/Linux for development manpages-fr-dev - French version of the development manual pages manpages-pl-dev - Polish man pages for developers perdition-dev - Development libraries and headers for perdition perdition-ldap - Library to allow perdition to access LDAP based popmaps perdition-mysql - Library to allow perdition to access MySQL based popmaps perdition-odbc - Library to allow perdition to access ODBC based popmaps perdition-postgresql - Library to allow perdition to access PostgreSQL based popmaps python-utmp - python module for working with utmp winbind - service to resolve user and group information from Windows NT servers linux-libc-dev - Linux Kernel Headers for development Search from google find http://ftp.au.debian.org/debian/pool...2.7-10_all.deb How can I install the source code to a local rather than to /usr directory? Thank you. Kind Regards, Jim -- To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
| |||
| -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 04/15/08 06:57, hce wrote: > Hi, > > I am using linux-2.6-glibc23-i686 in FC6 box to compile audio and > video application, what is the equivelant glibc I can use in Debian? > > I searched following result, could not find similar glibc23 package. > > $ apt-cache search glibc [snip] > libc6 - GNU C Library: Shared libraries This is what you want. And libc6-dev. [snip] > > How can I install the source code to a local rather than to /usr directory? ???? Isn't that controlled by what you pass to ./configure? - -- Ron Johnson, Jr. Jefferson LA USA We want... a Shrubbery!! -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFIBJ3VS9HxQb37XmcRAhiDAKDOxWdFpQskfk84RFHVZ6 Et4O/bbQCfbEo9 CvJHUfzWjQ0rvyl+ytc/Y0Q= =y3cA -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
| ||||
| hce wrote: > Hi, > > I am using linux-2.6-glibc23-i686 in FC6 box to compile audio and > video application, what is the equivelant glibc I can use in Debian? > > I searched following result, could not find similar glibc23 package. > > $ apt-cache search glibc Try something like $apt-cache search --names-only glibc glibc-doc - GNU C Library: Documentation libc6-pic - GNU C Library: PIC archive library libg++2.8.1.3-glibc2.2 - The GNU C++ extension library - runtime version libstdc++2.10-glibc2.2 - The GNU stdc++ library glibc-doc-reference - GNU C Library: Documentation libc6 - GNU C Library: Shared libraries Basically, you are looking for libc6. glibc = "GNU C Library". glibc 2.x in Linux uses the soname libc.so.6. The soname is often abbreviated as libc6. > How can I install the source code to a local rather than to /usr > directory? apt-get source package_name The above command does not need any special permissions. You can unpack the source code in any directory you wish. You might also need another command such as apt-get build-dep package_name this will automatically install all the dependencies necessary for compiling the package_name. hth raju -- Kamaraju S Kusumanchi http://www.people.cornell.edu/pages/kk288/ http://malayamaarutham.blogspot.com/ -- To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |