Disk locked - Help with setup #2423
-
|
Hi, I'm trying to setup an afp share that works with Mac OS 8.6. I have gotten it to connect on Mac OS 8.6 but it says that the disk is locked. I have created a user on debian that created the share folder so as far as I know it should have permissions to write to that folder. When I connect on a modern mac to the folder it is also locked and says that the user "Unknown" has read/write permissions. Does anyone have any ideas of where I'm going wrong? Here is my current afp.conf: `; Netatalk 4.x configuration file [Global] [MacDrive] ; [my backup] |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Fixed the issue. I hadn't built Netatalk with Berkeley DB library. After that I could connect to it and edit files. I have also changed my conf file and this now lets me connect on both Mac OS 8.6 and Tahoe. |
Beta Was this translation helpful? Give feedback.
Ah I think I understand what happened: The fallback when no other database library is available, is the
lastbackend which uses a read-only trivial database. So the AFP client will obviously report a locked disk when using this backend. We keeplastaround primarily for our automated tests.I'm thinking now that we should simply error out in the build system if neither database library (bdb, sqlite, mysql) can be found. This should give a clearer signal to users. Thoughts?