使用 fstab 和 gcsfuse 在存储桶名称前自动添加斜杠

Slash added automaticaly before bucket name with fstab and gcsfuse

我使用 gcsfuse 在 google 计算引擎中安装存储桶。

为此,我在我的 fstab 中使用了这个语法:

my_bucket /my_bucket gcsfuse rw,uid=1001,gid=1002

但是 gcsfuse 进程是这样​​启动的:

/usr/bin/gcsfuse --foreground -o rw --uid 1001 --gid 1002 /my_bucket /my_bucket

"my_bucket"前加“/”,挂载无效

在Ubuntu16

中是运行

为什么 fstab 会自动添加这个“/”?

很简单。根路径中不能有像文件夹名称这样的存储桶名称。

为此,我重命名了我的文件夹。