Skip to content

Instantly share code, notes, and snippets.

@ainsofs
Last active February 10, 2021 22:23
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 ainsofs/de6c4ac635f44d0d915f220bd62779ef to your computer and use it in GitHub Desktop.
Save ainsofs/de6c4ac635f44d0d915f220bd62779ef to your computer and use it in GitHub Desktop.
mount / unmount volumes in linux
# list volumes
sudo fdisk -l
# create a mount location
mkdir -p /mnt/some-vol
# mount
mount /dev/xvdf /mnt/some-vol
# unmount
umont /mnt/some-vol
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment