Skip to content

Instantly share code, notes, and snippets.

View josefinaestevez's full-sized avatar

Josefina Estevez josefinaestevez

View GitHub Profile
@josefinaestevez
josefinaestevez / mount_ebs.sh
Last active June 4, 2020 09:37 — forked from stingh711/mount_ebs.sh
How to mount another EBS as /var on EC2 (ubuntu)
#!/bin/bash
#attach the EBS to /dev/sdf before running it
# format EBS
sudo mkfs -t ext4 /dev/xvdf
# copy original /var to /dev/xvdf
sudo mkdir /mnt/new
sudo mount /dev/xvdf /mnt/new
cd /var