Skip to content

Instantly share code, notes, and snippets.

@RafaelKa
Created September 13, 2013 21:59
Show Gist options
  • Save RafaelKa/6556648 to your computer and use it in GitHub Desktop.
Save RafaelKa/6556648 to your computer and use it in GitHub Desktop.
So and in this order is it possible to install Apache HTTPD 2.4.6-3 from SID repository whitout addeng this to sources list.
mkdir -p DEBS_FROM_SID/apache2.4
cd DEBS_FROM_SID/apache2.4
wget http://ftp.de.debian.org/debian/pool/main/e/eglibc/locales_2.17-92_all.deb
wget http://ftp.de.debian.org/debian/pool/main/e/eglibc/libc6_2.17-92+b1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr/libapr1_1.4.8-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr-util/libaprutil1_1.5.2-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr-util/libaprutil1-dbd-mysql_1.5.2-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr-util/libaprutil1-dbd-sqlite3_1.5.2-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/libt/libtool/libltdl7_2.4.2-1.3_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/u/unixodbc/libodbc1_2.2.14p2-5_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr-util/libaprutil1-dbd-odbc_1.5.2-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/p/postgresql-9.3/libpq5_9.3.0-2_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr-util/libaprutil1-dbd-pgsql_1.5.2-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/f/freetds/freetds-common_0.91-5_all.deb
wget http://ftp.de.debian.org/debian/pool/main/f/freetds/libsybdb5_0.91-5_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr-util/libaprutil1-dbd-freetds_1.5.2-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apr-util/libaprutil1-ldap_1.5.2-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/s/ssl-cert/ssl-cert_1.0.33_all.deb
wget http://ftp.de.debian.org/debian/pool/main/e/eglibc/glibc-doc_2.17-92_all.deb
wget http://ftp.de.debian.org/debian/pool/main/o/openssl-blacklist/openssl-blacklist_0.5-3_all.deb
dpkg -i \
locales_2.17-92_all.deb \
libc6_2.17-92+b1_amd64.deb \
libapr1_1.4.8-1_amd64.deb \
libaprutil1_1.5.2-1_amd64.deb \
libaprutil1-dbd-mysql_1.5.2-1_amd64.deb \
libaprutil1-dbd-sqlite3_1.5.2-1_amd64.deb \
libltdl7_2.4.2-1.3_amd64.deb \
libodbc1_2.2.14p2-5_amd64.deb \
libaprutil1-dbd-odbc_1.5.2-1_amd64.deb \
libpq5_9.3.0-2_amd64.deb \
libaprutil1-dbd-pgsql_1.5.2-1_amd64.deb \
libgcrypt11_1.5.3-2_amd64.deb \
freetds-common_0.91-5_all.deb \
libsybdb5_0.91-5_amd64.deb \
libaprutil1-dbd-freetds_1.5.2-1_amd64.deb \
libaprutil1-ldap_1.5.2-1_amd64.deb \
ssl-cert_1.0.33_all.deb \
glibc-doc_2.17-92_all.deb \
openssl-blacklist_0.5-3_all.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apache2/apache2-bin_2.4.6-3_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apache2/apache2-data_2.4.6-3_all.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apache2/apache2_2.4.6-3_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apache2/apache2-mpm-prefork_2.4.6-3_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/a/apache2/apache2-utils_2.4.6-3_amd64.deb
dpkg -i \
apache2-bin_2.4.6-3_amd64.deb \
apache2-data_2.4.6-3_all.deb \
apache2_2.4.6-3_amd64.deb \
apache2-utils_2.4.6-3_amd64.deb \
apache2-mpm-prefork_2.4.6-3_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment