Linux->Win7 file copy protocol error when filename has colon
Posted: 5. May 2015, 13:22
Hi. Most file copy operations from my Debian Linux guest to a shared folder on a Windows 7 host work fine. If the filename contains a colon, however, the copy fails with a protocol error. Example:
Nothing new appears in my guest log file when I do this. I have attached, however, my settings file. Thanks.dho: ~/Pictures$ ls -l
total 48
-rw-r--r-- 1 dho dho 47460 Apr 21 13:32 Screenshot from 2015-04-21 13:32:32.png
dho: ~/Pictures$ cp Screenshot\ from\ 2015-04-21\ 13\:32\:32.png /media/sf_loc/tmp/
cp: cannot create regular file `/media/sf_loc/tmp/Screenshot from 2015-04-21 13:32:32.png': Protocol error
dho: ~/Pictures$ cp Screenshot\ from\ 2015-04-21\ 13\:32\:32.png 133232.png
dho: ~/Pictures$ cp 133232.png /media/sf_loc/tmp/
dho: ~/Pictures$ cp Screenshot\ from\ 2015-04-21\ 13\:32\:32.png 13:32:32.png
dho: ~/Pictures$ cp '13:32:32.png' /media/sf_loc/tmp/
cp: cannot create regular file `/media/sf_loc/tmp/13:32:32.png': Protocol error
dho: ~/Pictures$ ls -l
total 144
-rw-r--r-- 1 dho dho 47460 May 5 12:09 13:32:32.png
-rw-r--r-- 1 dho dho 47460 May 5 12:08 133232.png
-rw-r--r-- 1 dho dho 47460 Apr 21 13:32 Screenshot from 2015-04-21 13:32:32.png