mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Updated Mount (markdown)
parent
b227423e12
commit
3fc389c2ff
14
Mount.md
14
Mount.md
|
@ -182,3 +182,17 @@ sudo umount -l /the/mounted/dir
|
||||||
From https://github.com/osxfuse/osxfuse/issues/358
|
From https://github.com/osxfuse/osxfuse/issues/358
|
||||||
> FUSE needs to register a virtual device for exchanging messages between the kernel and the actual file system implementation running in user space. The number of available device slots is limited by macOS. So if you are using other software like VMware, VirtualBox, TunTap, Intel HAXM, ..., that eat up all free device slots, FUSE will not be able to register its virtual device.
|
> FUSE needs to register a virtual device for exchanging messages between the kernel and the actual file system implementation running in user space. The number of available device slots is limited by macOS. So if you are using other software like VMware, VirtualBox, TunTap, Intel HAXM, ..., that eat up all free device slots, FUSE will not be able to register its virtual device.
|
||||||
|
|
||||||
|
### Samba share mounted folder ###
|
||||||
|
From https://github.com/chrislusf/seaweedfs/issues/936
|
||||||
|
The issue is with samba.conf. If you see NT_STATUS_ACCESS_DENIED error, try to add `force user` and `force group` to your samba.conf file.
|
||||||
|
```
|
||||||
|
[profiles]
|
||||||
|
comment = Users profiles
|
||||||
|
path = /home/chris/mm
|
||||||
|
guest ok = yes
|
||||||
|
browseable = yes
|
||||||
|
create mask = 0775
|
||||||
|
directory mask = 0775
|
||||||
|
force user = root
|
||||||
|
force group = root
|
||||||
|
```
|
Loading…
Reference in a new issue