Verschlüsselte USB Platte mit LUKS erstellen

  Generic
   d   delete a partition
   F   list free unpartitioned space
   l   list known partition types
   n   add a new partition
   p   print the partition table
   t   change a partition type
   v   verify the partition table
   i   print information about a partition

  Misc
   m   print this menu
   x   extra functionality (experts only)

  Script
   I   load disk layout from sfdisk script file
   O   dump disk layout to sfdisk script file

  Save & Exit
   w   write table to disk and exit
   q   quit without saving changes

  Create a new label
   g   create a new empty GPT partition table
   G   create a new empty SGI (IRIX) partition table
   o   create a new empty DOS partition table
   s   create a new empty Sun partition table

neue Partitionstabelle erstellen mit

g
w

sollt eine (zusätzliche) NTFS Partition eingerichtet werden, vorzugsweise unter Windows mit der Datenträgerverwaltung erstellen, Der Einfachheit halber die zu verschlüsselnde EXT4 Partition mit Gparted/parted.

LUKS Modul in Linux laden und die zweite EXT4 Partition verschlüsseln,

modprobe dm-crypt
cryptsetup luksFormat /dev/sdc2

öffnen und einbinden mit

cryptsetup luksOpen /dev/sdc2 USBCRYPT
mkdir /home/username/USBCRYPT
mount /dev/mapper/USBCRYPT /home/username/USBCRYPT

zum aushängen

umount /home/username/USBCRYPT
cryptsetup luksClose USBCRYPT