想要将 AWS S3 挂载到本地目录,可以使用一个名为s3fs的工具来实现。具体安装过程如下: 首先,准备必要的软件包: 1 2 3 sudo apt update sudo apt-get install -y automake fuse gcc g++ git \ libcurl4-openssl-dev libfuse-dev libssl-dev libxml2-dev make pkg-config 然后,从源码编译并安装s3fs: 1 2 3 4 5 6 git clone https://github.com/s3fs-fuse/s3fs-fuse.git cd s3fs-fuse ./autogen.sh ./configure make sudo make install 配置访问凭证: 1 2 echo ACCESS_KEY_ID:SECRET_ACCESS_KEY > ~/.passwd-s3fs chmod 600 ~/.passwd-s3fs 尝试挂载: 1 s3fs bucket_name /path/to/local/mount -o passwd_file=~/.passwd-s3f …