Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ratki

Pages: [1] 2
1
Zaurus - pdaXrom / Bluetooth Cellphone Modem
« on: October 20, 2007, 05:06:41 pm »
Hi,

I had a  similar 3 week long "project". I couldn't connect my new Nokia 6120 Classic to my Z.

The problem was, that all earlier used phones had the DUN (dial-up network) channel on the 1st rfcomm channel.
Quote from: jpmatrix
well,

i don't know if latest distros don't use it (or fill it themselves) but i alway do that :

1) rfcomm.conf should contain :
bind yes;
device xx:xx:xx:xx:xx:xx;
channel 1;
comment "gsm";
...

Please check it with
[div class=\'codetop\']CODE[/div][div class=\'codemain\' style=\'height:200px;white-space:pre;overflow:auto\']sdptool search DUN[/div]

It was in my case channel 4.

BTW: May be the graphical PPP setup program makes so, but I tried to set up manually, because this program deletes the other rfcomm entries. Like my GPS.

Best wishes,

Tamas

2
Zaurus - pdaXrom / Pine With Gnupg
« on: September 13, 2007, 05:27:28 pm »
Hi,

I use on desktop Thunderbird with enigmail, but I couldn't reach it on Z yet. (Capn_Fish!)

I've compiled pine earlier, but I missed the feature of enigmail, that the encrypted messages are stored encrypted with my own key, too. So they can not be read in plain text but I can read with my secret key.

Two days ago I tried it again and here is the solution:

1. Some new scripts are created:
Code: [Select]
# cat .gnupg/encrypt
#!/bin/sh
TOLIST=`echo $* |awk '{for(i=1;i<=NF;i++) {printf(" -r %s", $i)}}'`
/usr/bin/gpg -ea $TOLIST

# cat .gnupg/encryptsigned
#!/bin/sh
TOLIST=`echo $* |awk '{for(i=1;i<=NF;i++) {printf(" -r %s", $i)}}'`
/usr/bin/gpg -sea $TOLIST

# cat .gnupg/sign  
#!/bin/sh
/usr/bin/gpg --clearsign

2. Insert them as filters to .pinerc:
Code: [Select]
...
# This variable takes a list of programs that message text is piped into  
# after MIME decoding, prior to display.
display-filters=_BEGINNING("-----BEGIN PGP MESSAGE-----")_ /usr/bin/gpg -t,
        _BEGINNING("-----BEGIN PGP SIGNED MESSAGE-----")_ /usr/bin/gpg -t

# This defines a program that message text is piped into before MIME
# encoding, prior to sending
sending-filters=~/.gnupg/encrypt _RECIPIENTS_ my.name@my.domain,
        ~/.gnupg/encryptsigned _RECIPIENTS_ my.name@my.domain,
        ~/.gnupg/sign
...
Pine will ask you for filter before sending. The two encypting filter encrypt the message for each recipient (To: and Cc:) and for myself (my.name@my.domain,}, too.

One feature is missing: It doesn't encrypt the attachment!

Tamas

3
Zaurus - pdaXrom / Gpsdrive For Pdaxrom
« on: August 21, 2007, 06:31:50 pm »
Sorry, but the format of the route description was changed by the gnuite.com. Gpsdrive can not use the routes now. I try to follow it in september.

Tamas

4
Zaurus - pdaXrom / Pdax And Gps Navigation
« on: July 30, 2007, 03:47:31 pm »
I've inserted this part to the gpsdrive.

See: Gpsdrive For PdaXrom
The routes from gnuite.com aren't the cab drivers' way. The annoncements are some times confusing. But it is a good toy, and it is free. (?)

Anyway I'll glad if you try it,

Tamas

Quote
http://gnuite.com:8080/cgi-bin/gpx.cgi is what maemo-mapper uses
[div align=\"right\"][a href=\"index.php?act=findpost&pid=149498\"][{POST_SNAPBACK}][/a][/div]

5
Zaurus - pdaXrom / Gpsdrive For Pdaxrom
« on: July 29, 2007, 04:58:18 pm »
Hi,

I`ve extended the above mentioned gpsdrive version with the route download module from maemomapper. (The .ipk includes only the gpsdrive binary itself.)

It can connect to the site http://www.gnuite.com/cgi-bin/gpx.cgi.
The downloaded route is displayed on the map.
The next action on the route is written above the map, and annonced if flite is installed.

The downloading dialog pops up if you choose "Get route" menu button.

It depends from libcurl package from pdaXrom feed. (flite is recommended.)

There are some problems with, but it can be used already. e.g. the automatic reloading of  the route is not implemented. (I don`t have GPRS flat rate.)

Try it,

Tamas

6
Zaurus - pdaXrom / Kphone working for PC to phone calls
« on: February 06, 2007, 01:30:26 am »
Hi,

I've just insert the KphoneSI package with icons and translations in package anoncement list. (kphonesi_1.0.2_armv5tel.ipk)

It worked for me.

Best wishes,

Tamás

7
Zaurus - pdaXrom / New Packages Announcement
« on: February 06, 2007, 01:24:05 am »
Hi,

KPhone is under development again. (See http:////sourceforge.net/projects/kphone)

It is now divided in two application. KPhoneSI is for SIP.

It worked in both direction (calling end being called) in my quick test. Let's test it.

Tamás

8
Zaurus - pdaXrom / Want Compiled Thread?
« on: November 06, 2006, 03:56:23 pm »
Hi,

Quote
Do I need ThunderBird or anything installed to compile this?
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]

According to the [a href=\"http://enigmail.mozdev.org/source.html#enigmail]compiling help[/url] you need to compile thunderbird before compiling enigmail.

Thanks for your interest,

Tamás

9
Zaurus - pdaXrom / Want Compiled Thread?
« on: November 03, 2006, 04:02:39 pm »
Hi,

As I`ve written  earlier I really miss enigmail for thunderbird.

Source: http://enigmail.mozdev.org/

I`ve compiled some programs for pdaXrom, but Mozilla packages are hard to compile with cross compiler. So I`m really glad for any help.

Thanks,

Tamas

10
Zaurus - pdaXrom / Lock Screen On Beta3
« on: September 17, 2006, 05:57:08 pm »
Hi,

I've tried to use xscreensaver locking my Z automatically as I switch it to stand by. I couldn't managed it.

But you can start it with $HOME/.profile as follows. (It starts X11 at login and xscreensaver will be started with.)
Code: [Select]
# here you can do some settings...

if [ $TERM = "linux" ]; then
  (sleep 3; xscreensaver )&
  startx                    
  exit  
fi    

I have to say that I don't use it anymore, and this is only as I remember on it. (I didn't find any saving about my tests.)

I hope it helps you. Anyway I would use some minimal protection, too.

Best wishes,

Tamás

11
Zaurus - pdaXrom / Gpsdrive For Pdaxrom
« on: July 17, 2006, 06:39:09 pm »
Hi,

I was looking for a GPS application for my Z. As I earlier annonced, I've found gpsd to connect to my bluetooth GPS.

gpsdrive 2.10pre2 a really old version. I've found a lot of new development in the CVS, but I couldn't compile it.
I've modified this old version for my own usage. Probably you could use it, too.

Preconditions:
I would like to use gpsdrive in car, where the Zaurus is opened and in portrate mode.
I have a one button mouse (pen or finger), and four buttons: Enter, Esc, Up and Down.
It has to optimised to the 480*640 pixels. (Minus the status bar!)

Changes:
1. Switching to "Pos. mode" by mouse click. "Enter" in "Pos. mode" means selection. (New target) "Esc" in "Pos. mode" switches it off.

2. Up and Down are zoom in/out but at the limits (1 or 16) it tries to change the map, too.

3. The most important informations (for me) are on map view:
- speed, distance to target or next way point and the name of the waypoint.

I hope, I've packed everithing in ipk for installation.

Good luck,

Tamás

12
Zaurus - pdaXrom / New Packages Announcement
« on: May 31, 2006, 06:09:56 pm »
I've compiled gpsd because, which I've found couldn't connect to my bluetooth GPS.

It is from the source of http://gpsd.berlios.de/ .

The package includes sirfmon, xgps and xgpsspeed, too.
Please check it.

Tamás

13
Zaurus - pdaXrom / Kphone On 1.1.0beta1
« on: May 20, 2006, 03:33:24 pm »
I'm using 1.1.0beta1 on SL-C750. KPhone 4.0.4 works without any problem.

Tamás

14
Zaurus - pdaXrom / New Packages Announcement
« on: May 05, 2006, 10:38:05 pm »
Hi,

I've compiled pine and pico.
(License : http://www.washington.edu/pine/overview/legal.html )

Best wishes,

Tamás

15
Zaurus - pdaXrom / Normal Vs. Root User
« on: April 17, 2006, 04:21:22 pm »
Hi,

I haven't tried the Beta2, but probably you should see:
https://www.oesf.org/forums/index.php?showtopic=17651&hl=#
(Post #6)

BTW I didn't used mplayer on Zaurus yet. Sorry not to answe befote.

Tamás

Pages: [1] 2