1 |
<hr/> |
2 |
|
3 |
|
4 |
- linux p2p apps: |
5 |
o search for p2p app with existing or possible hacking support for: |
6 |
Audio: |
7 |
o insert wanted album and program will find needed files via cddb (e.g. freecddb.org) |
8 |
|
9 |
- linux & bluetooth(2nd part) |
10 |
- links: |
11 |
- http://triq.net/obexftp/ |
12 |
- http://www.frasunek.com/HOWTO-Nokia7650-Bluetooth.txt |
13 |
- http://www.unrooted.net/hacking/bluez-rfcomm-obex.html (for uploading files!) |
14 |
- http://openobex.sourceforge.net/ |
15 |
- http://www.holtmann.org/linux/bluetooth/ |
16 |
x use obexftp(http://triq.net/obexftp) to GET files from mobile to laptop |
17 |
x read http://triq.net/obexftp |
18 |
x install openobex + dev: |
19 |
:# apt-get openobex-1.0.0 openobex-1.0.0-dev |
20 |
x get obexftp: |
21 |
:$ wget http://triq.net/obexftp/obexftp-0.10.3.tar.gz |
22 |
x install obexftp: |
23 |
:$ cd obexftp |
24 |
:$ ./configure |
25 |
:$ make |
26 |
:# make install (as superuser) |
27 |
x Install ObexSERVER |
28 |
:$ cd /tmp |
29 |
x get openobex-apps-1.0.0 sources |
30 |
x Debian: |
31 |
:# apt-get source openobex-apps-1.0.0 |
32 |
x Other Systems: |
33 |
:$ wget http://prdownloads.sourceforge.net/openobex/openobex-apps-1.0.0.tar.gz |
34 |
x compile openobex-apps-1.0.0 |
35 |
:$ cd openobex-apps-1.0.0 |
36 |
:$ ./configure && make |
37 |
:$ cd src |
38 |
:$ wget http://www.frasunek.com/sources/unix/obexserver.c |
39 |
:$ cc -o obexserver obexserver.c libmisc.a -lopenobex |
40 |
:# chown root.root obexserver && cp obexserver /usr/local/bin |
41 |
x get it working with Siemens S55 mobile phone |
42 |
x be sure hcid and sdpd are running ! |
43 |
x find out right mobile channel for obex OPUSH |
44 |
:#sdptool search OPUSH |
45 |
Inquiring ... |
46 |
Searching for OPUSH on 00:01:E3:09:9C:E5 ... |
47 |
Service Name: OBEX Object Push |
48 |
Service RecHandle: 0x11105 |
49 |
Service Class ID List: |
50 |
"OBEX Object Push" (0x1105) |
51 |
Protocol Descriptor List: |
52 |
"L2CAP" (0x0100) |
53 |
"RFCOMM" (0x0003) |
54 |
Channel: 4 |
55 |
"OBEX" (0x0008) |
56 |
Language Base Attr List: |
57 |
code_ISO639: 0x656e |
58 |
encoding: 0x6a |
59 |
base_offset: 0x100 |
60 |
Profile Descriptor List: |
61 |
"OBEX Object Push" (0x1105) |
62 |
Version: 0x0100 |
63 |
so we know we have to use channel 4 ! |
64 |
x Register SDP service for OpenOBEX. (channel 4 for Siemens) |
65 |
:#sdptool add --channel=4 OPUSH |
66 |
x Run ObexSERVER |
67 |
:# obexserver |
68 |
Now you should be able to send some file(s) to your pc.... |
69 |
|
70 |
|
71 |
|
72 |
|
73 |
|
74 |
<hr/> |
75 |
$Id: notes_2003-03.twingle,v 1.1 2003/04/07 01:28:41 jonen Exp $ |