Skip to content

Instantly share code, notes, and snippets.

@athirn
Created January 21, 2013 22:47
Show Gist options
  • Save athirn/4590244 to your computer and use it in GitHub Desktop.
Save athirn/4590244 to your computer and use it in GitHub Desktop.
installing Apache 2.4 on quantal using Apache 2.4 packages from the Debian experimental repository
#!/bin/bash
# get PGP & Debian public key (used to validate download packages)
sudo apt-get install pgpgpg
sudo gpg --keyserver pgp.mit.edu --recv-key AED4B06F473041FA
sudo gpg -a --export AED4B06F473041FA | sudo apt-key add -
# add debian experimental repo to apt-get list
sudo sh -c "echo 'deb http://ftp.debian.org/debian experimental main' > /etc/apt/sources.list.d/debian.list"
# make sure we've got the list of all the latest packages
sudo apt-get update
sudo apt-get -t experimental install apache2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment