Skip to content

Instantly share code, notes, and snippets.

@eaconde
Created June 4, 2020 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eaconde/3d99a182ac133a128b493ad01697affc to your computer and use it in GitHub Desktop.
Save eaconde/3d99a182ac133a128b493ad01697affc to your computer and use it in GitHub Desktop.
# view disks
df -h
# query blocks/lookup available volume
lsblk
# create directory for mounting
sudo mkdir /appl
# convert volume disk type
sudo mkfs -t ext4 /dev/xvdb
# mount directory to volume
sudo mount /dev/xvdb /appl
# confim mount
df -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment