What is amazon-efs-utils?
The amazon-efs-utils package is an open-source collection of Amazon EFS tools that is also referred to as the Amazon EFS client. The Amazon EFS client includes the EFS mount helper, which makes it easier to mount EFS file systems. Using the EFS client enables the ability to use Amazon CloudWatch to monitor an EFS file system’s mount status. You need to install the Amazon EFS client on an Amazon EC2 instance prior to mounting an EFS file system.
How to install amazon-efs-utils on Amazon Linux, Red Hat Linux, CentOS, and similar OS?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
## --------------------------------------------------- ## Amazon Linux, Red Hat Linux, CentOS, and similar OS ## --------------------------------------------------- ## Update all the packages sudo yum -y update ## Install git sudo yum -y install git ## Install the rpm-build package sudo yum -y install rpm-build ## Clone amazon-efs-utils source code git clone https://github.com/aws/efs-utils cd efs-utils ## Install the bash make command sudo yum -y install make ## Build the amazon-efs-utils package sudo make rpm ## Install amazon-efs-utils sudo yum -y install ./build/amazon-efs-utils*rpm ## amazon-efs-utils require botocore to be installed pip3 install botocore |
How to install amazon-efs-utils on Ubuntu, Debian, and similar OS?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
## ------------------------------ ## Ubuntu, Debian, and similar OS ## ------------------------------ ## Update all your existing packages sudo apt-get update ## Install git and binutils sudo apt-get -y install git binutils ## Clone amazon-efs-utils source code git clone https://github.com/aws/efs-utils cd efs-utils ## Build the amazon-efs-utils package ./build-deb.sh ## Install amazon-efs-utils sudo apt-get -y install ./build/amazon-efs-utils*deb ## amazon-efs-utils require botocore to be installed pip3 install botocore |
To get more details on amazon-efs-utils, please refer https://github.com/aws/efs-utils