Amazon Elastic File System Operations: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
sudo yum install -y amazon-efs-utils | sudo yum install -y amazon-efs-utils | ||
</syntaxhighlight> | </syntaxhighlight> | ||
More details: | |||
{{External|https://docs.aws.amazon.com/efs/latest/ug/installing-amazon-efs-utils.html}} | |||
Mount the file system: | |||
<syntaxhighlight lang='bash'> | |||
sudo mount -t efs fs-12345678:/ /mnt/efs | |||
</syntaxhighlight> | |||
More details: | |||
{{External|https://docs.aws.amazon.com/efs/latest/ug/mounting-fs.html}} |
Revision as of 04:02, 15 June 2020
Internal
Mount an EFS File System on an EC2 Instance
Install 'amazon-efs-utils' package:
sudo yum install -y amazon-efs-utils
More details:
Mount the file system:
sudo mount -t efs fs-12345678:/ /mnt/efs
More details: