Florian wrote: > /root@oi151a6-1:~# ssh -n -f 192.168.10.201 "/usr/bin/nc -l -p 1337 | > /usr/sbin/zfs receive -F tank/raid1-2"/
Try "nc -dl -p 1337" instead of just "-l". The problem is that the ssh "-n" flag provides /dev/null on stdin, rather than a tty, and that confuses netcat. The netcat "-d" option tells it to ignore stdin. -- James Carlson 42.703N 71.076W <[email protected]> _______________________________________________ OpenIndiana-discuss mailing list [email protected] http://openindiana.org/mailman/listinfo/openindiana-discuss
