On 6 Jan 2002, [EMAIL PROTECTED] wrote: > > I can use -a so far. Why options do not work? > > # ./rsync --daemon > rsync: --daemon: unknown option > rsync error: syntax or usage error (code 1) at main.c(793) > # rsync --help > Segmentation Fault - core dumped
Did you do "make install" or put rsync in your $PATH? Obviously rsync is not meant to dump when you pass --help. You'll need to run it under some kind of debugger to find out where we're going wrong. I suspect some kind of problem with your compiler or system libraries, perhaps in popt. If you have gdb, then this would help gdb ./rsync run --help (probably crashes here) where info locals -- Martin
