-1

I have 16 GB USB flash drive and using it for multiple purposes:

  • As bootable Windows & Linux installation packages carriage (with http://www.sarducd.it)
  • As PortableApps carriage

What I need is, to password protect whole USB drive.

Just like Western Digital Passport ext. hard drives:

When you insert flash drive, it opens app (from special, mini partitions designed only for this app) for entering password. If pass is correct, then it reveals real storage's partition.

One of problems is, as I said, this flash drive is bootable and I need it to be pass protected only in OS environment. Not in boot process. I mean, I don't want to touch bootability of my USB drive.

Is there any good, free software for this purpose?

1

1 Answer 1

2

How about using TrueCrypt? You can use this to create a virtual disk as big as your sensitive data, that sits along side the data needed to boot the OS.

You could put a copy of TrueCrypt portable edition on the USB stick itself, with a simple script to mount the encrypted file once the password is entered:

#!/bin/bash
mkdir -p /mnt/encrypted_usb_partition
truecrypt -t -k "" --protect-hidden-volume=no ./encrypted_usb_partition /mnt/encrypted_usb_partition

So all you'd have to do to get access to your stuff, is to run the script, and enter your password. A similar batch script work work under windows.

1
  • FYI - truecrypt.sourceforge.net "WARNING: Using TrueCrypt is not secure as it may contain unfixed security issues" and suggests migration to BitLocker in Windows.
    – hB0
    Commented Sep 12, 2014 at 6:23

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .