Skip to content

Instantly share code, notes, and snippets.

@anubhavsahoo
Last active November 17, 2016 10:40
Show Gist options
  • Save anubhavsahoo/03889da3f3d5f6b4a666 to your computer and use it in GitHub Desktop.
Save anubhavsahoo/03889da3f3d5f6b4a666 to your computer and use it in GitHub Desktop.
Tips for managing AWS
#
# mounting an EBS volume
#
#Format volume
sudo mkfs.ext4 /dev/xvdf #/dev/sdf maps to /dev/xvdf on ubuntu
#Mount volume
sudo mkdir -m 000 /vol
echo "/dev/xvdf /vol auto noatime 0 0" | sudo tee -a /etc/fstab
#Unmount Volume
sudo mount /vol
# IMP - remove fstab entry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment