Since OpenVPN 2.3.x release there’s no more easy-rsa scripts in /usr/share. So you have to use different approach to setup OpenVPN. It’s easy when you know all the steps.
Since Munin on Ubuntu 14.04 doesn’t work out of the box, here’s a short tutorial how to make it work.
Setup repository and install the package:
1 2 3 4 5 |
echo "deb http://dl.ajaxplorer.info/repos/apt stable main deb-src http://dl.ajaxplorer.info/repos/apt stable main" > /etc/apt/sources.list.d/pydio.list wget -O - http://dl.ajaxplorer.info/repos/charles@ajaxplorer.info.gpg.key | sudo apt-key add - apt-get update apt-get install pydio |
Apache setup
If you want to access Pydio at http://localhost/pydio do:
Ensure to have your external IP in /etc/hosts
1 |
192.168.0.1 ubuntu |
First we install all needed packages
1 |
apt-get install libgmp3c2 libssl0.9.8 ruby1.9.1 ruby1.9.1-dev zlib1g-dev libssl-dev libreadline-dev libyaml-dev build-essential bison checkinstall libffi5 gcc checkinstall libreadline5 libyaml-0-2 |
Download and install additional libraries
1 2 3 4 |
mkdir down; cd down wget ftp://ftp.gnome.org/mirror/temp/ubuntu-test/pool/main/libf/libffi/libffi5_3.0.9-3ubuntu1_amd64.deb wget http://free.nchc.org.tw/ubuntu//pool/main/m/mpfr/libmpfr1ldbl_2.4.2-3ubuntu1_amd64.deb dpkg -i *.deb |