So I did some further investigation tonight into getting my Nokia 6300 working under Ubuntu, with very positive results. What I tracked down was a program called Gnokii. It is a project to provide connectivity to Nokia phones that has been going since at least 2001, so they’ve got quite a bit of collective experience. And it has got me started.
First of all, I installed the software. It was available as a program to install, but I went with the trusty:
sudo apt-get install gnokii
Next I had to configure the connection. The documentation on the site is a little dusty, and does deal with a lot of different options depending on the phone, so I’m going to concentrate on my model, the 6300. First connect the phone using the usb cable, and select the Nokia mode on the phone when asked. You then need to edit the config file by hand (I tried setting it within the program itself, but it wouldn’t allow me):
sudo cp /etc/gnokiirc /etc/gnokiirc.OLD
sudo vi /etc/gnokiirc
And you will get a very well commented config file. If you are using a different phone, or connecting through another means such as Bluetooth, have a read through the file, there are good pointers for the changes you need to make. For the Nokia 6630, delete the contents (you’ve already backed it up) and use the following:
[global]
port = /dev/ttyACM0
model = AT
initlength = default
connection = serial
use_locking = yes
serial_baudrate = 19200
smsc_timeout = 10
[gnokiid]
bindir = /usr/sbin/
[connect_script]
TELEPHONE = 12345678
[disconnect_script]
[logging]
debug = off
rlpdebug = off
xdebug = off
and save the file. You may well prefer to comment out the port and model in the existing file, and then just uncomment the two lines I’ve set at the start of this file.
Now to test the connection:
sudo gnokii --identify
If this has worked, it will show a small amount of information about the phone, the make, model, EMEI number and revision number. If you’ve got this, you’re ready to go. If not, check the config file, or look up on the Gnokii site for further help.
You can know run Gnokii from the applications menu (it should be under utilities). You will be able to view and edit basic details about your contacts, back them up, and send SMS from the computer via the phone. There is also an option for Calendar entries, but I can’t get this working yet. It may be down to me using the model = AT option, which I think is more limited in what it can do. I’ll certainly keep investigating to see if I can solve it.