diff --git a/client/internal/mount/mount_linux.go b/client/internal/mount/mount_linux.go index 2aaead4..5ccf5ca 100644 --- a/client/internal/mount/mount_linux.go +++ b/client/internal/mount/mount_linux.go @@ -48,9 +48,12 @@ func (m *Mount) Start() *MountEventChan { nodeFsOpt := &fusefs.Options{ MountOptions: fuse.MountOptions{ - FsName: "CDS", + AllowOther: true, + FsName: "CDS", // Debug: true, }, + GID: m.cfg.GID, + UID: m.cfg.UID, } rawFs := fusefs.NewNodeFS(m.fuse.Root(), nodeFsOpt)