Changes between Initial Version and Version 1 of LinuxGLIBC


Ignore:
Timestamp:
02.04.2015 23:47:56 (9 years ago)
Author:
Alloc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LinuxGLIBC

    v1 v1  
     1Example for Debian Wheezy with libraries from testing:
     2
     3* ''/etc/apt/preferences.d/pinning'':
     4{{{
     5Package: *
     6Pin: release a=stable
     7Pin-Priority: 700
     8
     9Package: *
     10Pin: release a=testing
     11Pin-Priority: 650
     12
     13Package: *
     14Pin: release a=unstable
     15Pin-Priority: 600
     16}}}
     17* ''/etc/apt/sources.list'': If it looks like this:
     18{{{
     19deb http://ftp.de.debian.org/debian/ wheezy main contrib non-free
     20deb-src http://ftp.de.debian.org/debian/ wheezy main contrib non-free
     21
     22deb http://security.debian.org/ wheezy/updates main contrib non-free
     23deb-src http://security.debian.org/ wheezy/updates main contrib non-free
     24
     25deb http://ftp.de.debian.org/debian/ wheezy-updates main contrib non-free
     26deb-src http://ftp.de.debian.org/debian/ wheezy-updates main contrib non-free
     27}}}
     28* Add this (make sure the hosts are the same): ''/etc/apt/sources.list.d/testing.list'':
     29{{{
     30deb http://ftp.de.debian.org/debian/ testing main contrib non-free
     31deb-src http://ftp.de.debian.org/debian/ testing main contrib non-free
     32}}}
     33* Update and install libraries:
     34{{{
     35apt-get update
     36apt-get -t testing install libc6 libc6-dev libc6-i386 libc6:i386 libc6-i686:i386 locales
     37}}}
     38
     39Sources:
     40* http://jaqque.sbih.org/kplug/apt-pinning.html
     41* http://stackoverflow.com/questions/10863613/how-to-upgrade-glibc-from-version-2-13-to-2-15-on-debian