SkypeOut costs in fremantle

2009-10-19 Thread Eugene Antimirov
Hi all,

Since now we have in N900 this beautiful contact list with the ability
to choose between mobile operator vs Skype/SIP VoIP for calls,
wouldn't it be great to know how much the last call was in $$
equivalent along with the current call duration time? It is available
in desktop Skype.

What do you think, is this enhancement worth to be added to maemo bugzilla?

-- 
Sincerely,
Eugene
___
maemo-users mailing list
maemo-users@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-users


Brainstorm (was Re: SkypeOut costs in fremantle)

2009-10-19 Thread quim.gil
 What do you think, is this enhancement worth to be added to maemo bugzilla?

You mean http://maemo.org/community/brainstorm/ :)

--
Sent with Maemo 5 by
Quim Gil
open source advocate
Maemo Devices @ Nokia
___
maemo-users mailing list
maemo-users@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-users


N900 Users

2009-10-19 Thread sean
So those of you that have one, what do you think of it?
It is always nice to hear from actual users.

Is the software on it complete, or is it crippled like previous systems?
I am curious as to such things as the address book, calendar, to-do
list, even the native email client.

Any other interesting finds with the N900?
Was it worth the price, and are you using it as part of a carrier
service, or not?

___
maemo-users mailing list
maemo-users@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-users


Re: N900 Users

2009-10-19 Thread Ove Nordström
I changed 0.5 h after I got it from my Nokia E75, I can't go back. I
think it is the best device I had have.
It is so great, I love it. Big big improvement since Nokia N810. Of
course Maemo 5 and N900 will be improved during the time, Nokia made
this clear. But I think it is good enough for me, it is even better
than I thought. One thing I would like to see soon is support for PIM
synchronization with Mac OS X.
( http://ovenordstrom.blogspot.com/2009/10/maemo-summit-2009-recap.html )

Regards,
Ove

2009/10/19 sean tech.j...@myfairpoint.net:
 So those of you that have one, what do you think of it?
 It is always nice to hear from actual users.

 Is the software on it complete, or is it crippled like previous systems?
 I am curious as to such things as the address book, calendar, to-do
 list, even the native email client.

 Any other interesting finds with the N900?
 Was it worth the price, and are you using it as part of a carrier
 service, or not?

 ___
 maemo-users mailing list
 maemo-users@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-users

___
maemo-users mailing list
maemo-users@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-users


Re: Internet connection sharing

2009-10-19 Thread Marius Gedminas
On Thu, Oct 15, 2009 at 12:29:10AM +0300, Marius Gedminas wrote:
 You have:
 
   * 1 (one) Nokia N900
   * 1 (one) USB cable for the N900
   * 1 (one) laptop running Linux
   * 1 (one) USB 3g dongle with a SIM slot for the laptop
   * 1 (one) SIM card
 
 Your goal: get both the laptop and the N900 online.
 
 So far I've achieved partial success:
 
   * insert SIM card into the N900
   * get online
   * connect the N900 to the laptop with a USB cable
   * on the N900 open a root shell and run
   ifconfig usb0 10.20.10.1 netmask 255.255.255.0 up
   dnsmasq -i usb0 -a 10.20.10.1 -I lo -z -d -x /var/run/dnsmasq.usb0.pid
   * on the laptop run
   ifconfig usb0 10.20.10.2 netmask 255.255.255.0 up
   echo 'nameserver 10.20.10.1'  /etc/resolv.conf
   
 So far so good, but without iptables I cannot make the N900 do network
 address translation.  I've also installed openssh-server on the N900 and used
 ssh -D 1080 r...@10.20.10.1 from the laptop to get a SOCKS5 proxy on
 localhost, so I can get online from my laptop, but that's a rather
 inconvenient partial solution.
 
 Also, I'd be happier if I could do this without cables (i.e. over wifi
 or usb).

This was supposed to say or Bluetooth.  I wish I hadn't missed the
unsupported Bluetooth profiles talk at the summit...

