Hi,

I have a VU+ Solo2 and was thinking of trying to get the UniFi wi-fi management software running on it. Any ideas? You can run it on Ubuntu or even a Raspberry Pi but I can't find anything for Enigma2. I have a RP2 model B on order but thought it would be great to see it running on here too.

Has anyone tried it? It needs Java and MongoDB I believe just as a starter! I guess this is not possible?

Here's the instructions for installing it on a RP2:
Dependencies:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install oracle-java7-jdk git-core build-essential scons libpcre++-dev libboost-dev libboost-program-options-dev libboost-thread-dev libboost-filesystem-dev

Install MongoDB:
Create a directory for MongoDB.

git clone git ://github.com/devinbabb/mongopi.git
cd mongopi
scons

sudo scons --prefix=/opt/mongo install

***This will also take quite a long time.

PATH=$PATH:/opt/mongo/bin/

Set your path to mongodb

export PATH

Check your path to mongodb
Installing the UniFi Controller

Move into the /opt directory.

cd /opt/

Download the latest version of the UniFi Controller software. Replace the X's with appropriate version numbers.

For v3

sudo wget http://dl.ubnt.com/unifi/3.X.X/UniFi.unix.zip
unzip UniFi.unix.zip

For v4

sudo wget http://dl.ubnt.com/unifi/4.X.X/UniFi.unix.zip
unzip UniFi.unix.zip

Configure the UniFi Controller

cd /opt/UniFi/bin
sudo ln -fs /opt/mongo/bin/mongod mongod

Now lets start the controller!

Running the following command will start the UniFi Controller in background mode(daemon).

sudo java -jar /opt/UniFi/lib/ace.jar start &


Lots of sudo apt-get commands which are not available. What package management tools are available - is it all opkg and if so do I need to search for ipkg files for Java and MongoDB etc?

Help!

Thanks very much,
Cheers.