Created
December 10, 2014 00:39
-
-
Save david415/bfd03354219f1ad317b6 to your computer and use it in GitHub Desktop.
mount/umount encrypted usb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cryptsetup luksOpen /dev/sdb1 secretStash | |
mount /dev/mapper/secretStash /mnt | |
# and umount | |
umount /mnt | |
cryptsetup luksClose secretStash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment