我正在gcloud计算引擎上运行一个实例。我需要将一个Google存储桶(它属于不同的项目)安装到我的实例中。该实例运行在Debian上。我安装了gcc,保险丝,保险丝。但当我试图装水桶时:
$gcs引信桶名/mnt/桶名
我得到了错误: stderr: fuer装入: fuse设备未找到,请先尝试“mod探测保险丝”
尝试了“mod探针保险丝”,我得到了错误:-bash: mod探头:命令未找到
谁知道问题可能是什么,或者有人遇到过同样的问题?任何想法、意见、帮助都将不胜感激。提前感谢!
发布于 2022-04-13 20:07:08
如果有人在Google平台上使用云运行,则应该使用第二代执行环境。
gcloud beta run deploy filesystem-app --source . \
--allow-unauthenticated \
--service-account fs-identity \
--update-env-vars BUCKET=[YOUR_BUCKET] \
--region=europe-north1 \
--execution-environment gen2标记--execution-environment gen2基于文档:
You should use second generation if any of the following apply to your Cloud Run service:
- Your service needs to use a network file system, which is only supported by second generation.
- ...发布于 2016-09-01 04:25:50
我已经解决了这个问题,升级到Jessie,然后按照这里的说明安装了gcs引信:https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/installing.md
发布于 2016-09-01 06:13:00
要在系统上定位命令,可以使用whereis搜索所有公共位置,为您提供完整的路径。
whereis modprobe。。在我的系统输出上:
/sbin/mod探头/etc/modprobe.d /etc/modprobe.conf /lib/modprobe.d /usr/share/man/man 8/modprobe.8.bz2
在这种情况下,也可能是您的情况下,您将知道如何将其称为/sbin/modprobe fuse。
https://serverfault.com/questions/800156
复制相似问题