How to attach a 2nd EBS volume to your AWS EC2 instance ?

Опубликовано: 20 Май 2026
на канале: Aman Patel Talks
37
8

In this video, I will show you how to attach a 2nd EBS volume to your AWS EC2 instance — step-by-step and beginner-friendly!

You will learn:
✔️ How to create a new EBS volume
✔️ How to attach it to an existing EC2 instance
✔️ How to format and mount the volume
✔️ How to make the mount permanent using /etc/fstab
✔️ How to verify your EBS volume
✔️ Commands needed for Linux EC2 servers.

a) Check attached disks

lsblk

b) Format volume

sudo mkfs -t ext4 /dev/xvdf

c) Create mount directory

sudo mkdir /data

d) Mount volume

sudo mount /dev/xvdf /data

#aws #awstutorial #awscommunitybuilders