I have tried to install s3fs both with pkg and through ports. Both methods succeeded. I managed to successfully mount my S3 bucket to a folder. Now problems start when I try to automate the mounting on boot through fstab. It fails with:
These are the example strings I tried to put in the fstab file:
And hundred other variations in between.
I have added fuse_load=YES to /boot/loader.conf
I'm getting desperate, in Debian it just works. But I really want to make it work in FreeBSD.
Bash:
fstab: /etc/fstab:3: Inappropriate file type or format
These are the example strings I tried to put in the fstab file:
Bash:
my-bucket /home/ftpuser/ftp fuse _netdev,allow_other,mountprog=/usr/local/bin/s3fs,late 0 0
s3fs#mybucket /home/ftpuser/ftp fuse _netdev,allow_other 0 0
s3fs mybucket /home/ftpuser/ftp
-oallow_other ftp-test-farid /home/ftpuser/ftp fuse.s3fs _netdev 0 0
I have added fuse_load=YES to /boot/loader.conf
I'm getting desperate, in Debian it just works. But I really want to make it work in FreeBSD.