[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [coldsync-hackers] coldsync -t net Not Responding



Christophe Beauregard wrote:
On Tuesday 02 May 2006 01:33, Mike Baas wrote:

Do I have to be more specific at the command line?  I've tried
specifying /dev/pilot as the port, with no luck.

"-t net" is only telling coldsync the underlying protocol to use, but it doesn't actually tell it to _listen_ to the netsync ports. What you want is described at the end of README.daemon:

  Standalone
  ==========

  To run ColdSync in standalone (one-shot) mode, you'll need a
  profile like this one:

    listen net "netsync-standalone" {
    }

  and launch ColdSync with

    coldsync -md --listen netsync-standalone

c.

# .coldsyncrc

listen serial "netsync-inetd" {
        protocol: net;
        device: stdin;
        noprompt;
}

listen net "netsync-standalone" {
}

mike@jasmines:~$ coldsync -md --listen netsync-standalone
Error: Couldn't find the requested listen block: "netsync-standalone"
Error: No port specified.

Now what?

mb