Following a step-by-step process to attach an AWS EFS volume to a Linux system using an IP address.

Check you current layout

lsblk

Create montpoint/directory

sudo mkdir /data

Add filesystem to fstab

EFS 1

Mount filesystem

sudo mount -a

Validate with mount

mount

EFS 2

Validate with df

df -h

EFS 3