On Jan 23, 2009, at 12:29 PM, verizon wrote: > Hi, > > I am working in OS-X with fossil version [2dffce041d] 2008-12-06 > 18:02:21 UTC. I have an SMB volume mounted at > /Volumes/ICE_VCC_BASE. I bring up a bash window and cd there. I am > attempting to import the files rooted in this directory to fossil > repository. So I do the following: > > 540 ICE_VCC_BASE> ~/bin/fossil new /Users/jschimpf/Public/FOSSIL/ > ICE1-4 <- This works > project-id: 7c70918137a9a76fd1aa1bccd041450d35825777 > server-id: 601fa6d5a9d0c459c8f5109edd9bca5289546a88 > admin-user: jim (initial password is "bbc8d1") > baseline: 59c94396062cb0cb9f2f25cb4cf3df9ae06d2a9d > > 541 ICE_VCC_BASE> ~/bin/fossil open /Users/jschimpf/Public/FOSSIL/ > ICE1-4 <- This doesn't > /Users/jim/bin/fossil: disk I/O error > > If I try to open that DB from places not on the SMB side (i.e. in the > OS-X file system) it works just fine. I have tried doing the create > then changing the permissions of ICE1-4 to allow all to read or write > and that doesn't help. I then brought up the UI and allowed anonymous > to have setup privileges and that didn't change the error. > > I have at this point three options: > (a) Download a Window's version of fossil. (don't want to do > that as > I am not sure how to do recursive > imports.)
http://www.fossil-scm.org/fossil/vinfo/8c4e72e22320d3de04ffcd9fe63b63b98d946db8 adds recursive ADD support. > > (b) Copy all the files over to the OS-X file system. This is a > simple option. > > (c) Ask your help for what dumb thing I am doing, why the DB > won't > open. Your SMB implementation does not support file locking. This prevents SQLite (which fossil uses as its storage engine) from reading or writing the repository. We could modify fossil to configure SQLite to not lock the file, but that could lead to corruption of the respository if two or more clients try to access it at the same time, so probably not a good idea. Go with solutions 1 or 2. > > > Thanks for the assistance. > > --jim schimpf > > > > _______________________________________________ > fossil-users mailing list > [email protected] > http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users D. Richard Hipp [email protected] _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