I've had partial success with wifi, after installing wireless-tools from
the fremantle tools repository (it's also in downloads.maemo.nokia.com):

  ifconfig wlan0 down # otherwise iwconfig mode says device busy
  iwconfig wlan0 mode ad-hoc
  ifconfig wlan0 up # otherwise iwconfig essid times out
  iwconfig wlan0 essid n900
  ifconfig wlan0 10.20.30.1 netmask 255.255.255.0 up
  dnsmasq -i wlan0 -a 10.20.30.1 -I lo -z -d -x /var/run/dnsmasq.wlan0.pid

Trouble is, every 10 minutes the device does a wifi scan or something
and shuts down the hardware.  I have to walk over to the n900 and wake
it up manually by doing

  ifconfig wlan0 up
  iwconfig wlan0 essid n900

which is a big pain.  Any way to temporarily tell icd that it shouldn't
touch wlan0 for a while?

A much more troubling thing is that after you do this wake-up call
twice, the n900 ups and reboots.  Exactly 11 seconds after the second
wake-up call, I've got ping logs to prove it.

Also, I want iptables.  Trying to build iptable_nat.ko kinda failed:

  ~ $ sudo insmod iptable_nat.ko 
  insmod: error inserting 'iptable_nat.ko': -1 Invalid module format
  ~ $ dmesg | tail
  ...
  [90600.794433] iptable_nat: no symbol version for struct_module

Clearly, I'm doing something wrong.

-- 
Some performers on television appear to be horrible people, but when
you finally get to know them in person, they turn out to be even worse.
-- Avery


signature.asc
Description: Digital signature
___
maemo-users mailing list
maemo-users@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-users


Re: Internet connection sharing

2009-10-19 Thread Marius Gedminas
On Mon, Oct 19, 2009 at 11:19:20PM +0300, Marius Gedminas wrote:
 I've had partial success with wifi, after installing wireless-tools from
 the fremantle tools repository (it's also in downloads.maemo.nokia.com):
 
   ifconfig wlan0 down # otherwise iwconfig mode says device busy
   iwconfig wlan0 mode ad-hoc
   ifconfig wlan0 up # otherwise iwconfig essid times out
   iwconfig wlan0 essid n900
   ifconfig wlan0 10.20.30.1 netmask 255.255.255.0 up
   dnsmasq -i wlan0 -a 10.20.30.1 -I lo -z -d -x /var/run/dnsmasq.wlan0.pid

For extra convenience also pass

--dhcp-range=10.20.30.10,10.20.30.100,6h
--dhcp-option=3,10.20.30.1
--dhcp-option=6,10.20.30.1

to dnsmasq, then your tablet will act as a DHCP server.

 Trouble is, every 10 minutes the device does a wifi scan or something
 and shuts down the hardware.

Fixable if you go to Settings - Internet Connections and set WLAN
search interval to Never.

 Also, I want iptables.  Trying to build iptable_nat.ko kinda failed:
 
   ~ $ sudo insmod iptable_nat.ko 
   insmod: error inserting 'iptable_nat.ko': -1 Invalid module format
   ~ $ dmesg | tail
   ...
   [90600.794433] iptable_nat: no symbol version for struct_module
 
 Clearly, I'm doing something wrong.

This could be because the SDK has kernel sources of version
2.6.28-20093908+0m5, and my device has kernel 2.6.28-20094102+0m5.

Any idea where to find the appropriate sources?  GPL requirements etc.,
they ought to be out there somewhere.

FWIW I'm following the instructions at
http://wiki.maemo.org/Documentation/Maemo_5_Developer_Guide/Kernel_and_Debugging_Guide/Maemo_Kernel_Guide,
but it seems that those are a bit outdated
(maemo-sdk-rootstrap_5.0beta_armel.tgz?  EXTRAVERSION=-maemo2?).  I
would appreciate any feedback from people who have tried building kernel
modules with the final SDK.

Marius Gedminas
-- 
We're sysadmins. To us, data is a protocol-overhead.


signature.asc
Description: Digital signature
___
maemo-users mailing list
maemo-users@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-users