On 23-Jan-2002 Geoffrey wrote: > I've read that you might have problems because of network delays.. > Possible?
certainly possible. the cdrecord process on the receiving side of the ssh pipe burns a steady rate. if this rate is not possible over the network for some time the burn will fail (burn proof and similar as an exception). > Sven Goldt wrote: > >> On Tue, Jan 22, 2002 at 09:20:10PM -0800, shailendra suman wrote: >> >>>Hi, >>> I want to share CD-Writer in my Network. Can anyone >>>pls tell me How to do the same ? >>> >>>Suman >>> >> >> Sure... >> cat iso.img | ssh server -l root "cdrecord --device ... -" if you add a buffer on the receiving side it could help to avoid buffer underruns. cat iso.img | ssh server -l root buffer -m 50m | cdrecord --device ... - note that you should have enough RAM for the buffering (50MB as given above by -m 50m). K.-H. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

