I'm using 14.04 (working on 16.04), and there's a few things you'll need before trying to install TCAdmin v2 (assuming root).
ia32-libs from Raring:
cd /etc/apt/sources.list.d;echo "deb http://old-releases.ubuntu.com/ubuntu/ raring main restricted universe multiverse" >ia32-libs-raring.list;apt-get update
apt-get install ia32-libs
A custom Mono:
apt-get update;wget http://www.tcadmin.com/installer/mono-2.11.4-x86_64.ubu.deb;dpkg -i mono-2.11.4-x86_64.ubu.deb;apt-get -y --force-yes -f install;/opt/mono-2.11.4/bin/mono --aot -O=all /opt/mono-2.11.4/lib/mono/2.0/mscorlib.dll;for i in /opt/mono-2.11.4/lib/mono/gac/*/*/*.dll; do /opt/mono-2.11.4/bin/mono --aot -O=all $i; done
A few random dependencies:
apt-get install g++ bzip2 libpcap0.8 lsof
From there you can install the .deb from the wiki and everything should be golden.