How to list s3fs mounts

amazon s3amazon-web-servicess3fs

How can I list the s3fs mounts that exist on an ubuntu system?
I'd like to know to which bucket each mount is mapped.

Specifically, I have a specific mount (e.g. ~/s3/mymount), and would like to know to which S3 bucket its mapped.

Best Answer

I'd like to know to which bucket each mount is mapped.

# ps -ef | grep s3fs
root      9273     1  0 Feb12 ?        00:34:52 s3fs bucket1 /mnt/p1
root     23130     1  0 Feb18 ?        00:53:10 s3fs bucket2 /mnt/p2
Related Topic