问题已解决,飞牛通过 POSIX ACL 控制权限而我在OMV没有开启。解决方式为,在飞牛导入zpool后先不挂载,检查并启用 POSIX ACL后再挂载即可
---------------------------------
原始问题
在OMV下江块硬盘创建了RAIDZ1阵列,并进行了导出操作。安装飞牛系统后使用导入功能成功导入为存储空间1,管理员权限下能够看到已有的文件夹和文件。
但是在文件管理界面无法使用该存储空间创建新文件夹。编写docker compose文件时如果使用了里面的路径(根目录下/vol1)就会报错,无法正常使用。
不知是不是权限问题,请问各位大神如何解决。
SSH下权限如图所示
NAS管理界面的文件管理器及管理员视图如下,如果此时点击左侧的创建,就会提示文件或目录不存在
---------------------------------
更新1
Mottierli@Fontaine:~$ find / -name zpool 2>/dev/null
/usr/share/bash-completion/completions/zpool
/usr/sbin/zpool
/usr/sbin/zpool status
Mottierli@Fontaine:~$ /usr/sbin/zpool status
pool: MLZpool
state: ONLINE
status: Some supported and requested features are not enabled on the pool.
The pool can still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
the pool may no longer be accessible by software that does not support
the features. See zpool-features(7) for details.
scan: scrub repaired 0B in 04:39:32 with 0 errors on Sat Oct 25 21:26:57 2025
config:
errors: No known data errors
Mottierli@Fontaine:~$ /usr/sbin/zfs list
NAME USED AVAIL REFER MOUNTPOINT
MLZpool 4.86T 5.58T 4.72T /vol1
Mottierli@Fontaine:~$ ls -ld /vol1
drwxr-xr-x 10 root root 10 Oct 26 08:33 /vol1
Mottierli@Fontaine:~$ id
uid=1000(Mottierli) gid=1001(Users) groups=1001(Users),1000(Administrators)
Mottierli@Fontaine:~$ sudo chown -R 1000:1001 /vol1
Mottierli@Fontaine:~$ find / -name zpool 2>/dev/null
/usr/share/bash-completion/completions/zpool
/usr/sbin/zpool
/usr/sbin/zpool status
Mottierli@Fontaine:~$ /usr/sbin/zpool status
pool: MLZpool
state: ONLINE
status: Some supported and requested features are not enabled on the pool.
The pool can still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
the pool may no longer be accessible by software that does not support
the features. See zpool-features(7) for details.
scan: scrub repaired 0B in 04:39:32 with 0 errors on Sat Oct 25 21:26:57 2025
config:
errors: No known data errors
Mottierli@Fontaine:~$ /usr/sbin/zfs list
NAME USED AVAIL REFER MOUNTPOINT
MLZpool 4.86T 5.58T 4.72T /vol1
Mottierli@Fontaine:~$ ls -ld /vol1
drwxr-xr-x 10 root root 10 Oct 26 08:33 /vol1
Mottierli@Fontaine:~$ id
uid=1000(Mottierli) gid=1001(Users) groups=1001(Users),1000(Administrators)
Mottierli@Fontaine:~$ sudo chown -R 1000:1001 /vol1