Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
diqiu50 committed Feb 14, 2025
1 parent 97f4f2d commit 3cb345d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions clients/filesystem-fuse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,16 @@ target/debug/gvfs-fuse mount --help
target/debug/gvfs-fuse umount --help

# Execute the mount command in the foreground
# mount the fileset uri to the local directory /mnt/gvfs. You need to start the gravitino server and create the fileset first
target/debug/gvfs-fuse mount /mnt/gvfs gvfs://fileset/test/c1/s1/fileset1 -c conf/gvfs_fuse.toml -f
# mount the fileset uri to the local directory target/gvfs. You need to start the gravitino server and create the fileset first
target/debug/gvfs-fuse mount target/gvfs gvfs://fileset/test/c1/s1/fileset1 -c conf/gvfs_fuse.toml -f

# Execute the mount command in the background
# mount the fileset uri to the local directory /mnt/gvfs
target/debug/gvfs-fuse mount /mnt/gvfs gvfs://fileset/test/c1/s1/fileset1 -c conf/gvfs_fuse.toml
# mount the fileset uri to the local directory target/gvfs
target/debug/gvfs-fuse mount target/gvfs gvfs://fileset/test/c1/s1/fileset1 -c conf/gvfs_fuse.toml

# Execute the umount command
# unmount the fileset from the local directory /mnt/gvfs
target/debug/gvfs-fuse umount /mnt/gvfs
# unmount the fileset from the local directory target/gvfs
target/debug/gvfs-fuse umount target/gvfs
```

The `conf/gvfs_fuse.toml` file is a configuration file that contains the following information:
Expand Down

0 comments on commit 3cb345d

Please sign in to comment.