This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
JointCloud
/
JCS-pub
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
0
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
修复挂载点无法被其他用户访问的问题
feature_gxh
Sydonian
7 months ago
parent
70baf62bde
commit
c34926f8f9
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
client/internal/mount/mount_linux.go
+ 4
- 1
client/internal/mount/mount_linux.go
View File
@@ -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)
Write
Preview
Loading…
Cancel
Save