Skip to content

Instantly share code, notes, and snippets.

View garyritchie's full-sized avatar

Gary Ritchie garyritchie

View GitHub Profile
@garyritchie
garyritchie / mount_ebs.sh
Last active December 19, 2019 14:23 — 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
UPDATE=yes
while getopts d:u option
do
case "${option}"
in
d) DEVICE=${OPTARG};;