Skip to content

Instantly share code, notes, and snippets.

@uchilaka
Last active January 29, 2018 01:34
Show Gist options
  • Save uchilaka/324473d2c8a4d2c5e8be1377e8e82582 to your computer and use it in GitHub Desktop.
Save uchilaka/324473d2c8a4d2c5e8be1377e8e82582 to your computer and use it in GitHub Desktop.
Building Froxlor on Ubuntu 16.04

Setting up source repo for Froxlor

touch /etc/apt/sources.list.d/froxlor.list
echo 'deb http://debian.froxlor.org stable main' > /etc/apt/sources.list.d/froxlor.list

Installing PHP 5.6 on Ubuntu 16.04

sudo add-apt-repository ppa:ondrej/apache2
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install php5.6 -y

Installing some dependencies

apt-get install maildrop libsasl2-modules-sql dovecot-pop3d proftpd-mod-mysql bind9 -y
# I opted to run proftpd from a service, since I'm not expecting a ton of 
# traffic on my platform, per the guidance 

And... Roadblock

I hit a wall with php5 dependencies, and I didn't want to step as far back as Ubuntu 14.04 to explore the availability of the libraries in the OS lists for that distro. I ended up going in the direction of Vesta instead: https://vestacp.com/install/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment