|
2006 / Sony Ericsson K700i and Linux Sony Ericsson K700i and Linux
IntroductionWelcome to my little page about the Sony Ericsson K700i and how to make it work with Linux. Most of these instructions apply to Debian GNU/Linux, but you should be able to do similar things with other distributions - after all, most of the time, it's just about how to install the right packages - everything else should stay the same. This is by no means a complete guide on what you can do with your mobile phone and Linux, just some hints which I want to share with you - most of these things I couldn't find anywhere else on the 'net. Getting the software you needDepending on how you connect your K700i to your Linux machine, you have to install different packages. As I'm using my K700i on a hp omnibook xe4500, I have access to an IrDA port. Additionally, I bought myself a Bluetooth USB dongle, so I don't have to place the K700i in front of the infrared port everytime I want to transfer something. Infrared (IrDA)
Install the required packages with the command Bluetooth (Bluez stack)
To enable Bluetooth support in Debian, make sure you've got a
recent kernel (works for me with a 2.6 kernel) with Bluetooth
support and a Bluetooth adapter that works with Linux. Then,
install the required packages with Generic packages (for both IrDA and Bluetooth)
Apart from the interface-specific packages, there are a bunch
of tools which you should install - these really get most of
the work done. Here is a list of packages which might be useful
for you. You install the package with the usual
Bluetooth pairingFor your computer and your mobile phone to trust each other, you have to pair the devices. A nice tutorial on how to do this can be found here: http://www.teaparty.net/technotes/blue-gprs.html. Send/receive files from/to K700iThis is done using obexftp, see here for more information: http://openobex.triq.net/obexftp/examples Control your desktop with bluemoteSee instructions on http://www.geocities.com/saravkrish/progs/bluemote/ Control xmms with bluexmmsSimiliar to bluemote: http://linuxbrit.co.uk/bluexmms/ /etc/bluetooth/rfcomm.conf
To get the #
# RFCOMM configuration file.
#
rfcomm0 {
# Automatically bind the device at startup
bind yes;
# Bluetooth address of the device
device 00:11:22:33:44:55;
# RFCOMM channel for the connection
channel 1;
# Description of the connection
comment "My K700i";
}
Issue a Use your K700i as keyboard/mouse (HID)
It is possible to use your K700i as a keyboard or mouse with
the help of the bluetooth HID interface. Make sure you have
#!/bin/bash sudo modprobe hidp sudo hidd --connect 00:11:22:33:44:55
Of course, you have to replace An alternative approach to phonebook managementOpposed to popular belief, GUI software that pretends to be able to handle your contacts the right way (and sync it the way you want) often doesn't really do the right thing™. Your best bet (if you've got the time) is to manage your phone books on your computer, only syncing in one direction (that is, to your K700i).
Basically, you can create your phone book using the great
#!/bin/bash # convert abook adressbook to other formats # thomas perl <thp at perli.net> 20060528 BOOKFILE=~/.abook/addressbook BOOKFORMAT=abook FORMAT=allcsv OUTFILE=~/addressbook.csv abook --convert --informat "$BOOKFORMAT" --infile "$BOOKFILE" --outformat "$FORMAT" >"$OUTFILE"
Using this script, you then get a Now, rename the vcf file generated by If all went well,
you now have a fine address book that is consistent with what you have on
your PC (and is also backed up right on your PC). You can now experiment a
little more with The truth about themesThemeing the K700i is cool - there exist tools with which you can create your own themes, but if you just want to GIMP up some theme of your own with everything under your control: untar your .thm files! That's right: A .thm file is nothing more than a tarball (non-gzipped) with the relevant files in it. There exists a XML file which describes generic colors and filenames and also a bunch of graphic files which can be edited with - for example - The GIMP. It's easy and fun - you just have to fiddle around for an afternoon or so. If you want to have it easier: mTC (myTheme Creator) can assist you on creating a theme. LinksThis section contains links to related websites. If you know about another website not listed here that fits the theme, make sure to contact me:
History
Thu Jul 19 14:16:52 2007 +0000 |