From 3fc389c2ff25a09408dbaa7b914cb94c7f2e1d6e Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 24 Apr 2019 16:49:16 -0700 Subject: [PATCH] Updated Mount (markdown) --- Mount.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Mount.md b/Mount.md index cd97d34..72b3d19 100644 --- a/Mount.md +++ b/Mount.md @@ -182,3 +182,17 @@ sudo umount -l /the/mounted/dir 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. +### 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 +``` \ No newline at end of file