Post

Let's Encrypt USB

Encryption + USB = Security

Security! one of the major issue every one faces in one or the other stages of life. Whether it may be online transactions or thieft of digital equipments such as smart phones, laptops etc. Serious issue arises when we lose one or the other USB drive, because many of us store important document on the USB drives. Many times data stored in USB drive is important than the USB drive itself.

Let’s see how to encrypt data stored on USB drives on both Windows and Linux.

Drive encryption on Windows

encrypt

Windows has a default software named “BitLocker”. This software is included on all the versions of Windows starting from Windows vista except Windows 10 Home edition. There is no any way to install BitLocker on windows 10 Home edition.

  1. Insert your USB drive.

  2. Open BitLocker drive encryption utility by navigating to Star -> Control Panel -> Security, and then click BitLocker Drive Encryption or search for BitLocker from start menu.

  3. In-front of your drive letter, click on turn on bit locker.

  4. Choose how you want to unlock the USB drive. Choose Use a password to unlock this drive. Enter the password encrypt
  5. Next window asks “How do you want to store the recovery key?”. Choose “Save the recovery key to a file”. Choose a location and click on save This is the recovery key that will be used incase you forget the password to unlock the USB drive.
  6. on Are you ready to encrypt this drive click start. Do not unplug the drive until the encryption process is finished. Once finished your are good to go. encrypt

Windows 10 Home users can use Veracrypt to encrypt USB drives, which features a portable version of the encryption software.

Drive encryption on Linux

in this tutorial we are going to use Debian version of Linux such as UBUNTU. It uses cryptsetup utility to create an encrypted partition.

  1. Begin the installation by installing cryptsetup utility by using following command in the terminal.
    1
    
     sudo apt-get install cryptsetup
    

    Note: On RHEL/ Cent OS / Fedora use following command

    1
    
     yum install cryptsetup-luks 
    
  2. Now insert your USB drive
  3. Open “disks” management utility and select your USB drive. encrypt
  4. Click on Bolt shaped wheel and choose format option.
  5. In Type select Encrypted, compatible with Linux system (LUCKS + ext4)
  6. Enter drive name and password then click on format option. encrypt

    Wait until the format process is completed. Once completed then your good to go.

This post is licensed under CC BY 4.0 by the author.