How to Mount S3 bucket on EC2 Linux Instance
Step-1:- If you are using a new centos or ubuntu instance. Update the system. -> For CentOS or Red Hat 1 yum update all -> For Ubuntu 1 apt - get update Step-2:- Install the dependencies. -> In CentOS or Red Hat 1 sudo yum install automake fuse fuse - devel gcc - c ++ git libcurl - devel libxml2 - devel make openssl - devel In Ubuntu or Debian 1 sudo apt - get install automake autotools - dev fuse g ++ git libcurl4 - gnutls - dev libfuse - dev libssl - dev libxml2 - dev make pkg - config Step-3:- Clone s3fs source code from git. 1 git clone https : // github.com/s3fs-fuse/s3fs-fuse.git Step-4:- Now change to source code directory, and compile and install the code with the following commands: 1 2 3 4 5 cd s3fs - fuse . / autogen . sh . / configure -- prefix = / usr -- with - openssl make sudo make install Step-5:- Use below command to check where s3fs command is placed in O.S. It will also tell you the installation is ok. 1 which s3fs Step-6:- ...