With the help of USB networking you can connect your Nokia N900 to your laptop. If in a situation where wifi or Blue-tooth are not an option that time you can connect your Nokia N900 to other system in USb networking.
Follow the step for Automatic configuration with Ubuntu 9.10/10.04 :-
Code:
SUBSYSTEM=="net", ACTION=="add", ENV{ID_USB_DRIVER}=="cdc_ether", ENV{ID_MODEL}="N900__PC-Suite_Mode", ENV{ID_VENDOR}=="Nokia", NAME="n900"
SUBSYSTEM=="net", ACTION=="add", ENV{ID_USB_DRIVER}=="cdc_phonet", ENV{ID_MODEL}="N900__PC-Suite_Mode", ENV{ID_VENDOR}=="Nokia", NAME="n900pn"
Then you have to edit /etc/network/interfaces and type
Code:
auto n900
iface n900 inet static
address 192.168.2.14
netmask 255.255.255.0
up iptables -A POSTROUTING -t nat -s 192.168.2.15/32 -j MASQUERADE
up echo 1 > /proc/sys/net/ipv4/ip_forward
down iptables -D POSTROUTING -t nat -s 192.168.2.15/32 -j MASQUERADE
down echo 0 > /proc/sys/net/ipv4/ip_forward
For 9.10you have to fix /etc/init/network-interface.conf
change yhe line
Code:
stop on net-device-removed INTERFACE=$INTERFACE
with
Code:
stop on net-device-remove INTERFACE=$INTERFACE
reload udev rules with
Code:
udevadm control --reload-rules
Now you have to restart Network Manager so it re-reads the interfaces file.
type
Code:
sudo /etc/init.d/network-manager restart
Now connect your Nokia N900 to your laptop.
Bookmarks