Configurar o nokia n810 no ubuntu é bem simples. Fiz um resumão..

Atualizando FirmWare

Eu tive que atualizar o firmware, para isso basta fazer o flashing. Faça o download do utilitário, depois faça o download do último firmware, recarrege a bateria do tablet, de preferência estando desligado. Após isso, se o tablet não estiver desligado, desligue-o e ligue o cabo usb e então basta executar:

./flasher-3.0 -F RX-44_DIABLO_5.2008.43-7_PR_COMBINED_MR0_ARM.bin -f -R

Dae, ele jogará na tela algumas mensages e a última será:

Suitable USB device not found, waiting

Dae você liga o tablet novamente e pronto ele irá atualizar o firmware. Para habilitar o R&D Mode,
basta fazer o mesmo processo só que ao invés de fazer o flashing da imagem basta fazer o seguinte:

./flasher-3.0 –enable-rd-mode

E então ligue o tablet para ele atualizar para o modo R&D. Depois reiniciei o tablet.

Conectividade usb

Você precisa instalar no tablet um pacote chamado maemo-pc-connectivity e após instalado o pacote, basta configura
o pc. Primeiro é preciso configurar o módulo responsável pela criação de interface de rede através da usb,  o usbnet

sudo modprobe usbnet

Basta editar o arquivo “/etc/udev/rules.d/85-ifupdown.rules” e trocar:

SUBSYSTEM==”net”, DRIVERS==”?*”, TEST==”/var/run/network/initialized”, GOTO=”net_start”

por:

SUBSYSTEM==”net”, TEST==”/var/run/network/initialized”, GOTO=”net_start”

Depois acrescentar no /etc/network/interfaces:

auto usb0
allow-hotplug usb0
mapping hotplug
script grep
map usb0

iface usb0 inet static
address 192.168.2.14
netmask 255.255.255.0
network 192.168.2.0
broadcast 192.168.2.255
up iptables -t nat -A POSTROUTING -s 192.168.2.15 -j MASQUERADE
up echo 1 > /proc/sys/net/ipv4/ip_forward
down iptables -t nat -D POSTROUTING -s 192.168.2.15 -j MASQUERADE
down echo 0 > /proc/sys/net/ipv4/ip_forward