I've mounted a Windows directory with CIFS :
sudo mount -t cifs //SERVER/Bases/some/path ~/mnt/data -o user=windomain/login%password
This works :
cp mnt/data/blabla/file.mdb .
/usr/bin/mdb-export file.mdb tablename
But this doesn't :
/usr/bin/mdb-export mnt/data/blabla/file.mdb tablename
It fails with output
Can't alloc filename
Why ? How can I execute mdb-export
on a mounted file without having to copy it locally first ?