On Wed, Apr 21, 2010 at 7:47 AM, Chuck Kuecker <[email protected]> wrote: > This might be a simple problem, but so far I've not found a good solution. > > I am running Busybox in an ARM embedded system. I want to be able to > transfer a file from the embedded device to my Linux host. The host system > has tftp working - that's how I load the ARM system files. > > I issue tftp -p -l /mjpeg.api 192.168.0.200 69 at the embedded system to > transfer the .avi file to the host machine. I get this error: > > tftp: server error: (2) Access violation > > What does this mean. and what should I look at to fix it?
Your tftp server does not allow upload of this file. IIRC tftp will use literal "/mjpeg.api" as a file name. Try using "-r mjpeg.api" so that slash is not sent. -- vda _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
