Skip to content

Instantly share code, notes, and snippets.

@hpherzog
Last active December 17, 2015 05:39
Show Gist options
  • Save hpherzog/5559889 to your computer and use it in GitHub Desktop.
Save hpherzog/5559889 to your computer and use it in GitHub Desktop.
Install webmin on debian
#!/bin/sh
(cat <<-SRC
# webmin repository
deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
SRC
) > /etc/apt/sources.list.d/webmin.list
cd /tmp
wget http://www.webmin.com/jcameron-key.asc
apt-key add jcameron-key.asc
apt-get update
apt-get -y install \
perl \
libnet-ssleay-perl \
openssl \
libauthen-pam-perl \
libpam-runtime \
libio-pty-perl \
apt-show-versions \
python \
webmin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment