s3 mount point, mount non-empty directory

0

Hello, is it possible to mount a folder that is not empty with s3 mount point? I can't find related information. This is the error I get: use: mountpoint is not empty fuse: if you are sure this is safe, use the 'nonempty' mount option Error: Failed to create FUSE session

Caused by: No such file or directory (os error 2) Error: Failed to create mount process

已提問 2 個月前檢視次數 592 次
1 個回答
0

To resolve the first issue and mount your S3 bucket to a non-empty directory, you should modify your mount command to include the nonempty option.

For the second issue, ensure that the path you are trying to mount to actually exists on your filesystem. If the path is correct, review your mount command for any typos or configuration errors.

profile picture
專家
已回答 2 個月前
profile picture
專家
已審閱 1 個月前
  • I don't see that the mount-s3 service has that option:

    Usage: mount-s3 <BUCKET_NAME|DIRECTORY|--prefix <PREFIX>|--region <REGION>|--endpoint-url <ENDPOINT_URL>|--force-path-style|--transfer-acceleration|--dual-stack|--requester-pays|--bucket-type <BUCKET_TYPE>|--no-sign-request|--profile <PROFILE>|--read-only|--storage-class <STORAGE_CLASS>|--allow-delete|--allow-overwrite|--auto-unmount|--allow-root|--allow-other|--maximum-throughput-gbps <N>|--max-threads <N>|--part-size <PART_SIZE>|--uid <UID>|--gid<GID>|--dir-mode <DIR_MODE>|--file-mode <FILE_MODE>|--foreground|--expected-bucket-owner <AWS_ACCOUNT_ID>|--log-directory <DIRECTORY>|--log-metrics|--debug|--debug-crt|--no-log|--cache <DIRECTORY>|--metadata-ttl <SECONDS>|--max-cache-size <MiB>|--user-agent-prefix <PREFIX>>

  • you might consider alternative methods or tools for mounting S3 buckets, such as s3fs-fuse, which supports the nonempty option. With s3fs-fuse, you can typically add the nonempty option to the mount command like so:

    s3fs yourbucketname /path/to/mountpoint -o nonempty

    Make sure to replace yourbucketname with your actual S3 bucket name and /path/to/mountpoint with your desired mount point.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南