Skip to content

Instantly share code, notes, and snippets.

Created November 28, 2013 06:26
Show Gist options
  • Save anonymous/7688049 to your computer and use it in GitHub Desktop.
Save anonymous/7688049 to your computer and use it in GitHub Desktop.
EC2 Ubuntu Attache EBS volume and move /home
lsblk
xvdb 202:16 0 15G 0 disk
xvda1 202:1 0 8G 0 disk /
sudo mkfs.ext4 /dev/xvdb
sudo mkdir /mnt/tmp
sudo mount /dev/xvdb/ /mnt/tmp
sudo rsync -avx /home/ /mnt/tmp
sudo umount /home
rm -rf /home/*
UUID=8106e848-4dc4-4261-b396-XXXXXXX /home ext4 defaults 0 2
xvdb 202:16 0 15G 0 disk /home
xvda1 202:1 0 8G 0 disk /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment