I set a drive to mount on boot and set the permissions with bindfs, but I still have no access rights, root only.
After reading everything on the issue I could possibly find, I found that mounting the drive in fstab, and adding a line for bindfs (is installed) would be the best way to do what I am trying, and did it to no avail (all users are admin's). I chowned the whole drive and chmoded it to 775 recursively but still have only limited access (access denied). I tried the drive with "default" and after some more research added the "noatime,nodev,nosuid" options, but neither work either.
I am trying to make it so that every user or a group of users has full rwx permissions, and no one is an owner of any file (or at least not in practice). It is to be used as a share for media and other non critical data, and there are documents everyone can contribute to, but I can not even edit and save files with different names.
Here is a copy of the relevant portions of my fstab file. Can anyone tell me WTH is wrong?!?!! (Preferably in N00Bspeak)
UUID=88c8e156-8e5a-405d-aeec-72e7eb9e81a5 /media/ARCHIVEZ ext4 noatime,nodev,nosuid 0 0
bindfs#/media/ARCHIVEZ /media/ARCHIVEZ fuse -p=0775,-m=1000:1001:1002:1003,group=1002 --multithreaded 0 0
Ubuntu Studio 15.10 Willy Ware wolf
perms=0700,mirror-only=user1:user2:user3
– Panther Nov 12 '15 at 01:16-m
rather thenm
, same with p, and --muitithread. Those are command line options, not fstab options. – Panther Nov 12 '15 at 01:38perms=0700,mirror-only=1000:1001:1002,group=1002
. get rid of --mulithread. see https://help.ubuntu.com/community/Bindfs-SharedDirectoryLocalUsers#Method_1_-_Fstab – Panther Nov 12 '15 at 01:59As stated above, I used the short form syntax as shown in the man page, no mention of how to change it for fstab, as to the multithreaded part, the drive is on a single computer, not a network, so only one user will be accessing data at a time, so it should increase performance in this case as far as I understand. In the end, would this be correct:
bindfs#/media/ARCHIVEZ /media/ARCHIVEZ fuse p=0775,m=1000:1001:1002:1003,group=1002 multithreaded 0 0
or is there something else I should know?
– zoidmaster Nov 12 '15 at 02:19