View Single Post
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#11
Originally Posted by IBICO View Post
I tried to use "info on tap" but it failed to start..I am struggeling to know how to do this step:

# Scripts go in /usr/bin, and then must be given execute permissions with "chmod a+x"

I have installed Python 2.5
I don't think you have to do this manually anymore.. it looks like the info-on-tap application has been updated today on the author's site. You can just click (from the N800) the 'click to install' and it'll add the repo and install a debian package. You don't have to do the chmod a+x and all that.

I just did the above to check that it worked.
There's a problem though, when I start the application it says
"Can't create logfile" with an 'ok' button and exits. Unfortunately I'm no good with Python and can't figure out what causes this.

EDIT: Ok I did figure it out, by reading the technical readme.txt on the website. It turns out the application expects /var/log to be globally writable, this is not good. A better way is as follows (must be done manually unless the .deb post-installation script is updated to do the same): (NB: The steps must be done _exactly_ as typed, no spelling errors..)
Code:
sudo gainroot
cd /var/log
mkdir user
chown user user
touch user/info_on_tap.log
ln -s user/info_on_tap.log .
(note that terminating dot ('.') at the end of the last one there)

(If you already manuall did that chmod a+w /var/log as was suggested in that readme I refered to, now is the time to do 'chmod og-w /var/log' to undo the damage.)

Now the application starts. However, it looks like it actually needs some data files to exist in order to do anything at all, it looks a bit non-obvious to me.. maybe the poster that first mentioned this application knows a bit more of what's needed?

I've been looking at these pages:
http://home.cfl.rr.com/genecash/noki...tap/readme.txt
(What it says about the installation is obsolete, it's clearly from before it was made a debian package).
and
http://home.cfl.rr.com/genecash/noki...ocs/index.html
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.

Last edited by TA-t3; 2007-11-16 at 21:13.