Ok guys so trying to get a really cool program to work called gmote. It basically lets you use your android phone as a mouse/kb and remote control for your computer.
I'v managed to unpack the tar.gz from their site:
http://www.gmote.org/server
It would not run without Java, so after a lot of playing about (Linux noob) I managed to get an open version of Java installed via:
Code: Select all
sudo apt-get clean
sudo apt-get update
sudo apt-get install openjdk-6-jre
This allows me to run the program (this made me smile as the server appeared on my phone) but ofc life is not this simple and a big old error appeared along the lines of:
Code: Select all
/com/sun/jna/linux-arm/libjnidispatch.so not found in resouce path
So after a bit of routing around (learning linux cmds on the way) I found this file in usr/lib/jni. So i'm thinking the open Java I have installed works but the program is looking for this file in the place it would be in the official version.
I tried making that directory '/com/sun/jna/linux-arm/' as a punt and copied the file to it, didn't think it was that simple as Linux rarely is

. So i'm stuck...
any ideas?