======Festplatte verschlüsseln====== Filesystem analysieren <file> cfdisk /dev/sdx </file> Neue Partionen mit cfdisk schreiben Cryptsetup installieren <file> apt-get install cryptsetup </file> Verschlüsselte Partition schreiben <file> cryptsetup luksFormat /dev/sdx </file> Verschlüsselte Partition öffnen bzw. schließen <file> cryptsetup luksOpen /dev/sdx loopbackname cryptsetup luksClose loopbackname </file> Festplatte mit ext3 formatieren <file> mkfs.ext3 /dev/mapper/loopbackname </file>