How are you syncing the attachments between the two operating systems? Were you keeping the two platforms in sync when you were using 1.09 & if so, how?
I have a fat32 partition. There is a zotero folder I created on it. Database is stored there and I'm using it whether in linux or windows, by selecting it in zotero preferences.
The debug output shows the file doesn't exist. The first thing I'd do is to check to see if that is the case, but Zotero isn't setup to output the filename in the debugging output right now.
If you feel comfortable doing it, I would load 'zotero.sqlite; in the sqlite3 command line tool and run:SELECT key FROM items WHERE itemID=12993; SELECT path FROM itemAttachments WHERE itemID=12993;. The first should tell you the subdirectory of the zotero 'storage' directory your file was in; the second should tell you the filename (with 'storage:' prepended). Confirm that you can access the file on your filesystem manually. Potential hiccups, off the top of my head: no permission (perhaps mounted by someone else), improper mounting to handle case dependency, etc.
Also to check: what happens when you make a new attachment? Is it stored successfully? Can you retrieve it after attaching it? Where in the filesystem is it stored?
Maybe the answer to your problem is here: http://forums.zotero.org/discussion/6462/access-to-attachments-ok-on-usb-drive-but-broken-on-hard-drive/#Item_3
Here is what I have in terminal http://textbin.com/0n507
If you feel comfortable doing it, I would load 'zotero.sqlite; in the sqlite3 command line tool and run:
SELECT key FROM items WHERE itemID=12993;
. The first should tell you the subdirectory of the zotero 'storage' directory your file was in; the second should tell you the filename (with 'storage:' prepended). Confirm that you can access the file on your filesystem manually. Potential hiccups, off the top of my head: no permission (perhaps mounted by someone else), improper mounting to handle case dependency, etc.SELECT path FROM itemAttachments WHERE itemID=12993;
Also to check: what happens when you make a new attachment? Is it stored successfully? Can you retrieve it after attaching it? Where in the filesystem is it stored?