Comment 42 for bug 264943

Revision history for this message
Tomek Bury (tomek-bury) wrote :

I'm trying to get some informations from my landrive tech support. I've provided them with the technical data they have requested (model HD9-U2LA based on RDC R2882-G chip if anyone's interested) and waiting for a response.

As for the new samba packages:
1. reading seems to work fine now - I can access all files, nothing seem to be missing, nothing crashes
2. writing is not all right yet, put doesn't work, it creates an empty file:

First create test file:

$ echo "123 test" >test.txt
$ ls -l test.txt
-rw-r--r-- 1 tomek tomek 9 2008-12-16 00:14 test.txt

We've got 9 bytes, let's send it to NAS:

$ smbclient //nas/public/
Enter tomek's password:
Domain=[ȇ] OS=[] Server=[���]
smb: \> put test.txt
Error writing file: ERRHRD - 39
putting file test.txt as \test.txt Receiving SMB: Server stopped responding
Call returned zero bytes (EOF) closing remote file \test.txt
smb: \> quit

Didn't quite work. Now delete the local copy:

$ rm test.txt
$ ls -l test.txt
ls: cannot access test.txt: No such file or directory

And get it from NAS:

$ smbclient //nas/public/
Enter tomek's password:
Domain=[ȇ] OS=[] Server=[���]
smb: \> get test.txt
getting file \test.txt of size 0 as test.txt (0.0 kb/s) (average 0.0 kb/s)
smb: \> quit

Check the result - the file was created but it's empty:

$ ls -l test.txt
-rw-r--r-- 1 tomek tomek 0 2008-12-16 00:16 test.txt

Cheers,
Tomek