summaryrefslogtreecommitdiff
path: root/debian.sh
diff options
context:
space:
mode:
Diffstat (limited to 'debian.sh')
-rw-r--r--debian.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/debian.sh b/debian.sh
deleted file mode 100644
index 7102a5e..0000000
--- a/debian.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-echo "Downloading and updating Debian packages"
-echo "deb http://ftp.de.debian.org/debian squeeze main contrib
-deb http://ftp.de.debian.org/debian/ squeeze non-free" > /etc/apt/sources.list
-
-apt-get install lsb-release
-codename=`lsb_release -a|grep Codename|cut -f2`
-if ! grep "^deb.*debian\.org.*non-free" /etc/apt/sources.list
-then
- echo "deb http://ftp.debian.org/debian/ $codename non-free" | tee -a /etc/apt/sources.list
-fi
-apt-get update -y
-apt-get upgrade -y
-apt-get install binutils gcc g++ gfortran wget hostname pwgen git-core raptor-utils r-base -y
-# accept java license automatically
-echo sun-java6-jdk shared/accepted-sun-dlj-v1-1 select true | /usr/bin/debconf-set-selections
-apt-get install --yes sun-java6-jdk -y
-. ./config
-#apt-get install xsltproc gnuplot -y # for validation
-apt-get install libssl-dev zlib1g-dev libreadline-dev libmysqlclient-dev libmysqlclient-dev libcurl4-openssl-dev libxml2-dev libxslt1-dev libgsl0-dev -y
-sed -i '/^JAVA_HOME=/d' /etc/profile
-echo 'export JAVA_HOME=/usr/lib/jvm/java-6-sun' | tee -a /etc/profile