From owner-freebsd-bluetooth@FreeBSD.ORG Sat Mar 11 01:19:47 2006 Return-Path: X-Original-To: freebsd-bluetooth@freebsd.org Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC54816A41F for ; Sat, 11 Mar 2006 01:19:47 +0000 (GMT) (envelope-from maksim.yevmenkin@savvis.net) Received: from ismybrain.com (ismybrain.com [64.246.42.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 414C6482E7 for ; Fri, 10 Mar 2006 18:05:57 +0000 (GMT) (envelope-from maksim.yevmenkin@savvis.net) Received: from [10.254.186.111] (localhost.localdomain [127.0.0.1]) by ismybrain.com (8.11.6/8.11.6) with ESMTP id k2AI5tM10100; Fri, 10 Mar 2006 13:05:55 -0500 Message-ID: <4411C000.8060303@savvis.net> Date: Fri, 10 Mar 2006 10:05:52 -0800 From: Maksim Yevmenkin User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: lopisaur@gmail.com References: <1141924605.54238.4.camel@hellion.clcw> <441089C0.9030300@savvis.net> <1141952962.30556.9.camel@hellion.clcw> In-Reply-To: <1141952962.30556.9.camel@hellion.clcw> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-bluetooth@freebsd.org Subject: Re: Siemens S55/56 synchronization options X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Mar 2006 01:19:47 -0000 Christian Lopez de Castilla Wagner wrote: > Thanks a lot, you really helped me with that. The push is working as > expected. > What I'm having trouble with right now is the OBEX server mode. > I read the man page for obexapp and just noticed you actually wrote it. > > Entering > > hellion# obexapp -s -S -C 1 > > just exits, as well as using the -d or -D (from what I reckon, -d > should keep the session on the terminal and -D should do about the > same). The server never actually starts. please check /var/log/messages for error messages from the obexapp(1). my guess would be that /var/spool/obex directory does not exist. this is where obexapp(1) will store files by default. you can also use # obexapp -s -S -C 1 -r /root to override this (-r sets root folder) if you are running as root and do not want to use -u option. also make sure sdpd(8) is running. obexapp(1) will not start without sdpd(8) because it needs to register service. > Is this due to the fact that I'm not using PIN codes and/or because I'm > not using the -u user_name option? no, it is not because of pin code. and yes it is because you do not use -u or -r options. > I have been trying to run the whole process as root and want to put the > files in /root, that's why I'm not using -u. use -r to set root folder, or create /var/spool/obex directory thanks, max