I finally figured out what this error is and how to fix it, but I have another question.
First the solution:
When mounting the s3ql file system you might get and error saying something like it wasn't mounted correctly and run fsck on the file system to fix the problem.
Unfortunately, when running "fsck" you'll likely get an error. Mine occured because the 'default' fsck assumed a ext4 file system.
The other key is that the fsk is run on your bucket: s3://<mybucket>
so, type:
> fsck.s3ql s3://<mybucket> to 'fix' your file system.
then mount
> sudo mount s3://<mybucket> s3ql
I'm unclear on how to set permissions correctly though.
I do a mount, using sudo, but when I do an "ls s3ql", I get a permissions denied, despite having permissions on that directory as:
drwxrwsr-x 1 root users 0M 2012-09-30 09:17 s3ql
myname@tyr:/mnt$ groups
myname adm dialout cdrom plugdev users lpadmin admin sambashare mediatomb
Does anyone have any idea why I should be getting the permissions denied error?
Regards,
Kurt